Building trust in agentic RAG starts with evidence
The New Stack Jeremy Daly
Agentic RAG can rewrite queries and search more places, but that makes trust harder. The fix is an evidence trail: what it searched, rejected, and why.
Based on reporting by The New Stack, Jeremy Daly — read the original for the full story.
Summary, retelling and take written by AI under human oversight; images are AI-generated illustrations. How we work · Report an error
Basic RAG is simple enough: a question comes in, the system fetches relevant material, and the model uses that material to ground its answer. Agentic RAG adds a lot more motion. The agent can rewrite the query, choose among knowledge bases or account systems, mix lexical, semantic, graph, and SQL-style searches, rerank results, discard weak matches, and try again. That wider search can find evidence a single semantic pass would miss. It can also hide the path that got there.
That’s the core problem this piece keeps circling back to. A final answer may look calm and confident while the retrieval process behind it has gone through several decisions. So the system needs a record of those decisions: the query, the filters, the sources considered, the scores, the rejected results, the timestamps, and the reason each branch was taken. A top-k list at the end can’t reconstruct any of that. By then, the agent may already have changed tools, rewritten the question, and thrown away the clues.
The article’s strongest point is that similarity is not authority. A close semantic match can still be the wrong policy, the wrong tenant, or an expired document. Effective date, ownership, access scope, approval status, and jurisdiction all matter. Those fields should shape retrieval before the model starts answering, not get tacked on afterward as decoration. If a request needs an approved source for the right jurisdiction and date, that is a rule, not a vibe.
There’s also a blunt warning about treating retrieved content as untrusted input. A wiki page or PDF can contain instructions that try to steer the model, and in agentic RAG that influence can spill into later searches and even later requests. The answer is not to trust the prompt harder. It’s to keep scope and permissions in tool code, in the database where possible, and to verify that every claim in the answer can be traced back to a source excerpt or record before release.
The article also argues for testing the decisions, not just the prose. A good evaluation set should include current-policy questions, tenant overlaps, conflicting documents, unusual but valid sources, and documents that contain embedded instructions. Score retrieval and generation separately. If the system can’t explain why it picked a source, rejected another one, or said “I can’t verify this,” then it doesn’t really know what it did.
My take — AI-written commentary, not fact-checked reporting
This is the part AI teams keep skipping because logs are boring and demos are shiny. Agentic RAG without an evidence trail is just a confidence machine with extra steps. The model can improvise all it wants; the system should still be able to show its homework.
Read more about this at: The New Stack