XOOMAR
AI core in a futuristic workspace showing neural networks, probability paths, and uncertainty signals.
TechnologyJune 12, 2026· 8 min read· By XOOMAR Insights Team

Google’s 52% Tax Exposes Risky LLM Hallucinations Fix

Share
Updated on June 13, 2026

Google researchers are trying to cut LLM hallucinations without forcing models into useless silence.

XOOMAR Intelligence

Analyst Take

74/ 100
High
4 sources analyzedMedium confidenceTrend10Freshness99Source Trust85Factual Grounding92Signal Cluster40

That tradeoff is the core problem behind faithful uncertainty, a technique described by Google researchers in a new paper and covered by VentureBeat. The idea is simple but consequential: models should not just know facts. They should know when their confidence is weak enough to say, “My best guess is,” instead of presenting a shaky answer as settled fact.

Why should enterprises care about faithful uncertainty in LLMs now?

The practical pain point is not that large language models are sometimes wrong. Humans are sometimes wrong too. The bigger problem is that LLMs often sound equally confident when they are correct, uncertain, or inventing a plausible answer.

Current mitigation strategies create a brutal tradeoff. If developers push models toward near-zero hallucination rates, the model often refuses questions it could have answered correctly. That makes the system safer on paper but less useful in production.

Google’s paper calls this the “utility tax.” One example in the paper shows how costly that tax can get: reducing an underlying 25% error rate to a strict 5% target forces developers to throw away 52% of the model’s correct answers.

That number captures why many enterprise AI deployments get stuck. A model that answers everything confidently can mislead users. A model that refuses too often becomes operational dead weight.

“There are broadly two ways to improve LLM factuality,” Gal Yona, Research Scientist at Google and co-author of the paper, told VentureBeat.

Yona said one path is teaching the model more facts. But that has limits.

“model capacity is finite, and the long tail of knowledge is effectively infinite.”

The second path is more subtle: teach the model to recognize the edge of what it knows.

For readers tracking adjacent AI reliability issues, this sits close to XOOMAR’s coverage of AI Memory Can Make Chatbots Confidently Wrong at Work, SkillOpt Bets AI Agents Can Improve Without Retraining, Kimi K2.7-Code benchmarks, and the Gemini scam lawsuit. The shared question is not raw model power. It is control.


What does faithful uncertainty mean for large language models?

Faithful uncertainty means the model’s language about confidence matches its internal statistical confidence.

That sounds narrow. It is not. The paper separates two capabilities that are often blurred together:

Capability What it means Why it matters
Knowledge boundary What facts the model has encoded More training can push this outward
Boundary awareness Whether the model can tell what it knows from what it does not know More training does not automatically fix this

A larger model may know more. That does not mean it knows when it has reached the edge of its knowledge.

Faithful uncertainty targets that second layer. If the model has strong internal confidence, it can answer directly. If its internal state reflects uncertainty, conflict, or low confidence, it should hedge in ordinary language.

The point is not to make every answer come with a disclaimer. That would destroy trust in a different way. If every response begins with “I may be wrong,” the user has to verify everything anyway.

The goal is selective doubt. A useful hedge appears only when the model’s internal state justifies it.

Examples:

  • Confident answer: “The filing deadline is Friday.”
  • Qualified hypothesis: “My best guess is that the deadline is Friday, but I would verify the latest filing notice.”
  • Unhelpful blanket caveat: “I may be wrong, but the deadline might be Friday.”

The third version adds noise. The second version adds signal.

How does reframing hallucinations as confident errors change AI safety?

The Google researchers propose a sharper definition of hallucination: not every factual error, but a confident error.

That reframing matters because it breaks the old answer-or-abstain binary. A model no longer has only two choices: answer with certainty or refuse. It gets a third option: offer a qualified hypothesis.

Under this framing, a wrong answer with appropriate uncertainty is not treated the same way as a wrong answer delivered with authority. The first is a hypothesis. The second is a hallucination.

The doctor analogy from the source material is useful here. We do not trust doctors because they know everything. We trust them because they can distinguish between a firm diagnosis and a working theory that needs tests.

A model should behave the same way. “You have a fracture” and “It might be a sprain, but let’s run some tests” carry different levels of confidence. The value is in the distinction.

