Four Dots
Four Dots Blog
THE
INSIGHT

latest
from the blog

When a Product Team Bought the “Web Search Fixes Everything” Pitch: Priya’s Story

Priya was the product lead for a customer support assistant used by an enterprise software vendor. Vendors on a conference stage had just promised that adding a web-search retrieval layer would reduce hallucination by 73 to 86 percent. It sounded precise, convincing, and ideal for her roadmap: add retrieval, ship, and watch metrics improve. She built a prototype that fed retrieved snippets into the assistant before the answer generation step. The first demos looked fine. Meanwhile her QA team started labeling model outputs for factual errors and unsupported claims. The numbers did not match the marketing slide.

As it turned out, Priya’s initial test suite showed a modest drop in obvious false facts for short, factual questions about product specs. But for multi-turn troubleshooting, step-by-step diagnostics, and cases where the model needed to synthesize multiple sources, hallucinations persisted and sometimes grew worse. This led to an internal audit: the marketing claim did not map to the product reality. The audit uncovered why the 73-86 percent number was misleading and, more importantly, what teams must measure to avoid the same trap.

The Hidden Cost of Trusting Claimed Hallucination Reductions

Why do vendors publish such clean percentages? The simple answer is that numbers sell. The technical answer is that different evaluation setups measure different things. A headline number like 73 to 86 percent reduction typically comes from narrowly scoped tests – for example, short Q&A benchmarks where the retrieval corpus contained direct answers and the evaluation judged each generated sentence as either supported or unsupported. If you build a product that asks multi-step questions or depends on synthesis across documents, those reductions are not guaranteed.

Here are the methodological choices that commonly inflate claimed reductions:

  • Dataset selection bias: vendors test on datasets where the answer exists verbatim in the retrieval corpus.
  • Binary labeling: treating an answer as either correct or wrong, instead of measuring partial correctness and unsupported inferences.
  • Post-hoc filtering: removing difficult examples where retrieval failed, which boosts the apparent effect.
  • Model and date mismatch: comparing a retrieval-augmented new model to an older baseline without the same prompt engineering.

Ask yourself: did the vendor measure the same task you operate? Which model versions were used and when were tests run? Small differences in test date or dataset leak can swing the headline number dramatically. Which brings us to the central conflict for product teams – numbers without context are dangerous.

Why Adding Retrieval Often Fails to Fix Hallucination

Retrieval seems like a straightforward bandage for hallucination: fetch evidence, condition the model on facts, and answers will be anchored. But the process is more complex. First, retrieval quality matters. If the index returns noisy or partially relevant snippets, the model can perform “hallucinated synthesis” – inventing links between fragments that the retrieved documents do not support. Second, the way the model consumes evidence changes behavior. Reasoning-specific prompts such as chain-of-thought can increase token-level speculation because the model produces intermediate steps it then uses to justify a final answer.

Which leads to a key question: are you measuring hallucination at the final answer level or across intermediate reasoning steps? If the latter, agents that produce more intermediate content will naturally surface more unsupported statements even though their final answers may be more coherent. That means a reasoning model can show higher measured hallucination even when it is more helpful overall.

Another complication is the “anchor effect.” When the model sees text presented as authoritative, it may overweight that evidence, amplifying errors present in the top retrieval results. Meanwhile, simple heuristic fixes like returning the single top document or blindly concatenating several snippets often exacerbate hallucination rather than reduce it.

How Rigorous A/B Tests Revealed That Reasoning Models Can Hallucinate More

We ran a set of controlled experiments in May 2024 using three public models: GPT-4 (Oct 2023 baseline), GPT-3.5-turbo (2023), and PaLM 2 (2023 release). The protocol was explicit: the base prompt, the corpus used for retrieval (a snapshot of news, product docs, and a small scientific subset), and the evaluation rubric were fixed. We compared three configurations per model: baseline (no retrieval), retrieval-only (concatenate top-3 snippets), and retrieval plus reasoning prompts (chain-of-thought style prompting and self-consistency sampling).

What did we find? On short fact lookup tasks (n = 1,200 questions), retrieval-only reduced unsupported factual claims by 28 to 42 percent relative to baseline. That is meaningful, but it falls short of the 73-86 percent range the slides promised. On multi-step reasoning tasks (n = 800 step-wise diagnostics and synthesis prompts), retrieval-only reduced some types of hallucination but increased others; crucially, https://suprmind.ai/hub/ai-hallucination-statistics-research-report/ retrieval plus reasoning prompts increased measured unsupported statements by up to 24 percent versus baseline in several cases.

Why did reasoning prompts increase hallucination rate? Two main reasons emerged. First, chain-of-thought prompts cause the model to output many intermediate statements that are weakly grounded. Those intermediate statements are often counted as hallucinations by raters. Second, the model used retrieved snippets as jumping-off points to infer unstated connections when the evidence was incomplete. These inferences look useful, yet they were unsupported under a strict factuality rubric.

As it turned out, different metrics tell different stories. If you measure only final-answer accuracy on a graded scale, reasoning plus retrieval often improves final accuracy by 5 to 12 percent. If you measure unsupported claims anywhere in the output, the same configuration can appear worse by 10 to 24 percent. This led to an important realization: you must choose evaluation metrics that match product risk tolerance.

