Is Agentic RAG worth it? An experimental comparison of RAG approaches
Pietro Ferrazzi, Milica Cvjeticanin, Alessio Piraccini, Davide Giannuzzi
TL;DR
This work empirically compares Enhanced RAG and Agentic RAG across four evaluation dimensions—user intent handling, query-documents alignment, retrieved document refinement, and underlying LLM quality—using four datasets spanning QA and IR/E tasks. It finds that Agentic RAG better handles user intent in narrow, well-defined domains, while Enhanced RAG offers more robust retrieval and document alignment in broader, noisier settings; Agentic’s dynamic rewriting can improve retrieval relevance, but its iterative nature incurs higher costs. The results highlight that neither paradigm is universally superior and that model size impacts both similarly, underscoring important cost-performance tradeoffs. The study provides practical guidance for practitioners on selecting and potentially hybridizing RAG designs, emphasizing efficiency considerations and the potential value of incorporating explicit re-ranking within Agentic workflows as a path to gains.
Abstract
Retrieval-Augmented Generation (RAG) systems are usually defined by the combination of a generator and a retrieval component that extracts textual context from a knowledge base to answer user queries. However, such basic implementations exhibit several limitations, including noisy or suboptimal retrieval, misuse of retrieval for out-of-scope queries, weak query-document matching, and variability or cost associated with the generator. These shortcomings have motivated the development of "Enhanced" RAG, where dedicated modules are introduced to address specific weaknesses in the workflow. More recently, the growing self-reflective capabilities of Large Language Models (LLMs) have enabled a new paradigm, which we refer to as "Agentic" RAG. In this approach, the LLM orchestrates the entire process-deciding which actions to perform, when to perform them, and whether to iterate-thereby reducing reliance on fixed, manually engineered modules. Despite the rapid adoption of both paradigms, it remains unclear which approach is preferable under which conditions. In this work, we conduct an extensive, empirically driven evaluation of Enhanced and Agentic RAG across multiple scenarios and dimensions. Our results provide practical insights into the trade-offs between the two paradigms, offering guidance on selecting the most effective RAG design for real-world applications, considering both costs and performance.