This also creates a cleaner split between two kinds of failure:

  • Honest mistakes: The model is genuinely confident but factually wrong.
  • Hallucinations: The model gives incorrect information with unjustified confidence.

That distinction gives developers two complementary jobs. Training on more data can reduce honest mistakes by expanding the knowledge boundary. Faithful uncertainty can reduce hallucinations by making the model communicate where that boundary currently sits.

How could faithful uncertainty improve agentic AI tool use and search decisions?

Agentic AI makes uncertainty more important, not less.

At first glance, tool access seems to solve the problem. If the model does not know something, it can search, retrieve documents, or call an API. But that introduces a control problem: when should the agent use the tool?

Yona’s point, as reported by VentureBeat, is that an agent can fail in both directions. It may search for something it already knows, adding latency and cost for no benefit. Or it may answer from memory when it should have checked an external source.

Today’s agent harnesses often use query classifiers or always-search rules. Yona described these approaches as “static and brittle.”

Faithful uncertainty would move that decision closer to the model itself. If internal confidence is high, answer. If confidence is low, retrieve. If retrieved information conflicts with the model’s priors, weigh the conflict instead of blindly trusting the new context.

A practical implementation pattern could look like this:

  1. Question: A document-analysis agent is asked whether a renewal clause applies.
  2. Internal check: The model has partial confidence but not enough to recommend action.
  3. Hedged response: “My best guess is that the renewal clause may apply, but I need to verify the source document.”
  4. Tool call: The agent searches the relevant document.
  5. Second check: The agent compares the retrieved clause against its initial interpretation before responding.

This is not a reported deployment in the paper. It is the control logic the paper points toward.

The second-order benefit is just as important. A metacognitive agent should not treat every retrieved snippet as truth. If search returns weak, contradictory, or unexpected material, the model needs a way to judge that signal rather than absorb it uncritically.


Why is teaching faithful uncertainty to LLMs so hard?

Teaching a model uncertainty language sounds easy. It is not.

Pre-trained models absorb a huge amount of authoritative text. They are trained to produce fluent answers, not necessarily to say, “I’m not entirely sure.” So developers can use supervised fine-tuning to teach the syntax of uncertainty.

That creates the bootstrapping paradox.

In ordinary training data, the right answer is usually fixed. With uncertainty, the “right” label depends on what a specific model knows at a specific point in training.

“Here’s the catch: the 'correct' expression of uncertainty is inherently dynamic, because it depends on what this particular model knows or doesn’t know at this particular point in training,” Yona said.

If a dataset tells the model to say “I don’t know X,” but the model actually does know X, the training process teaches false uncertainty. That is its own kind of miscalibration.

Yona put the tension plainly:

“If you train on a label that says 'I don’t know X' but the model actually does know X, you’ve taught it to hallucinate uncertainty... The training data is static, but the target is a moving one, and that’s the fundamental tension teams need to grapple with.”

Evaluation is another open problem. A model may learn the style of self-awareness without actually sensing its internal state. It can sound cautious because the prompt asks it to sound cautious. That is not the same as faithful calibration.

How can teams start testing faithful uncertainty without retraining their models?

For teams that cannot retrain models, prompting is the entry point.

Yona called prompt engineering “the lowest-friction path to improving metacognitive behavior today.” One example is MetaFaith, an open-source metacognitive prompting project previously co-authored by Yona. In a separate MetaFaith paper, the authors report up to 61% improvement in faithfulness and an 83% win rate over original generations as judged by humans.

Prompting has limits. Yona also cautioned that “there is still substantial headroom that prompting alone doesn’t solve.” The source material points to advanced reinforcement learning as a likely path for deeper training-time metacognition.

The near-term prescription is narrower and more practical: test whether your model can separate answer, hedge, and retrieve. Do not just measure factual accuracy. Measure whether confidence language matches confidence state.

The next reliability frontier for AI agents will be deciding when to speak, when to qualify, and when to call for help. If faithful uncertainty works, fewer systems will have to choose between being useful and being trustworthy.

Impact Analysis

  • Faithful uncertainty could make enterprise LLMs safer without making them unusably cautious.
  • The research targets a core problem: models often sound confident even when their answers are unreliable.
  • Reducing a 25% error rate to a 5% target can discard 52% of correct answers, showing why better uncertainty handling matters.

