CLAIFeb 5

CompactRAG: Reducing LLM Calls and Token Overhead in Multi-Hop Question Answering

arXiv:2602.05728v11 citationsHas Code
Originality Incremental advance
AI Analysis

This addresses the problem of high computational costs in multi-hop question answering for AI practitioners, offering a more cost-efficient approach, though it is incremental as it builds on existing RAG paradigms.

The paper tackles the inefficiency of multi-hop retrieval-augmented generation (RAG) systems by proposing CompactRAG, which reduces LLM calls and token overhead; it achieves competitive accuracy on benchmarks like HotpotQA while cutting token consumption compared to iterative baselines.

Retrieval-augmented generation (RAG) has become a key paradigm for knowledge-intensive question answering. However, existing multi-hop RAG systems remain inefficient, as they alternate between retrieval and reasoning at each step, resulting in repeated LLM calls, high token consumption, and unstable entity grounding across hops. We propose CompactRAG, a simple yet effective framework that decouples offline corpus restructuring from online reasoning. In the offline stage, an LLM reads the corpus once and converts it into an atomic QA knowledge base, which represents knowledge as minimal, fine-grained question-answer pairs. In the online stage, complex queries are decomposed and carefully rewritten to preserve entity consistency, and are resolved through dense retrieval followed by RoBERTa-based answer extraction. Notably, during inference, the LLM is invoked only twice in total - once for sub-question decomposition and once for final answer synthesis - regardless of the number of reasoning hops. Experiments on HotpotQA, 2WikiMultiHopQA, and MuSiQue demonstrate that CompactRAG achieves competitive accuracy while substantially reducing token consumption compared to iterative RAG baselines, highlighting a cost-efficient and practical approach to multi-hop reasoning over large knowledge corpora. The implementation is available at GitHub.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes