← Glossary

Retrieval-augmented generation

The model reads your files afresh to answer each question. It works, but nothing accumulates. Each answer starts from a blank page.

Retrieval-augmented generation, RAG, is the technique behind most tools that let you chat with your documents. When you ask a question the system retrieves the passages most likely to be relevant, hands them to the model alongside the question, and the model answers from what it was handed. It grounds the answer in your material rather than the model’s general knowledge, which reduces hallucination and is why enterprise AI mostly works this way.

Its limit, for account planning, is that nothing accumulates. Each answer starts from a blank page; the synthesis you got yesterday is gone today unless you saved it, and the system has no view of the account, only of the passages that matched the last question. The LLM wiki pattern exists to fix exactly that, and a living plan uses retrieval as a component rather than as the whole design.

Set out in full in: Lewis et al. (2020); Creating Customer Value Propositions with AI (Kogan Page, 2027), chapter 9.

Related terms

See the method run on one real account in three days: the One Page Proposition.