Izzy Hurley15 minLLMs have training cutoffs, so agents need web search to answer questions about current events. Search results vary by provider, retrieval depth, and model integration. Their effect on accuracy is harder to inspect because a model can issue several queries, select evidence, and combine facts before answering.
An agent can use a model provider's built-in search or a shared external search API. The search tool can also return a small ranked set or a wider set with more context. These choices affect the evidence available to the model, the number of tokens it processes, response time, and cost.
The eval tested 1,329 current events questions from LiveNewsBench across 14 conditions and four models. Every condition logged the search trajectory and final answer for paired comparisons of accuracy, latency, cost, and evidence quality.[1][2]
| Setup | How search works | What the model receives |
|---|---|---|
| No search | The setup disables search | Only the question |
| You.com | Shared You.com code | Up to 5 web results and 5 news results |
| You.com wide | Shared You.com code | Up to 20 web results and 20 news results |
| Built-in search | OpenAI or Anthropic tool | The provider's own search results and result format |
The model matrix used GPT-5.6 Terra, Claude Sonnet 5, and two models served through Baseten: GLM-5.2 (zai-org/GLM-5.2) and DeepSeek V4 Flash 0731 (deepseek-ai/DeepSeek-V4-Flash-0731). The plots use “DeepSeek V4” as the shorter display label.
The You.com setups normalize every result into the same fields. Each model receives the same title, URL, and text excerpt, which supports direct model comparisons. Built-in search tests the model and its provider's search product as one system. Every setup answered the same questions under the same search-call budget. The analysis pairs comparisons by question.[3]
Question accuracy is the primary outcome throughout this analysis. The SimpleQA grader measures it with a model-based evaluation that accepts equivalent wording and more closely matches the accuracy measure that LiveNewsBench publishes than literal string matching does. A separate scorer-design note near the end examines the deterministic answer match and the cases where the two measures disagree.
Existing search leaderboards hold the model fixed and rank providers.[4] This eval varies the retrieval layer, result depth, and model together. The design measures when retrieval improves accuracy, how much evidence to return, and where relevant evidence still produces a wrong answer.
Without search, question accuracy ranged from 2.80% for GLM-5.2 to 50.71% for GPT-5.6 Terra. With the same You.com retrieval layer, the four models scored between 79.20% and 84.82%.
| Model | No-search question accuracy | You.com question accuracy | Paired improvement | Mean total cost per You.com question |
|---|---|---|---|---|
| GLM-5.2 | 2.80% | 79.20% | +76.4 points | $0.0464 |
| DeepSeek V4 Flash 0731 | 8.05% | 80.66% | +72.6 points | $0.0163 |
| Claude Sonnet 5 | 24.68% | 79.23% | +54.5 points | $0.0747 |
| GPT-5.6 Terra | 50.71% | 84.82% | +34.2 points | $0.0417 |
Total cost includes model inference and search charges recorded during each run. It uses the pinned list prices for the experiment, excluding promotional and negotiated rates.
You.com increased question accuracy by 76.4 points for GLM and 34.2 points for GPT.[5] The 2.2-fold difference shows that retrieval reduced the effect of the base model on this task. A no-search ranking did not predict the ranking after the eval added search, and a cheaper model with the same retrieval layer approached the accuracy of a more expensive model.
Across news categories, question accuracy ranged from 88.1% for Sports to 74.6% for Disasters and accidents. The 13.5-point range exceeded the 5.7-point range between models and the 3.7-point difference between You.com and GPT's built-in search. Science and technology scored 88.2% on 68 questions, compared with 252 Sports questions, so the Sports estimate has a larger sample.[6]
Sports questions often ask for a score, seed, or round number that appears verbatim in reporting. Disasters and accidents often ask for casualty figures and damage estimates that changed as a story developed. Sources can disagree, and the expected value may not appear in the retrieved text.
You.com search increased question accuracy by 48.2 to 68.3 points in every category. The remaining category differences determined the post-search accuracy range.
| Model | Search | Question accuracy | Average tokens | Average total cost | Cost per correct answer | Average time |
|---|---|---|---|---|---|---|
| Claude Sonnet 5 | Built-in | 78.78% | 42.6k | $0.1148 | $0.1457 | 12.74s |
| Claude Sonnet 5 | You.com | 79.23% | 29.9k | $0.0747 | $0.0942 | 11.48s |
| GPT-5.6 Terra | Built-in | 81.16% | 17.3k | $0.0467 | $0.0576 | 12.04s |
| GPT-5.6 Terra | You.com | 84.82% | 21.9k | $0.0417 | $0.0491 | 8.64s |
GPT gained 3.66 points of question accuracy with You.com and answered 3.40 seconds faster. Total cost fell by $0.0051 per question, and cost per correct answer fell from $0.0576 to $0.0491. The statistical test could not distinguish Claude's 0.45-point accuracy difference from zero. With You.com, Claude answered 1.26 seconds faster, cost $0.0402 less per question, and reduced cost per correct answer from $0.1457 to $0.0942. Built-in search sent Claude 12,700 more tokens.[7]
The provider's tool changes how the model searches as well as what comes back. On its own toolchain GPT issues 0.36 fewer searches per question and takes about 36% longer to answer. Claude issues 0.15 more and takes about 9% longer.
GPT's no-search question accuracy falls from 64% on May events to 34% on December events, and Claude's from 29% to 12%. The search lines stay between 74% and 94% across the same months. No-search question accuracy rises 5.7 percentage points for every three months the event is older, and the improvement from adding search falls 8.2 points over the same span.[8]
The no-search baseline improved as events aged, while search accuracy stayed between 74% and 94%. The change also differed by model. GPT recovered 11.6 points of no-search accuracy per three months of event age, compared with 0.7 points for GLM.
| Model | No-search question accuracy for events 3 months older | Gain in question accuracy from search for events 3 months older |
|---|---|---|
| GPT-5.6 Terra | +11.6 pts | −13.6 pts |
| Claude Sonnet 5 | +8.5 pts | −10.8 pts |
| DeepSeek V4 | +1.8 pts | −5.3 pts |
| GLM-5.2 | +0.7 pts | −3.3 pts |
The events were 236 to 482 days old when the eval ran. The estimated gain from retrieval fell from about 45 points at the recent end of that range to about 24 points at the older end. A benchmark's mean retrieval gain therefore depends on the age of its questions, and its refresh schedule affects the measurement.
Claude's aggregate scores differed by 0.45 points, but the two search methods produced different outcomes on 198 questions. GPT's methods disagreed on 186 questions.
For GPT, You.com passed 117 questions that built-in search failed, while built-in passed 69 that You.com failed. The difference between those counts is the entire 3.66-point lead. For Claude, You.com alone passed 102 and built-in alone passed 96.
Most disagreements arise when one search method returns a different number, date, or location. The model then calculates correctly with whatever evidence the search method returned.
The Alcaraz row provides a representative example. You.com returns one passage saying he lost 24 service games in 2022 and another saying he played 22 sets in 2025, and the model adds them to reach 46. The wide and built-in runs do not include a passage supporting the 24. Both answer 44 by counting 22 twice. The selected source causes the error. The arithmetic follows from the evidence provided.
Provider-native search does not support the same passage-level audit. The OpenAI and Anthropic APIs return the queries and cited pages without exposing the passages the model reads.
Increasing the maximum result count from five to twenty produced a small gain in question accuracy for two of the four models.[9] It also changed the composition of the retrieved context.
| Retrieved-context measurement | Wide minus standard |
|---|---|
| Answer coverage | +0.5 to +1.2 pts |
| Token-discounted gain | +1.2 to +2.0 pts |
| Evidence precision | −1.2 to −1.8 pts |
| Temporal grounding | −7.5 to −9.7 pts |
| Source diversity | −4.9 to −6.2 pts |
| Distinctness of the retrieved text | −6.1 to −6.9 pts |
| Searches issued per question | −0.09 to −0.28 |
Every difference above has adjusted p below 0.04 except GPT's answer coverage.
Source diversity and distinctness together identify syndicated reporting.[10] Twenty outlets can republish the same wire story, producing many distinct hostnames and repeated text. Both metrics fell in the wide setup, showing that the additional results contained fewer new sites and less new text. Across all four models, wide retrieval increased answer coverage, reduced evidence precision and temporal grounding, and led to fewer follow-up searches after the larger first response.
Letting each question have its own retrieval effect fit decisively better than one shared effect. The spread of the per-question effects was wider than the spread of the question baselines and the full accuracy range between models.[11] A benchmark's mean retrieval gain summarizes a wide distribution of question-level effects.
The question also accounted for roughly 82% of the variance in answer coverage, evidence precision, and token-discounted gain. Model and result depth explained little additional variance. Retrieval cannot return an answer absent from the indexed corpus.
A per-question routing policy can use event age, question composition, and whether the first search returns a dated source. These variables distinguished question difficulty more clearly than the choice of search provider.
For GPT with You.com, question accuracy is 91% after one search and 90% after two, then falls to 49% among runs reaching five or more. GPT with built-in search falls from 90% to 26%, and its average response time rises from 9 to 44 seconds. Claude's runs with five or more searches score 19% with You.com and 27% with built-in, taking about 37 seconds either way.
Search count is observational because hard questions can cause both longer search trajectories and wrong answers.[12] During a run, a third or fourth call indicates that the initial search plan has failed. The agent can change its query strategy before issuing a fifth variation.
Search service failures were rare. Across 13,290 rows where search was available, the model answered without searching in 126 cases, or 0.95%, and Claude produced 119 of those. Another 38 searches encountered a technical problem and still returned a result. Every search attempt returned a response.
The deterministic scorer checks whether the expected answer appears verbatim in the response, which shows whether retrieval returned the reference string. The SimpleQA grader measures the primary outcome, question accuracy, because it accepts semantically equivalent answers and more closely follows the LiveNewsBench evaluation.
Answer coverage and evidence precision most strongly predict deterministic answer match. Evidence-quality measurements had much smaller associations with question accuracy. Search count had the largest association and was negative.[13] Long search trajectories usually identify questions where the model is already struggling.
The disagreement runs almost entirely one way. The two differ on 35.5% of rows. Deterministic matching rejects an answer the question-accuracy grader accepted 6,548 times, while the question-accuracy grader rejects one that deterministic matching accepted 52 times. The deterministic scorer behaves like an extra literal-answer filter after the question-accuracy grader.
Substring matching causes those 52 deterministic false positives. One question asks by how many days China's visa-exempt stay for South Koreans exceeds South Korea's allowance for Chinese tour groups. Claude's search returned the 15-day South Korean figure from four separate sources and never established the current 30-day Chinese one. It answered that both are 15 days, so the difference is 0. The expected answer is 15 days, the response contains that string, and deterministic matching scored it correct. Answer coverage has the same blind spot because it also uses string matching.
GPT failed 132 questions under both methods, Claude 180.
Questions that combine facts or require a calculation were 13.3 points harder after standard You.com search and gained 4.6 points less from search than single-fact questions.[14] Search finds each value. The model still has to pick values from the same time period and do the arithmetic.
Some shared failures indicate possible dataset errors. Every setup says FvD rose from 3 seats to 7 in the Dutch election, an increase of four, and the dataset expects three. When every setup produces the same well-supported answer, the expected answer warrants review.
| What happens | Likely problem | What to do |
|---|---|---|
| No search fails and both search methods pass | The model lacked a recent fact | Use search |
| You.com and built-in search disagree | They found different sources or dates | Check an official source |
| Both find facts and calculate the wrong answer | The model chose or combined values incorrectly | Extract values and calculate in code |
| Both agree with each other and miss the expected answer | The dataset answer may be wrong | Ask a person to review the example |
| The model searches 3 to 5 times | Its first search plan failed | Search for the missing item or stop |
| Type of question | Start with | If that fails |
|---|---|---|
| Recent event | You.com search | Check with built-in search |
| GPT answers an older, low-impact question | No search | Search when the model is unsure |
| GLM or DeepSeek answers an older question | You.com search | Keep search enabled |
| Several facts or a calculation | Search and list each needed value | Check dates and calculate in code |
| No clear answer after 3 searches | Search for the missing item | Try the other method or return uncertainty |
| Search methods return different values | Pause before answering | Resolve the source, date, or location |
The LiveNewsBench dataset and benchmark code are public. The search eval library records the model, search method, event date, queries, returned text, answer, response time, and both accuracy scores as one experiment per condition.
You can use this study's search matrix to compare retrieval methods on your own current events questions. Sign up for free to run the eval, or book a demo to review the design with your team.
A newsletter for unfiltered thoughts on eval methodology, analysis, and failures
Subscribe