RAG agentique

Classic RAG always retrieves: before every answer the pipeline fetches documents, whatever the question. In agentic RAG that retrieval becomes a decision the agent makes. It judges whether it needs to search at all, picks the source, reads what came back, weighs whether its draft answer holds up, and runs a different search when the first one returned nothing useful. A fixed pipeline step becomes a loop with a policy. What it costs: a call count and a latency you can no longer predict before execution.

Strengths

Limitations

Best for

Official site

View on Coeurdar