Paper deep dive
Beyond Self-Knowledge: Propagating Uncertainty Across Reasoning and Retrieval in LLMs
Chandan Kumar Sah, Xiaoli Lian, Li Zhang
Intelligence
Status: not_run | Model: - | Prompt: - | Confidence: 0%
Entities (0)
Relation Signals (0)
No relation signals yet.
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Retrieval-augmented generation improves knowledge-intensive question answering, but indiscriminate retrieval can introduce irrelevant evidence and unnecessary computation. We investigate whether verbalized confidence from black-box language models can serve as an actionable signal for retrieval routing. Our method, BeyondUncertainty, first elicits a structured provisional answer and confidence estimate, then applies a model-specific threshold selected on held-out validation data and frozen before test evaluation. Low-confidence questions receive top-$5$ TF--IDF retrieval followed by a second answer call, whereas high-confidence questions return the provisional answer directly. We evaluate 27,000 policy instances across six QA benchmarks, three model families, and three retrieval policies. BeyondUncertainty achieves $0.483$ mean token-level F1, compared with $0.467$ for always retrieval and $0.401$ for no retrieval, while reducing retrieved passages by $20.4\%$ relative to always retrieval. When matched on the number of questions routed to retrieval within each dataset--model cell, it outperforms a post-hoc random allocation in 17 of 18 settings, with an average gain of 0.024 F1. Although poorly calibrated as an absolute probability, probe uncertainty modestly predicts question-level retrieval benefit (AUROC $=0.628$). However, the additional probe increases total token usage by $28.2\%$, revealing a trade-off between more selective evidence acquisition and end-to-end token efficiency.
Tags
Links
- Source: https://arxiv.org/abs/2607.25600v1
- Canonical: https://arxiv.org/abs/2607.25600v1
Trouble viewing inline? Open PDF directly â
Full Text
43,601 characters extracted from source content.
Expand or collapse full text
Beyond Self-Knowledge: Propagating Uncertainty Across Reasoning and Retrieval in LLMs Chandan Kumar Sah, Xiaoli Lian, Li Zhang Abstract Retrieval-augmented generation improves knowledge-intensive question answering, but indiscriminate retrieval can introduce irrelevant evidence and unnecessary computation. We investigate whether verbalized confidence from black-box language models can serve as an actionable signal for retrieval routing. Our method, BeyondUncertainty, first elicits a structured provisional answer and confidence estimate, then applies a model-specific threshold selected on held-out validation data and frozen before test evaluation. Low-confidence questions receive top-55 TFâIDF retrieval followed by a second answer call, whereas high-confidence questions return the provisional answer directly. We evaluate 27,000 policy instances across six QA benchmarks, three model families, and three retrieval policies. BeyondUncertainty achieves 0.4830.483 mean token-level F1, compared with 0.4670.467 for always retrieval and 0.4010.401 for no retrieval, while reducing retrieved passages by 20.4%20.4\% relative to always retrieval. When matched on the number of questions routed to retrieval within each datasetâmodel cell, it outperforms a post-hoc random allocation in 17 of 18 settings, with an average gain of 0.024 F1. Although poorly calibrated as an absolute probability, probe uncertainty modestly predicts question-level retrieval benefit (AUROC =0.628=0.628). However, the additional probe increases total token usage by 28.2%28.2\%, revealing a trade-off between more selective evidence acquisition and end-to-end token efficiency. Our source code and supporting materials are available at https://github.com/Rocky5502/BeyondUncertainty_V1. Introduction Large language models (LLMs) can answer many factual questions from their parametric knowledge, yet they may produce fluent but unsupported responses when relevant knowledge is missing, outdated, or difficult to compose. Retrieval-augmented generation (RAG) mitigates this limitation by grounding generation in external evidence (Lewis et al. 2020). Retrieval is not uniformly beneficial, however: invoking a retriever for every question increases context length and latency, while irrelevant or conflicting passages may distract the generator and degrade answer quality (Moskvoretskii et al. 2025; Su et al. 2024; Shi et al. 2023; Yoran et al. 2024). Adaptive RAG therefore seeks to determine when external evidence is likely to be useful. Existing methods base this decision on query complexity, token-level confidence, reflection signals, internal model states, or estimated information need (Jeong et al. 2024; Asai et al. 2024; Jiang et al. 2023; Su et al. 2024). In parallel, research on LLM uncertainty examines verbalized confidence, sampling consistency, and semantic entropy as indicators of answer reliability (Kadavath et al. 2022; Xiong et al. 2024; Kuhn et al. 2023; Farquhar et al. 2024). These directions motivate a practically important question: can an uncertainty signal available through a black-box API be transferred from a structured pre-retrieval probe into a downstream retrieval decision, and can it identify which questions benefit from evidence rather than merely reducing retrieval frequency? We investigate this question using a deliberately simple and model-agnostic controller. For each question, the LLM produces a structured provisional answer, a verbalized confidence estimate, and a concise state summary. Routing is determined solely by confidence and requires no access to hidden chain-of-thought, logits, internal activations, or model fine-tuning. A model-specific threshold, selected on held-out validation data and frozen before test evaluation, determines whether the system returns the provisional answer directly or retrieves the top-55 passages and performs a separate final-answer call. This design isolates the operational value of black-box confidence while remaining applicable to heterogeneous proprietary model families. We address three research questions: âą RQ1: Does probe uncertainty predict which questions benefit from retrieval, and how does this relate to final-answer quality? âą RQ2: How does confidence-guided routing trade answer quality, retrieved evidence, and gateway-reported token usage? âą RQ3: Does confidence-guided routing outperform random allocation when both route the same number of questions to retrieval within each datasetâmodel cell? Our contributions are threefold. First, we introduce a model-agnostic black-box routing interface that propagates an observable confidence signal into an external evidence-acquisition decision. Second, we conduct a paired evaluation comprising 27,000 policy instances across six single- and multi-hop QA benchmarks and three model families, retaining API and structured-output failures rather than filtering them post hoc. Third, through a route-count-matched control, we show that confidence provides question-level allocation value beyond retrieval frequency alone. Our findings also expose important limitations: verbalized confidence is poorly calibrated in absolute terms, the additional probe makes the method retrieval-saving but not token-saving, and improvements over always retrieval vary across datasetâmodel settings. Related Work Adaptive retrieval. RAG combines generation with external evidence (Lewis et al. 2020). IRCoT interleaves retrieval and reasoning (Trivedi et al. 2023); FLARE and DRAGIN trigger retrieval from token uncertainty or information need (Jiang et al. 2023; Su et al. 2024); Adaptive-RAG predicts query complexity (Jeong et al. 2024); and Self-RAG and SeaKR use reflection or self-aware knowledge signals (Asai et al. 2024; Yao et al. 2025). AdaRAGUE compares a broad family of adaptive strategies and shows that simple uncertainty signals can be competitive (Moskvoretskii et al. 2025). Our focus is narrower and complementary. Long-tail knowledge motivates retrieving only when parametric memory is unreliable (Mallen et al. 2023); RECOMP selectively suppresses unhelpful retrieved text (Xu et al. 2023); and robustness studies characterize how irrelevant context can reduce answer quality (Shi et al. 2023; Yoran et al. 2024). Recent work compares uncertainty-based routing, estimates retrieval need for black-box models, and uses confidence to allocate search-agent computation (Moskvoretskii et al. 2025; Lin et al. 2025; Ou et al. 2026). We isolate a single verbalized-confidence signal across heterogeneous APIs and evaluate its routing value, passage savings, and end-to-end token cost. Uncertainty and calibration. LLM self-knowledge has been studied through answer verification and elicited probabilities (Kadavath et al. 2022). Black-box estimators include verbalized confidence, sampling agreement, and semantic dispersion (Xiong et al. 2024; Lin et al. 2023; Kuhn et al. 2023; Farquhar et al. 2024; Manakul et al. 2023). Prior work also finds that generative QA probabilities and verbalized certainty can be miscalibrated (Jiang et al. 2021; Mielke et al. 2022; Tian et al. 2023; Yuan et al. 2024). Because confidence can rank predictions while remaining probabilistically miscalibrated, we separate ordinal utility from absolute calibration and report both rank association and expected calibration error (ECE) (Guo et al. 2017). We provide a controlled cross-provider study demonstrating the operational value of black-box confidence for retrieval allocation across answer quality, passage use, token cost, failures, and matched routing decisions. Black-Box Confidence Routing Figure 1: Implemented BeyondUncertainty pipeline. A structured black-box probe produces a provisional answer and confidence. A validation-frozen, model-specific threshold routes the question either directly to that answer or through top-55 sparse retrieval and a second answer call. Given question q, a black-box model first returns the observable state s0=(a^0,c0,d0,m0),s_0=( a_0,c_0,d_0,m_0), (1) where a^0 a_0 is a provisional answer, c0â[0,1]c_0â[0,1] is verbalized confidence, d0d_0 is the modelâs suggested action, and m0m_0 is a concise state summary. The prompt requests compact JSON and explicitly asks for a summary rather than hidden chain-of-thought. We define uncertainty as u0=1âc0u_0=1-c_0. For model family m, the frozen router is Râ(q,m)=â[c0<Ïm],R(q,m)=I[c_0< _m], (2) with missing or unparseable confidence conservatively mapped to retrieval. If R=0R=0, the system returns a^0 a_0. If R=1R=1, a deterministic sparse retriever uses the original question as the query, returns up to five passages, and the same model receives q together with those passages in a final call: P=TopKâĄ(q,j,5),a^=LLMâĄ(q,P).P=TopK(q,D_j,5), a=LLM(q,P). (3) Here jD_j is the fixed corpus for dataset j. The modelâs own suggested action d0d_0 is logged but does not determine routing; this keeps the tested decision rule reproducible and isolates confidence. The threshold has a decision-theoretic interpretation. Let Y0Y_0 and Y1Y_1 denote answer utility without and with retrieval, and let CRC_R denote retrieval cost. A cost-sensitive controller retrieves when â[Y1âY0âŁc0,q]>λâCR,E[Y_1-Y_0 c_0,q]>λ C_R, (4) where λ encodes the value assigned to resource use. If expected retrieval benefit decreases with confidence, a threshold in c0c_0 is a reduced-form approximation to this rule. We neither assume nor prove perfect monotonicity. Instead, RQ1 tests whether confidence orders observed quality, RQ2 reports quality and cost separately rather than choosing λ, and RQ3 asks whether the induced allocation is better than a route-count-matched random allocation. This is a single-decision instantiation of uncertainty propagation: an uncertainty estimate produced during provisional reasoning is consumed by a downstream retrieval component. It does not implement iterative uncertainty trajectories, learned routing, early stopping across multiple reasoning steps, or selective abstention. Those extensions remain future work. Experimental Design Datasets and splits. We evaluate six question-answering benchmarks: Natural Questions (NQ) (Kwiatkowski et al. 2019), HotpotQA (Yang et al. 2018), 2WikiMultiHopQA (Ho et al. 2020), SQuAD (Rajpurkar et al. 2016), TriviaQA (Joshi et al. 2017), and MuSiQue (Trivedi et al. 2022). Fixed question identifiers select 500 test examples from each dataset, yielding 3,000 unique questions. Prompts and model-specific routing thresholds are selected using held-out development data and frozen before test evaluation. Test identifiers are not used for prompt design or threshold selection. Models and decoding. We access one gateway-reported alias from each of three model families through the same OpenAI-compatible endpoint between July 8 and 11, 2026. Table 1 reports the aliases and frozen thresholds. A seed of 1337 is requested where supported, although bitwise determinism is not assumed across providers. Gemini and Claude use temperature 0 and a maximum output length of 2,000 tokens. The OpenAI endpoint rejects temperature 0; we therefore use its gateway default and a 4,000-token output limit. Because none of the evaluated endpoints exposes usable token log probabilities, verbalized confidence provides the common black-box uncertainty signal. Model family Gateway-reported alias Ïm _m OpenAI gpt-5.5 1.0 Gemini gemini-3.5-flash 1.0 Claude claude-sonnet-5 0.9 Table 1: Gateway-reported model aliases and validation-frozen routing thresholds. Retrieval is triggered when c0<Ïmc_0< _m. The aliases are recorded exactly as returned by the gateway and should not be interpreted as independent verification of direct-provider model versions. Retrieval corpus and ranking. The operational backend is a deterministic TFâIDF retriever using English stop-word removal and word uni- and bigrams. For each benchmark, we construct a dataset-specific corpus from deduplicated titleâpassage pairs in the processed development and test contexts. The evaluation therefore measures routing over a controlled local corpus rather than retrieval from a production-scale Wikipedia index. All policies use the same corpus, preprocessing procedure, ranking function, and retrieval depth. Dataset Documents Dataset Documents NQ 17,687 SQuAD 14,369 HotpotQA 9,823 TriviaQA 14,696 2Wiki 6,299 MuSiQue 11,475 Table 2: Number of deduplicated titleâpassage documents in each controlled dataset-specific retrieval corpus. Structured probe and frozen decisions. The probe requests a compact JSON object containing a provisional answer, verbalized confidence, a suggested retrieval action, and a concise state summary of at most two sentences. The prompt prohibits Markdown fences and requests only a task-relevant summary rather than hidden chain-of-thought. The modelâs suggested action is recorded for analysis but does not affect routing. Model-specific thresholds are selected according to validation F1 and then frozen at 1.01.0 for OpenAI and Gemini and 0.90.9 for Claude. No prompt, threshold, retrieval depth, or routing parameter is modified after test evaluation begins. Requests are indexed by deterministic configuration hashes. Interrupted runs therefore reuse completed requests rather than issuing the same paid call again. Policies and evaluation scale. We execute three primary policies for every questionâmodel pair. No Retrieval performs one answer call without external context. Always Retrieve retrieves the top-55 passages before one answer call. BeyondUncertainty follows Equation 2: it performs one probe call, returns the provisional answer when retrieval is not triggered, and otherwise performs top-55 retrieval followed by a second answer call. The resulting grid contains 3,000Ă3Ă3=27,0003,000Ă 3Ă 3=27,000 executed policy rows, corresponding to 9,000 paired questionâmodel instances. We additionally construct a deterministic route-count-matched random control and a non-deployable oracle from paired no-retrieval and always-retrieval outputs. These post-hoc controls require no additional model calls. The static policies use one generation call per example. Confidence routing uses one probe call when it does not retrieve and two calls when retrieval is triggered. Retrieved-passage counts therefore measure evidence demand, whereas total token counts capture the controllerâs additional inference overhead. We consequently distinguish retrieval savings from total generation cost. Metrics and failure policy. The primary quality metric is normalized token-level F1; Exact Match (EM) is reported in the supplement. Retrieval use is measured by the number of returned passages, and token usage sums gateway-reported input and output tokens across all calls, including the probe. API and structured-output parsing failures remain in the evaluation denominator and receive zero quality scores; any raw score from malformed text is retained only for provenance. Within each of the 18 datasetâmodel cells, we conduct two-sided paired Wilcoxon signed-rank tests for always retrieval versus no retrieval, confidence routing versus no retrieval, and confidence routing versus always retrieval. The resulting 54 tests are jointly corrected using Holmâs procedure (Holm 1979). Full per-cell results, adjusted p-values, prompts, corpus details, and failure counts are provided in the supplement. Route-count-matched and oracle controls. Within each datasetâmodel cell, a stable SHA-256 ordering selects exactly the same number of questions for retrieval as BeyondUncertainty. Selected examples use their paired always-retrieval outputs, whereas unselected examples use their paired no-retrieval outputs. The oracle selects the better of the two observed static-policy outcomes for each example. Both controls are deterministic and post hoc and require no additional model calls. The route-count-matched control tests whether confidence selects more useful questions than random routing at the same route count. Because some retrieval calls return fewer than five passages, equal route counts do not imply identical returned-passage counts. Moreover, the control does not reproduce BeyondUncertaintyâs structured probe or two-stage execution path; it therefore evaluates allocation rather than a fully execution-matched causal effect. Results Figure 2: Aggregate answer quality and resource usage across 27,000 policy instances. Confidence routing achieves the highest mean F1 and retrieves fewer passages than always retrieval, but its additional probe increases total token usage. RQ1: Does Confidence Predict Retrieval Benefit? Table 3 distinguishes answer-quality prediction from retrieval-benefit prediction. Probe confidence is positively associated with final F1 across all three model families (Ï=0.276Ï=0.276â0.3090.309), but is poorly calibrated as an absolute probability (ECE5=0.426ECE_5=0.426â0.5280.528). We define observed retrieval benefit as Îret=F1AâF1N, _ret=F1_A-F1_N, (5) where A and N denote always retrieval and no retrieval, respectively. Across 8,837 instances with valid probe confidence, uncertainty u=1âc0u=1-c_0 shows a positive but modest association with retrieval benefit (Ï=0.154Ï=0.154, 95% CI [0.131,0.177][0.131,0.177]) and predicts Îret>0 _ret>0 with AUROC 0.6280.628 and AUPRC 0.4470.447, against a positive-benefit prevalence of 0.3540.354. Per-model AUROC ranges from 0.5880.588 to 0.6330.633. The result is stable when failed static-policy pairs are excluded: Ï=0.150Ï=0.150, AUROC =0.629=0.629, and AUPRC =0.448=0.448. Mean confidence is 0.8490.849, 0.8750.875, and 0.6550.655 for OpenAI, Gemini, and Claude, respectively, compared with exact-match rates of 0.3640.364, 0.3750.375, and 0.2320.232. Figure 3 nevertheless shows that higher-confidence bins generally attain higher final F1. Thus, verbalized confidence is more useful as an ordinal routing signal than as a calibrated estimate of correctness or retrieval benefit. Model â(c0,F1) Ï(c_0,F1) 5ECE_5 â(u,Îret) Ï(u, _ret) AUROC OpenAI 0.276 0.487 0.158 0.633 Gemini 0.300 0.528 0.126 0.606 Claude 0.309 0.426 0.168 0.588 Table 3: Decision utility and calibration of probe confidence. Here, u=1âc0u=1-c_0 and Îret=F1AâF1N _ret=F1_A-F1_N. AUROC measures prediction of strictly positive retrieval benefit. Figure 3: Retrieval rate and final F1 across probe-confidence bins. Confidence is poorly calibrated in absolute terms but generally orders questions by final answer quality. Takeaway 1. Probe uncertainty modestly but consistently predicts question-level retrieval benefit across model families, while verbalized confidence remains poorly calibrated. It is therefore more useful as an ordinal routing signal than as a probability of correctness or retrieval benefit. RQ2: What Are the QualityâEfficiency Trade-offs? Table 4 reports the aggregate policy comparison. BeyondUncertainty achieves 0.4830.483 mean F1, improving over no retrieval by 0.0820.082 absolute F1 and over always retrieval by 0.0160.016. It retrieves an average of 3.9523.952 passages per instance, compared with 4.9664.966 for always retrieval, corresponding to a 20.4%20.4\% reduction in retrieved passages. Policy F1 â Tokens / inst. â Passages / inst. â No retrieval 0.401 529.1 0.000 Always retrieve 0.467 1201.5 4.966 Random matched routes 0.459 1036.5 3.927 BeyondUncertainty 0.483 1539.8 3.952 Oracle no/always route 0.523 1054.5 3.968 Table 4: Aggregate comparison over 9,000 paired questionâmodel instances. The random control matches the number of questions routed to retrieval within each datasetâmodel cell. Random and oracle results are deterministic post-hoc recombinations of static-policy outputs; their token counts exclude an independently executed routing probe. The improvement in retrieval allocation does not translate into lower total token usage. The confidence probe increases mean token usage from 1201.51201.5 for always retrieval to 1539.81539.8, an increase of 28.2%28.2\%. Consequently, BeyondUncertainty is retrieval-saving but not token-saving under the evaluated implementation. Table 5 shows that the aggregate improvement is heterogeneous. Confidence routing numerically outperforms always retrieval in 16 of the 18 datasetâmodel cells, with the two exceptions occurring for Gemini on NQ and SQuAD. However, after a single Holm correction across all 54 paired tests, only three confidence-versus-always comparisons remain significant: NQâOpenAI and SQuADâClaude favor confidence routing, whereas NQâGemini favors always retrieval. Dataset Family F1-N F1-A F1-S Î (SâA) Route Dataset Family F1-N F1-A F1-S Î (SâA) Route NQ OpenAI 0.261 0.296 0.330 +0.034â 0.988 SQuAD OpenAI 0.288 0.446 0.463 +0.017 0.998 NQ Gemini 0.319 0.415 0.368 -0.046â 0.454 SQuAD Gemini 0.219 0.458 0.441 -0.016 0.842 NQ Claude 0.193 0.252 0.256 +0.003 0.620 SQuAD Claude 0.171 0.333 0.356 +0.024â 0.924 Hotpot OpenAI 0.575 0.636 0.648 +0.013 0.998 Trivia OpenAI 0.744 0.746 0.763 +0.016 0.958 Hotpot Gemini 0.549 0.589 0.600 +0.011 0.584 Trivia Gemini 0.756 0.742 0.765 +0.023 0.190 Hotpot Claude 0.320 0.443 0.459 +0.016 0.824 Trivia Claude 0.606 0.599 0.635 +0.036 0.322 2Wiki OpenAI 0.622 0.651 0.666 +0.015 1.000 MuSiQue OpenAI 0.351 0.416 0.417 +0.001 0.968 2Wiki Gemini 0.530 0.505 0.552 +0.047 0.848 MuSiQue Gemini 0.256 0.292 0.330 +0.039 0.848 2Wiki Claude 0.320 0.377 0.415 +0.038 0.948 MuSiQue Claude 0.129 0.212 0.228 +0.016 0.918 Table 5: Per-cell primary-policy results. N, A, and S denote no retrieval, always retrieval, and confidence routing, respectively. Route is the fraction of questions assigned to retrieval by S. A star denotes a significant SâA difference after one joint Holm correction across all 54 paired tests. Bold indicates the highest observed F1 in each datasetâmodel cell. Three patterns are particularly important. First, retrieval is not uniformly beneficial: always retrieval performs worse than no retrieval for Gemini on 2Wiki and TriviaQA and for Claude on TriviaQA. Second, the greatest selectivity appears where confidence produces a broad routing distribution. Gemini retrieves for only 19.0%19.0\% of TriviaQA and 45.4%45.4\% of NQ questions, while Claude retrieves for 32.2%32.2\% of TriviaQA questions. Third, OpenAI routes at least 95.8%95.8\% of questions to retrieval in every dataset. Its behavior is therefore close to always retrieval, leaving little opportunity for meaningful retrieval allocation. The multiplicity-corrected tests support a deliberately narrow inferential claim. Always retrieval and confidence routing each significantly outperform no retrieval in 11 of 18 cells. In contrast, confidence routing is difficult to distinguish from always retrieval after correction: two cells significantly favor confidence routing, one favors always retrieval, and the remaining 15 show no significant difference. The aggregate gain should therefore be viewed as an average improvement across heterogeneous settings rather than evidence of universal dominance. Takeaway 2. Confidence routing achieves the highest aggregate F1 and reduces retrieved passages by 20.4%20.4\% relative to always retrieval. However, its additional probe increases total token usage by 28.2%28.2\%, and its cell-level advantage over always retrieval is not statistically uniform. RQ3: Does Confidence Improve Allocation at a Matched Route Count? The route-count-matched control retrieves for exactly the same number of questions as BeyondUncertainty within each datasetâmodel cell, but chooses those questions using a stable hash rather than confidence. This comparison separates the value of which questions are retrieved from the effect of route count alone. Confidence routing achieves 0.483 mean F1, compared with 0.459 for route-count-matched random routing, an average advantage of 0.024 F1. It outperforms the random allocation in 17 of the 18 cells shown in Figure 4. The only exception is MuSiQueâOpenAI, for which the difference is approximately â0.001-0.001. Figure 4: Per-cell F1 difference between confidence routing and random routing when both route the same number of questions to retrieval within each datasetâmodel cell. Positive values indicate that confidence assigns retrieval to more useful questions. The largest gains occur for MuSiQueâGemini (+0.043+0.043), 2WikiâClaude (+0.042+0.042), HotpotQAâGemini (+0.042+0.042), and 2WikiâGemini (+0.041+0.041). These settings combine nontrivial routing rates with substantial variation in question-level retrieval benefit. Conversely, OpenAIâs near-saturated routing rate leaves little difference between confidence-based and random allocations. The retrospective oracle chooses the better observed outcome between no retrieval and always retrieval for every paired example. It reaches 0.5230.523 mean F1, leaving a 0.0400.040 gap above BeyondUncertainty. This gap indicates meaningful headroom for improved retrieval-benefit prediction. The route-count-matched comparison nevertheless has an important limitation. It recombines outputs from the static policies and does not reproduce the confidence controllerâs structured probe, prompt path, or two-call execution. It therefore shows that the result is not explained by route count alone, but it does not establish a fully controlled causal effect of confidence. A directly executed randomized router with the same probe and answer-call structure would provide a stronger ablation. Takeaway 3. At the same per-cell route count, confidence routing outperforms random allocation in 17 of 18 datasetâmodel cells and by 0.024 mean F1. Confidence therefore carries question-level allocation value, although the post-hoc control does not fully match the methodâs execution path. Sensitivity, Robustness, and Interpretation Figure 5: Sensitivity and efficiency analyses. Left: Mean F1 versus gateway-reported token usage for each model family and retrieval policy. Right: Offline sensitivity to the routing threshold, constructed by recombining paired no-retrieval and always-retrieval outputs. Increasing the threshold generally routes more questions to retrieval and improves proxy F1, but also increases passage and token usage. Sensitivity to the routing threshold. We evaluate thresholds Ïâ0,0.3,0.5,0.7,0.9,1.0Ïâ\0,0.3,0.5,0.7,0.9,1.0\ through an offline paired-output sweep. For every probe with parseable confidence, the proxy uses the corresponding always-retrieval output when c0<Ïc_0<Ï and the no-retrieval output otherwise. Observed probe tokens are then added to the selected branch. This procedure preserves the paired static-policy outcomes but does not issue new model calls; it should therefore be interpreted as a diagnostic sensitivity analysis rather than an independently executed policy evaluation. Among usable probe outputs, setting Ï=1.0Ï=1.0 produces proxy F1/retrieval-rate pairs of 0.538/99.2%0.538/99.2\% for OpenAI, 0.500/62.6%0.500/62.6\% for Gemini, and 0.373/99.9%0.373/99.9\% for Claude. The substantially different response curves demonstrate that a common numerical threshold does not induce a common retrieval budget across model families. In the executed primary-policy runs, the validation-frozen thresholds produce mean retrieval rates of 98.5%98.5\% for OpenAI, 62.8%62.8\% for Gemini, and 75.9%75.9\% for Claude. Thus, the shared threshold of 1.01.0 yields almost no filtering for OpenAI but substantial filtering for Gemini. Routing behavior is determined jointly by the threshold and the model-specific confidence distribution; the numerical value of Ïm _m is not meaningful in isolation. When does adaptivity help? The value of routing depends on whether retrieval has heterogeneous question-level effects. Always retrieval performs worse than no retrieval for Gemini on 2Wiki and TriviaQA and for Claude on TriviaQA, indicating that retrieved context can sometimes interfere with an otherwise correct parametric answer. Confidence routing outperforms both static policies in all three settings. By contrast, OpenAI routes at least 95.8%95.8\% of questions to retrieval in every dataset. Its realized behavior is therefore close to always retrieval, leaving little opportunity for passage savings or meaningful question-level selection. The aggregate benefit of adaptivity consequently depends on both the usefulness of external evidence and the degree of variation in each modelâs confidence distribution. Failure robustness and artifact completeness. The complete evaluation artifact contains all 27,000 planned primary-policy rows, forming 9,000 complete no-retrieval, always-retrieval, and confidence-routing triples. It includes 152 API-error rows and 232 structured-output parsing failures, all of which remain in the denominator and receive zero answer-quality scores. Coverage exceeds 99%99\% for NQ, HotpotQA, 2Wiki, SQuAD, and TriviaQA. MuSiQue has lower coverage at 94.4%94.4\%, accounting for 119 API failures and 135 parsing failures. To test whether failure retention determines the main result, we additionally compute scores over successful rows only. Mean F1 changes from 0.4010.401, 0.4670.467, and 0.4830.483 to 0.4090.409, 0.4720.472, and 0.4880.488 for no retrieval, always retrieval, and confidence routing, respectively. The policy ordering and the rounded 0.0160.016 confidence-versus-always gap remain unchanged. Five continuation records missing after an interrupted resume were recovered from the preceding complete artifact. Their original failure outcomes were preserved, and no answer or score was imputed. Row-level provenance, request identifiers, parsing status, and complete error counts are included in the released artifact and supplementary material. Figure 6: Coverage and retained failures across datasets. Successful, API-error, and structured-output parse-error rows partition the complete planned evaluation grid; failures remain in the scoring denominator. Multiplicity-aware statistical evidence. Table 6 summarizes the paired tests after one joint Holm correction across all 54 datasetâmodel comparisons. Always retrieval and confidence routing each significantly outperform no retrieval in 11 of 18 cells. Confidence routing is more difficult to distinguish from always retrieval: only three comparisons survive correction, with two favoring confidence routing and one favoring always retrieval. This evidence supports a narrow interpretation. Confidence routing yields a positive aggregate improvement, but the effect is distributed heterogeneously across datasets and model families rather than appearing as a uniform advantage in every cell. Comparison Î 1 Holm sig. Favor first Favor second A vs. N +0.067 11/18 11 0 S vs. N +0.082 11/18 11 0 S vs. A +0.016 3/18 2 1 Table 6: Summary of 54 two-sided paired Wilcoxon tests after one joint Holm correction. N, A, and S denote no retrieval, always retrieval, and confidence routing, respectively. The aggregate difference is the mean F1 of the first policy minus that of the second. Efficiency interpretation. Figure 5 places the evaluated policies in the answer-qualityâtoken-usage plane. Confidence routing occupies the highest-quality but highest-token operating point among the three executed policies: it improves mean F1 from 0.4670.467 to 0.4830.483 relative to always retrieval, while increasing gateway-reported token usage from 1201.51201.5 to 1539.81539.8 per instance. At the same time, it reduces the average number of returned passages from 4.9664.966 to 3.9523.952. These results reinforce the distinction between retrieval efficiency and end-to-end inference efficiency. The current controller assigns external evidence more selectively, but the additional black-box probe more than offsets those passage savings in total token usage. The post-hoc oracle should not be interpreted as a deployable point on this trade-off because it selects between outcomes after observing both static-policy results. Takeaway 4. Routing behavior is strongly model-dependent and cannot be inferred from the numerical threshold alone. The principal findings remain unchanged when failed requests are excluded: confidence routing improves the allocation of retrieved evidence, but its additional probe prevents an end-to-end token-efficiency gain. Discussion and Limitations Our results distinguish the decision utility of confidence from its absolute calibration. Although verbalized confidence is substantially overconfident, it consistently ranks answer quality and improves retrieval allocation relative to a route-count-matched random policy. This benefit is model-dependent: routing is useful when confidence separates questions with different retrieval needs, but approaches always retrieval when confidence is concentrated near the threshold. The method also exposes a clear resource trade-off. Confidence routing reduces retrieved passages by 20.4%20.4\%, but its additional probe increases total token usage by 28.2%28.2\%. The current system therefore improves evidence allocation, not end-to-end token efficiency. The principal limitations are the benchmark-derived local TFâIDF corpus, unequal execution paths between the confidence and route-count-matched policies, time-specific gateway model aliases, and heterogeneous cell-level significance. Accordingly, our claims are limited to black-box retrieval allocation under controlled QA conditions. Future work should evaluate cheaper probes, execution-path-matched randomized controllers, and frozen open-domain retrieval indexes. Extended deployment implications and threats to validity are provided in the supplementary material. Overall, black-box confidence improves retrieval allocation under controlled QA conditions, but the current probe does not improve end-to-end token efficiency. Ethical considerations. This study uses public QA benchmarks and involves no human participants or newly collected personal data. Because verbalized confidence is poorly calibrated and third-party gateways may raise privacy and reproducibility concerns, our claims are limited to retrieval allocation and should not be extended to safety-critical deployment without task-specific validation, monitoring, and human oversight. Conclusion We presented BeyondUncertainty, a black-box confidence-guided retrieval strategy for question answering. Across 27,000 policy instances, BeyondUncertainty achieves the highest aggregate F1 while reducing retrieved passages by 20.4% relative to always retrieval. Its advantage over route-count-matched random routing further indicates that verbalized confidence provides useful question-level allocation signals, despite poor absolute calibration. However, the additional probe increases total token usage, so the current method improves retrieval allocation rather than end-to-end inference efficiency. These findings motivate future work on cheaper confidence estimators, execution-path-matched controls, and open-domain retrieval settings. References A. Asai, Z. Wu, Y. Wang, A. Sil, and H. Hajishirzi (2024) Self-rag: learning to retrieve, generate, and critique through self-reflection. 2024, p. 9112â9141. Cited by: Introduction, Adaptive retrieval.. S. Farquhar, J. Kossen, L. Kuhn, and Y. Gal (2024) Detecting hallucinations in large language models using semantic entropy. Nature 630 (8017), p. 625â630. Cited by: Introduction, Uncertainty and calibration.. C. Guo, G. Pleiss, Y. Sun, and K. Q. Weinberger (2017) On calibration of modern neural networks. In International conference on machine learning, p. 1321â1330. Cited by: Uncertainty and calibration.. X. Ho, A. D. Nguyen, S. Sugawara, and A. Aizawa (2020) Constructing a multi-hop qa dataset for comprehensive evaluation of reasoning steps. p. 6609â6625. Cited by: Datasets and splits.. S. Holm (1979) A simple sequentially rejective multiple test procedure. Scandinavian journal of statistics, p. 65â70. Cited by: Metrics and failure policy.. S. Jeong, J. Baek, S. Cho, S. J. Hwang, and J. C. Park (2024) Adaptive-rag: learning to adapt retrieval-augmented large language models through question complexity. p. 7036â7050. Cited by: Introduction, Adaptive retrieval.. Z. Jiang, J. Araki, H. Ding, and G. Neubig (2021) How can we know when language models know? on the calibration of language models for question answering. Transactions of the Association for Computational Linguistics 9, p. 962â977. Cited by: Uncertainty and calibration.. Z. Jiang, F. F. Xu, L. Gao, Z. Sun, Q. Liu, J. Dwivedi-Yu, Y. Yang, J. Callan, and G. Neubig (2023) Active retrieval augmented generation. In Proceedings of the 2023 conference on empirical methods in natural language processing, p. 7969â7992. Cited by: Introduction, Adaptive retrieval.. M. Joshi, E. Choi, D. S. Weld, and L. Zettlemoyer (2017) Triviaqa: a large scale distantly supervised challenge dataset for reading comprehension. p. 1601â1611. Cited by: Datasets and splits.. S. Kadavath, T. Conerly, A. Askell, T. Henighan, D. Drain, E. Perez, N. Schiefer, Z. Hatfield-Dodds, N. DasSarma, E. Tran-Johnson, et al. (2022) Language models (mostly) know what they know. arXiv preprint arXiv:2207.05221. Cited by: Introduction, Uncertainty and calibration.. L. Kuhn, Y. Gal, and S. Farquhar (2023) Semantic uncertainty: linguistic invariances for uncertainty estimation in natural language generation. arXiv preprint arXiv:2302.09664. Cited by: Introduction, Uncertainty and calibration.. T. Kwiatkowski, J. Palomaki, O. Redfield, M. Collins, A. Parikh, C. Alberti, D. Epstein, I. Polosukhin, J. Devlin, K. Lee, et al. (2019) Natural questions: a benchmark for question answering research. Transactions of the Association for Computational Linguistics 7, p. 453â466. Cited by: Datasets and splits.. P. Lewis, E. Perez, A. Piktus, F. Petroni, V. Karpukhin, N. Goyal, H. KĂŒttler, M. Lewis, W. Yih, T. RocktĂ€schel, et al. (2020) Retrieval-augmented generation for knowledge-intensive nlp tasks. Vol. 33, p. 9459â9474. Cited by: Introduction, Adaptive retrieval.. Q. Lin, Z. Yang, Y. Cai, D. Yu, X. Xu, Y. Li, and L. Zhou (2025) Semantic contribution-aware adaptive retrieval for black-box models. In Findings of the Association for Computational Linguistics: EMNLP 2025, p. 16979â16994. Cited by: Adaptive retrieval.. Z. Lin, S. Trivedi, and J. Sun (2023) Generating with confidence: uncertainty quantification for black-box large language models. arXiv preprint arXiv:2305.19187. Cited by: Uncertainty and calibration.. A. Mallen, A. Asai, V. Zhong, R. Das, D. Khashabi, and H. Hajishirzi (2023) When not to trust language models: investigating effectiveness of parametric and non-parametric memories. In Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: Long papers), p. 9802â9822. Cited by: Adaptive retrieval.. P. Manakul, A. Liusie, and M. Gales (2023) Selfcheckgpt: zero-resource black-box hallucination detection for generative large language models. In Proceedings of the 2023 conference on empirical methods in natural language processing, p. 9004â9017. Cited by: Uncertainty and calibration.. S. J. Mielke, A. Szlam, E. Dinan, and Y. Boureau (2022) Reducing conversational agentsâ overconfidence through linguistic calibration. Transactions of the Association for Computational Linguistics 10, p. 857â872. Cited by: Uncertainty and calibration.. V. Moskvoretskii, M. Marina, M. Salnikov, N. Ivanov, S. Pletenev, D. Galimzianova, N. Krayko, V. Konovalov, I. Nikishina, and A. Panchenko (2025) Adaptive retrieval without self-knowledge? bringing uncertainty back home. p. 6355â6384. Cited by: Introduction, Adaptive retrieval.. L. Ou, K. Li, H. Yin, L. Zhang, Z. Zhang, X. Wu, R. Ye, Z. Qiao, Y. Jiang, P. Xie, et al. (2026) Browseconf: confidence-guided test-time scaling for web agents. In Findings of the Association for Computational Linguistics: ACL 2026, p. 446â465. Cited by: Adaptive retrieval.. P. Rajpurkar, J. Zhang, K. Lopyrev, and P. Liang (2016) Squad: 100,000+ questions for machine comprehension of text. In Proceedings of the 2016 conference on empirical methods in natural language processing, p. 2383â2392. Cited by: Datasets and splits.. F. Shi, X. Chen, K. Misra, N. Scales, D. Dohan, E. H. Chi, N. SchĂ€rli, and D. Zhou (2023) Large language models can be easily distracted by irrelevant context. In International Conference on Machine Learning, p. 31210â31227. Cited by: Introduction, Adaptive retrieval.. W. Su, Y. Tang, Q. Ai, Z. Wu, and Y. Liu (2024) Dragin: dynamic retrieval augmented generation based on the real-time information needs of large language models. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), p. 12991â13013. Cited by: Introduction, Adaptive retrieval.. K. Tian, E. Mitchell, A. Zhou, A. Sharma, R. Rafailov, H. Yao, C. Finn, and C. D. Manning (2023) Just ask for calibration: strategies for eliciting calibrated confidence scores from language models fine-tuned with human feedback. In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing, p. 5433â5442. Cited by: Uncertainty and calibration.. H. Trivedi, N. Balasubramanian, T. Khot, and A. Sabharwal (2022) MuSiQue: multihop questions via single-hop question composition. Transactions of the Association for Computational Linguistics 10, p. 539â554. Cited by: Datasets and splits.. H. Trivedi, N. Balasubramanian, T. Khot, and A. Sabharwal (2023) Interleaving retrieval with chain-of-thought reasoning for knowledge-intensive multi-step questions. p. 10014â10037. Cited by: Adaptive retrieval.. M. Xiong, Z. Hu, X. Lu, Y. Li, J. Fu, J. He, and B. Hooi (2024) Can llms express their uncertainty? an empirical evaluation of confidence elicitation in llms. 2024, p. 23650â23678. Cited by: Introduction, Uncertainty and calibration.. F. Xu, W. Shi, and E. Choi (2023) Recomp: improving retrieval-augmented lms with compression and selective augmentation. arXiv preprint arXiv:2310.04408. Cited by: Adaptive retrieval.. Z. Yang, P. Qi, S. Zhang, Y. Bengio, W. Cohen, R. Salakhutdinov, and C. D. Manning (2018) HotpotQA: a dataset for diverse, explainable multi-hop question answering. In Proceedings of the 2018 conference on empirical methods in natural language processing, p. 2369â2380. Cited by: Datasets and splits.. Z. Yao, W. Qi, L. Pan, S. Cao, L. Hu, L. Weichuan, L. Hou, and J. Li (2025) Seakr: self-aware knowledge retrieval for adaptive retrieval augmented generation. In Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), p. 27022â27043. Cited by: Adaptive retrieval.. O. Yoran, T. Wolfson, O. Ram, and J. Berant (2024) Making retrieval-augmented language models robust to irrelevant context. In The Twelfth International Conference on Learning Representations, Cited by: Introduction, Adaptive retrieval.. Y. Yuan, W. Wang, Q. Guo, Y. Xiong, C. Shen, and P. He (2024) Does chatgpt know that it does not know? evaluating the black-box calibration of chatgpt. In Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024), p. 5191â5201. Cited by: Uncertainty and calibration..