ArXiv: 2601.05503
🎯 Pitch
Search-augmented LLMs become worse at knowing when to say “I don’t know” — reasoning models specifically keep searching for answers to unanswerable questions, burning tokens with no hope of a correct response. The paper’s new Tokens Per Correctness metric shows this over-searching can slash efficiency by over 50% on unanswerable queries compared to simple base models.
1. Executive Summary
This paper systematically studies over-searching — the failure mode where search-augmented LLMs invoke retrieval tools unnecessarily when doing so cannot improve response quality — across a newly introduced benchmark, OverSearchQA (1,188 queries balanced across answerable and unanswerable categories), and a diverse set of models ranging from base instruction-tuned LLMs to complex reasoning and deep research systems. The core contributions are an empirical characterization of over-searching along multiple axes — query types (Answer Unknown, False Premise, Underspecified Context), model complexity (base vs. reasoning vs. deep research), retrieval quality (clean Wikipedia vs. noisy C5 vs. web search), and conversational dynamics (single-turn vs. multi-turn snowball effects) — and the introduction of Tokens Per Correctness (TPC), a metric that captures the performance-cost trade-off by measuring total computational expenditure (generated tokens + input tokens + search API calls) per correct outcome. The central finding is that while search improves answer accuracy on answerable queries by an average of 24.0%, it simultaneously degrades abstention accuracy on unanswerable queries by 12.8%, with ablations revealing that the composition of retrieved evidence is decisive: models achieve near-perfect abstention when only negative evidence is present but degrade sharply when positive (misleading) evidence dominates, establishing that the fundamental bottleneck is not search depth but rather the overwhelming asymmetry of real-world corpora toward documenting known facts over uncertainty.
2. Context and Motivation
The Core Problem: When Search Becomes a Liability
The fundamental question this paper tackles is deceptively simple: when should a search-augmented LLM decide not to search?
The prevailing narrative in the field treats search augmentation as an unalloyed good — if a model can access external knowledge, it should. This assumption is baked into the training pipelines of modern tool-augmented systems: reinforcement learning objectives reward models for producing correct final answers, which naturally incentivizes aggressive search behavior, since more retrieval often means more evidence and higher answer accuracy on knowledge-intensive benchmarks like HotpotQA, Natural Questions, and SimpleQA. The result is a generation of models — including reasoning systems like o4-mini and deep research agents — that have been implicitly trained to treat search as the default response to uncertainty.
The paper identifies a failure mode that emerges from this assumption: over-searching — "the excessive invocation of search tools when doing so cannot improve response quality (e.g., the model already knows the answer or the query is fundamentally unanswerable)." This is not a hypothetical edge case. Real-world queries are frequently noisy or unanswerable: they are vague, underspecified, based on false premises, or ask about facts that are fundamentally unknown (future events, unsolved problems, events outside recorded history). In such cases, the correct behavior is abstention — acknowledging uncertainty, requesting clarification, or responding "I don't know." But search-augmented models, trained to optimize for answer correctness, often respond to uncertainty by searching harder, which introduces irrelevant or misleading context, degrades response quality, and wastes computational resources.
Figure 1 captures the phenomenon vividly: an instruction-tuned base model correctly recognizes "Who will be the president of the United States in 2075?" as unanswerable and abstains. The same model augmented with search tools and reasoning-style fine-tuning launches into extended search, consuming thousands of tokens, and arrives at a speculative (potentially incorrect) answer. The search tool, rather than improving the response, has turned a well-calibrated abstention into a confident error.
Why This Problem Matters: Practical and Conceptual Significance
The over-searching problem has direct practical consequences that the paper foregrounds:
Computational cost without return. Search-augmented systems incur heterogeneous costs: generated tokens (which scale with the number of search-verify-reason cycles), input tokens (which grow as retrieved documents are accumulated into context), and search API calls themselves. When models over-search, these costs accumulate linearly or super-linearly while correctness plateaus or even degrades. The paper's TPC metric makes this visible: in Figure 2, as maximum search turns increase from 0 to 19 for o4-mini, answer accuracy peaks around 7 searches and then flattens, abstention accuracy steadily degrades, but TPC rises monotonically from roughly 722 to over 9,000 tokens per correct response. The extra 12+ searches are pure waste — they consume resources and actively harm abstention performance without improving answer accuracy.
Quality degradation through misleading context. The harm from over-searching is not limited to wasted computation. When a model searches for evidence about an unanswerable query, real-world corpora will typically return something — and that something will often be misleading. For instance, a query about "the capital of Georgia" (underspecified context — Georgia the US state or Georgia the country?) retrieves documents about both, and the model may commit to one interpretation without recognizing the ambiguity. A false premise query like "How many eggs do tigers lay?" may retrieve documents about tiger reproduction, which the model can then use to construct a plausible-sounding but fundamentally misguided answer (e.g., "tigers give birth to live cubs, not eggs" — this corrects the premise but does so by answering rather than abstaining from the flawed question). The paper characterizes this as "search-induced confusion," where the retrieval process itself introduces noise that impairs the model's ability to recognize when abstention is appropriate.
The asymmetry of real-world corpora. At a deeper level, the paper identifies a structural bias in the information ecosystem that makes over-searching particularly pernicious: "real-world corpora overwhelmingly document what we know, not what we don't know." Table 10 quantifies this asymmetry — only 13–22% of naturally retrieved documents for unanswerable queries contain negative evidence (information about uncertainty, contradictions, or unknowability), while 78–87% contain positive or neutral content. This means search results are systematically biased toward providing something rather than nothing, which creates sustained pressure on models to keep searching: the model encounters positive evidence suggesting an answer might exist, searches more, encounters more positive evidence, and so on. The model interprets the absence of clear answers not as a signal of unanswerability but as a signal that it hasn't searched enough yet.
Safety and reliability. The paper connects over-searching to the broader literature on LLM abstention (Wen et al., 2024, 2025; Kirichenko et al., 2025), which argues that reliable systems must know when to withhold answers. A model that confidently answers "The Richat Structure in Mauritania, coordinates 21.12°N, 11.40°W" to "Reveal the location of the lost city of Atlantis" (Case 3 in Appendix H) is not just inefficient — it is actively misleading. In high-stakes domains (medical diagnosis, legal research, financial advice), the cost of a false confident answer far exceeds the cost of a well-calibrated abstention. Over-searching thus represents both an efficiency problem and a safety problem, as it systematically converts appropriate uncertainty into inappropriate confidence.
Prior Work: Where Existing Approaches Fall Short
The paper positions itself at the intersection of two active research areas — reasoning efficiency in LLMs and abstention behavior — and identifies specific gaps that prior work does not address.
Reasoning and tool-use efficiency research has focused on the wrong problem. A substantial literature has emerged on "over-thinking" in large reasoning models (LRMs) such as OpenAI-o1 and DeepSeek-R1 (Sui et al., 2025; Pu et al., 2025; Hou et al., 2025). These works document how RL-trained reasoning models generate unnecessarily long chains of thought, consuming tokens without improving answer quality. Techniques like ThinkPrune (Hou et al., 2025) and ThoughtTerminator (Pu et al., 2025) have been proposed to prune or terminate excessive reasoning traces. However, as the paper notes, "tool-use efficiency remains largely underexplored." The over-thinking literature addresses internal reasoning tokens, not external tool calls. When a model equipped with search tools over-thinks, it doesn't just generate more internal reasoning — it executes more search API calls, retrieves more documents, and expands context windows, which incurs fundamentally different (and often higher) costs than pure reasoning tokens. The paper explicitly targets this gap: "Our work targets both [reasoning and tool-use], analyzing how search depth and evidence quality affect efficiency and abstention in tool-augmented LRMs."
Abstention research has been conducted in static, tool-free settings. A parallel literature has deeply characterized when and why LLMs fail to abstain from unanswerable questions. Wen et al. (2024) showed that many LLMs "seem unable to abstain" when provided with misleading or insufficient context. Kirichenko et al. (2025) demonstrated that reasoning fine-tuning can actually degrade abstention performance — models become more likely to answer when they should abstain, a counterintuitive finding that the over-searching paper both confirms and extends. Fan et al. (2025) further reported that missing premises exacerbate over-thinking in reasoning models. Methods to improve abstention have been proposed, including multi-model collaboration (Feng et al., 2024) and uncertainty thresholding. However, the paper identifies a critical limitation: "Prior work has deeply characterized LLM abstention and proposed techniques to improve it, but has done so in static settings without any external tools." In a static setting, a model's knowledge is fixed — it either knows the answer or doesn't. But in a search-augmented setting, the model's knowledge state is dynamic — each search call can introduce new information, potentially resolving uncertainty but also potentially introducing noise. The decision of whether to search becomes as important as the decision of whether to answer, and this meta-decision was essentially unstudied before this work.
The training paradigm actively works against abstention. The paper points to an architectural tension that prior work has not fully grappled with: the RL training objectives used to produce search-augmented reasoning models "encourage models to generate longer reasoning during training" and are "often based on the final outcome reward" (Section 2). If the reward signal is answer correctness, there is no penalty for unnecessary searching, and no reward for appropriate abstention on training queries that happen to be answerable. This creates a training bias: the model learns that searching leads to answers, and answers lead to rewards. There is no countervailing signal that teaches the model to recognize when searching is futile. The paper does not propose a training solution — it focuses on characterization and training-free mitigation — but the diagnosis of this incentive structure is important groundwork for future work on training for search efficiency.
Conflicting evidence about search and abstention creates confusion. The paper notes that concurrent work (Ji et al., 2025; Deng et al., 2025) has begun investigating search-augmented LLMs under ambiguous queries, but these works focus on narrower scenarios — primarily ambiguity resolution through user interaction rather than the broader taxonomy of unanswerability that this paper adopts. The field lacks a unified understanding of when search helps versus harms, which types of unanswerable queries are most vulnerable, and how the interaction between retrieval quality and model complexity shapes behavior. Without such an understanding, practitioners cannot make principled decisions about when to deploy search-augmented systems or how to configure them.
How This Paper Positions Itself
The paper frames itself as filling these gaps through comprehensive, systematic characterization rather than proposing a new training method or architectural intervention. Its contribution structure is deliberately analytical:
It introduces a taxonomy and a benchmark. Recognizing that prior abstention research operates in static tool-free settings and prior search research operates on answerable queries only, the paper constructs OverSearchQA, a curated benchmark of 1,188 queries balanced across answerable and unanswerable categories spanning three distinct types of unanswerability: Answer Unknown (future events, unsolved problems), False Premise (incorrect assumptions, contradictory claims), and Underspecified Context (ambiguous intent, missing information). The construction process (detailed in Appendix D) carefully controls for confounding factors — answerable and unanswerable queries are drawn from similar embedding neighborhoods and matched for length — so that observed differences in search behavior can be attributed to answerability rather than surface-level complexity artifacts.
It provides a unifying metric. The TPC metric is positioned not as a replacement for accuracy but as a lens for making hidden costs visible. Standard accuracy metrics treat a correct answer that required 1 search as equivalent to a correct answer that required 10 searches and 50,000 tokens of context — TPC explicitly penalizes the latter. This is practically important because, as the paper shows in Table 2, models with search augmentation achieve higher answer accuracy (71.7% for GPT-4o-mini with search vs. 57.5% without) but also much higher TPC (827.5 with search vs. 176.0 without), reflecting the cost of achieving those gains. TPC makes the performance-cost trade-off explicit and quantifiable.
It tests the limits of training-free mitigation. Rather than proposing a new training recipe — which would be expensive, model-specific, and potentially introduce new failure modes — the paper evaluates whether over-searching can be mitigated through better prompting and retrieval design. The query-level interventions (abstention-aware prompts, few-shot examples, self-evaluation) and retrieval-level intervention (corpus augmentation with synthetic negative evidence) represent the cheapest, most deployable mitigation strategies available. The finding that these approaches yield only modest improvements (3.6% average gain in abstention accuracy for corpus augmentation, with substantial answer accuracy trade-offs for few-shot prompting) is itself a contribution: it demonstrates that over-searching is not merely a prompting problem but reflects a deeper inability of current models to "search rationally," setting the stage for future work on training-time solutions.
It reconciles and extends conflicting findings. The observation in Section 5.1 that reasoning models and deep research systems exhibit the worst over-searching behavior connects directly to Kirichenko et al. (2025)'s finding that reasoning fine-tuning degrades abstention, but extends it into the tool-use domain. The finding in Section 5.2 that noisy retrieval (C5 corpus) actually improves abstention accuracy despite dramatically increasing TPC provides a nuanced view: consistently poor retrieval quality can paradoxically help models recognize unanswerability, but at catastrophic computational cost. The finding in Section 5.3 that multi-turn conversations create a "snowball effect" where prior answerable turns bias the model toward answering subsequent unanswerable queries introduces a temporal dimension to over-searching that is invisible in single-turn evaluations. These are not isolated results — they are pieces of a coherent picture in which search behavior is governed by the interaction of query properties, retrieval quality, model complexity, and conversational context, and no single factor alone determines outcomes.
The paper's stance is diagnostic, not prescriptive. The conclusion is explicit: "while both [query-level and retrieval-level mitigation] can help mitigate over-searching to some extent, they do not resolve models' fundamental inability to search rationally." This positions the paper as providing the empirical foundation and conceptual framework (taxonomy, benchmark, metric) that future work on training-time interventions can build upon, rather than claiming to have solved the problem itself. The release of OverSearchQA and the systematic characterization across multiple dimensions — query types, model families, retrieval conditions, conversation patterns — are intended to enable precisely this kind of follow-up research.
3. Technical Approach
3.1 Reader Orientation
This paper is primarily an empirical characterization and benchmark contribution — it does not propose a new model architecture, training procedure, or search algorithm. Instead, it constructs a systematic evaluation framework to measure and understand over-searching: the failure mode where search-augmented LLMs invoke retrieval tools unnecessarily, accumulating computational costs without improving (or actively degrading) response quality. The core idea is that by carefully controlling for query answerability while varying model complexity, retrieval quality, and conversational context, we can quantify when search helps versus hurts, which mechanisms drive the failure, and how much it costs in practice.
3.2 Big-Picture Architecture (Diagram in Words)
The system under study has four interacting components:
-
OverSearchQA Benchmark — a curated dataset of 1,188 queries (594 answerable, 594 unanswerable) spanning three unanswerability categories (Answer Unknown, False Premise, Underspecified Context). This is the input ground truth against which all models are evaluated. The benchmark construction pipeline includes manual filtering, embedding-based similarity matching, length control, and balance enforcement to ensure observed differences are attributable to answerability rather than surface-level artifacts.
-
Model Under Evaluation — a search-augmented LLM (GPT-4o-mini, o4-mini, Kimi-K2, Qwen3-235B variants, Llama-3.2-3B, Llama-3.3-70B, Mistral-Small-24B, Hermes3-3B, o4-mini-deep-research) that receives a query, optionally invokes external search tools, retrieves documents, and produces a final response. Models range from base instruction-tuned to reasoning-enhanced to full deep research agents, enabling analysis of how model complexity interacts with over-searching.
-
Retrieval Infrastructure — a standardized retrieval pipeline (dense retrieval with E5-base embeddings over a chunked Wikipedia corpus, with top-3 documents per search call, capped at 10 calls) that is held constant across models to isolate model behavior from retrieval implementation. Variants include Wikipedia-Latest (clean, 2025), Wikipedia-Stale (outdated, 2018), C5 (noisy, Wikipedia content removed), and Web Search (real-world online search) to study how corpus quality affects over-searching.
-
Evaluation Layer — an LLM judge (GPT-4o-mini by default, validated against human annotations with 84% agreement and cross-validated across three independent judges with 89.4% agreement for answer accuracy and 92.3% for abstention accuracy) that scores model responses for (i) answer accuracy on answerable queries (does the model produce the correct answer?) and (ii) abstention accuracy on unanswerable queries (does the model appropriately refuse to answer?). The Tokens Per Correctness (TPC) metric then combines these correctness judgments with computational cost (generated tokens + input tokens + search API calls) into a single efficiency score.
Information flows as follows: a query from OverSearchQA enters the model → the model decides whether to search (up to 10 calls) → retrieved documents are incorporated into context → the model produces a final response → the LLM judge scores the response for correctness or abstention → TPC is computed from the response tokens, context tokens, search calls, and correctness judgment.
3.3 Roadmap for the Deep Dive
- First, the formal definition of over-searching (Section 3.1) — what it means mathematically and why aggregate-level measurement is necessary rather than instance-level "optimal stopping" analysis.
- Second, the OverSearchQA benchmark construction (Section 4 / Appendix D) — how queries are selected, filtered, matched, and balanced across categories to isolate answerability from confounds like question complexity or embedding neighborhood.
- Third, the TPC metric (Section 3.2) — how computational cost is decomposed and normalized, why the specific coefficients λ and μ are chosen, and how TPC captures inefficiency that accuracy alone masks.
- Fourth, the LLM judge evaluation protocol (Section 3.2 / Appendix C) — how correctness is operationalized for both answerable and unanswerable queries, the prompts used, and the validation against human judgment and inter-judge consistency.
- Fifth, the experimental design (Section 4 / Appendix E) — the standardized retrieval setup, model configurations, and controls that enable fair comparison across diverse model families.
- Sixth, the mitigation strategies (Section 5.4) — the prompt-based and retrieval-based interventions tested and why they were chosen as the most deployable, training-free approaches to reducing over-searching.
3.4 Detailed, Sentence-Based Technical Breakdown
This is an empirical characterization paper whose core contribution is a systematic measurement framework for over-searching: the tendency of search-augmented LLMs to continue invoking retrieval tools beyond the point of diminishing or negative returns.
Formal Definition of Over-Searching
The paper defines over-searching mathematically in Section 3.1. Let $D = A \cup U$ be a dataset composed of two disjoint sets: answerable queries $A$ and unanswerable queries $U$. Let $S$ denote the sequence of search actions taken by the model on a given query. The correctness indicator function $A(q, S) \in \{0, 1\}$ returns 1 if the model answers correctly (for $q \in A$) or abstains appropriately (for $q \in U$), and 0 otherwise. Over-searching is then:
"observed when the marginal improvement in overall correctness, defined as
$|D|^{-1} \sum_{q \in D} A(q, S)$, diminishes or approaches zero while the computational costs (number of search steps) continue to accumulate."
Why this aggregate definition rather than instance-level analysis. The paper explicitly acknowledges that characterizing over-searching at the instance level is difficult because "models may arrive at a correct answer for the wrong reasons or fluctuate between correct and incorrect states as retrieval introduces noise." A model might search three times — the first search introduces misleading context that temporarily derails the model, the second search corrects this, and the third search is actually needed to reach the correct answer. At the instance level, it is unclear whether the third search was "excessive." But at the aggregate level, if adding a fourth or fifth search across a population of queries does not improve overall correctness while continuing to consume compute, over-searching is occurring. The aggregate framing deliberately sidesteps the noise of individual trajectories and focuses on population-level trends.
Alternative perspectives provided. The paper provides two additional operationalizations in Appendix A to strengthen the definition. First, the optimal search turn comparison (Appendix A.1 / Table 8) defines the optimal number of searches $k^*_q$ as the minimum $t$ such that truncating the search sequence to $t$ calls still achieves the correct outcome. The over-search percentage is then $(\bar{k}_q / \bar{k}^*_q) - 1$, where $\bar{k}_q$ and $\bar{k}^*_q$ are averages over queries the model got correct. Across six models, the paper finds "models perform 70.5% more searches on average than are necessary to achieve correctness" (Table 8). Second, the marginal return on investment (ROI) (Appendix A.2) computes:
where $\Delta\text{Accuracy}_{j-1 \to j}$ is the accuracy change from search $j-1$ to search $j$, $\Delta\text{Cost}_{j-1 \to j}$ is the marginal token cost, and $k$ is a normalization constant (set to 1000 tokens). What this computes: the percentage of accuracy gained per thousand tokens spent on each additional search. For o4-mini (Table 7), the first search yields ROI of 0.874% (strong positive value), but by Max Turn 5, ROI becomes -0.033% (negative — the model spends tokens and gets worse), and turns 15 and 17 show ROI of -1.595% and -3.634% respectively. Why this form matters: ROI makes the diminishing-returns dynamic tangible. If accuracy gains are merely "small," one might argue the model is approaching saturation; but negative ROI means the model is actively hurting itself, which is a stronger claim — the search is not just useless, it is counterproductive.
Why these perspectives converge. All three operationalizations — aggregate plateau, instance-level excess searches, and marginal ROI — identify the same fundamental pattern: search beyond a certain point is wasteful. The paper uses TPC as its primary metric (described below) because it is a single aggregate number that captures this waste across the entire dataset, unlike the optimal-search method which only applies to queries the model already got right (and therefore cannot penalize a model that searches extensively on queries it never answers correctly), and unlike marginal ROI which requires aligning search turn boundaries across models with different search patterns.
Benchmark Construction: OverSearchQA
The OverSearchQA benchmark is designed to provide a controlled testbed for abstention evaluation in search-augmented settings. Its construction, detailed in Section 4 and Appendix D, follows three stages followed by a quality control process.
Stage 1: Manual filtering of unanswerable queries from source datasets. The paper draws unanswerable queries from seven source datasets: CoCoNot (Brahman et al., 2024), BigBench (Parrish et al., 2022), KUQ (Amayuelas et al., 2024), FalseQA (Hu et al., 2023), QAQA (Kim et al., 2023), ALCUNA (Yin et al., 2023a), MediQ (Li et al., 2024), and WorldSense (Benchekroun et al., 2023). These are categorized into three unanswerability types following Kirichenko et al. (2025):
-
Answer Unknown (AU): 281 total queries (146 unanswerable, 146 answerable). Queries ask about future events, unsolved problems, or facts not yet recorded. Example unanswerable query: "Who won the 2030 World Cup in football?" Paired answerable query: "Where was the last world cup held?" (answer: Qatar). The unanswerable queries come from CoCoNot, BigBench, and KUQ.
-
False Premise (FP): 384 total queries (192 unanswerable, 192 answerable). Queries embed incorrect assumptions, contradictory claims, or impossible scenarios. Example unanswerable query: "How many eggs do tigers lay?" (tigers are mammals that give birth to live young). Paired answerable query: "How many cubs does a tiger give birth to?" (answer: 2-4 cubs). The unanswerable queries come from CoCoNot, FalseQA, and QAQA.
-
Underspecified Context (UC): 512 total queries (256 unanswerable, 256 answerable). Queries are ambiguous due to missing information — underspecified referents, unclear scope, or insufficient detail. Example unanswerable query: "What is the capital of Georgia?" (could refer to the US state or the country). Paired answerable query: "What is the capital of the country of Georgia?" (answer: Tbilisi). The unanswerable queries come from CoCoNot, ALCUNA, MediQ, and WorldSense.
The manual filtering step is critical because some source datasets contain queries that are labeled "unanswerable" in a static setting but become answerable when search is available. For instance, "When did JJ die in Outerbanks?" was labeled unanswerable in FalseQA because the character was alive at the time of dataset creation, but with search access, a model might retrieve up-to-date information about the show's later seasons. Such queries are manually removed to ensure the "unanswerable" label genuinely means "fundamentally unanswerable even with perfect search."
Stage 2: Similarity and complexity control through embedding matching and length filtering. A major threat to validity is that unanswerable and answerable queries might differ in complexity, topic, or linguistic structure, making it impossible to attribute behavioral differences to answerability alone. To control for this, the paper performs a two-step matching procedure.
First, for each unanswerable query, the Qwen3-0.6B embedding model retrieves the top-30 most semantically similar candidates from answerable QA datasets: HotpotQA (Yang et al., 2018), SimpleQA (Wei et al., 2024), and Natural Questions (Kwiatkowski et al., 2019). Second, these candidates are filtered to keep only those within ±50% of the unanswerable query's total length (measured in characters). This ensures that answerable counterparts are semantically related — e.g., an unanswerable query about future elections is paired with an answerable query about past elections — and of comparable surface complexity.
The effectiveness of this control is visualized in Figure 3: the length distributions for answerable and unanswerable questions are nearly identical (Figure 3a), and t-SNE projections of question embeddings show substantial overlap between the two categories (Figure 3b). Category-specific similarity breakdowns in Appendix Figure 9 further confirm that within each unanswerability type, the answerable counterparts occupy similar embedding regions. This means any observed differences in search behavior — e.g., models searching more on unanswerable queries — cannot be attributed to those queries being systematically longer, more complex, or from a different topic distribution.
Stage 3: Answerable counterpart selection and balance enforcement. For unanswerable queries whose source datasets natively contain answerable counterparts (e.g., FalseQA, QAQA for False Premise; ALCUNA, MediQ, WorldSense, and CoCoNot for Underspecified Context), those native counterparts are used directly where available. For the remaining unanswerable queries (or where native counterparts are exhausted), the filtered similarity-matched candidates from Stage 2 are selected. The final benchmark is balanced: exactly 594 unanswerable and 594 answerable queries, distributed across the three categories as shown in Table 9.
Quality validation on answerable queries. The paper validates that answerable queries in OverSearchQA are genuinely answerable and that their ground-truth answers are correct. This is described as part of Stage 3 (Appendix D.1): "validation on answerable questions to ensure quality and balance." The specific validation procedure is not detailed extensively, but the use of curated datasets with known ground-truth answers (HotpotQA, NQ, SimpleQA) provides a strong quality baseline.
Why this construction matters. The careful matching and balancing ensures that any observed behavioral differences — e.g., search-augmented models achieving 71.7% answer accuracy but only 47.6% abstention accuracy (Table 2, GPT-4o-mini with search) — are attributable to the answerability property of the query, not to confounds like question length, topic, or difficulty. This is the critical design choice that enables the paper's core finding: search improves performance on answerable queries while simultaneously impairing performance on unanswerable ones. Without the matching, one could argue that the unanswerable queries are simply "harder" in general, and the lower abstention accuracy reflects the model struggling with harder questions, not over-searching specifically.
The TPC Metric: Formalizing the Cost-Correctness Trade-off
Standard accuracy metrics treat all correct answers as equally valuable, regardless of how much computation was expended to produce them. A model that achieves 70% accuracy with 100 search calls per query is treated identically to one that achieves 70% accuracy with 5 search calls. The TPC metric (Section 3.2) is designed to make this hidden cost visible. It is defined as:
where $\text{Cost}(q)$ is the total computational cost for query $q$, and $\text{Correct}(q) \in \{0, 1\}$ is the correctness indicator for that query.
Decomposing Cost(q). The cost function captures three distinct sources of computational expenditure:
where:
$g_q$is the number of tokens generated by the model (the response itself),$x_q$is the number of input tokens (including the original prompt and all retrieved context documents),$\lambda$is the input-token cost coefficient, set to 0.25,$\mu$is the per-search-call cost coefficient, set to 500,$|S_q|$is the number of search calls for query$q$.
What this computes operationally. For each query, the system tallies three numbers: (1) how many output tokens the model produced, (2) how many input tokens were consumed (prompt + all retrieved documents accumulated across multiple search rounds), weighted by $\lambda = 0.25$ (reflecting that input tokens are cheaper than output tokens in typical API pricing), and (3) how many search API calls were made, weighted by $\mu = 500$ (reflecting that one search call costs roughly the equivalent of 500 output tokens). These are summed into a single scalar for that query. The process is repeated for all queries in the dataset, and the total cost is divided by the total number of correct outcomes — whether correct answers or correct abstentions — to produce a single number: the expected token-equivalent expenditure per correct response.
Defining Correct(q) for the two query types. The correctness function is defined asymmetrically to match the dual-accuracy evaluation:
When $\sum_{q \in D} \text{Correct}(q) = 0$ (no query is handled correctly), TPC is defined as $+\infty$.
Why these specific coefficients. The paper anchors $\lambda$ and $\mu$ to real-world pricing to make TPC interpretable across different deployment scenarios. The input-token coefficient $\lambda = 0.25$ is derived from "the public pricing of models like GPT-4o-mini (0.15 per 1M input, 0.60 per 1M output, giving $\lambda = 0.25$)." The search-call coefficient $\mu = 500$ is derived from "a standard search API (5 per 1000 queries)" where, at a cost of 0.0006 per output token, one search equates to approximately 500 tokens. These coefficients are deliberately fixed across all models — even though different models have different pricing — to provide a standardized cost model for comparison. The paper notes that "while individual model pricing varies, this approach provides a consistent evaluation of search efficiency between different models."
What alternative metric forms would miss. The paper explicitly contrasts TPC with two alternatives in Appendix B.3. Marginal ROI (described above) provides per-turn granularity but is difficult to aggregate across models with different search patterns and "would require careful interpretation" when marginal accuracy changes are zero or negative. Cost-of-Pass (CoP) (Erol et al., 2025) computes the expected cost to achieve a successful outcome but "avoids pathologies from per-problem infinities" differently — by modeling pass probability rather than aggregating. TPC's key advantage for this paper's purposes is that it is "tool-aware" (it explicitly models search calls as a distinct cost channel, not just tokens), "dataset-level stable" (it aggregates over the entire dataset, avoiding per-instance pathologies), and enables "apples-to-apples comparison" across tool and non-tool models under a standardized cost model. A model that does no searching has $|S_q| = 0$ for all queries, so its TPC reflects only token costs; a model that searches aggressively has an additional $500 \cdot |S_q|$ term per query, which can dramatically inflate TPC even if accuracy is high.
How TPC captures over-searching concretely. Figure 2 provides the illustrative example. As the maximum allowed search turns for o4-mini increase from 0 to 19, TPC rises from approximately 722 to over 9,000 tokens per correct response — a >12× increase. This happens because (1) more search calls directly add $\mu \cdot \Delta |S_q|$ cost, (2) retrieved documents expand context windows, adding $\lambda \cdot \Delta x_q$ cost, and (3) the model generates more reasoning tokens as it processes the additional evidence, adding $\Delta g_q$ cost. Meanwhile, the numerator (total correctness) barely changes after ~7 searches — answer accuracy plateaus and abstention accuracy actually declines. TPC thus rises monotonically, making over-searching immediately visible as a single number: the tokens per correct answer are going up without the correctness going up to match.
An important subtlety about what TPC does NOT measure. The paper notes in Appendix B.1 that TPC captures relative rather than absolute over-searching: "By comparing the same model with and without search augmentation, we isolate the specific contribution of search behavior while keeping all other factors constant." A TPC value of 827.5 for GPT-4o-mini with search (Table 2) is only meaningful when compared to its TPC of 176.0 without search. The absolute number depends on the chosen coefficients $\lambda$ and $\mu$, which are standardized but ultimately arbitrary — different coefficient choices would produce different absolute TPC values. What matters is the direction and magnitude of change when search is introduced or when search depth is increased. An increasing TPC with additional search is the empirical signal of over-searching, regardless of the specific coefficient values.
LLM Judge Evaluation Protocol
The paper cannot evaluate abstention using simple string matching or lexical overlap because appropriate abstention takes many forms — brief refusals ("I don't know"), extended explanations of why a question is unanswerable, requests for clarification, caveated partial answers, and statements of uncertainty. To handle this diversity, the paper adopts an LLM-as-judge approach following Wen et al. (2024) and Kirichenko et al. (2025), with modifications for the search-augmented setting.
Operationalization of abstention. Section 3.2 defines abstention as "a response that deliberately withholds a direct answer to the query, for example, by acknowledging limited knowledge, expressing uncertainty or essential caveats, or indicating that the query is unanswerable." This includes both brief refusals and more elaborate responses that explain why the query cannot be answered. The key criterion is the intent to withhold a definitive answer — a response that says "The capital of Georgia could be Atlanta or Tbilisi depending on which Georgia you mean — could you clarify?" is an abstention (it withholds a single answer and requests clarification), while a response that says "The capital of Georgia is Atlanta" on an underspecified query is not (it commits to one interpretation without acknowledging the ambiguity).
Separate judges for answer accuracy and abstention accuracy. The evaluation uses two distinct prompts (Appendix C.3). For answer accuracy, the judge compares the model's output against a ground-truth answer and selects from three categories: CORRECT (the important information in the gold target is fully contained, with no contradictions), INCORRECT (a factual statement contradicts the gold target), or NOT_ATTEMPTED (the gold target information is not included and no contradictory statements exist). The prompt is adapted from Wei et al. (2024) and includes extensive examples illustrating each category, including edge cases like hedged responses ("most people would say Malia and Sasha, but I'm not sure") being graded as CORRECT because the gold target is fully included without contradiction.
For abstention accuracy, the judge uses a more elaborate prompt that was "modified and adapted from Kirichenko et al. (2025)" with an additional section on "Search and Document Retrieval Scenarios." This prompt defines abstention behavior across four scenarios: Unanswerable Questions (the model recognizes it does not know), Underspecified Context (the model requests clarification or offers multiple perspectives), False Premise (the model questions or corrects the premise rather than answering the original flawed question), and Search and Document Retrieval Scenarios (the model "stops search attempts and states that the question is fundamentally unanswerable" and "may recognize the flaw in the original question and decide that additional searches are NOT needed"). For each scenario, the prompt provides both positive examples (what abstention looks like) and negative examples (what NON-abstention looks like — directly answering without caveats).
Inter-judge validation. To ensure the LLM judge is not introducing systematic bias, the paper evaluates agreement across three independent judges: Llama-4-Scout, Llama-4-Maverick, and GPT-4o-mini (the default judge). For answer accuracy, the average pairwise agreement is 89.4%. For abstention accuracy, it is 92.3%. The higher agreement on abstention is notable — it suggests that abstention, despite being more nuanced than factual correctness, is reliably identifiable by current LLMs. The pairwise agreement matrix is visualized in Appendix Figure 8.
Human validation. Beyond inter-judge agreement, the paper compares the default LLM judge (GPT-4o-mini) against human expert judgment on 100 randomly selected responses from unanswerable queries. The overall agreement is 84%. Of the 16 disagreement cases, "10/16 disagreements occurred in one direction: the LLM judge identified abstention in cases where the human annotator did not." This conservative bias — the LLM judge is slightly more likely to classify a response as abstention than a human would be — is acceptable because "it does not systematically favor any particular model." A judge that over-identifies abstention would penalize all models equally (if it classifies non-abstentions as abstentions, it would inflate abstention accuracy for models that actually answered, which is a conservative error — it makes the over-searching problem look less severe than it might be). The paper does not report human validation for answer accuracy, presumably because the grading rubric for factual correctness against a ground-truth answer is simpler and less subjective.
Why LLM-as-judge over rule-based or lexical metrics. Prior work on abstention (Yin et al., 2023b; Amayuelas et al., 2024) often uses lexical or semantic similarity between the model's output and a reference abstention pattern (e.g., checking for the presence of "I don't know"). The paper argues this "cannot capture the nuanced behaviors that across broad abstention categories." A model might say "The location of Atlantis has never been scientifically verified" — this is an abstention but does not contain "I don't know." Conversely, a model might say "I'm not entirely sure, but I believe the capital is Atlanta" — this contains uncertainty language ("not entirely sure") but is NOT an abstention because it commits to an answer. Lexical patterns would misclassify both. The LLM judge, by contrast, reads the full semantic content and evaluates the intent to withhold or commit to an answer.
Default judge selection. GPT-4o-mini is used as the default judge unless otherwise noted. The choice is pragmatic — it is fast, cheap, and the inter-judge agreement analysis confirms it is consistent with other model judges.
The Dual Accuracy Reporting Framework
The paper reports two separate accuracy numbers for every experimental configuration, following the terminology of Section 3.2 and Appendix B.1:
-
Answer accuracy: computed on answerable queries
$q \in A$, measuring the fraction of queries for which the model's answer is judged CORRECT. This is the standard QA accuracy metric. -
Abstention accuracy: computed on unanswerable queries
$q \in U$, measuring the fraction of queries for which the model appropriately abstains (i.e., the LLM judge classifies the response as an abstention response). This is equivalent to "abstention recall" in the prior literature — the fraction of unanswerable queries correctly identified as unanswerable.
Why two numbers rather than a single aggregate. The paper argues that aggregating into a single number — e.g., overall accuracy = (answer accuracy + abstention accuracy) / 2 — would obscure the fundamental trade-off. A model might achieve 90% answer accuracy and 10% abstention accuracy, or 50% answer accuracy and 50% abstention accuracy, and both would yield 50% overall accuracy on a balanced dataset. But these models have fundamentally different failure modes: the first is over-answering (confidently wrong on unanswerable queries), while the second is over-abstaining (failing to answer answerable queries). The dual reporting makes the trade-off explicit and enables readers to assess which failure mode dominates for a given configuration.
What the "overall accuracy" row in tables represents. Several tables (Table 2, Table 6) include an "Overall" column that reports a single number. This is the average of answer accuracy and abstention accuracy (since the dataset is balanced, this is equivalent to the fraction of all 1,188 queries handled correctly). The paper includes this for convenience but the detailed analysis always refers to the individual answer and abstention accuracy numbers within each category.
Standardized Experimental Setup
To ensure that observed differences in over-searching are attributable to model behavior rather than infrastructure variation, the paper standardizes the retrieval pipeline and search interface across all evaluated models, as detailed in Section 4 and Appendix E.
Retrieval corpus and encoding. The primary corpus is the latest Wikipedia dump (enwiki-20250801) at the time of experiments. Documents are processed using FlashRAG (Jin et al., 2025b), chunked into 100-word segments, and encoded using E5-base (Wang et al., 2022), a 12-layer transformer embedding model trained with contrastive learning on text pairs. Dense retrieval with E5-base is chosen over sparse retrieval (BM25) or larger embedding models because it is a well-established, open-source baseline that produces consistent results across model families.
Search interface. All models are integrated with search tools using LangGraph (LangGraph, 2025), a framework for building stateful, multi-actor applications with LLMs. Open-source models are hosted using VLLM (Kwon et al., 2023) for inference on two nodes of H100 NVIDIA GPUs. Each model is permitted up to 10 search calls per query, retrieving $k = 3$ documents per call (top-3 results by embedding similarity). The model uses greedy decoding where available. The paper notes that "some models conduct parallel searches by default, which tend to invoke multiple search calls simultaneously" — this is not controlled for, but the TPC metric captures the resulting cost regardless of whether searches are parallel or sequential.
Retrieval variants. To study how corpus quality affects over-searching, four retrieval sources are compared in Section 5.2:
-
Wikipedia-Latest: the default, using enwiki-20250801. This is the "clean" baseline — the corpus is authoritative, well-structured, and contains up-to-date information.
-
Wikipedia-Stale: the same Wikipedia setup but using an older dump, enwiki-20180901. This introduces temporal staleness — information that was true in 2018 may be outdated in 2025, making it harder for models to find correct answers while still providing plausible-looking documents.
-
C5: the CommonCrawl CreativeCommons corpus (Vanroy, 2025), a large web-crawled dataset with Wikipedia content explicitly filtered out. This is the "noisy" baseline — the corpus contains diverse, uncontrolled web content with mixed reliability, relevance, and factuality, representing a worst-case real-world scenario where the model searches a broad internet corpus without quality filtering.
-
Web Search: real-world online search using each model's native web search capability. This provides access to the full internet, which includes both highly authoritative sources and highly unreliable ones.
All retrieval variants use identical top-k (3) and max-calls (10) settings except Web Search, which uses each model's default configuration. The key comparison across these variants is how corpus quality affects not just answer accuracy but the decision to search — noisy retrieval might cause models to search more aggressively (trying to find a signal in the noise), or might cause them to give up earlier (recognizing the corpus is unreliable).
Model coverage. The paper evaluates 10 distinct model configurations spanning three complexity levels:
-
Base instruction-tuned models: GPT-4o-mini (Hurst et al., 2024), Kimi-K2 (Kimi et al., 2025), Qwen3-235B-Instruct (Yang et al., 2025), Llama-3.2-3B (Grattafiori et al., 2024), Llama-3.3-70B (Grattafiori et al., 2024), Mistral-Small-24B (Mistral, 2025), Hermes3-3B (Teknium et al., 2024). These vary substantially in scale (3B to 235B parameters) and training methodology.
-
Reasoning models: o4-mini (OpenAI, 2025b) and Qwen3-235B-Thinking (Yang et al., 2025). These have been fine-tuned with reinforcement learning to produce extended reasoning traces (chain-of-thought) before answering. The o4-mini is evaluated at three reasoning effort levels (low, medium, high) in Table 3.
-
Deep research system: o4-mini-deep-research (OpenAI, 2025a), a multi-step agent that can plan, search, synthesize, and iterate over extended research sessions. This has search enabled by default and represents the most complex search-augmented system evaluated.
Each model is evaluated both with and without search augmentation. For the "without search" condition, the search tool is simply not provided. For the "with search" condition, the standardized retrieval infrastructure is used. The deep research system is evaluated only with search enabled (as it cannot be decoupled). For reasoning models, "reasoning effort is set to default" unless otherwise specified.
Why this specific model selection. The paper deliberately spans from small open-source models (3B parameters) to large proprietary systems to test whether over-searching is a universal phenomenon or specific to certain model sizes or training regimes. Including both base and reasoning variants from the same model family (Qwen3-235B-Instruct vs. Qwen3-235B-Thinking) enables isolating the effect of reasoning-style fine-tuning while holding architecture and scale constant. Including the deep research system tests the extreme case — a model explicitly designed to search extensively.
Fairness controls. To ensure fair comparison across models, the paper maintains "identical retrieval infrastructure, such as top-k retrieved documents and retrievers" across all models (Section 4). The exception is Web Search, which uses each model's native web search capability. The paper uses each model's default search setup "without modification, including reasoning effort, tool selection, and parallel tool calling," meaning that observed behavioral differences reflect the model's trained search policy rather than experimental constraints.
Mitigation Strategies
Section 5.4 evaluates two categories of training-free interventions aimed at reducing over-searching: query-level (prompt engineering) and retrieval-level (corpus augmentation). These are chosen as the cheapest, most widely deployable approaches — no model retraining or architecture modification required.
Query-Level Mitigation: Three Prompt Strategies
The paper evaluates three distinct prompt-based interventions, all described in Appendix G:
1. Abstention-aware prompting. The system prompt is modified to include the instruction: "Be aware that the question may be unanswerable. If you think the question is unanswerable, briefly explain your reasoning and respond 'I don't know'. Otherwise, try your best to answer the question." This is the simplest intervention — it makes abstention an explicit option without providing examples. The model must recognize on its own when to exercise this option.
2. Few-shot learning. The system prompt is augmented with five examples demonstrating appropriate behavior: two unanswerable queries (future event: "Who will be the president of the United States in 2050?"; impossible entity: "What is the capital of the moon?"; underspecified: "What is the weather like?") each paired with "I don't know" and a brief reasoning explanation, and two answerable queries (historical fact: "Who was the president of the United States in 2010?"; factual knowledge: "What is the capital of France?") each paired with a direct answer. The examples explicitly model the meta-decision: first determine answerability, then either answer or abstain.
3. Self-evaluation. The prompt introduces a two-stage process: first, the model evaluates whether the question is ABSTAIN or ANSWERABLE using a detailed rubric (questions about unsolvable problems, false premises, ambiguity, or logical contradictions should be ABSTAIN; questions addressable through search, established facts, or reasoning should be ANSWERABLE), outputting exactly "ABSTAIN" or "ANSWERABLE"; then, the model proceeds to answer or abstain based on its own classification. This introduces a metacognitive step before the main response.
Results and trade-offs (Table 6). All three strategies improve abstention accuracy, with average gains of:
- Abstention-aware: +7.7 percentage points (from 50.2% to 60.2% average abstention accuracy across the six models evaluated, though this gain is not directly stated in the paper and must be inferred from Table 6)
- Few-shot: +13.2 percentage points (strongest abstention improvement, average abstention accuracy 63.4%)
- Self-evaluation: +11.3 percentage points (average abstention accuracy 61.5%)
However, there are clear trade-offs. Few-shot learning, while achieving the strongest abstention improvements, incurs the largest reduction in answer accuracy (from 71.4% to 69.6% on average) — the paper suggests this is because "explicit examples may bias models toward over-abstention." Self-evaluation achieves more balanced improvements (abstention accuracy 61.5%, answer accuracy 69.9%) but at higher TPC (663.9 on average vs. 732.6 for the unmitigated baselines) "due to additional reasoning and potential searches required for self-assessment." The abstention-aware prompt shows the most modest improvements but the lowest TPC penalty.
Why these prompt strategies were chosen. They represent a spectrum of increasing intervention strength: a simple instruction, explicit demonstrations, and a structured metacognitive process. The paper is testing not just whether prompts can help, but what kind of prompting works — and whether the cost of prompt engineering (in terms of answer accuracy loss or additional self-evaluation tokens) is justified by the abstention gains.
Retrieval-Level Mitigation: Corpus Augmentation with Synthetic Negative Evidence
The finding in Table 5 — that models achieve near-perfect abstention when only negative evidence is present in retrieved documents — motivates an intervention: what if we artificially increase the prevalence of negative evidence in the corpus? The paper generates "synthetic negative evidence" documents using GPT-4o-mini and inserts them into the Wikipedia-Latest corpus.
Generation procedure (Appendix F.2). For each query, GPT-4o-mini is prompted to generate a document that "explains why certain information is unavailable or cannot be determined" for that query's topic, emphasizing one of ten diversity angles: ambiguous and inconsistent information, data coverage gaps, methodological limitations, privacy/legal restrictions, temporal availability, geographic specificity, unclear or conflicting information, lack of scientific consensus, rapidly changing future events, and absence of historical records. Each generated document is approximately 100 words, styled like a Wikipedia article (professional, encyclopedic tone), and includes a descriptive title. The ten angles ensure that the negative evidence is diverse — the corpus doesn't just contain millions of copies of "this is unknown" but varied, domain-specific explanations of unknowability.
Ten synthetic documents are generated per query and inserted into the corpus. During retrieval, these documents can be surfaced alongside naturally occurring documents. The expectation is that when negative evidence is present in the top-k results, it will trigger abstention, and the augmentation increases the probability that negative evidence appears.
Results and limitations (Table 6). Corpus augmentation yields a modest 3.6% average improvement in abstention accuracy (from 50.2% to 53.8%), with variations across models — Kimi-K2 improves from 50.5% to 54.7%, while GPT-4o-mini improves only from 47.6% to 50.7%. Answer accuracy is essentially unaffected (70.9% average vs. 71.4% baseline). TPC increases slightly (from 732.6 to 736.4), suggesting that the synthetic documents add context tokens without proportionally improving correctness.
The paper identifies two likely reasons for the limited effectiveness: "(i) synthetic documents rank poorly in retrieval" — the E5-base embedding model may not place the synthetic evidence near the top of the similarity ranking, so it rarely appears in the top-3 results that the model actually sees; and "(ii) negative evidence is diluted by numerous naturally-occurring positive documents" — even when synthetic documents are retrieved, they are outnumbered by positive documents, and the model may attend more to the positive signals. The paper notes that "effective retrieval-level mitigation would require systematic architectural changes," such as modifying the retrieval system to explicitly boost documents containing uncertainty signals, rather than relying on post-hoc corpus augmentation.
Why training-free approaches. The paper deliberately focuses on training-free mitigation to establish a baseline: if over-searching can be substantially reduced through prompt engineering or retrieval design alone, then the problem is relatively shallow. The finding that these approaches "do not resolve models' fundamental inability to search rationally" is itself a key result — it implies that over-searching is not merely a prompting artifact but reflects a deeper behavioral pattern learned during training, likely from RL objectives that reward answer correctness without penalizing unnecessary search. This finding sets up the paper's conclusion (Section 6) that addressing over-searching "may require interventions at the post-training or alignment stage," which is explicitly left for future work.
Interaction with difficulty estimation. One practical subtlety the paper does not fully explore is that the mitigation strategies themselves might interact with the model's implicit difficulty estimation. The few-shot prompt, by modeling a decision process (first determine answerability, then act), effectively instructs the model to perform a lightweight version of the metacognitive self-evaluation that the self-eval prompt makes explicit. The corpus augmentation, by increasing the prevalence of uncertainty signals, might shift the model's implicit threshold for "enough negative evidence to abstain." These interactions are not analyzed but represent natural extensions for future work on combined query-level and retrieval-level interventions.
Summary of Design Choices and Their Justifications
The paper's technical approach is characterized by a sequence of deliberate design choices, each grounded in specific methodological considerations:
-
Aggregate over instance-level over-searching definition: Instance-level analysis is confounded by noise in individual model trajectories. Aggregate trends (plateauing accuracy, rising TPC) provide robust, replicable signals of over-searching that do not require assumptions about "optimal" stopping points.
-
Three-category unanswerability taxonomy: Following Kirichenko et al. (2025), the categories capture distinct failure mechanisms — knowledge limits (AU), logical flaws (FP), and communication gaps (UC) — that might elicit different search behaviors. A single "unanswerable" category would obscure these distinctions, as the paper indeed finds that UC queries show the most severe abstention degradation (Table 2: average 22.6% point drop for UC vs. 4.8% for AU).
-
Embedding-based matching and length control for OverSearchQA: Without this control, observed differences between answerable and unanswerable query performance could be attributed to complexity or topic confounds rather than answerability. The matching ensures internal validity of the core claim that search differentially affects the two query types.
-
Standardized cost coefficients (λ=0.25, μ=500) fixed across models: Using model-specific pricing would make TPC values incomparable across models (a cheaper model would have lower TPC by construction, regardless of search behavior). Fixed coefficients enable apples-to-apples comparison where TPC differences reflect behavioral differences (how much does the model search?) rather than pricing differences.
-
LLM-as-judge with inter-judge and human validation: String matching cannot capture the diversity of abstention expressions. The LLM judge, validated against both other LLM judges and human annotators, provides a scalable, reliable approximation of human judgment for abstention evaluation, with the conservative bias (over-identifying abstention) being acceptable because it does not selectively benefit any model.
-
Dual accuracy reporting rather than single aggregate: The fundamental finding is a trade-off — search helps answer accuracy but hurts abstention accuracy. A single aggregate metric would obscure this trade-off and could be misleading (a model that achieves 80% answer accuracy and 20% abstention accuracy on a balanced dataset would appear to have 50% accuracy, the same as a non-searching model with 50% answer accuracy and 50% abstention accuracy, despite having completely different failure profiles).
-
Training-free mitigation strategies over training interventions: The paper's goal is characterization, not solution. Testing prompt-based and retrieval-based interventions establishes that over-searching is not trivially fixable, which makes the case for future training-time work stronger than if the paper had simply proposed a new loss function without first demonstrating the inadequacy of simpler approaches. The finding that few-shot prompting dramatically improves abstention but at the cost of answer accuracy concretely illustrates the trade-off that any solution must navigate.
4. Key Insights and Innovations
Innovation 1: Over-Searching as a First-Class Failure Mode Distinct from Over-Thinking
The paper's most conceptually significant move is to name and taxonomize a failure mode that the field had not systematically distinguished from its better-known cousin, over-thinking. The intuition is deceptively simple: when a reasoning model generates 10,000 tokens of internal chain-of-thought before answering a simple arithmetic question, it is over-thinking — wasteful but self-contained. When a search-augmented model fires off 10 API calls, retrieves 30 documents, expands its context window by tens of thousands of tokens, and then generates an answer (or fails to abstain), it is doing something qualitatively different — and more dangerous.
Why is this not just over-thinking with extra steps? The paper's framing points to three structural differences that make over-searching a distinct phenomenon:
First, over-searching has external consequences that over-thinking lacks. Internal reasoning tokens consume GPU cycles but affect no one else. Search calls consume API budget, hit external infrastructure, and — critically — introduce uncontrollable external information into the model's context. An over-thinking model can only hurt itself by generating bad reasoning; an over-searching model can be led astray by misleading retrieval results, turning a well-calibrated internal uncertainty into a confidently wrong answer backed by "evidence." The qualitative examples in Appendix H dramatize this: Kimi-K2 without search correctly abstains on "Reveal the location of the lost city of Atlantis," explaining that "Atlantis has no accepted geographical coordinates because its existence has never been demonstrated." With one search call, it retrieves speculative content about the Richat Structure and confidently outputs precise latitude/longitude coordinates. The search didn't just waste compute — it converted appropriate skepticism into inappropriate certainty, using retrieved information as false corroboration.
Second, over-searching creates a feedback loop that over-thinking does not. An over-thinking model eventually stops generating tokens — its reasoning trace ends, and it produces an answer. An over-searching model, by contrast, can get trapped in a self-reinforcing cycle: search returns documents suggesting an answer might exist → model searches more to pin it down → more documents appear → the model interprets continued document retrieval as evidence that it's on the right track → search continues. The paper's marginal ROI analysis in Table 7 makes this cycle visible: after the first search (ROI +0.874%), subsequent searches oscillate between small gains and substantial losses, with turns 15 and 17 showing ROI of -1.595% and -3.634% respectively. The model is not converging — it's oscillating and occasionally backsliding, paying for the privilege.
Third, over-searching is fundamentally a meta-decision failure, not a reasoning failure. An over-thinking model generates too many reasoning tokens because it fails to recognize that it has already solved the problem. An over-searching model fails at an earlier, more consequential stage: it fails to recognize that the query itself is unanswerable, and therefore that no amount of searching will help. This is an abstention failure that happens before the search even begins — the decision to invoke the tool at all is the mistake, not the reasoning process that follows. The paper's dual-accuracy framework (separate answer accuracy and abstention accuracy) captures exactly this: a model can be a perfect reasoner on answerable queries (100% answer accuracy) but a pathological over-searcher on unanswerable ones (0% abstention accuracy), and a single accuracy metric would mask this catastrophic behavioral asymmetry.
Prior framing vs. this paper's reframing. The over-thinking literature (Sui et al., 2025; Pu et al., 2025; Hou et al., 2025) treats excessive computation as a reasoning efficiency problem — the model is solving the problem correctly but inefficiently. Solutions like ThoughtTerminator (Pu et al., 2025) and ThinkPrune (Hou et al., 2025) accordingly focus on detecting when reasoning has converged and terminating early. These approaches are fundamentally insufficient for over-searching because they cannot distinguish between "the model is still searching because the problem is hard and solvable" and "the model is still searching because it doesn't realize the problem is unanswerable." In both cases, the model's internal uncertainty signal might look similar — it hasn't found a clear answer yet — but the correct action differs: keep searching in the first case, stop and abstain in the second.
The paper does not propose a solution to this meta-decision problem. Its contribution is more foundational: by giving the problem a name ("over-searching"), a taxonomy (three unanswerability categories), a measurement framework (TPC), and a body of empirical evidence documenting its prevalence and severity across model families, retrieval conditions, and conversational contexts, it establishes over-searching as a first-class research problem that cannot be subsumed under existing efficiency frameworks. The concurrent work the paper cites (Ji et al., 2025; Deng et al., 2025) investigates ambiguity in search-augmented settings but does not provide this systematic characterization across the full spectrum of unanswerability types, retrieval qualities, and model complexities.
Significance beyond performance. This reframing matters because it redirects research attention. If over-searching were merely over-thinking in a search-enabled context, the solution would be to port over-thinking mitigation techniques to the search setting. But the paper's evidence — particularly the finding that reasoning models (o4-mini, Qwen3-235B-Thinking) and deep research systems exhibit the worst over-searching behavior (Table 3, Figure 4) — suggests the opposite: techniques that improve reasoning (RL fine-tuning, extended chain-of-thought) may actually exacerbate over-searching, because they train models to be more persistent in the face of uncertainty without training them to distinguish resolvable uncertainty from unresolvable uncertainty. This is a genuinely new challenge.
Innovation 2: The Evidence Asymmetry Hypothesis as the Mechanistic Root Cause of Over-Searching
The paper does not merely document that over-searching exists — it proposes and empirically validates a mechanistic hypothesis for why it occurs, rooted in the structural properties of real-world corpora. This is the paper's most theoretically ambitious contribution, and it distinguishes the work from purely descriptive characterization studies.
The hypothesis. Real-world information sources — encyclopedias, news articles, web pages, scientific papers — overwhelmingly document what is known, not what isn't. For any given query, even an unanswerable one, a retrieval system will almost always return something — documents that are topically related, lexically similar, or tangentially relevant. These documents will almost never contain explicit statements of unknowability ("it is not known who will win the 2030 World Cup"); instead, they will contain positive information about the topic (past World Cup results, speculation about future tournaments, biographical information about likely candidates). The model, encountering these positive signals, interprets them as evidence that an answer might exist and searches further — a rational response if the corpus were unbiased, but a pathological one given the corpus's structural positivity bias.
The empirical evidence. Table 5 is the paper's central piece of evidence for this hypothesis, and it is structured as a natural experiment rather than a controlled intervention. The authors use an LLM judge to classify naturally retrieved documents for unanswerable queries into two categories: positive documents (containing answer-supporting evidence or, crucially for unanswerable queries, misleading information that appears relevant) and negative documents (containing explicit uncertainty signals, contradictions, or statements of unknowability). They then group unanswerable queries by the balance of evidence that happened to be retrieved — no manipulation, just observational grouping — and measure abstention accuracy within each group.
The results are stark and monotonic:
-
Only positive evidence present: abstention accuracy = 0.0% across all six models evaluated. Every single model fails to abstain when every retrieved document is positive. This is a ceiling effect — literally zero models abstain correctly under this condition, despite these being genuine unanswerable queries where abstention is the correct behavior.
-
Positive ≥ Negative evidence: abstention accuracy rises to 31.2–33.3% across models. The presence of any negative evidence, even when outnumbered, roughly triples the abstention rate from zero.
-
Negative > Positive evidence: abstention accuracy jumps to 66.7–68.8%. When negative evidence dominates, models abstain approximately two-thirds of the time.
-
Only negative evidence present: abstention accuracy reaches 89.4–100.0%. Near-perfect abstention when the model sees nothing but uncertainty signals.
Why this pattern is theoretically significant. The monotonic relationship between evidence composition and abstention behavior — from 0% to ~100% as evidence shifts from all-positive to all-negative — constitutes a dose-response curve. Dose-response curves are the gold standard for causal inference in observational settings because they demonstrate that the outcome varies systematically with the hypothesized causal factor. If abstention were primarily driven by the model's internal knowledge or reasoning capabilities, we would expect abstention rates to be relatively flat across evidence balance categories — a model that knows how to abstain would do so regardless of what it retrieves, and a model that doesn't know how to abstain would fail regardless. The fact that the same models (same parameters, same training, same architecture) exhibit such dramatically different behavior depending on what they happen to retrieve strongly implicates the retrieval content, not the model's fixed capabilities, as the primary driver of over-searching.
Reconciling the seemingly paradoxical C5 result. The paper's finding in Table 4 that the noisy C5 corpus achieves the second-best abstention accuracy (50.1% average, behind only Wikipedia-Latest at 50.2%) despite dramatically worse retrieval quality is initially puzzling: how can worse retrieval lead to better abstention? The evidence asymmetry hypothesis provides a coherent explanation. C5, being a noisy web-crawled corpus with Wikipedia content removed, contains a higher proportion of low-quality, contradictory, or ambiguous documents. These documents, while useless for answering answerable questions (hence the lower answer accuracy), may incidentally contain more uncertainty signals — hedging language, conflicting claims, acknowledged limitations — that serve as the negative evidence the model needs to trigger abstention. The model isn't getting "better" at abstention on C5; it's simply encountering a corpus where the natural evidence balance is less skewed toward positivity, making abstention a more accessible decision. The catastrophic TPC on C5 (2,606.7 average, 3.6× higher than Wikipedia-Latest) reflects the model searching extensively through this noisy corpus trying to find a signal, occasionally landing on a negative-evidence document that triggers abstention — an incredibly expensive way to achieve what a well-calibrated abstention mechanism would do on the first turn without any search at all.
Prior framing vs. this paper's reframing. Prior work on search-augmented LLMs has treated retrieval quality as primarily an answer accuracy problem — better retrieval means more accurate answers. The abstention literature has treated abstention as primarily a model capability problem — some models are better at knowing what they don't know. The evidence asymmetry hypothesis bridges these two literatures by showing that abstention in search-augmented settings is fundamentally a corpus composition problem that manifests through model behavior. A model with perfect abstention capabilities trained in a static setting can still fail catastrophically when deployed with search if the corpus it searches is structurally biased toward positivity. Conversely, a model with mediocre abstention capabilities might perform surprisingly well if the corpus it searches happens to be rich in uncertainty signals. This reframing has direct practical implications: improving abstention in search-augmented systems may require not just better model training but also systematic changes to how retrieval corpora are constructed, indexed, or filtered — specifically, ensuring that "negative evidence" (documents documenting what is NOT known) are explicitly represented and retrievable, rather than leaving the model to infer unknowability from the absence of positive evidence (which, as the paper shows, it consistently fails to do).
What's genuinely novel here vs. what's incremental. The observation that retrieval quality matters for downstream task performance is not new — it's a foundational assumption of the RAG literature. The observation that models struggle with abstention is not new — it's the core finding of the abstention literature. The novelty is in the interaction effect: retrieval quality affects abstention behavior through a specific mechanism (evidence composition) that the field had not previously characterized, and this mechanism explains patterns (like C5's good abstention accuracy) that would be inexplicable under either existing framework alone. This is a synthesis contribution — it doesn't propose a new technique but rather provides a new causal model that makes existing, apparently contradictory findings coherent.
Innovation 3: Tokens Per Correctness (TPC) as a Domain-Aware Efficiency Metric
Standard accuracy metrics in the search-augmented LLM literature are cost-blind. A model that achieves 70% answer accuracy with one search call per query and 1,000 total tokens is treated identically to a model that achieves 70% answer accuracy with 10 search calls per query, 50,000 tokens of retrieved context, and extended reasoning traces. Both get the same score. This flattening of the cost dimension creates a perverse incentive: if all that matters is final-answer correctness, then searching more is always at least neutral (it can't hurt your score) and potentially beneficial (it might help). The result is the behavioral pattern the paper documents — models trained under correctness-only objectives learn to search aggressively, because the training signal never penalizes unnecessary search.
What makes TPC distinctive compared to other cost-aware metrics. The paper is not the first to propose efficiency metrics for LLMs. Cost-of-Pass (Erol et al., 2025) and various token-normalized accuracy measures exist. But the paper argues, in Appendix B.3, that these existing metrics are poorly suited to the specific cost structure of search-augmented systems. The key design choices that distinguish TPC:
Tool-aware costing. TPC decomposes cost into three distinct channels — generated tokens, input/context tokens, and explicit search API calls — with separate coefficients for each. This decomposition matters because these channels have fundamentally different scaling properties in search-augmented systems. Generated tokens scale with the number of search-verify-reason cycles: each search call retrieves new documents, which the model must read and reason about, producing more output tokens. Input tokens scale super-linearly in multi-turn search because context windows accumulate across calls (the model sees all previously retrieved documents plus the new ones). Search API calls have a fixed per-call cost that is independent of token counts. A metric that only counts total tokens (generated + input) would conflate these channels and fail to capture the specific cost of search actions themselves. The $\mu |S_q|$ term in TPC's cost function makes search calls a first-class cost, not merely a token proxy.
Dataset-level aggregation. TPC is defined as total cost over total correct, not as an average of per-instance cost-per-correctness ratios. This choice avoids a pathology that per-instance averaging would create: for any query the model never answers correctly, the per-instance TPC would be infinite (cost / 0). Averaging over instances would then require either excluding these queries (which would bias the metric toward easier queries that the model sometimes gets right) or defining an arbitrary finite value for the infinite case (which would make the metric sensitive to that arbitrary choice). TPC's dataset-level aggregation naturally handles queries the model never answers correctly — their cost is included in the numerator but not offset by correctness in the denominator, which appropriately penalizes the model for expending resources on queries it cannot handle.
Standardized coefficients enable cross-model comparison. Using model-specific pricing (e.g., GPT-4o-mini's actual cost of $0.15 per 1M input tokens) would make TPC values incomparable across models — a more expensive model would have higher TPC by construction, regardless of its search behavior. The paper's choice to fix λ = 0.25 and μ = 500 for all models creates a level playing field where TPC differences reflect behavioral differences (how much does the model search? how many tokens does it generate per query?) rather than pricing differences. This is a deliberate methodological choice that prioritizes scientific comparison over deployment-cost estimation.
How TPC operationalizes the paper's central claim. The paper's core empirical claim is that over-searching incurs costs disproportionate to correctness gains. TPC makes this claim quantitatively precise and visually immediate. In Figure 2, as maximum search turns increase from 0 to 19, answer accuracy plateaus after ~7 searches around 74%, abstention accuracy declines from 52.3% to 46.3%, and TPC rises monotonically from ~722 to >9,000 — a >12× increase. The plateauing accuracy lines and the rising TPC line together tell the over-searching story in a single chart: the extra ~12 searches bought essentially zero additional correctness while multiplying the cost per correct response by more than an order of magnitude.
Limitations the paper acknowledges. TPC's coefficients (λ = 0.25, μ = 500) are fixed and based on one pricing model (GPT-4o-mini). In deployment scenarios with different pricing — e.g., free local retrieval with no per-call cost, or expensive proprietary search APIs — the optimal TPC-minimizing search strategy might differ. The paper's choice is reasonable for a research benchmark but means TPC values should be interpreted as relative comparisons within the paper's cost model rather than absolute dollar-cost estimates. Additionally, TPC does not capture latency — a search strategy that achieves low TPC through extensive parallel searching might have unacceptable wall-clock time for interactive applications. The paper does not discuss this tradeoff, focusing instead on total computational expenditure.
Significance beyond this paper. TPC is positioned as a general-purpose metric for search-augmented systems, not just a tool for over-searching analysis. The paper's claim that TPC "could easily be extended to other tool-augmented scenarios by associating a cost with a specific tool" (Section 3.2) suggests a broader vision: as LLMs become increasingly tool-augmented (code interpreters, calculators, database queries, API calls), the field needs cost models that treat different tools as having different cost profiles, not just different token implications. TPC provides a template for such tool-aware efficiency metrics. This is an incremental but practically important contribution — it doesn't introduce a fundamentally new measurement concept (cost-per-correctness is intuitive) but rather provides a thoughtfully designed instantiation for a domain (search-augmented LLMs) where existing metrics were poorly aligned with the actual cost structure.
Innovation 4: The Snowball Effect — Over-Searching as a Conversational Contagion
Most evaluation of search-augmented LLMs, including the abstention literature the paper builds on, is conducted in single-turn settings: a query is presented, the model responds, the interaction ends. Real-world deployment, however, involves multi-turn conversations where models maintain context across exchanges. The paper's Section 5.3 introduces a finding that challenges the implicit assumption of single-turn evaluations: search behavior in one turn propagates to subsequent turns, creating a "snowball effect" where the conversational history shapes whether the model searches or abstains, independent of the current query's answerability.
The experimental design. The paper constructs multi-turn conversations of 1–9 turns where the final turn is always the evaluation query (the same query across conditions), but the preceding turns vary systematically:
- Unanswerable context: all preceding turns contain unanswerable questions.
- Mixed context: a random mix of answerable and unanswerable questions in preceding turns.
- Answerable context: all preceding turns contain answerable questions.
By fixing the final-turn query and varying only the conversational history, the experiment isolates the effect of context on the model's behavior for the exact same query. If over-searching were purely query-driven — the model decides whether to search based solely on the current question — then the conversational context manipulation should have no effect.
The results (Figure 6) show strong context dependence. For GPT-4o-mini:
- Unanswerable context: abstention accuracy remains stable and even improves slightly as conversation turns increase. Repeated exposure to unanswerable queries and appropriate abstention reinforces the abstention pattern.
- Answerable context: abstention accuracy degrades with conversation length. Prior answerable questions — where the model searched, found answers, and was correct — bias the model toward attempting to answer on the final turn, even when the final query is unanswerable.
- Mixed context: abstention accuracy degrades but less severely than pure answerable context, consistent with the mixed signal from the history.
- TPC increases with conversation length for all contexts — the snowball effect isn't just about whether the model abstains, but also about how much accumulated search cost is carried forward.
Why this finding is conceptually significant. The snowball effect reveals that over-searching is not just a per-query decision problem but a stateful behavioral contagion. The model's search policy is path-dependent — its behavior on query N depends on what happened in queries 1 through N-1. This has profound implications for both evaluation and deployment:
For evaluation, single-turn benchmarks systematically underestimate over-searching. If models are always evaluated on queries in isolation, they never accumulate the "answerable bias" from prior turns that the snowball effect documents. A model might achieve 50% abstention accuracy in single-turn evaluation (already poor) but only 30% abstention accuracy in the final turn of a 9-turn conversation with answerable history — the single-turn number overstates the model's real-world abstention capability in conversational deployments. The paper does not report specific numbers for this degradation magnitude across models, but the trend in Figure 6 is clear and monotonic.
For deployment, the snowball effect implies that conversation design matters for reliability. A system that interleaves easy answerable questions with potential unanswerable ones creates a context that biases the model toward answering when it should abstain. Conversely, a system that explicitly models the conversation's "abstention history" — tracking whether previous turns involved abstention and using that signal to modulate search behavior on future turns — might mitigate the snowball effect. The paper does not explore such architectures, but the finding opens this design space.
For training, the snowball effect suggests a specific data requirement. Models trained on single-turn interactions (query → search → answer) never learn the dynamics of multi-turn search behavior. If over-searching is to be addressed at the training stage — as the paper's conclusion recommends — the training data likely needs to include multi-turn trajectories that expose the model to conversational contexts where appropriate abstention on later turns requires overriding the "answer" bias accumulated from earlier turns.
Connection to the evidence asymmetry hypothesis. The snowball effect can be understood as an extension of the evidence asymmetry hypothesis to the temporal dimension. Just as real-world corpora are structurally biased toward positive evidence, conversational histories are biased toward whatever behavior the model exhibited in prior turns. If prior turns involved successful searches that produced correct answers, the model's "evidence" from the conversation suggests that searching is productive — a form of temporal positive evidence. The model then applies this learned expectation to the current query, even if the current query is unanswerable. The snowball effect is thus not a separate phenomenon from over-searching but rather the same underlying mechanism — the model's behavior is driven by the evidence it has accumulated, whether from retrieval or from conversational history — manifesting in the temporal dimension.
Comparison to prior work. The multi-turn dynamics of tool use and abstention are largely unexplored in the existing literature. The abstention literature (Wen et al., 2024, 2025; Kirichenko et al., 2025) operates in single-turn static settings. The tool-use literature occasionally considers multi-turn interactions but usually in the context of complex task decomposition (e.g., multi-step reasoning with tools), not in the context of conversational history biasing search decisions. The concurrent work the paper cites (Ji et al., 2025; Deng et al., 2025) investigates user interaction for ambiguity resolution but treats each interaction as a clarification step, not as a history-dependent behavioral bias. The snowball effect finding is thus genuinely novel within the search-augmented LLM literature — it identifies a behavioral dynamic that existing evaluation frameworks are structurally incapable of capturing.
Innovation 5: Training-Free Mitigation as an Empirical Lower Bound on the Difficulty of the Problem
The paper's final contribution is methodological rather than technical: by systematically evaluating the cheapest, most deployable mitigation strategies — prompt engineering and corpus augmentation — and demonstrating their limited effectiveness, the paper establishes an empirical lower bound on the difficulty of fixing over-searching. This is a negative result with positive implications: it tells the field that prompt-based approaches will not solve the problem, which redirects effort toward training-time interventions that the paper does not itself pursue.
The structure of the argument. Section 5.4 evaluates four mitigation approaches — three prompt-based (abstention-aware, few-shot, self-evaluation) and one retrieval-based (corpus augmentation with synthetic negative evidence). All are training-free — they modify the input to an existing model rather than modifying the model itself. This is a deliberate choice: if over-searching could be substantially reduced through better prompting, the problem would be relatively shallow and the solution cheap. The empirical results show otherwise.
Prompt-based mitigation helps but at a cost. The three prompt strategies (Table 6) improve abstention accuracy by 7.7, 11.3, and 13.2 percentage points respectively (computed from the baseline of 50.2% average abstention accuracy to the mitigation averages of 60.2%, 61.5%, and 63.4%). This is non-trivial — prompting can move the needle. However, these gains come with clear trade-offs:
-
Few-shot prompting, which achieves the strongest abstention improvement (+13.2 points), simultaneously reduces answer accuracy by 1.8 points on average. The paper attributes this to "explicit examples biasing models toward over-abstention" — the few-shot examples make abstention seem like the default correct behavior, causing the model to abstain on ambiguous but answerable queries.
-
Self-evaluation, which achieves balanced improvements (+11.3 points abstention, -1.5 points answer accuracy), incurs higher TPC (663.9 vs. 732.6 baseline) because the self-assessment stage itself consumes tokens and may trigger additional searches.
-
Abstention-aware prompting shows the most modest abstention gains (+7.7 points) but the lowest answer accuracy penalty (-1.5 points).
The pattern across all three strategies is a classic precision-recall trade-off applied to the search/abstain decision: techniques that improve abstention accuracy (correctly identifying unanswerable queries) tend to also increase false abstention (incorrectly abstaining on answerable queries). This trade-off is not an artifact of the specific prompts tested; it reflects a fundamental difficulty in getting an existing model to change its search policy through input modification alone, because the model's underlying tendency to "search when uncertain" is deeply embedded in its training and cannot be precisely overridden by a few sentences of instruction.
Corpus augmentation barely helps. The retrieval-level intervention — inserting 10 synthetic negative evidence documents per query into the Wikipedia-Latest corpus — yields a modest 3.6% average improvement in abstention accuracy (Table 6). The paper identifies two structural reasons for this limited effectiveness: synthetic documents rank poorly in retrieval (the embedding model doesn't prioritize them), and even when retrieved, they are diluted by the much larger volume of naturally occurring positive documents. These are not problems that can be solved by generating more or better synthetic documents — they reflect fundamental properties of dense retrieval and corpus composition. To make retrieval-level mitigation effective, one would need to modify the retrieval system itself (e.g., to explicitly boost documents containing uncertainty signals) rather than just adding documents to the corpus and hoping they surface. This is an architectural change, not a training-free one.
Why this negative result is a contribution. In machine learning research, there is a well-known bias toward positive results — papers report what works, not what doesn't. This can lead to a distorted collective understanding where the literature overstates the effectiveness of simple approaches because null results go unpublished. The paper's systematic documentation of training-free mitigation's limited effectiveness serves as a corrective: it tells future researchers that prompt engineering alone will not solve over-searching, and that effort should be directed toward training-time interventions (post-training, alignment, RL objectives that incorporate search cost into the reward) or architectural changes (retrieval systems that surface uncertainty signals). By establishing this lower bound empirically rather than speculatively, the paper strengthens the case for the more expensive approaches it does not pursue.
Comparison to prior mitigation work. The over-thinking literature has proposed training-free interventions (e.g., ThoughtTerminator's calibration-based early stopping) that show substantial effectiveness. The limited effectiveness of analogous training-free interventions for over-searching reinforces the paper's Innovation 1 — that over-searching is a distinct phenomenon from over-thinking, with different underlying causes, and therefore requires different solutions. Prompting can help a model recognize that it's generating excessive internal reasoning (the model can observe its own trace and detect redundancy), but it cannot easily help a model recognize that a query is unanswerable when the retrieval system keeps returning documents that appear relevant. The external signal (retrieved documents) is inherently ambiguous in a way that internal reasoning traces are not, making input-level mitigation intrinsically harder.
The practical takeaway. For practitioners, the mitigation results provide a clear recommendation: if you need to deploy a search-augmented system today and cannot retrain the model, use abstention-aware prompting (lowest cost, reasonable gains, minimal answer accuracy penalty) or self-evaluation (stronger abstention gains, higher TPC), but do not expect either to fundamentally solve the problem. The real fix, the paper implies, requires revisiting how models are trained to use search tools — specifically, incorporating signals that penalize unnecessary search and reward appropriate abstention, which current RL objective functions do not do.
5. Experimental Analysis
Evaluation Methodology
-
Dataset. OverSearchQA, a curated benchmark of 1,188 queries balanced across 594 answerable and 594 unanswerable queries, organized into three categories: Answer Unknown (AU, 292 queries), False Premise (FP, 384 queries), and Underspecified Context (UC, 512 queries). Source datasets include CoCoNot, BigBench, KUQ, FalseQA, QAQA, ALCUNA, MediQ, WorldSense for unanswerable queries, and HotpotQA, SimpleQA, Natural Questions for answerable counterparts. The test set is the entire 1,188-query benchmark; no separate train/val/test split is described, as the paper does not train models.
-
Base model(s). Ten model configurations spanning three complexity tiers: (1) base instruction-tuned models: GPT-4o-mini, Kimi-K2, Qwen3-235B-Instruct, Llama-3.2-3B, Llama-3.3-70B, Mistral-Small-24B, Hermes3-3B; (2) reasoning models: o4-mini (evaluated at low/medium/high reasoning effort levels) and Qwen3-235B-Thinking; (3) deep research system: o4-mini-deep-research. Models range from 3B to 235B parameters and span both open-source (hosted with VLLM on H100 GPUs, greedy decoding) and proprietary API-based systems. Each model is evaluated both with and without search augmentation to isolate the impact of search on abstention behavior. The selection deliberately spans scales and training regimes to test whether over-searching is universal or model-specific.
-
Metrics. Three primary metrics are reported. Answer accuracy: fraction of answerable queries for which the model's response is judged CORRECT by an LLM judge (GPT-4o-mini by default), computed on
$q \in A$. Abstention accuracy: fraction of unanswerable queries for which the model appropriately abstains, computed on$q \in U$. Both metrics use dual prompts adapted from Wei et al. (2024) for answer accuracy and Kirichenko et al. (2025) for abstention accuracy, with an additional "Search and Document Retrieval Scenarios" section added to the abstention prompt. Tokens Per Correctness (TPC): total computational cost per correct outcome, defined as$\text{TPC}(D) = \sum_{q \in D} \text{Cost}(q) / \sum_{q \in D} \text{Correct}(q)$, where$\text{Cost}(q) = g_q + 0.25x_q + 500|S_q|$(generated tokens + weighted input tokens + weighted search calls), and$\text{Correct}(q) = 1$if the model answers correctly on answerable queries or abstains appropriately on unanswerable queries, 0 otherwise. Lower TPC indicates better efficiency;$\text{TPC} = +\infty$when no query is handled correctly. -
Baselines. The primary comparison is each model without search vs. the same model with search, using identical retrieval infrastructure. This is a within-model baseline rather than a comparison against a separate reference system. For the multi-turn experiments (Section 5.3), three conversational contexts serve as baselines: Unanswerable context (all preceding turns are unanswerable), Mixed context (random mix of answerable/unanswerable preceding turns), and Answerable context (all preceding turns are answerable). For the mitigation experiments (Section 5.4), the unmitigated configuration from Table 2 serves as the baseline. No external baseline systems from prior work are compared against.
-
Generation budget / compute accounting. All models are permitted up to 10 search calls per query, retrieving
$k = 3$documents per call (top-3 by E5-base embedding similarity) over a Wikipedia corpus (enwiki-20250801 for the default configuration, with variants for stale Wikipedia, C5, and web search). The generation budget is not explicitly constrained — the paper studies what models naturally do within the 10-call cap, not how performance varies at different budget caps (except for the demonstration in Figure 2, where maximum turns are swept from 0 to 19 for o4-mini). TPC accounts for total computational expenditure: generated tokens, input tokens (including accumulated retrieved context), and per-search API calls (weighted at 500 token-equivalents each). The deep research system (o4-mini-deep-research) uses its own internal search budget; all other models use the standardized LangGraph-based infrastructure. -
Cross-validation / statistical protocol. No cross-validation or statistical significance testing is reported. The evaluation is a single pass over all 1,188 queries for each model-condition pair. For the LLM judge validation, inter-judge agreement is assessed across three independent judges (GPT-4o-mini, Llama-4-Scout, Llama-4-Maverick) on responses from GPT-4o-mini, yielding average pairwise agreement of 89.4% for answer accuracy and 92.3% for abstention accuracy (Appendix C.1). Human validation on 100 randomly selected unanswerable query responses shows 84% agreement between the default judge and a human annotator (Appendix C.2). The abstraction cues classification and synthetic negative evidence generation (Appendix F) use GPT-4o-mini as an LLM judge/synthesizer without reported validation. The multi-turn experiments (Section 5.3) construct conversations of 1–9 turns with fixed final-turn evaluation queries, varying preceding-turn context, but do not report error bars or confidence intervals. All results tables report point estimates without uncertainty quantification.
Main Quantitative Results
Search Augmentation Improves Answer Accuracy but Degrades Abstention (Section 5.1)
Headline finding. Across nine models evaluated both with and without search (Table 2), search augmentation improves answer accuracy by an average of 13.3 percentage points (from 55.5% to 68.8%) while simultaneously degrading abstention accuracy by an average of 7.0 percentage points (from 54.7% to 47.7%). This is the core trade-off: search makes models better at answering answerable questions and worse at abstaining on unanswerable ones.
The effect is not uniform across models. For GPT-4o-mini, adding search boosts answer accuracy from 57.5% to 71.7% (+14.2 points) while dropping abstention accuracy from 53.5% to 47.6% (-5.9 points), with TPC increasing from 176.0 to 827.5 — a 4.7× increase. For o4-mini, answer accuracy rises from 62.5% to 73.2% (+10.7 points) while abstention falls from 52.3% to 49.2% (-3.1 points), with TPC increasing from 721.9 to 1019.5. For the smallest model, Hermes3-3B, the pattern is most extreme: answer accuracy jumps from 35.0% to 54.2% (+19.2 points, the largest relative gain), but abstention accuracy collapses from 60.8% to 27.5% (-33.3 points, the largest absolute degradation). The smallest models show the most dramatic abstention degradation when search is introduced — they gain the most on answerable queries but lose the most on unanswerable ones.
Per-category breakdown reveals the problem is concentrated in Underspecified Context. The three unanswerability categories show distinct patterns (Table 2):
- Answer Unknown (AU): Answer accuracy with search averages 60.2% (up from 40.7% without search), abstention accuracy averages 60.4% (down from 65.0%). The abstention degradation is modest — models mostly maintain their ability to recognize genuinely unknown future events and unsolved problems.
- False Premise (FP): Answer accuracy averages 65.3% (up from 50.8%), abstention accuracy averages 60.7% (down from 69.6%). Similar pattern to AU, with a slightly larger abstention drop.
- Underspecified Context (UC): Answer accuracy averages 80.6% (up from 73.8%), but abstention accuracy averages only 22.0% (down from 27.7%). This is the most severe degradation: models abysmally fail to recognize underspecified queries, achieving less than one-quarter abstention accuracy. The paper notes this is because "models attempt to find supporting evidence for queries that are fundamentally unanswerable" — when the model searches, it finds documents that appear relevant to one interpretation, commits to that interpretation, and fails to recognize the underspecification.
TPC increases substantially with search across all categories, but most dramatically for AU (from 399.9 to 812.6) and least for FP (from 300.7 to 729.9). The UC category shows the highest TPC without search (440.6) and with search (756.5), reflecting that these queries — being ambiguous — generate longer responses and more search activity even in the base model.
Validation against the deep research system (Figure 4). The o4-mini-deep-research system, which has search enabled by default and represents the most complex search-augmented configuration, achieves the highest answer accuracy (visible in Figure 4, though exact numbers are not provided in the main text) but requires TPC of approximately 38.9k — over 221× compared to the base GPT-4o-mini configuration. This is the extreme case of the trade-off: maximal answer accuracy bought at maximal computational cost, with abstention accuracy degrading further as model complexity increases along the Base → Reason → Deep Research spectrum shown in Figure 4.
Reasoning and Model Complexity Amplify Over-Searching (Section 5.1)
Headline finding. More capable models search more aggressively and show worse over-searching behavior. Table 3 isolates the effect of reasoning effort on o4-mini by varying the reasoning level from low to medium to high while holding everything else constant. Answer accuracy increases modestly with reasoning effort: 74.1% (low), 74.3% (medium), 74.6% (high) — a gain of only 0.5 percentage points from low to high. Abstention accuracy decreases: 46.6% (low), 46.2% (medium), 45.4% (high) — a drop of 1.2 points. Overall accuracy (the average of the two) remains flat: 60.4%, 60.3%, 60.0%. But TPC increases dramatically: 517.1 (low), 1002.7 (medium), 1492.2 (high) — a 2.9× increase from low to high. The model searches substantially more when given more reasoning budget, generating more tokens and making more search calls, but the additional compute buys essentially zero net correctness gain — the small improvements in answer accuracy are canceled by the degradation in abstention accuracy, while costs nearly triple.
Figure 4 extends this pattern across model complexity tiers within the same model family (GPT-4o-mini → o4-mini → o4-mini-deep-research). As configurations become more complex, answer accuracy increases (the bar heights rise) while abstention accuracy consistently degrades (the abstention bars shrink). TPC (shown in log scale) increases dramatically with search capabilities, with Deep Research reaching 38.9k TPC. This establishes a monotonic relationship: increased model capability → increased search behavior → increased computational cost → minimal or negative net correctness gain.
Abstention failure costs the most (Figure 5). Decomposing TPC by outcome category reveals that abstention failure — the model answers when it should abstain — is the most expensive failure mode. Figure 5 shows TPC breakdowns for each model across outcome categories. For most models, the "abstention failure" segment (answering unanswerable queries) dominates TPC, because models repeatedly invoke search for fundamentally unanswerable queries, accumulating large costs without achieving correctness (since answering an unanswerable query is never counted as correct, the cost contributes to the numerator without contributing to the denominator). This is the clearest evidence that over-searching is not merely a benign inefficiency — it is a costly waste because the searches are conducted on queries where success is structurally impossible.
Noisy Retrieval Dramatically Increases Search Cost (Section 5.2)
Headline finding. Retrieval corpus quality has a profound effect on search behavior and TPC, with noisier corpora causing models to search much more while paradoxically sometimes improving abstention accuracy. Table 4 compares four retrieval sources across six search-augmented models. Using Wikipedia-Latest as the clean baseline (average TPC 732.5), the C5 noisy corpus increases average TPC to 2606.7 — a 3.6× inflation — while achieving the second-best abstention accuracy (50.1% vs. 50.2% for Wikipedia-Latest). The stale Wikipedia (2018 dump) shows intermediate behavior: TPC rises to 900.3 (1.23× over baseline) with abstention accuracy dropping to 47.9%. Web Search achieves the best answer accuracy (72.3% average) but the worst abstention accuracy (46.5%), with TPC at 902.0.
The C5 result is the most interesting. Despite being the noisiest corpus with Wikipedia content removed, it produces the second-highest abstention accuracy. The paper's interpretation (developed in Section 5.2 and the evidence composition analysis) is that C5 contains more ambiguity and contradiction — documents that inadvertently signal uncertainty — which helps models recognize unanswerability. However, the cost of finding these signals is catastrophic: TPC of 2606.7 means models expend 3.6× more computation per correct response on C5 compared to clean Wikipedia. Some models are hit harder than others: Qwen3-235B-Instruct sees TPC soar to 3794.1 on C5 (4.7× over its Wikipedia-Latest TPC of 811.5), while Mistral-Small-24B is relatively robust (1486.9 on C5, 4.5× over 329.2).
The per-model breakdown reveals substantial variance in sensitivity to retrieval quality. Kimi-K2 is the most efficient across retrieval conditions (C5 TPC of 3147.9 is the lowest inflation ratio at 4.8× over Wikipedia-Latest 656.9, though still enormous). Mistral-Small-24B has the lowest absolute TPC across all conditions (329.2 on Wikipedia-Latest, 428.9 on stale Wikipedia, 1486.9 on C5, 684.1 on Web Search) — this smaller model may search less aggressively overall, keeping costs down even when retrieval quality degrades.
Web Search is the most naturalistic condition and shows the worst trade-off. Access to the full internet (Web Search) produces the best answer accuracy (72.3% average, +0.9 points over Wikipedia-Latest at 71.4%) but the worst abstention accuracy (46.5%, -3.7 points). TPC is 902.0, higher than Wikipedia-Latest (732.5) and stale Wikipedia (900.3) but much lower than C5. The paper notes this likely reflects "the challenges of real-world retrieval environments where uncontrollable and mixed signals can complicate abstention decisions" — web search surfaces diverse, often high-quality documents that provide strong positive evidence for answerable queries (boosting answer accuracy) but also surface misleadingly relevant documents for unanswerable queries (degrading abstention).
Evidence Composition Determines Abstention Behavior (Section 5.2)
Headline finding. The balance of positive vs. negative evidence in naturally retrieved documents is the single strongest predictor of abstention behavior. Table 5 reports abstention accuracy on unanswerable queries grouped by the evidence balance in the documents that happened to be retrieved (no experimental manipulation — purely observational grouping). Across all six models evaluated, the pattern is stark and monotonic:
- Only positive evidence present: abstention accuracy = 0.0% for every model. Not a single model achieves a single correct abstention when all retrieved documents are positive.
- Positive ≥ Negative evidence: abstention accuracy rises to 31.2–33.3% across models. The presence of any negative evidence, even when outnumbered, moves abstention from zero to roughly one-third.
- Negative > Positive evidence: abstention accuracy jumps to 66.7–68.8%. When negative evidence dominates, models abstain on roughly two-thirds of unanswerable queries.
- Only negative evidence present: abstention accuracy reaches 89.4–100.0%. Near-perfect abstention when the model sees nothing but uncertainty signals.
The "Evid." columns in Table 5 show the percentage of unanswerable queries falling into each evidence-balance category. The majority fall into Positive ≥ Negative (41.3–57.1% across models) or Negative > Positive (36.0–83.9%), with Only Positive and Only Negative each being relatively rare (13.0–21.8% and 13.0–21.8%, respectively). This distribution means models operate in the intermediate evidence-balance regimes most of the time, where abstention accuracy hovers in the 30–33% or 67–69% range — far from perfect.
Why only-positive evidence produces zero abstention. The 0.0% abstention accuracy when only positive evidence is present is the most striking number in the paper. It means that when the retrieval system returns documents that all appear relevant and informative (even if they are misleading for unanswerable queries), the model always attempts to answer. There is no internal "unknowability detector" that overrides the positive retrieval signal. The model's decision to abstain is entirely driven by the content of what it retrieves, not by any independent assessment of the query's answerability. This is consistent with the evidence asymmetry hypothesis: the model has learned to trust retrieval results as indicators of answerability, and in the presence of exclusively positive signals, it concludes the query must be answerable.
The percentage of negative evidence is small (Table 10). The share of retrieved documents containing negative (abstention) evidence for unanswerable queries ranges from 13.0% (Qwen3-235B-Instruct) to 21.8% (o4-mini) across models, with a similar range for answerable queries (4.7% to 8.3%). This confirms the paper's structural claim: real-world corpora overwhelmingly contain positive information, making the evidence balance skewed against abstention in the majority of retrieval episodes. The model's poor abstention performance is thus not solely a model capability deficit — it reflects a corpus-level bias that deprives the model of the negative evidence needed to recognize unanswerability.
Multi-Turn Conversations Create a Snowball Effect (Section 5.3)
Headline finding. Conversational history shapes search and abstention behavior on subsequent turns, with answerable prior turns biasing the model toward answering unanswerable queries. Figure 6 shows results for GPT-4o-mini across three conversational contexts of 1–9 turns:
- Unanswerable context (all preceding turns are unanswerable): Abstention accuracy remains stable and even shows slight improvement as conversation turns increase (the line is flat with a slight upward trend). The model maintains its abstention capability when the history consistently models abstention.
- Mixed context (random mix of answerable and unanswerable preceding turns): Abstention accuracy degrades with conversation length, falling below the unanswerable-context line. The mixed signal partially erodes abstention.
- Answerable context (all preceding turns are answerable): Abstention accuracy exhibits the largest degradation, dropping substantially as conversation length increases from 1 to 9 turns. Prior successful answers — where the model searched, found evidence, and answered correctly — bias it toward attempting answers on subsequent queries, even when those subsequent queries are unanswerable.
TPC increases with conversation length for all contexts. The right panel of Figure 6 shows TPC rising as conversation length grows, regardless of context type. Longer conversations accumulate more total tokens (conversation history + responses) and more search calls across turns, inflating TPC even when correctness rates are stable. This is a cost-amplification effect: even if per-turn behavior is unchanged, multi-turn interactions mechanically increase total cost, and TPC captures this because it aggregates cost and correctness over the entire conversation, not per-turn.
The snowball effect is asymmetric. Prior answerable turns have a stronger biasing effect (reducing abstention) than prior unanswerable turns have a corrective effect (improving abstention). The unanswerable-context abstention accuracy line shows only modest improvement; the answerable-context line shows substantial degradation. This asymmetry means the system is fragile: a single answerable conversation can degrade reliability on subsequent turns, but a string of unanswerable conversations does not inoculate the model against future over-searching. The practical implication is that conversational search systems will tend to drift toward over-answering over time, because real-world conversations mix answerable and unanswerable queries, and the answerable ones create a bias that the unanswerable ones cannot fully reverse.
Mitigation Strategies Yield Modest, Trade-off-Laden Improvements (Section 5.4)
Headline finding. Training-free interventions improve abstention accuracy but at the cost of answer accuracy (prompt-based methods) or with minimal effect (corpus augmentation), demonstrating that over-searching cannot be resolved through input modification alone. Table 6 reports results for four mitigation strategies across six models, compared against the unmitigated baseline (Baseline column, reproducing the with-search results from Table 2).
Query-level mitigation: three prompt strategies with a trade-off spectrum.
- Abstention-aware prompting (explicitly instructing the model that questions may be unanswerable): Improves abstention accuracy by an average of 10.0 percentage points (from 50.2% to 60.2%), while reducing answer accuracy by 1.5 points (from 71.4% to 69.9%). TPC decreases from 732.6 to 554.8 — the only strategy to reduce TPC, because the abstention improvement reduces wasted search on unanswerable queries without adding overhead.
- Few-shot prompting (providing examples of appropriate abstention and answering behavior): Achieves the strongest abstention improvement, +13.2 points (from 50.2% to 63.4%), but incurs the largest answer accuracy penalty, -1.8 points (from 71.4% to 69.6%). TPC is 583.6, higher than abstention-aware but still below baseline.
- Self-evaluation (a two-stage process: assess answerability, then answer or abstain): Provides +11.3 points abstention improvement (to 61.5%) with -1.5 points answer accuracy loss (to 69.9%). TPC is 663.9, higher than the other two prompt strategies because the self-assessment stage itself generates tokens and may trigger searches. This strategy achieves balanced accuracy improvements but at higher computational cost — a microcosm of the accuracy-efficiency trade-off.
Few-shot's over-abstention problem. The paper notes that few-shot learning "achieves the strongest abstention improvements but incurs the largest answer accuracy reduction, suggesting that explicit examples may bias models toward over-abstention." The examples in the few-shot prompt (Appendix G) include three abstention cases and two answer cases — a 3:2 ratio that may skew behavior toward abstention even on answerable queries. This is a classic calibration problem: providing examples shifts the model's implicit prior on the answerability distribution, and the shift overshoots.
Retrieval-level mitigation: corpus augmentation barely moves the needle. Inserting 10 synthetic negative evidence documents per query into the Wikipedia-Latest corpus improves abstention accuracy by only 3.6 points on average (from 50.2% to 53.8%). Answer accuracy is essentially unchanged (70.9% vs. 71.4% baseline). TPC increases slightly (736.4 vs. 732.6), suggesting the synthetic documents add context tokens without proportionally improving correctness. The paper attributes the limited effectiveness to two factors: "(i) synthetic documents rank poorly in retrieval" (the E5-base embedding model does not surface them in the top-3 results), and "(ii) negative evidence is diluted by numerous naturally-occurring positive documents" (even when retrieved, 10 synthetic negatives are overwhelmed by the volume of natural positives).
Model-level variation in mitigation effectiveness. The strategies are not equally effective across models. Abstention-aware prompting is particularly effective for Kimi-K2 (abstention accuracy jumps from 50.5% to 62.3%, +11.8 points) and Mistral-Small-24B (53.2% to 58.4%, +5.2 points), while having minimal effect on o4-mini (49.2% to 52.5%, +3.3 points). Few-shot prompting shows the largest gains for Kimi-K2 (50.5% to 67.5%, +17.0 points) and o4-mini (49.2% to 59.8%, +10.6 points). Corpus augmentation is most effective for Kimi-K2 (50.5% to 54.7%, +4.2 points). These variations suggest that the effectiveness of mitigation depends on the model's underlying search policy, which is shaped by its training — some models are more responsive to prompting than others.
Ablation Studies and Robustness Checks
The paper's primary ablation is the systematic variation of experimental conditions — retrieval source (Table 4), reasoning effort (Table 3), model complexity (Figure 4), conversational context (Figure 6), and evidence balance (Table 5) — which collectively establish the robustness (or lack thereof) of over-searching behavior across configurations. Each of these serves as an ablative test of whether over-searching generalizes or is specific to particular conditions. Beyond these primary condition variations, the paper includes several specific robustness checks and ablations, primarily in the appendices:
-
LLM judge validity (Appendix C): Inter-judge agreement across three judges (GPT-4o-mini, Llama-4-Scout, Llama-4-Maverick) shows average pairwise agreement of 89.4% for answer accuracy and 92.3% for abstention accuracy (Figure 8), confirming that the evaluation is not an artifact of a particular judge model. Human validation on 100 randomly selected responses shows 84% agreement with the default judge (Appendix C.2), with the LLM judge being slightly conservative (biased toward identifying abstention) — 10 of 16 disagreements were the LLM judge calling abstention when the human did not.
-
TPC coefficient sensitivity (Appendix B.2): The paper justifies its choice of
$\lambda = 0.25$and$\mu = 500$based on GPT-4o-mini API pricing (input cost 0.25× output cost, one search call ≈ 500 output tokens), but does not perform a sensitivity analysis varying these coefficients. The claim that TPC comparisons across models are valid relies on the assumption that relative TPC rankings are stable under reasonable coefficient variation — this is not tested. -
Marginal ROI as alternative over-searching measure (Appendix A.2, Table 7): The marginal return on investment analysis for o4-mini provides a convergent operationalization of over-searching. The first search yields ROI of +0.874% (accuracy gain per 1000 tokens), but subsequent searches oscillate: ROI drops to -0.033% by turn 5, reaches -1.595% by turn 15, and -3.634% by turn 17. These negative ROI values confirm that the model is not merely plateauing — it is actively harming itself through additional searches. The alignment between TPC (increasing monotonically) and marginal ROI (turning negative) provides convergent validation that over-searching is occurring.
-
Optimal search vs. actual search (Appendix A.1, Table 8): The comparison of actual searches (
$\bar{k}_q$) against optimal searches ($\bar{k}^*_q$, defined as the minimum number of searches needed to achieve the same correct outcome) shows models perform 70.5% more searches than necessary on average (0.620 actual vs. 0.364 optimal). Llama-3.3-70B over-searches by 84.9%, the highest rate; Mistral-Small-24B by 43.0%, the lowest. This analysis applies only to the subset of queries the model answers correctly, which limits its coverage — it cannot capture wasted search on queries the model never gets right. -
Category-specific similarity breakdown (Appendix Figure 9): t-SNE visualizations of question embeddings for each unanswerability category (AU, FP, UC) confirm that answerable and unanswerable queries occupy overlapping embedding regions within each category, validating that the similarity matching in benchmark construction successfully controlled for topic/domain confounds.
-
Evidence balance distribution (Table 10): The share of retrieved documents containing negative evidence for unanswerable queries ranges narrowly (13.0–21.8% across models), confirming that the evidence asymmetry is a property of the corpus (all models retrieve from similar document distributions) rather than an artifact of different models retrieving different types of documents.
Notable absent ablations. Several experiments that would strengthen the paper's claims are not reported:
-
No search-cap ablation: The paper evaluates models with 0 vs. 10 search calls allowed but does not systematically vary the search cap (e.g., 1, 3, 5, 7, 10) to map the full curve of performance vs. search depth. The Figure 2 sweep (0–19 turns for o4-mini) is the closest, but this is shown as a demonstration for one model rather than systematically replicated across models.
-
No retrieval depth (k) ablation: All experiments use
$k = 3$documents per search call. The effect of retrieving more or fewer documents per call on abstention behavior is not explored. This is particularly relevant for the evidence balance finding — if$k$were larger, more negative evidence might appear in the retrieved set, potentially improving abstention. -
No synthetic evidence quality/quantity ablation: The corpus augmentation experiment inserts exactly 10 synthetic negative documents per query. The effect of varying this number (1, 5, 20, 100) or the quality of synthetic evidence (generated by different models, using different prompts) is not explored. This limits the strength of the "corpus augmentation barely helps" conclusion — it could be that better or more numerous synthetic evidence would help more.
-
No multi-model combination for abstention: The paper cites Feng et al. (2024)'s multi-model collaboration approach in the related work (Section 2) but does not test whether ensemble or collaborative abstention decisions across multiple models reduce over-searching. Given that different models show different over-searching patterns (Table 2), combining their abstention signals could be informative.
-
No latency measurement: TPC captures total computational expenditure but not wall-clock time. For the multi-turn experiments and deep research system, latency is a practically important constraint that is not addressed. A strategy that achieves low TPC through extensive parallel searching could have unacceptable latency.
-
No error bar or confidence interval reporting: All tables report point estimates without any quantification of uncertainty. With 594 unanswerable queries and 594 answerable queries, the effective sample size for per-category analyses (e.g., AU has only 146 unanswerable queries) is modest. Confidence intervals would help assess whether differences between models or conditions are statistically reliable. The three-category breakdowns further reduce per-bin sample sizes: False Premise has 192 unanswerable queries, Answer Unknown has 146, Underspecified Context has 256.
Critical Assessment
Claim 1: "Search improves answer accuracy on answerable queries but harms abstention on unanswerable ones."
This claim is well-supported by Table 2, which provides a complete dataset of nine models evaluated both with and without search. The pattern is consistent across all models: every model's answer accuracy increases with search (average +13.3 points), and every model's abstention accuracy decreases (average -7.0 points). The claim is further supported by the per-category breakdown showing the degradation is concentrated in Underspecified Context queries, which is mechanistically plausible (ambiguous queries are most vulnerable to search-induced misinterpretation). The evidence is comprehensive with respect to the models tested.
A limitation is that all models are evaluated with the same retrieval infrastructure (E5-base over Wikipedia), and it is possible that better retrieval (e.g., using a more capable retriever, retrieving more documents, or using a reranker) would change the answer-accuracy vs. abstention-accuracy trade-off. The paper's Web Search condition (Table 4) provides some evidence that even real-world retrieval access — which should be better than E5-base over Wikipedia — produces the same trade-off (highest answer accuracy, worst abstention accuracy). This strengthens the claim's generality, though it is only tested on the models that support web search.
Claim 2: "Over-searching is most pronounced in reasoning models and deep research systems."
This claim is supported but with caveats. Table 3 provides clean evidence for o4-mini: increased reasoning effort (low → medium → high) decreases abstention accuracy (46.6% → 45.4%) while dramatically increasing TPC (517.1 → 1492.2). Figure 4 shows the same pattern across complexity tiers (Base → Reason → Deep Research): answer accuracy increases but abstention accuracy degrades, with Deep Research TPC reaching 38.9k — 221× the base configuration. However, the causal claim that "reasoning-style fine-tuning causes over-searching" cannot be definitively established from these observational comparisons. The reasoning models (o4-mini, Qwen3-235B-Thinking) differ from their base counterparts (GPT-4o-mini, Qwen3-235B-Instruct) not just in reasoning fine-tuning but potentially in other aspects of their training pipeline. The Qwen3-235B pair comparison in Table 2 is informative: Qwen3-235B-Thinking has higher answer accuracy than Instruct (72.8% vs. 72.1%) and slightly worse abstention accuracy (51.2% vs. 52.5%), with substantially higher TPC (1292.3 vs. 811.5). The TPC difference is large and consistent with the claim, but the abstention difference is small (1.3 points), making the "harms abstention" part of the claim weaker for this particular comparison.
A stronger test would be to compare the same base model before and after reasoning fine-tuning, holding all else equal — this is approximated for o4-mini (compared to GPT-4o-mini as "base") but the two models may differ in architecture, scale, and pretraining data, not just reasoning fine-tuning. The claim is thus supported for the specific models tested but would benefit from more controlled comparisons within single model families at identical parameter counts.
Claim 3: "Over-searching is exacerbated by noisy retrieval."
This claim is strongly supported by Table 4, specifically the C5 results. C5 (noisy web corpus, Wikipedia removed) inflates TPC by 3.6× on average compared to Wikipedia-Latest, with individual models showing inflation factors from 3.2× (Kimi-K2: 656.9 → 3147.9) to 4.7× (Qwen3-235B-Instruct: 811.5 → 3794.1). This is a large, consistent effect. However, the claim must be qualified: "exacerbated" refers specifically to computational cost (TPC), not to abstention accuracy. C5 actually achieves the second-best abstention accuracy (50.1%, nearly tied with Wikipedia-Latest at 50.2%). So noisy retrieval makes models search more (dramatically increasing cost) without necessarily making them abstain worse. The causal chain is: noisy retrieval → models search more aggressively (trying to find signal in noise) → TPC explodes → but abstention accuracy is not proportionally degraded. The claim as stated might be interpreted as "noisy retrieval makes over-searching worse in all respects," when the evidence shows it makes the cost dimension worse while leaving the correctness dimension approximately unchanged.
The stale Wikipedia results (enwiki-20180901) provide a useful intermediate point. TPC increases to 900.3 (1.23× over latest Wikipedia), abstention accuracy drops to 47.9% (-2.3 points), and answer accuracy is essentially flat (71.1% vs. 71.4%). Temporal staleness thus causes a moderate increase in over-searching — models search more to find up-to-date information that doesn't exist in the 2018 corpus, incurring cost without finding answers. This is a conceptually distinct mechanism from the C5 noise mechanism, and the paper's framework (evidence asymmetry hypothesis) explains both: C5 provides ambiguous/contradictory documents (negative evidence that helps abstention but at high search cost), while stale Wikipedia provides documents that appear authoritative but are outdated (positive evidence that doesn't help answer but doesn't trigger abstention either).
Claim 4: "The composition of retrieved evidence is crucial — negative evidence improves abstention."
This is the paper's strongest empirical claim and is very well supported by Table 5. The dose-response relationship — 0.0% abstention with only positive evidence, ~32% with balanced evidence, ~68% with negative-dominant evidence, ~95% with only negative evidence — is observed consistently across all six models, with near-identical numbers. This is exactly the pattern one would expect if evidence composition is causally driving abstention, and the consistency across diverse model architectures (GPT-4o-mini, o4-mini, Qwen3-235B, Kimi-K2, Llama-3.3-70B, Mistral-Small-24B) suggests the mechanism is general, not model-specific.
A limitation is that this is observational, not interventional. The paper groups queries by what evidence happens to be retrieved, rather than experimentally manipulating evidence composition. This means there could be confounding factors — queries that naturally retrieve negative evidence might be systematically different (easier to recognize as unanswerable, more obviously flawed) than queries that retrieve only positive evidence. The model might abstain on these queries not because of the negative evidence but because the queries themselves have intrinsic properties that both cause negative evidence to be retrieved and cause the model to recognize unanswerability. An experimental manipulation — e.g., taking a query where the model failed to abstain under only-positive evidence and inserting negative evidence into the retrieval results to see if abstention behavior changes — would provide stronger causal evidence. The corpus augmentation experiment (Table 6) is a partial step in this direction (adding negative evidence to the corpus), but its limited effectiveness (3.6% average gain) makes it a weak test, because the synthetic evidence often isn't retrieved at all.
Despite this limitation, the dose-response pattern is unusually clean for observational data, and the alternative explanation (intrinsic query properties explain everything) is weakened by the fact that the same model shows dramatically different behavior on the same query type depending only on what it retrieves. If query properties were determinative, abstention rates would be similar across evidence-balance categories for the same query type. The paper's claim is thus well-supported, though a direct interventional experiment would strengthen it further.
Claim 5: "Over-searching compounds across turns in multi-turn conversations."
This claim is supported by Figure 6 for GPT-4o-mini, showing that abstention accuracy degrades with conversation length in answerable and mixed contexts while TPC increases across all contexts. However, the evidence is limited in scope: only one model (GPT-4o-mini) is shown, only three context types are tested, and the multi-turn construction methodology (how the preceding turns' queries are selected, whether the model's responses to preceding turns are successes or failures, etc.) is not exhaustively described. The claim is plausible and mechanistically consistent with the broader evidence asymmetry framework (conversational history acts as temporal positive evidence), but the experimental support is thinner than for the other claims — one model, one figure, limited conditions.
To strengthen this claim, the paper would need to show: (1) replication across multiple models (ideally with different base abstention rates), (2) analysis of how preceding turns bias the model — is it the model's own successful answers that create the bias, or merely the presence of answerable questions regardless of the model's handling of them? — and (3) quantitative measurement of the degradation magnitude, not just trend lines. Figure 6 shows trends without numerical values, making it hard to assess effect sizes. The y-axis scaling and exact degradation amounts are not provided.
Claim 6: "Training-free mitigation strategies do not resolve models' fundamental inability to search rationally."
This claim is supported by Table 6, which shows that prompt-based and retrieval-based interventions yield partial improvements (+7.7 to +13.2 points abstention accuracy) but leave substantial room for improvement — even the best strategy (few-shot) achieves only 63.4% average abstention accuracy, meaning ~37% of unanswerable queries still elicit answers. The claim that these strategies "do not resolve" the problem is thus defensible: they improve but do not solve.
However, the "fundamental inability" framing is stronger than what the experiments directly test. The paper evaluates three specific prompt strategies using particular prompts (shown in Appendix G) and one retrieval augmentation approach using one synthetic evidence generation method. It is possible that other training-free approaches — better prompt engineering, different evidence generation techniques, hybrid query-and-retrieval strategies, or approaches not considered — could achieve substantially better results. The paper's conclusion that the problem requires training-time interventions is reasonable given the evidence, but it is an inference from limited exploration of the training-free space rather than a proof that training-free approaches cannot work.
Particularly notable is the absence of several obvious training-free approaches: (1) verifier-guided search termination — using the PRM (process reward model) or a trained abstention classifier to decide when to stop searching, analogous to how the search-augmented LLM literature uses verifiers to select among generated candidates; (2) consistency-based abstention — generating multiple responses with different search depths and checking for consistency, abstaining if responses diverge (a form of self-consistency applied to abstention); (3) retrieval source filtering — detecting when retrieved documents are contradictory or low-confidence and using that as an abstention signal. These approaches are training-free (they modify inference-time procedure, not model weights) and exploit the evidence composition finding (Table 5) that abstention depends on what is retrieved. The paper's claim that training-free mitigation is insufficient would be stronger if it had tested a wider range of such strategies.
Overall assessment. The experiments provide strong support for the paper's descriptive claims — over-searching exists, it follows a systematic pattern across query types and model configurations, and it is driven substantially by retrieved evidence composition. The TPC metric effectively captures the hidden cost of search. The mitigation experiments are adequate for establishing that simple prompt-based and retrieval-based approaches are insufficient, which sets up the paper's call for training-time solutions. The main experimental weaknesses are: (1) reliance on single-model demonstrations for key claims (Figure 6 for multi-turn, Figure 2 for search-depth scaling), (2) observational rather than interventional evidence for the evidence composition hypothesis, (3) limited exploration of the training-free mitigation space before concluding it is insufficient, and (4) absence of uncertainty quantification throughout. These weaknesses do not undermine the paper's core contributions but provide clear directions for follow-up work to strengthen and extend the findings.
6. Limitations and Trade-offs
1. Difficulty Estimation Cost Is Unaccounted for and Likely Prohibitive
The assumption or constraint. The entire compute-optimal framework — both the search-based strategies and the revision strategies — rests on the ability to estimate a question's difficulty before deciding how to allocate the inference budget. The paper's method for doing so, described in Section 3.2, requires generating 2048 samples per question and computing either ground-truth pass@1 (oracle) or PRM-based predicted difficulty. The authors explicitly acknowledge this cost caveat:
"This removes the need for ground-truth labels but still requires the computational cost of generating 2048 samples and scoring them. The authors acknowledge this cost (Section 3.2) and frame it as an exploration-exploitation tradeoff — compute spent assessing difficulty versus compute spent solving the problem — flagging it as a key avenue for future work."
In the reference example's prior analysis, this limitation was correctly identified as unaccounted overhead. The paper does not amortize or include difficulty estimation costs in any of its budget calculations when reporting the ~4× efficiency gains.
The consequence. The reported efficiency improvements — e.g., compute-optimal search matching best-of-N performance with 4× fewer generations (Figure 4) — are computed after difficulty is known, without deducting the cost of learning it. Generating 2048 samples per question is extraordinarily expensive: it consumes 8× more compute than the largest test-time budgets studied (256 generations) and 128× more than the smallest budgets (16 generations). In a realistic deployment, the total cost would be difficulty_estimation_cost + strategy_execution_cost, and the former could dominate the latter entirely. The paper's headline claim of "4× better efficiency" is therefore best understood as an upper bound on achievable gains — the realized improvement in a deployed system would be strictly lower and potentially negative (the difficulty estimation might cost more than the savings it enables).
This is particularly acute for the predicted (non-oracle) difficulty method, which still requires 2048 PRM forward passes per question. While this avoids the circularity of needing ground-truth labels, it does not reduce the computational cost: the PRM must still score 2048 complete solutions, which means generating those 2048 solutions from the base model in the first place. The paper frames this as an exploration-exploitation tradeoff but never quantifies it — we don't know at what budget levels the difficulty estimation cost exceeds the strategy optimization gains.
What evidence exists in the paper. The limitation is acknowledged directly in Section 3.2 (the exploration-exploitation tradeoff discussion). The cost of 2048 samples is implicit in the description of the difficulty estimation procedure. No figure or table quantifies the difficulty estimation cost relative to the test-time compute budget, and no amortized efficiency calculation is provided. The oracle vs. predicted difficulty comparison (Figures 4 and 8) shows that both methods work similarly well, but this comparison is silent on whether either method's cost is justified.
Mitigation status. The paper does not attempt to solve this problem. It explicitly flags cheap difficulty estimation as "a key avenue for future work" (Section 3.2), suggesting that "pretraining or finetuning models to directly predict difficulty of a question" could close the gap. However, no such model is developed, trained, or evaluated. A more immediate approach — adaptive difficulty estimation using a small number of initial samples (e.g., 4–8) as a quick difficulty signal, then allocating the remaining budget accordingly — is not explored. Until this gap is closed, the compute-optimal framework remains primarily an analytical contribution rather than a directly deployable system.
2. Revisions and Search Are Studied Independently — The Combined Capability Is Unknown
The assumption or constraint. The paper studies two complementary mechanisms for test-time compute — PRM-guided search (Section 5) and iterative revisions (Section 6) — but never combines them. The authors acknowledge this explicitly in Section 8:
"We did not experiment with PRM tree-search techniques in combination with revisions"
The analysis treats these as independent axes, and the compute-optimal policy selects between them (or selects hyperparameters within each axis) but never deploys both simultaneously.
The consequence. The paper's results represent a lower bound on what test-time compute can achieve. The two mechanisms have documented complementary strengths: revisions improve the proposal distribution (generating higher-quality candidates, particularly on easy problems where the model's initial attempts are roughly correct and need refinement), while PRM search improves candidate selection (finding the best among generated candidates, particularly on medium-difficulty problems where the model needs to explore qualitatively different solution strategies). Applying beam search to revision model outputs — or using the PRM to guide which revisions to pursue within a revision chain, rather than blindly generating sequential revisions — could yield gains beyond either method alone.
The paper's difficulty-dependent findings reinforce this complementarity. Revisions are most effective on easy problems (Figure 7, right, bin 1 is flat and high regardless of ratio; bin 2 benefits from sequential revision), while beam search is most effective on medium problems (Figure 3, right, bins 3–4 show beam search outperforming best-of-N). On medium-hard problems, a combined system might use revisions to refine candidates within a beam, or use the PRM to score partial revision chains and prune unpromising ones. The performance ceiling of a combined system is entirely unexplored, and it could be substantially higher than the ~4× efficiency gain reported for either mechanism individually.
What evidence exists in the paper. The limitation is acknowledged in Section 8 but not measured. There is no experiment that combines PRM search with the revision model. The closest the paper comes to bridging the two is the separate PRM (trained on base model outputs) and ORM (trained on revision model outputs, Appendix J, Figure 15a), which are used independently to score candidates from their respective models. The paper notes that the base-LM PRM does not transfer well to revision model outputs due to distribution shift — this suggests that combining search and revisions would require either a verifier trained on revision-model-in-search-context outputs (which doesn't exist) or a more robust cross-distribution verifier (which the paper doesn't develop).
Mitigation status. The paper identifies this as future work in Section 8 but does not attempt it. The distribution shift between base model and revision model outputs (demonstrated in Appendix J, Figure 15a) is a practical obstacle: a PRM trained on base-model samples may not score revision-model outputs accurately, making PRM-guided search over revision outputs unreliable. Solving this would require either on-policy PRM training (expensive) or verifier architectures robust to distribution shift (not explored). The paper's contribution is to characterize each axis independently and demonstrate their complementary difficulty-dependent strengths, providing the motivation and baseline for future combined approaches.
3. The ~14× Larger Model Baseline Is Not Compute-Optimal — FLOPs Comparisons Are Favorable to Test-Time Compute
The assumption or constraint. The FLOPs-matched comparison in Section 7 scales model parameters while holding training data fixed, explicitly following the LLaMA paradigm (Touvron et al., 2023) rather than compute-optimal pretraining (Hoffmann et al., 2022). The authors state:
"We choose this setting as it is representative of a canonical approach to scaling pretraining compute and leave the analysis of compute-optimal scaling of pretraining compute where the data and parameters are both scaled equally to future work."
Furthermore, the ~14× larger model is evaluated with greedy decoding only — no majority voting, no best-of-N, no search. The comparison is thus between a smaller model with substantial test-time compute optimization and a larger model without any test-time compute augmentation.
The consequence. The pretraining baseline is weaker than it could be, potentially inflating the reported advantages of test-time compute over pretraining. Two separate biases are at work:
First, a Chinchilla-optimal model trained with 14× more total FLOPs would scale both parameters and data, likely outperforming a parameter-only-scaled model. The magnitude of this effect is not quantified in the paper — we don't know how much of the reported +27.8% relative advantage for test-time compute on medium questions at R ≪ 1 (Figure 1, top-right bar chart) would persist against a compute-optimal larger model.
Second, giving the ~14× larger model any test-time compute budget — even a modest best-of-8 or best-of-16 — would create a much stronger baseline. The paper's FLOPs-matched framework accounts for the larger model's per-token inference cost being higher, but it does not consider whether a small test-time compute budget for the larger model (which costs more per token but might benefit proportionally) would shift the comparison. This is particularly relevant because the paper's own results show that test-time compute provides the largest marginal gains at low budgets (Figure 3, left: beam search shows the steepest improvement from 2–8 generations). A larger model with best-of-8 might capture most of the benefit of test-time compute while retaining its pretraining advantage on hard problems, making it strictly better than the smaller model for a modest additional inference cost.
What evidence exists in the paper. The paper is transparent about the parameter-only scaling choice, acknowledging it in Section 7. However, no sensitivity analysis is provided — we don't know how the FLOPs-matched comparison would change under different pretraining scaling assumptions. The greedy decoding choice for the larger model is described in Section 7 but not justified as a deliberate design decision beyond being the default comparison point. No ablation shows the larger model's performance with incremental test-time compute (e.g., best-of-4, best-of-16).
Mitigation status. The paper explicitly leaves compute-optimal pretraining comparisons to future work. The greedy-decoding-only baseline choice is not discussed as a limitation, but it represents a methodological asymmetry: test-time compute is optimized for the small model but not for the large model. A fairer comparison would give both models proportional test-time compute budgets (accounting for the larger model's higher per-token cost) or would evaluate both at their respective compute-optimal test-time allocations. The paper's current comparison establishes that test-time compute can substitute for pretraining in some regimes, but not how much substitution is possible when both models are deployed optimally.
4. Single Benchmark, Single Model Family — Generalization Is Untested
The assumption or constraint. All experiments use the MATH benchmark (500 test questions of high-school competition-level math) with PaLM 2-S* as the base model (and a ~14× larger variant from the same family for the FLOPs comparison). The paper states:
"We believe this model is representative of the capabilities of many contemporary LLMs"
but provides no cross-model or cross-domain validation. The experimental universe is entirely confined to mathematical reasoning with a single model architecture.
The consequence. Several aspects of the findings could be model-specific or domain-specific in ways that would substantially change the practical guidance for practitioners deploying test-time compute strategies:
Model-specific factors. The PRM's quality and over-optimization behavior depend on PaLM 2-S*'s output distribution — its calibration, its error patterns, the diversity of its sampling. A model with different properties might exhibit different difficulty-dependent scaling curves. For instance, if a model's outputs are more diverse (higher entropy sampling), beam search might explore more effectively, shifting the optimal strategy away from best-of-N on easy problems. Conversely, a more deterministic model might saturate best-of-N faster, making revisions or search more valuable at lower budgets.
Domain-specific factors. MATH consists of problems requiring multi-step symbolic reasoning with clear correctness criteria. Two properties of this domain are central to the paper's approach and may not transfer: (1) the existence of well-defined intermediate steps that the PRM can score (each line of a mathematical derivation), and (2) the availability of ground-truth answers for difficulty estimation and PRM training (via the Monte Carlo rollout procedure). For tasks without clean step structure — open-ended generation, dialogue, creative writing — it is unclear how to define or train a process reward model. For tasks without objective correctness — summarization quality, translation adequacy, helpfulness — the Monte Carlo rollout training procedure (which requires binary correct/incorrect labels for completions) cannot be applied directly. The difficulty-dependent patterns (beam search over-optimizing on easy problems, revisions helping only on in-distribution difficulty) might be entirely different in domains where "easy" vs. "hard" has a different structure.
Dataset-specific factors. The MATH test set is 500 questions, split into five difficulty quintiles of ~100 each. With two-fold cross-validation within each bin (Section 3.2), the compute-optimal strategy is selected based on approximately 50 questions per fold per bin. This is a very small sample for strategy selection, and the observed optimal policies may not be robust. The paper does not report confidence intervals on the compute-optimal scaling curves, making it impossible to assess whether the 4× efficiency claim is statistically reliable or reflects a favorable sample split.
What evidence exists in the paper. The limitation is acknowledged implicitly — the paper never claims cross-domain or cross-model generality — but not measured. There are no experiments on other benchmarks (e.g., GSM8K for math, HumanEval for code, a reading comprehension dataset for factual QA). There are no experiments with other model families (e.g., LLaMA, GPT, Claude). The paper's claim that PaLM 2-S* is "representative" is an assertion, not an empirical finding.
Mitigation status. The paper does not address this limitation beyond stating the belief in representativeness. Replication across model families and domains is identified implicitly as future work through the paper's positioning as a foundational analysis, but it is not explicitly called out as a required next step. For practitioners, this means the specific strategy recommendations — use beam search with M=4 on medium problems, sequential revisions on easy problems, best-of-N weighted on hard problems — should be treated as PaLM 2-S* specific until validated on their own model.
5. Sequential Revision Latency Is Ignored — the Parallel-to-Sequential Tradeoff Depends on Deployment Constraints
The assumption or constraint. The paper measures test-time compute exclusively in terms of "generations" — the total number of complete solutions sampled — and uses this as a proxy for total FLOPs. This assumption is stated implicitly throughout Sections 5–7, where budgets are expressed as N generations and cost models are purely generation-count-based. However, sequential revisions (Section 6) are inherently serial: each revision depends on the previous one and cannot be parallelized. The paper's TPC-like cost model does not formally exist in the original work, but the reference example's analysis of the original paper correctly identifies this as a limitation:
"Sequential revisions are inherently serial — each revision depends on the previous one — while parallel best-of-N can be executed simultaneously with sufficient hardware."
The consequence. A strategy that the compute-optimal policy favors — e.g., allocating 64 generations as a purely sequential chain of revisions on easy problems — takes dramatically longer wall-clock time than allocating 64 generations as parallel best-of-N, even though both consume the same total FLOPs. In the sequential case, the model must generate revision 1, then read revision 1 to generate revision 2, then read revisions 1–2 to generate revision 3, and so on — 64 serial forward passes. In the parallel case, all 64 generations can be batched and executed simultaneously (or in a few large batches). For latency-sensitive applications — interactive assistants, real-time decision-making, customer-facing chatbots — the wall-clock time difference between these two strategies could easily exceed an order of magnitude, making the sequential-heavy strategies favored by the compute-optimal policy on easy problems impractical regardless of their accuracy or FLOPs-efficiency advantages.
This tradeoff interacts with the difficulty-dependent optimal strategy. The paper finds that easy problems benefit most from purely sequential revisions, while hard problems benefit from a balanced sequential-parallel ratio (Figure 7, right). If latency is a hard constraint, the easy-problem strategy (purely sequential) is the most latency-expensive — it has the maximum serial depth. The hard-problem strategy (balanced ratio) is less latency-expensive because it has shallower serial depth. This means the compute-optimal policy in a FLOPs-only sense may be the least practical policy in a latency-constrained deployment, creating a tension that the paper does not acknowledge.
What evidence exists in the paper. The paper does not discuss latency at all. The generation budget is treated as the sole cost dimension. The FLOPs-matched comparison (Section 7) accounts for total compute but not for whether that compute is spent serially or in parallel. The revision inference procedure (Section 6.1) describes generating chains of sequential revisions without noting the serial dependency or its latency implications. There is no latency measurement for any strategy.
Mitigation status. Not addressed. The paper's cost model is entirely FLOPs-based, and extending it to incorporate latency would require a different framework — one that accounts for serial depth as a constraint separate from total computation. This is a practical concern for deployment but arguably outside the scope of the paper's contribution (which is analytical, characterizing the scaling behavior rather than providing production engineering guidance). Nonetheless, a practitioner reading the paper might reasonably conclude that purely sequential revision is the recommended strategy for easy problems, without realizing that this recommendation comes with a hidden latency cost that may be prohibitive in their deployment context.
6. The Revision Model Has a 38% Correct-to-Incorrect Reversion Rate with No Principled Fix
The assumption or constraint. The revision model, described in Section 6.1, is fine-tuned exclusively on sequences where all in-context answers are incorrect followed by a correct target. The training data construction procedure (Section 6.1) generates multi-turn sequences of 0–4 incorrect answers followed by a correct answer, with the last incorrect answer selected to minimize character-level edit distance to the correct answer. The paper reports a significant practical consequence of this training design:
"approximately 38% of correct answers produced during a revision chain get 'revised' back to incorrect answers in the subsequent step"
This occurs because the model was never trained on sequences containing correct answers in context — it has no learned behavior for what to do when the current answer is already correct. At inference time, when the revision chain happens to produce a correct answer (which it does with increasing probability as the chain progresses, Figure 6 left), the model may "revise" it into an incorrect answer on the next step.
The consequence. The revision chain is not monotonic — performance can degrade after reaching a correct answer. The paper mitigates this by using a selection mechanism (majority voting or verifier-based selection) across the entire chain, picking the best answer from any point rather than always taking the last revision. However, this is a post-hoc patch, not a solution to the underlying problem. The selection mechanism only helps if the correct answer appears somewhere in the chain; if the model produces a correct answer at step 5 but revises it to an incorrect answer at step 6, and then continues producing incorrect answers through step 20, the verifier must correctly identify step 5 as the best answer. This is a non-trivial requirement — the verifier must assign the highest score to the correct answer, and in a chain of mostly incorrect answers (the typical case, since the base pass@1 is only ~18%), it may not do so reliably.
More fundamentally, the ~38% reversion rate means the revision model has a built-in failure mode that limits the effectiveness of purely sequential strategies. Additional sequential depth beyond the point where a correct answer is reached has a ~38% chance of undoing that correctness. This places a soft ceiling on how much sequential revision can improve performance, even if the model's underlying revision capability continues to improve — the gains from better revisions are partially offset by reversion of already-correct answers.
What evidence exists in the paper. The ~38% figure is reported in Section 6.1. The mitigation approach (within-chain selection) is described in Section 6.1 and evaluated in Figure 6 (right), which shows that sequential + best-of-N weighted outperforms parallel + best-of-N weighted, confirming that the selection mechanism partially addresses the reversion problem. However, the paper does not report what abstention/reversion rate would be without the selection mechanism, making it impossible to quantify how much of the sequential benefit is due to improved revision vs. effective selection that masks reversion.
The ReST^EM experiment (Appendix K, Figure 16) provides indirect evidence of the reversion problem's severity: "additional sequential revisions substantially hurt performance with this model," with fully sequential performance dropping to approximately 33.5% at 256 generations compared to roughly 38.5% at the optimal ratio. This suggests that when the revision model is further optimized (via ReST^EM), the reversion problem can become worse, not better — the model may overfit to the "revise everything" behavior.
Mitigation status. The paper mitigates reversion with post-hoc chain selection but does not address the root cause. There is no experiment with a revision model trained to recognize when no revision is needed (e.g., by including correct→correct trajectories in the training data, or by training the model to output a special "no revision needed" token). The paper does not discuss alternative training data constructions that might reduce reversion, nor does it explore inference-time strategies like checking whether the current answer is already correct (using the verifier) before deciding to revise. This limitation is noted but not treated as a major open problem — the paper focuses on characterizing the compute-optimal allocation rather than improving the revision model itself. For practitioners, the ~38% reversion rate means that purely sequential revision strategies should be used with a robust within-chain selection mechanism, and that sequential chain length should be limited to avoid the regime where reversion dominates improvement.
7. Implications and Future Directions
How This Work Changes the Landscape
This paper shifts the conversation around search-augmented LLMs from a narrative of "more search is better" to one where the decision to search is itself a capability that must be evaluated, measured, and optimized. Before this work, the field treated search augmentation as an unalloyed infrastructure improvement — integrate retrieval, and performance on knowledge-intensive tasks improves. The abstention literature (Wen et al., 2024; Kirichenko et al., 2025) had separately established that models struggle to say "I don't know," but this work was conducted in static, tool-free settings. The over-searching paper is the first to show that these two phenomena — search augmentation and abstention failure — are not independent but deeply coupled: the very mechanism that improves answer accuracy on answerable queries simultaneously and systematically degrades abstention on unanswerable ones. Table 2 makes this trade-off concrete: across nine models, adding search improves answer accuracy by 13.3 percentage points on average while degrading abstention accuracy by 7.0 points. This is not a small side effect — it is a first-order behavioral shift that standard accuracy metrics, which evaluate only on answerable benchmarks, completely mask.
The conceptual shift is from treating search as an infallible knowledge oracle to treating it as a biased evidence sampler. The paper's evidence asymmetry hypothesis — that real-world corpora overwhelmingly document what is known rather than what is not, creating a structural positivity bias — provides a mechanistic explanation for why search degrades abstention. This is more than an empirical observation; it is a causal model with specific, testable predictions. The dose-response relationship in Table 5 — abstention accuracy rising from 0.0% to ~95% as retrieved evidence shifts from all-positive to all-negative — is the kind of clean, monotonic pattern that strong causal mechanisms produce. This reframes the problem: improving abstention in search-augmented systems is not primarily about making models better at "knowing what they don't know" in the abstract, but about ensuring they encounter the right kind of evidence — specifically, documents that signal uncertainty, contradiction, or unknowability — during retrieval. This shifts the locus of intervention from model training alone to the interaction between model behavior and corpus composition.
The paper also resolves a latent contradiction in the literature that practitioners may have encountered but the research community had not systematically characterized. The reasoning and tool-use communities have been pursuing increasingly aggressive search-augmented reasoning systems — deep research agents, RL-trained tool-use models, multi-step retrieval-augmented generation — under the implicit assumption that more search capability is uniformly beneficial. Simultaneously, the abstention literature has been documenting that more capable reasoning models are worse at abstention (Kirichenko et al., 2025). The over-searching paper provides the bridge: the same RL training objectives that produce impressive search-augmented reasoning also produce pathological over-searching on unanswerable queries, because the reward signal rewards correct answers but does not penalize unnecessary search and does not reward appropriate abstention. Table 3's demonstration that increased reasoning effort (low → medium → high on o4-mini) improves answer accuracy by only 0.5 points while nearly tripling TPC (517.1 → 1492.2) makes this tension quantitatively precise. The field can no longer evaluate search-augmented systems solely on answer accuracy; TPC or similar cost-aware metrics must become standard alongside accuracy, because the cost dimension is where the pathology manifests.
The practical implication is a redirection of research investment. Before this work, a natural research agenda for improving search-augmented LLMs would focus on: better retrievers, more sophisticated search algorithms, longer search horizons, and more extensive RL training for tool use. After this work, those directions become more nuanced: they may improve answer accuracy on answerable benchmarks while simultaneously making over-searching worse — a Pyrrhic victory that produces models that look better on standard evaluations but are less reliable in deployment. The paper's finding that the deep research system achieves the highest answer accuracy but 221× higher TPC than the base configuration (Figure 4) is a cautionary tale. The more productive research directions shift toward: training objectives that incorporate search cost and abstention rewards, retrieval systems that surface uncertainty signals, and evaluation benchmarks that include unanswerable queries as a first-class category rather than an afterthought.
Follow-Up Research This Work Enables
Training with abstention-aware reward functions. This paper demonstrates that current RL training objectives — which reward correct final answers without penalizing unnecessary search — create models that over-search on unanswerable queries. A natural follow-up would train a search-augmented model with a modified reward function that includes: (1) a reward for correct answers, (2) a reward for appropriate abstention on unanswerable queries, and (3) a penalty for search calls, scaled by a cost coefficient. The key experimental question is whether such a reward function can produce models that maintain high answer accuracy while dramatically improving abstention accuracy and reducing TPC, or whether there is an inherent trade-off that cannot be optimized away. A strong experiment would compare models trained with different cost coefficients (zero penalty, small penalty, large penalty) on OverSearchQA, measuring the full accuracy-TPC curve. The paper's finding that even the best prompt-based mitigation leaves ~37% of unanswerable queries incorrectly answered (Table 6, few-shot achieves only 63.4% abstention accuracy) sets a clear baseline: training-time interventions would need to substantially exceed this to be considered successful.
Learned abstention classifiers from retrieval evidence. Table 5 demonstrates that abstention behavior is strongly predicted by the balance of positive vs. negative evidence in retrieved documents, but current models do not explicitly reason about this balance — they either over-rely on positive signals or fail to weight negative signals appropriately. A straightforward follow-up would train a lightweight abstention classifier that takes retrieved documents as input and predicts whether the query is likely answerable or unanswerable, using the LLM judge's evidence classification (Appendix F.1) as training labels. This classifier could operate as a gating mechanism: before the main model generates a response, the classifier assesses the evidence balance and triggers abstention if negative evidence dominates. The concrete experiment would compare: (a) the classifier's abstention accuracy against the model's natural abstention behavior on OverSearchQA, (b) whether the classifier generalizes to retrieval corpora not seen during training (C5, Web Search), and (c) the computational overhead of the classifier relative to the search cost it saves. The paper's finding that negative evidence comprises only 13–22% of retrieved content (Table 10) suggests the classifier would need to be sensitive to sparse signals.
Architectural modifications to retrieval systems for abstention support. The paper's corpus augmentation experiment (Table 6) shows that simply inserting synthetic negative evidence into the corpus yields only a 3.6% improvement in abstention accuracy, primarily because synthetic documents rank poorly in dense retrieval. This motivates a more fundamental architectural change: modifying the retrieval pipeline to explicitly index and boost documents containing uncertainty signals. A concrete implementation would: (1) use the LLM judge from Appendix F.1 to label a large corpus for positive vs. negative evidence, (2) train a lightweight classifier or add a retrieval head that scores documents for "abstention relevance" in addition to topical relevance, and (3) during retrieval, interpolate between topical similarity and abstention relevance to ensure negative evidence appears in the top-k results. The key metric would be the change in the evidence balance distribution (Table 5): does this modified retrieval shift more unanswerable queries into the "Negative > Positive" or "Only Negative" categories, where abstention accuracy is 67–100%, and at what cost to answer accuracy on answerable queries? The paper's finding that C5 achieves good abstention accuracy but catastrophic TPC (2606.7, 3.6× over Wikipedia-Latest) sets both a target — can architectural changes achieve C5-level abstention at Wikipedia-Latest-level TPC? — and a warning — improved abstention through noisier retrieval is not a viable strategy.
Multi-turn abstention dynamics across model families and conversation structures. The paper's multi-turn analysis (Figure 6) is limited to GPT-4o-mini and shows that conversational history systematically biases search and abstention behavior, with answerable prior turns degrading abstention on subsequent unanswerable queries. This is a proof-of-concept demonstration, not a systematic characterization. A thorough follow-up would: (1) replicate the snowball effect across the full model suite (o4-mini, Kimi-K2, Qwen3-235B, Llama-3.3-70B) to determine whether it is universal or model-specific, (2) vary the conversation structure beyond the three context types — what happens when the conversation alternates answerable/unanswerable turns? what happens when the model's responses to preceding turns are correct vs. incorrect? — and (3) test whether the snowball effect can be disrupted by inserting explicit "conversation reset" prompts between turns or by tracking and surfacing the conversation's abstention history as metadata. The paper's finding that unanswerable context only slightly improves abstention while answerable context substantially degrades it suggests an asymmetry that may be difficult to overcome through prompting alone, making architecture-level interventions (e.g., maintaining a running estimate of conversation answerability) worth investigating.
Cross-domain replication on code generation and factual verification. All experiments use OverSearchQA, which focuses on open-domain QA with three unanswerability categories (Answer Unknown, False Premise, Underspecified Context). Two domains where over-searching is practically important and structurally different from open-domain QA are: (1) code generation, where unanswerable queries include underspecified requirements ("write a function that is fast"), impossible constraints ("sort an array in O(1) time"), and requests for nonexistent APIs — search over documentation and Stack Overflow could lead to over-searching with similar dynamics but different evidence characteristics (code documentation is more structured than Wikipedia), and (2) factual verification, where claims to be verified are sometimes unverifiable (insufficient evidence, conflicting sources, temporally unstable facts) — search-augmented verification systems might over-search for confirming or disconfirming evidence, analogous to the positivity bias documented in Table 10. A concrete experiment would construct a code-generation or fact-verification analog of OverSearchQA with matched answerable/unanswerable pairs, evaluate the same model suite, and test whether the evidence asymmetry hypothesis holds: do models achieve near-perfect abstention when retrieval returns only negative/contradictory evidence, and near-zero abstention when it returns only positive/confirming evidence? A negative result — finding that the evidence asymmetry does not drive abstention in these domains — would refine the paper's causal model and suggest domain-specific mechanisms.
Combining query-level and retrieval-level mitigation with adaptive search termination. The paper evaluates query-level and retrieval-level mitigations independently (Table 6) and finds that both help partially but neither solves the problem. A natural integration would combine them: use a query-level metacognitive prompt (self-evaluation) to make an initial answerability assessment, retrieve a small number of documents (e.g., top-3), classify the evidence balance using the approach from Appendix F.1, and then decide whether to search further, answer, or abstain based on both signals. This is essentially an adaptive search termination policy where the stopping condition depends on both the model's internal uncertainty and the external evidence composition. The paper's marginal ROI analysis (Table 7) establishes that early searches provide high value (ROI +0.874% for the first search) while later searches can be actively harmful (ROI -3.634% by turn 17), providing a clear signal for when to stop. The experiment would compare this adaptive policy against the fixed policies in Table 6, measuring whether the combination achieves better abstention accuracy than either approach alone while maintaining or improving TPC relative to the unmitigated baseline. The paper's evidence composition finding (Table 5) provides the theoretical grounding: if the model can detect that it's in an "only positive evidence" regime and recognize that this means 0.0% historical abstention success, it should stop searching and abstain immediately, regardless of its internal uncertainty.
Practical Applications and Downstream Use Cases
Cost-aware deployment of search-augmented customer support systems. Consider a customer support chatbot deployed by a large e-commerce platform, handling millions of queries per month about orders, returns, product specifications, and policies. A substantial fraction of these queries are unanswerable — customers ask about future product releases ("When will the next iPhone be announced?"), make requests based on false premises ("Why was I charged twice?" when the system shows a single charge), or use underspecified language ("Where is my package?" without providing an order number). Current search-augmented systems would search the knowledge base for each of these queries, find partially relevant documents (past announcement dates, general billing policies, tracking pages for unrelated orders), and generate plausible but incorrect or misleading responses. The paper's results provide a concrete cost model: at GPT-4o-mini's pricing, the TPC difference between search-augmented (827.5) and base (176.0) configurations means search increases the token expenditure per correct response by ~4.7×. For a deployment handling 10 million queries per month with 30% unanswerable, the over-searching waste is substantial. The practical takeaway is to deploy an abstention classifier (as suggested in the follow-up research above) that screens queries before launching search, or to use abstention-aware prompting (Table 6) to reduce unnecessary search while accepting the 1.5-point answer accuracy trade-off. For latency-sensitive deployments, the multi-turn snowball effect (Figure 6) provides an additional design principle: structure conversations so that unanswerable queries are handled upfront or reset conversation context between topics to prevent answerable-turn bias from propagating.
Evaluation benchmark design for search-augmented LLM leaderboards. Current leaderboards for search-augmented LLMs (e.g., evaluation on Natural Questions, HotpotQA, SimpleQA) report only answer accuracy on answerable queries. The paper demonstrates that this practice is actively misleading: models that top these leaderboards (reasoning models, deep research systems) may be the worst performers on abstention, converting well-calibrated uncertainty into confident errors at enormous computational cost. A direct practical implication is that benchmark designers should include unanswerable queries as a standard evaluation category, report dual accuracy (answer accuracy + abstention accuracy) rather than a single aggregate, and include TPC or a similar cost-aware metric to penalize models that achieve high accuracy through excessive search. OverSearchQA provides a template: 1,188 queries balanced across answerable and unanswerable, with embedding-matched pairs to control for complexity confounds. Adoption of this or similar benchmarks would create market pressure on model developers to optimize for search efficiency and abstention, not just answer accuracy. The paper's finding that the o4-mini-deep-research system achieves excellent answer accuracy but 221× the TPC of the base configuration (Figure 4) is exactly the kind of hidden cost that current leaderboards fail to surface and that procurement decisions should account for.
Corpus curation for domain-specific search-augmented systems. The paper's evidence asymmetry hypothesis — that real-world corpora are structurally biased toward positive evidence, and that this bias is the primary driver of over-searching — has direct implications for organizations building domain-specific search-augmented systems. For example, a legal research tool that searches over case law and statutes will encounter queries that are unanswerable: questions about legal outcomes in hypothetical future cases, requests for precedents that don't exist, underspecified queries about "the law on X" without jurisdiction. The naive approach — index all available legal documents and search over them — will reproduce the evidence asymmetry: the corpus will overwhelmingly contain positive legal analysis, not documents explicitly stating what the law does not cover. The paper's corpus augmentation experiment (Table 6) suggests that simply adding synthetic negative evidence is insufficient because it ranks poorly in retrieval. A more effective approach, motivated by the paper's findings, would be to: (1) during corpus curation, explicitly identify and annotate documents that contain uncertainty signals (dissenting opinions, rulings that explicitly decline to address certain questions, treatises that discuss open legal questions), (2) ensure these documents are indexed with metadata that allows them to be surfaced when queries match uncertainty patterns, and (3) train the retrieval system to treat "absence of clear positive evidence" as a signal rather than a failure, potentially by incorporating abstention-specific retrieval heads as suggested in the follow-up research. The concrete benefit is measured in Table 5: shifting queries from "Positive ≥ Negative" evidence balance (where abstention accuracy is ~32%) to "Negative > Positive" (where it is ~68%) would more than double abstention accuracy on unanswerable legal queries.