The demo that wins the meeting and the system that survives production are rarely the same thing, and nowhere is the gap wider than with large language models. A chatbot that answers anything is easy. A system a bank, a law firm, or a hospital will actually deploy has a harder requirement: never confidently make something up.

In the enterprise, a fluent wrong answer is worse than no answer, because it gets trusted. Grounded AI is the discipline of building LLM systems whose answers are tied to real, verifiable source material — and that refuse when the source isn’t there.

Retrieval-augmented generation, plainly

A base language model answers from a blur of everything it read during training — which is exactly why it can be fluent and wrong at once. Retrieval-augmented generation (RAG) changes the job: when a question comes in, the system first retrieves the relevant passages from your own curated material, then asks the model to answer using only those passages, with citations back to them.

The answer is now anchored to documents you control and can inspect. If the retrieved material doesn’t support an answer, a well-built system says so instead of inventing one. That refusal is not a limitation to apologize for — it’s the whole point.

The most valuable thing a grounded assistant does is decline. “I don’t have that in the material” is the sentence that turns an LLM from a liability into something a regulated team can put in front of people.

The auditable trail

Document-heavy and regulated teams don’t just need a right answer; they need to show why it’s right. Grounded systems produce that by construction: every answer carries its citations, so a reviewer can trace a claim back to the clause, the policy, or the record it came from. That trail is the difference between a novelty and a tool that counsel or compliance will actually sign off on.

A live example, on this page

The assistant on this very site — the “Ask BIS” chat — is a closed RAG system. It answers only from curated material about BIS and Renan, cites what it uses, and tells you honestly when something is outside its knowledge rather than guessing. It’s a small, deliberate demonstration of the same architecture that scales to a real document corpus.

Where the real work is

Grounding an assistant on a serious corpus is engineering, not a prompt. The hard parts are retrieval quality (finding the right passages, not just similar-sounding ones), evaluating answers against expert review, and the pipelines that clean, chunk, and — where the material is sensitive — anonymize and redact before anything is indexed at all.

That last piece is where Renan works today: leading legal-AI and LLM systems at SG LAW — retrieval over confidential case material, evaluation of model output against counsel review, and the redaction pipeline that made the corpus usable in the first place. Grounded AI in a setting where a wrong answer has consequences is exactly the point.

An LLM that will say anything is a demo. One that will only say what it can show you — and declines the rest — is a system. In the enterprise, only the second one ships.