Retrieval-augmented generation (RAG) is a technique where an AI model fetches relevant documents from an external knowledge source at query time and uses them to generate a grounded answer. Instead of relying solely on what the model learned during training, RAG retrieves fresh, specific context and conditions its response on it.
A typical RAG pipeline turns a query into a vector, searches a knowledge base for the closest matching passages, and passes those passages to the model as context. The benefit is current, citable, source-anchored answers. The limit is that RAG is only as good as the knowledge base behind it.
That limit is worth naming plainly. A RAG agent bound to a knowledge base hits a ceiling on the questions a KB never documented, the long-tail intents that make up much of real support volume. Retrieving a passage is not the same as knowing whether the AI should act on this specific intent at all.
Aide, the agentic AI platform for customer experience, uses retrieval where it fits, but leads with intent-first architecture: a custom intent classifier and a three-level Customer Intent Map decide what gets automated, intent by intent, before any answer is generated. Each intent is test-gated on real historical conversations in the Agent Simulator, so retrieval errors are caught before deploy, not after. Grounded by intent, not bound by a knowledge base.