groundy
agents & frameworks

Can Instruction-Tuned Retrievers Fix Agentic Search's Retrieval Gap?

Critic-R adds a natural-language critic between retrieval and generation in agentic search, rewriting queries when fetched context fails to support the next reasoning step.

7 min · · · 4 sources ↓

Agentic search systems have a retrieval problem, and the standard fixes (bigger indexes, stronger rerankers, longer context windows) do not address its root cause: the first retrieval query is often wrong, and the agent has no mechanism to notice. Critic-R, submitted to arXiv on 30 May 2026, proposes a different approach. It inserts a natural-language critic into the retrieval loop that evaluates whether the fetched context actually supports the agent’s next reasoning step, then rewrites the query and retries if it does not. The idea is straightforward. The execution implications for latency and cost in long-horizon agents are not.

What Critic-R adds to the retrieval loop

Most RAG pipelines treat retrieval as a one-shot operation: embed the query, fetch top-k, pass to the generator. Agentic systems compound this by chaining multiple retrieval steps, but each step still tends to fire a single query and accept whatever comes back. If the query was poorly formed or the index lacks the right document at the right rank, the generator works from irrelevant context and the error propagates.

Critic-R intervenes between retrieval and generation. According to the paper, a critic model evaluates the agent’s “introspective reasoning trace” after it consumes retrieved evidence, determining whether that evidence sufficiently supports the next reasoning step. If not, the loop rewrites the query and tries again. This is retrieval-side self-correction, not generator-side chain-of-thought refinement.

Two mechanisms: inference-time refinement and learned embeddings

The paper describes two complementary components:

Critic-R-Zero operates at inference time. It iteratively rewrites both the search query and the retrieval instructions based on the critic’s feedback, without modifying the underlying retrieval model. Think of it as prompt engineering applied to the retriever rather than the generator, executed in a loop until the critic signals that the retrieved context is adequate.

Critic-Embed is the training counterpart. It uses successful and failed refinement trajectories from Critic-R-Zero as automatic supervision for fine-tuning the retrieval model itself. The paper argues that optimizing retrievers for agentic search “often requires heavy co-training or gold-standard annotations that limit real-world applicability,” and that Critic-Embed sidesteps this by generating its own training signal from the refinement loop’s outcomes.

Benchmark results, with caveats

Critic-R was evaluated on four multi-hop question-answering benchmarks: HotpotQA, 2WikiMultihopQA, MuSiQue, and Bamboogle. The abstract claims “significant improvement in both retrieval quality and downstream answer accuracy” across all four.

The word “significant” is doing unspecified work here. The abstract does not report concrete numbers: no absolute or relative gains, no per-benchmark breakdowns, no confidence intervals. Whether “significant” means a 2-point gain on recall@k or a 15-point lift on answer F1 cannot be determined without reading the full paper.

The paper also does not compare Critic-R against established reranker baselines such as Cohere Rerank or BGE-reranker, nor against simpler query-expansion heuristics. Without those comparisons, the claim that this approach renders reranker upgrades unnecessary remains unverified. What can be said is that the mechanism targets a different layer of the pipeline: rather than improving how retrieved documents are scored, it improves how the query itself is constructed before scoring happens.

The latency tradeoff

Multi-round query rewriting carries a direct cost. Each refinement iteration adds at least one extra retrieval call plus one critic-model inference. In a multi-hop QA task where the agent might need to retrieve across four or five reasoning steps, and where each step might require two or three refinement rounds, the total round-trips multiply quickly.

This is not a hypothetical concern. EAPO (arXiv 2606.02132), a separate paper on agentic reinforcement learning, demonstrates that RL-trained agents tend toward tool overuse, calling external tools even for internally solvable queries. The same dynamic applies here: a critic loop that always runs, even when the first retrieval was adequate, adds latency without benefit. The paper does not state whether the critic includes a stopping condition based on confidence thresholds or retrieval quality scores, so whether this overuse risk is mitigated in practice is unclear as of June 2026.

Why the retriever, not the generator

The broader pattern Critic-R fits into is worth noting. EvoTrainer (arXiv 2606.03108) identifies that scalar rewards in agentic RL mask diverse failure modes: a single reward number does not tell you whether the agent failed because retrieval was poor, because reasoning was wrong, or because the tool call was malformed. Critic-R’s motivation parallels this observation. Single-pass retrieval scores (cosine similarity, BM25, cross-encoder relevance) similarly hide whether the retrieved context supports the specific reasoning step the agent is about to take. The critic’s natural-language feedback is an attempt to make that failure mode legible.

