← AI FoundationsLesson 08 of 10
RAG: Open Book Beats Closed Book
The fix promised in Lesson 05. A bare model answers your questions from frozen memory — a closed-book exam. RAG searches real sources first and pastes the best passages onto the desk, so the answer is grounded — and cited.
The one mental model
RAG is four steps: you ask → the system searches real documents (your files, a database, the live web) → pulls the most relevant passages → pastes them onto the desk next to your question → the model answers from what's now in front of it. Search first. Paste onto the desk. Then answer.
Key terms
RAG
Retrieval Augmented Generation — answering after retrieving relevant real text, instead of from memory alone.
Knowledge cutoff
The date the training text was frozen. Anything after it — and anything private — isn't in the model's memory.
Grounding
Anchoring the answer to retrieved passages from sources you chose. The false weight from Lesson 05 loses its grip.
Citation
The answer points at where it came from — page 12, paragraph 3 — so mistakes become checkable. Receipts, not trust.
The misconception to drop
✕"With RAG / web search the answer is guaranteed correct."
✓Open book isn't infallible — it's checkable. The search can grab the wrong passage; the model can misread it. But an answer with a citation carries its receipts, and a wrong one takes thirty seconds to catch.