This isn’t a model problem. It never was.
The pilot worked. The demo landed. Someone asked a hard question, the system answered well, and the meeting ended early. Then it went to review, and a reviewer asked a different question. Not “is this answer good” but “show me where it came from, and that the person asking was allowed to see it.” Nobody could, so it didn’t ship. That gap between a demo that impresses and a review it can’t clear is the trust ceiling: where a smarter answer stops mattering because the governance to defend it doesn’t exist.
The 95% Number Points Away from the Model
There’s a statistic in every AI strategy deck, usually read as a verdict on the technology and a reason to wait for a better model: roughly 95% of enterprise AI pilots return nothing measurable.
Read the study and the diagnosis points elsewhere: the failures cluster around integration and a learning gap, how the system connects to real data and real workflows, not how well it reasons. What’s missing isn’t capability. It’s everything that has to be true around the capability before anyone will let it run unattended, which is really one question: what does the person who signs off need to see first?
The Three Questions a Reviewer Can’t Answer
A governance review is not a quality contest. The reviewer isn’t grading prose; they’re checking whether the answer survives being questioned later, which comes down to three things: Where did the input come from? Who was allowed to see it? What proves the answer was checked against an approved, current source? An answer that is fluent and correct is still unshippable if its source can’t be named, because “correct” without provenance is just a guess that happened to land.
The common pushback is reasonable. Retrieval-augmented generation already handles this, the argument goes: RAG grounds the answer in your own documents instead of letting the model free-associate, tying it to a real source by construction. True, but grounding only proves the generated text matches the document it was handed. It says nothing about whether that document was current, whether it was approved, or whether the person who triggered the query had any right to see it. Grounding checks the last step; the three questions are about every step before it.
You’re Scoring the Model When the Evidence Lives Upstream
A typical scoring rig rates the model’s output: was the answer relevant, well-formed, on-topic. Meanwhile the retrieval that fed the model goes ungraded: which document got pulled, how it ranked, what got assembled into context. So a confident answer built on a stale document sails through, because the step that picked it was never tested.
The fix is to stop scoring retrieval and generation as one number. The RAG Triad is one framing of that split: grade whether retrieval surfaced the right context, and whether the answer is faithful to it, separately. Score them together and a model that wrote something wrong and a model that faithfully summarized the wrong document look identical, when only the second quietly clears review. The same blind spot shows up in traceability, where pilots flatten a distinction governance leads live with: lineage versus provenance. Lineage maps how data moved; provenance is the chain of custody behind a value, the who-touched-it-and-what-approved-it a reviewer actually asks for. Pilots ship lineage and rarely provenance.
The Other Half of Trust Is Who the System Can Act As
Evidence is one half of what a reviewer checks. The other is access: whether the system should have reached the source at all.
70% of organizations give AI systems more access than the equivalent human in the same role. A pilot gets built fast, usually on a broad service account so it can reach what it might need, with permissions to be tightened later. Later rarely arrives before the pilot becomes production, and now the AI can surface anything to anyone who asks, including the document they were never cleared to see. The cost of that shortcut:
Over-privileged AI systems showed a 76% incident rate
Systems limited to least-privilege access showed 17%
An AI on a broad service account doesn’t enforce your access policy. It launders around it: every permission boundary in the org becomes optional the moment the model can read past it on a user’s behalf. This has to be fixed at retrieval, for a mechanical reason. Check permissions after the answer is generated, as a filter on the way out, and the system has already pulled the restricted document into context to write it. The boundary only holds if you enforce it where documents are fetched, before generation happens. Until then, the honest answer to “is this governed” is no.
The Agentic Knowledge Layer
Both halves point at the same place: the Agentic Knowledge Layer. It’s that layer between enterprise content and every AI experience that consumes it. It is not a chatbot, vector database or model wrapper. It is where content is ingested, kept current, filtered by the asker’s permissions, retrieved, cited and logged before a model writes the answer.
That is the point behind Progress’s “One knowledge layer. Every AI experience.” framing. If each team builds its own RAG pipeline, every assistant inherits its own sync lag, permission shortcut and audit gap. A shared layer turns the reviewer questions into infrastructure: Sync Agents keep repositories current, retrieval-time access control limits what the query can touch, and citations plus audit trails travel with each answer. Progress Agentic RAG is one implementation of that operating model. The larger point is simpler: if retrieval cannot prove freshness, permission and provenance before generation, the reviewer still has to say no.
None of this makes the model smarter. It makes the output defensible, which at the trust ceiling is what was missing. If your pilot is one review away from production, look first at whether retrieval can name its sources, prove permissions and stay current. Watch The Agentic Knowledge Layer Behind Every Use Case for the operating model.
FAQ
If Our RAG Pilot Already Cites Its Sources, Doesn’t That Cover Provenance?
Partly. A citation tells the reader which document an answer was built from. It doesn’t establish whether that document was the approved, current version, or whether the person who ran the query was cleared to see it. The citation is the visible tip of provenance, not the whole of it.
Isn’t Enforcing Access at Retrieval Going to Make the System Slower or Harder to Build?
It changes where the work happens more than how much there is. Filtering documents against the asker’s permissions before generation is cheaper than generating an answer and then scrubbing it, and far cheaper than the incident a downstream filter misses. The harder shift is architectural: access control has to live in the retrieval layer, not bolted on at the end.
We’re Not in a Regulated Industry. Does the Trust Ceiling Still Apply?
Yes, because the ceiling isn’t a compliance checkbox. It’s whoever signs off on letting the system run unattended, whether that’s a security lead, an engineering manager or the person who owns the workflow. The questions don’t change with regulation: where did this come from, who could see it, what proves it was checked. Regulated industries just get them in writing first.
Adam Bertram
Adam Bertram is a 25+ year IT veteran and an experienced online business professional. He’s a successful blogger, consultant, 6x Microsoft MVP, trainer, published author and freelance writer for dozens of publications. For how-to tech tutorials, catch up with Adam at adamtheautomator.com, connect on LinkedIn or follow him on X at @adbertram.