RAG: instead of relying solely on the LLM's parametric knowledge, retrieve relevant context from a knowledge base. Reduces hallucination; lets you use up-to-date info.
Stages: embed query → vector search top-K docs → format docs into prompt → LLM generates with context. Quality depends on retrieval (recall) more than generation in most pipelines.