Approaches to Improving LLM Factuality

ApproachHow It WorksTradeoff
Teach the model more factsExpands the model’s knowledge baseLimited by finite model capacity and the long tail of knowledge
Faithful uncertaintyLets models signal weak confidence and offer best guesses instead of asserting shaky answersAims to reduce hallucinations without making models refuse too often

Utility Tax of Strict Hallucination Reduction

Underlying error rate
%25
Strict target error rate
%5
Correct answers discarded
%52
XOOMAR

Written by

XOOMAR Insights Team

Research and Editorial Desk

The XOOMAR Insights Team pairs automated research with human editorial judgment. We track hundreds of sources across technology, fintech, trading, SaaS, and cybersecurity, cross-check the facts, and explain what happened, why it matters, and what to watch next. We do not just rewrite headlines. Every article is fact-checked and scored for reliability before it goes live, and we link back to the original sources so you can verify anything yourself.

Related Articles

Focused young man sketching at his desk with a computer and notebook in a creative office setting.Technology

Barret Zoph's Chaotic Odyssey Lands Him Back at Google

Barret Zoph's tumultuous three-job journey between Google, OpenAI, and a short-lived $10 billion startup demonstrates that elite AI researchers have become the

Aug 27, 20266 min
Colorful lines of code on a computer screen showcasing programming and technology focus.Technology

QueryStory Raises $6M to Fix AI's Broken Truth Problem

QueryStory raised $6 million to build an AI reporting tool that proves where its conclusions come from, aiming to solve enterprise trust issues with data audits

Aug 30, 20269 min
Futuristic innovation hub with a glowing AI neural network hologram surrounded by data screens and circuit visualizations.Technology

Nvidia's $680 Billion Revenue Target Stuns Market

Nvidia CEO Jensen Huang projects revenue will surge to $680 billion next year, asserting the company is the indispensable foundation of the entire AI industry.

Sep 11, 20268 min
Futuristic Android interface with holographic overlays and AI tools in a sleek tech workspace.Technology

Android's Bubble Stops Backseat Nausea on One Billion Phones

Google is updating Android with a bubble overlay that counters car sickness and new AI tools for low-vision users, signaling a move from apps to direct sensory

Sep 1, 20266 min
Screen displaying ChatGPT examples, capabilities, and limitations.Technology

Oumi Automates AI Dev, Declares ML Engineers Obsolete

Oumi's new platform automates the full development pipeline for custom enterprise AI, aiming to make expensive teams of machine learning engineers redundant and

Aug 26, 20266 min
Somber, wide-angle cityscape under an overcast sky with a memorial beam of light, representing global loss and remembrance.Global Trends

New Yorker Recalls Three Johns Lost After Towers Fell

A first-person account of returning to lower Manhattan after 9/11, where the scale of loss was measured in personal connections and changed social rituals.

Sep 11, 20265 min
Trading floor with monitors showing financial charts and data visualizations.Trading

August CPI Prints 3.40%, Up 0.04 Points

Inflation rose modestly to 3.40% in August, landing above the Fed's target just as markets expect an imminent rate hike.

Sep 11, 20268 min
Holographic AI neural network visualizes data in a high-tech, clean factory environment.Technology

Industrial AI's Blind Spot: The Expert Lore Machines Miss

Factories risk losing billions in unwritten tribal knowledge when veterans retire. Squint aims to capture this lore as a foundational 'context layer' before AI

Sep 11, 20266 min
Futuristic tech hub with a glowing mannequin and a digital screen displaying data patterns, symbolizing the digital auction of a historic dress.Technology

Princess Diana's Revenge Dress Aims for $300k Auction

At Sotheby's, Princess Diana's 'revenge dress' is expected to sell for up to $300,000, valuing a single night of televised defiance as a pivotal artifact of soc

Sep 11, 20266 min
A symbolic global map with connections radiating from the U.S., illustrating political influence and legacy.Global Trends

Trump Heir Vance Unveils Contender Status on Stage

JD Vance used his keynote speech at the Republican midterm convention to position himself as Donald Trump's clear political heir, backed by strong early polling

Sep 11, 20265 min

Don't miss the signal

Get our weekly roundup of the stories that matter across tech, fintech, and trading. No noise, just signal.

Free forever. No spam. Unsubscribe anytime.