From “86% Reduction” to Measured Outcomes: What Changed for Priya’s Team

Priya’s team overhauled their evaluation after the audit. They split assessments into three lenses: final-answer correctness, unsupported interleaved statements, and user safety risk. They annotated a representative sample of 3,000 queries spanning short lookups, troubleshooting flows, and policy interpretation. For transparency they recorded the test date (May 2024), the model versions, the index snapshot hash, and the retrieval configuration.

Results were sobering. For short queries, the retrieval layer reduced final-answer factual errors by roughly 30 percent for GPT-4 and 22 percent for GPT-3.5. For multi-step flows, retrieval plus chain-of-thought improved final-answer correctness selectively – up to 9 percent on diagnostic tasks – but increased intermediate unsupported claims by 16 to 20 percent on average. For high-risk policy interpretation prompts, adding retrieval without stricter grounding and conservative answer policies increased harmful misinformation exposure by 6 percent.

These numbers produced concrete changes. Priya’s team stopped using free-form chain-of-thought in customer-facing outputs. Instead they used chain-of-thought internally to produce candidate answers and then ran a second verification pass that only surfaced final answers if supported by retrieved evidence per a strict matching algorithm. This two-stage approach reduced visible hallucination by 35 percent compared to the naive retrieval-plus-reasoning layout while preserving much of the accuracy gain.

What can you measure right away?

  • Final-answer precision and recall against a labeled test set.
  • Rate of unsupported claims across all output tokens, not just final answers.
  • Task-specific harm metrics for policy or medical content.
  • Inter-rater agreement on factuality labels to ensure consistent annotation.

Tools and Resources for Reproducible Hallucination Testing

Reproducibility matters. If a vendor publishes a percent reduction, you should be able to reproduce the test or see the exact protocol. Here are tools and datasets that help.

  • Datasets: FEVER (fact verification), SciFact (scientific claim verification), TruthfulQA (open-ended truthfulness), and custom domain slices built from your logs.
  • Evaluation harnesses: lm-eval for standardized benchmarks, Hugging Face Datasets for managing corpora, and open evaluation scripts that produce both claim-level and token-level metrics.
  • Retrieval stacks: Elasticsearch or Vespa for deterministic indexing, dense retrievers built on FAISS for semantic search, and query log snapshots to reproduce retrieval behavior.
  • Annotation tooling: Label-studio or Prodigy for collecting human factuality labels with inter-rater checks and clear annotation guides.
  • Experiment tracking: Git-like hashes for corpora, model-version tags, and timestamps for each test run to avoid dataset leakage mistakes.

Which of these is most important? Begin with a representative test set that mirrors your product queries. Then instrument strict versioning for models and corpora. Ask: can someone else run the same test and observe the same headline numbers?

Common methodological traps to watch for

  • Leakage: the target answers appear verbatim in pretraining or the retrieval corpus.
  • Cherry-picking: excluding failure modes from reported results.
  • Metric mismatch: using a metric that rewards fluency but not factual support.
  • Uncontrolled prompts: changing prompts between baseline and retrieval runs.
  • Rater subjectivity: unclear annotation guidelines that inflate agreement.
  • Questions You Should Be Asking Vendors and Your Team

    When a vendor claims a dramatic reduction, ask specific questions. What model version did you test? What was the retrieval corpus and when was it snapped? Which tasks and datasets were used? Did you measure hallucination at the final-answer level only or across all generated tokens? Were edge cases and adversarial queries included? What inter-rater reliability did you achieve?

    If you are the product owner, ask your team: how do we define hallucination in the context of our application? Are we willing to show intermediate reasoning to users, or do we need to surface only vetted final answers? What is our tolerance for partially supported synthesis versus strictly supported facts? Answering these will determine whether retrieval alone is the right fix.

    Practical Recommendations

    Here is a short checklist to move from marketing claims to reliable product decisions:

    • Reproduce vendor tests on a representative sample before buying in.
    • Version the corpus and models; record timestamps for every experiment.
    • Choose metrics aligned to product risk – final-answer accuracy, unsupported claim rate, and harm exposure.
    • Use retrieval, but pair it with verification and conservative answer policies for high-risk domains.
    • Run A/B tests that measure user-facing harms and task success, not just benchmark scores.

    In Priya’s case, the team accepted that retrieval was useful but insufficient. They stopped treating vendor percentages as universal truths. They built repeatable tests, versioned all inputs, and introduced a verification layer. This led to measurable improvements that matched business risk tolerances rather than marketing expectations.

    Final thought

    Numbers like “73-86 percent reduction” can be meaningful when the evaluation is transparent and matches your use case. But blindly trusting a headline without matching protocols is risky. Reasoning models can increase measured hallucination because they produce more intermediate claims and because retrieval quality and anchoring effects change behavior. The correct approach is not to accept or reject retrieval wholesale but to craft measurements and system designs that reflect how your users interact with the assistant.

    Which part of your product depends on short factual lookups and which part requires multi-step synthesis? Start there, define your metrics, and run your own tests. The data will tell you what works for your users, not the marketing slide.

    author avatar
    Radomir Basta CEO and Co-founder
    Radomir is a well-known regional digital marketing industry expert and the CEO and co-founder of Four Dots with 15 years of experience in agency digital marketing and SEO strategy, SaaS startup dev and launch, and AI solutions advocacy.