Meanwhile, NovelAPIBench (arXiv 2606.03657) provides complementary evidence that retrieval and fine-tuning address different failure modes in agent systems: retrieval handles volatile or external content, while tuning improves procedural integration. Critic-R’s dual-mechanism design, one inference-time loop and one fine-tuning approach, aligns with this finding, though the paper itself does not cite NovelAPIBench and the synthesis between the two is inferred rather than stated by either source.

Practical implications for RAG pipelines

For practitioners building multi-step RAG or tool-calling agents, Critic-R suggests a specific intervention point: add a lightweight critic prompt between retrieval and generation that asks whether the fetched context actually addresses the current sub-query. This does not require retraining the retriever (Critic-R-Zero works with any instruction-tuned model) and can be implemented as a wrapper around existing retrieval calls.

The costs are predictable: extra inference latency proportional to the number of refinement rounds, and additional token spend on critic evaluations. Whether those costs are worth absorbing depends on the failure mode profile of the specific pipeline. If the dominant error source is poor query formulation in multi-hop reasoning, a retrieval critic addresses it directly. If the dominant error is weak document ranking, a reranker is the cheaper fix. The paper does not provide guidance on when each failure mode dominates, so the decision remains an engineering judgment call as of June 2026.

The core insight, that retrieval quality in agentic systems benefits from introspective feedback rather than one-shot fetching, is independently plausible and consistent with the surrounding literature on agent tool-use pathologies. Whether Critic-R’s specific mechanism is the right implementation of that insight, or whether a simpler query-expansion heuristic would achieve comparable gains at lower cost, remains an open question that the paper’s abstract does not answer.

Frequently Asked Questions

Would a retrieval critic help on single-hop queries or only multi-hop reasoning?

All four benchmarks Critic-R evaluates on (HotpotQA, 2WikiMultihopQA, MuSiQue, Bamboogle) are multi-hop tasks that require evidence from multiple documents. On single-hop factoid lookups where one retrieval typically suffices, the critic loop would add latency with diminishing returns: the query is simpler and less prone to the formulation errors that compound across chained reasoning steps. The paper does not report results on single-hop datasets such as Natural Questions or TriviaQA.

How does Critic-R-Zero differ from query expansion methods like HyDE or step-back prompting?

HyDE generates a hypothetical document to anchor query embeddings, and step-back prompting abstracts the query to a broader concept before retrieving. Critic-R-Zero grounds its rewrites in the actual retrieved evidence: it evaluates what the fetched context is missing relative to the current reasoning step, then rewrites accordingly. The paper does not benchmark against HyDE, step-back prompting, or query2doc, so whether the evidence-grounded loop outperforms those cheaper expansion strategies is untested.

What happens if the critic model itself produces bad feedback?

A critic that incorrectly approves irrelevant context lets bad evidence propagate unchanged into the generator. A critic that incorrectly rejects relevant context triggers extra refinement rounds that can drift the rewritten query away from useful documents entirely. This is a compounding-error risk not addressed in the available materials: the critic’s accuracy depends on the underlying model’s ability to reason about retrieval adequacy, and no ablation tests how critic model size or capability affects downstream results.

What does a Critic-R loop add to infrastructure requirements beyond standard RAG?

You serve a second model (the critic) alongside the generator and execute multiple retrieval calls per reasoning step. In a 5-hop task averaging 2 refinement rounds per step, a baseline of 5 retrievals becomes at least 15 retrievals plus 10 critic inferences. This roughly triples retrieval load and doubles model-serving throughput requirements, which changes the cost calculus for any pipeline already constrained on embedding or inference capacity.

sources · 4 cited

  1. Critic-R: Improving Agentic Search using Instruction-tuned Retrievers with Natural Language Introspective Feedback primary accessed 2026-06-03
  2. Learning When Not to Act: Mitigating Tool Abuse in Agentic Reinforcement Learning analysis accessed 2026-06-03
  3. EvoTrainer: Co-Evolving LLM Policies and Training Harnesses for Autonomous Agentic Reinforcement Learning analysis accessed 2026-06-03
  4. Diagnosing Knowledge Gaps in LLM Tool Use: An Agentic Benchmark for Novel API Acquisition analysis accessed 2026-06-03