00 · IN THREE MINUTES

The answer in three steps

  1. 1RAG searches an external collection and inserts selected passages into the model’s context.
  2. 2The answer can be grounded in those passages and linked to inspectable sources.
  3. 3Bad retrieval, conflicting documents or unsupported synthesis can still produce a wrong answer.

01 · THE MODEL GAINS AN OPEN BOOK

The model gains an open book

Instead of relying only on parameters learned during training, a RAG system converts a query into a search representation and retrieves passages from an index. Those passages travel with the question into the generator.

02 · RETRIEVAL IS A SEPARATE MODEL

Retrieval is a separate model

Chunking, embeddings, filters and ranking decide what evidence reaches the language model. If the decisive passage is absent or ranked too low, generation cannot reliably recover it from the index.

FIG. 02How the system changes state
A conceptual mechanism map. Geometry, scale and timing are explanatory unless labelled otherwise.

03 · CONTEXT CAN STILL BE MISREAD

Context can still be misread

The generator may ignore a passage, merge incompatible claims or cite a source beside a sentence it does not support. Documents may also be stale, poisoned or authoritative-looking but wrong.

04 · EVALUATION NEEDS TWO LAYERS

Evaluation needs two layers

Retrieval quality asks whether relevant evidence was found. Answer quality asks whether the response follows that evidence; a useful test reports both instead of hiding them behind one score.

05 · RAG IS AN ARCHITECTURE, NOT A GUARANTEE

RAG is an architecture, not a guarantee

Good systems expose citations, preserve document dates, restrict sources when needed and allow refusal when evidence conflicts. Verification remains necessary wherever a wrong synthesis carries real cost.

06 · SOURCES AND EVIDENCE

Sources and evidence

Claims are linked to foundational papers, standards or the primary study behind the update.

  1. 01
    Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks

    Supports a defined mechanism, measurement or evidence boundary in this article.

    PRIMARY STUDY
  2. 02
    Retrieval-Augmented Generation for Large Language Models: A Survey

    Supports a defined mechanism, measurement or evidence boundary in this article.

    SCHOLARLY REVIEW
CHANGE LOG29 Aug 2026 · First five-language edition; mechanisms, limits, diagrams and sources checked.