<- all posts

RAG Explained for Executives: Why 'Chat With Your Docs' Disappoints — and How to Fix It

// 2026-07-10 · Frederic Haddad · 4 min read

llm-opsconsulting

"Chat with your documents" is the most-sold and most-disappointed-in AI feature of the decade. Companies buy it, demo it on three PDFs, get amazed — then watch it confidently misanswer a question their own intern could handle. As someone who builds these systems properly for a living, let me explain what's actually going on under the hood, in plain language, and why the gap between demo and reality is an engineering problem you can fix.

What RAG actually is (no jargon, I promise)

RAG stands for "Retrieval-Augmented Generation," but the useful translation is: an open-book exam.

Without RAG, the AI answers from memory — it read your industry's general knowledge during training, but it has never seen your contracts, your policies, or your product catalog. Ask about them and it does what an overconfident intern would do: it improvises. Confidently. That's "hallucination."

With RAG, every question first triggers a search through your actual documents. The system finds the relevant pages, hands them to the AI, and says: "Answer only from these." Now it's open-book — the model's job shifts from recalling to reading, which is something it does far more reliably.

That's the whole trick. It sounds simple because the concept is. The failures come from doing it badly.

Why most RAG implementations disappoint

When I audit a failing "chat with your docs" system, the root cause is almost never the AI model. It's one of these:

1. Garbage retrieval. The search step found the wrong pages, so the AI answered from the wrong book. If your documents are scanned images without proper text extraction, or split badly mid-sentence, or duplicated with conflicting versions — the best model in the world will misanswer. In my experience, this is the cause in most failed deployments: the problem was the library, not the librarian.

2. No answer discipline. The system wasn't engineered to say "I don't know." A well-built RAG system refuses to answer when the documents don't contain the answer — that refusal is a feature you must deliberately build. Demos hide this because nobody asks the question the docs can't answer.

3. No measurement. The team shipped it and never measured accuracy again. You cannot improve what you don't measure: a proper system has a test set of real questions with known correct answers, and an accuracy score tracked over time.

4. Wrong expectations. Leadership expected a strategy consultant; the system is a very fast document clerk. A clerk that reads your entire archive in seconds and cites its sources is valuable — but it's not going to "analyze market trends." Matching the expectation to the capability is half the battle.

What a well-built system looks like

When I deliver one of these, the difference is all in the layers around the model:

  • Document hygiene first. Proper text extraction, sensible chunking, version control on documents, metadata that captures which contract, which year, which clause type — and an index you can throw away and rebuild without fear (make your index disposable).
  • Retrieval tuned to your content. Hybrid search — keyword matching plus semantic understanding — because your questions contain exact terms ("clause 4.2", a product SKU) that pure "meaning-based" search misses.
  • Refusal as a feature. The system says "the documents don't cover this" rather than improvising, and tells you what it would need.
  • Citations on every answer. Every claim links to the document and page it came from. This alone transforms user trust — people can verify instead of choosing between blind faith and total dismissal.
  • A live accuracy score. A benchmark of real questions, run automatically (a test is not a load), so accuracy is a number on a dashboard, not a feeling.

The business math that makes it worth it

Done right, this capability quietly deletes hours of knowledge work: answering the same internal policy question for the fortieth time, digging through last year's contract for a renewal clause, onboarding a new employee who needs context scattered across 400 documents — which is a big part of what you'll still be running in three years. The value isn't a dramatic robot future — it's thousands of small, expensive lookups that now take seconds with a citation attached.

It's also the most data-residency-friendly AI pattern: your documents stay in infrastructure you control, and only the question and retrieved snippets go to the model. For UAE businesses with confidentiality obligations, that architecture conversation matters as much as the capability itself.


If you bought or built "chat with your docs" and it underdelivered — or you're about to — this is one of the most fixable problems in AI, and diagnosing it properly takes about a day. Book a consulting day and I'll audit the system against the failure modes above and leave you a prioritized fix list. Or ask me first.