Adaptive Retrieval

Definition

Deciding per query whether to retrieve, and how much — no retrieval, one retrieval step, or several rounds of retrieval and reasoning — instead of running the same RAG pipeline for everything. It is Query Routing where the routes are retrieval strategies of different cost rather than different data sources.

Why It Matters

Traffic is mixed. Simple questions (“Paris is the capital of what?”) are answered fine by the LLM alone; multi-hop ones need iterative retrieval. A fixed pipeline either overspends on the first or fails the second (Adaptive-RAG). Retrieval is not free of harm either: in RAGRoute’s MMLU experiment, retrieving from randomly chosen sources scored below not retrieving at all (71.74% vs 73.35%), because irrelevant context distracts the model.

Approaches

ApproachDecision signalExample
Entity frequencyRetrieve only when the question’s entities are rareMallen et al. (2023), as described in Adaptive-RAG
Complexity classifierA small model predicts no / single / multi-stepAdaptive-RAG — T5-Large, labels from which strategy answered correctly
Query-type classifierFactual / reasoning / summarization mapped to strategies of increasing costRAGRouter-Bench baselines — TF-IDF + SVM, simulated 28.1% token saving
”No retrieval” as a ranked optionRank retrievers and abstention by expected gain in answer qualityLTRR
Generation-time triggersRetrieve new documents when generated tokens have low confidenceJiang et al. (2023), as described in Adaptive-RAG; Self-RAG (Asai et al., 2024) is the other adaptive baseline there. Agents make the decision step by step — see Agentic Search

Practical Notes

  • Imperfect routers still pay. Adaptive-RAG’s classifier is only ~55% accurate, yet matches always-multi-step F1 at under half the time, because its errors mostly lean toward retrieving more than necessary.
  • Cheap features go far. On RAGRouter-Bench, TF-IDF beat sentence embeddings for predicting query type.
  • Query text is not the whole story. Which strategy wins also depends on corpus structure; query-only routers are a floor.

Articles