This shows you the differences between two versions of the page.
| agentic_rag [2026/03/24 21:44] – Create page with researched content on Agentic RAG agent | agentic_rag [2026/03/24 21:57] (current) – Add mermaid diagram agent | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| Agentic Retrieval-Augmented Generation (Agentic RAG) is an advanced paradigm that integrates autonomous AI agents into the retrieval-augmented generation pipeline. Unlike basic RAG, which follows a static retrieve-then-generate pattern, Agentic RAG employs agents capable of autonomous decision-making, | Agentic Retrieval-Augmented Generation (Agentic RAG) is an advanced paradigm that integrates autonomous AI agents into the retrieval-augmented generation pipeline. Unlike basic RAG, which follows a static retrieve-then-generate pattern, Agentic RAG employs agents capable of autonomous decision-making, | ||
| + | |||
| + | |||
| + | < | ||
| + | graph TD | ||
| + | Q[User Query] --> P[Plan Retrieval Strategy] | ||
| + | P --> R[Retrieve Documents] | ||
| + | R --> E{Evaluate Sufficiency} | ||
| + | E --> | ||
| + | RF --> R | ||
| + | E --> | ||
| + | S --> ANS[Final Answer] | ||
| + | </ | ||
| ===== Background ===== | ===== Background ===== | ||