What is RAG for AI agents?
Retrieval-augmented generation (RAG) gives a model your documents at answer time. The question is embedded, the most relevant chunks of your content are retrieved, and they are placed in the prompt so the answer is grounded in your data. It is how an agent answers from a product manual, a policy or an internal wiki without retraining anything.
Good RAG is mostly good plumbing: sensible chunks, a retrieval strategy that catches exact terms as well as meaning, a token budget so the prompt stays bounded, and a record of what was retrieved so a wrong answer can be traced to a wrong chunk.