Retrieval-Augmented Generation is an architecture for answering questions with external knowledge. Instead of relying only on the model's internal training data, the application retrieves relevant passages from a trusted corpus and places them into the prompt as evidence.
The practical value is control. You can update the knowledge base without retraining a model, restrict answers to approved sources, cite documents, and measure retrieval quality separately from generation quality.
Mental model
Treat RAG like an open-book exam: retrieval chooses the pages, the prompt tells the model how to use them, and evaluation checks whether the answer stayed loyal to the book.