A journalist recently called out DeepSeek for its “serious lying problem” — the model can write a beautifully crafted biographical sketch in classical Chinese style, but the person’s birthplace, mother’s surname, and life events are all fabricated. This isn’t an isolated incident; it’s one of the most stubborn bugs in the LLM industry, and it has a name: AI Hallucination.
Right after the May Day holiday, a few bombshells hit the AI world. First, DeepSeek was called out for becoming “cold and pompous” — it stopped using user nicknames, its responses sounded like a school principal. Then journalist Lao Zhan asked DeepSeek to write a biography of him in the style of the *Records of the Grand Historian*. The result was eloquent — but his birthplace was wrong, his mother’s surname was fabricated, 70 years of life experience had been rewritten by AI.
Even more alarming, China’s first AI hallucination-induced infringement case was entered into the Supreme People’s Court work report. Someone trusted an AI-recommended “brand,” made a purchase, and got scammed out of 800 RMB. IT Times reporters ran a test and found that by strategically feeding false information online for just two hours, they could poison an LLM into confidently endorsing a completely fictional brand.
And here’s the kicker: HKU Business School’s AI Evaluation Lab (AIEL) tested 37 major Chinese and US models and found that even GPT-5 scored under 75 on factual accuracy. The best models today can’t reliably pass the “tell the truth” test.

What Exactly Is AI Hallucination?
AI hallucination is when an LLM generates content that sounds plausible, is grammatically correct and logically coherent — but is factually wrong. In plain English: the model makes up an answer and delivers it with absolute confidence.
Take DeepSeek. It can write biographies in classical Chinese, but at its core it’s a “next token predictor.” It doesn’t know who “Lao Zhan” is — it knows that “a biography should include birthplace, family background, and career history.” So it generates the most plausible-looking version from patterns in its training data. The problem? It can’t tell “plausible” from “correct.”
Academics usually group hallucination into three types (arXiv:2309.01219, updated to v3 in Sep 2025):
– Factual Hallucination: The model fabricates things that don’t exist. DeepSeek making up someone’s mother’s surname, or an AI generating a scholarly paper with entirely fake references.
– Faithfulness Hallucination: The model ignores instructions or context. Ask it to summarize article A, and it mixes in content from article B.
– Structural Hallucination: Most common in code generation. Syntax checks out, but it crashes on execution. Research circles call this “syntactic hallucination.”
2026: Did Hallucination Rates Actually Drop?
Good news: yes, they did. Bad news: we’re not even close to “trustworthy.”
According to Vectara’s Hallucination Leaderboard (tested on 7,700+ articles), current models range from 1.8% to 24.2% — a 13x gap. Top performers include antgroup’s finix_s1_32b (1.8%), Google’s Gemini 2.5 Flash Lite (3.3%), Microsoft’s Phi-4 (3.7%), and Meta’s Llama 3.3 70B (4.1%).
At the bottom, Grok 4.1 hits 19.2%, and Ministral 3B clocks in at 24.2%.
What do these numbers mean? A 3% hallucination rate means roughly 1 in 33 sentences is made up. Fine for casual chat. But when it’s writing your code, running financial analysis, or generating medical advice? That’s a hard no.
Alibaba’s payment arm Alipay quietly disclosed one data point: their insurance-scoring model dropped hallucination from 3% to 0.6% through domain fine-tuning with real transaction data. So vertical optimization works — but you can’t get there without burning serious amounts of high-quality business data.
Suprmind.ai’s April 2026 cross-benchmark analysis paints an even more nuanced picture. Claude 4.1 Opus scored 0% on AA-Omniscience’s knowledge task — but that’s because it refused to answer when uncertain. When models actually attempt an answer, Grok 4.20 (Reasoning) comes in at 17%. The confidence paradox — identified by MIT researchers — is real: models are 34% more likely to use definite language (“certainly,” “without a doubt”) when they’re fabricating than when they’re stating facts.
Why Can’t LLMs Just Stop Hallucinating?
It’s not that providers don’t want to fix it. It’s fundamentally unfixable.
First, language models are not knowledge bases. They memorize tons of facts, but the training objective has never been “remember correct facts” — it’s “predict the next most likely token.” Facts that appear infrequently or not at all in training data get replaced with “reasonable inference.” Researchers at the National University of Singapore even published a mathematical proof showing hallucination is provably unavoidable for this type of model — there will always be questions beyond its capability, and when that happens, it fills.
Second, training data is inherently contaminated. Rumors, memes, shitposts, and peer-reviewed papers all sit side by side. The model has no way to tell “this is a Reddit joke” from “this is a Nature paper.” Ask it to write a biography, and it might treat a gag post’s punchline as someone’s real life story.
Third, “overconfidence” is a feature, not a bug. One of the training objectives is to “reduce uncertainty.” When unsure, the model guesses the most reasonable-sounding option rather than saying “I don’t know.” Duke University’s Library blog summed it up well: benchmark tests reward guessing over IDK. Without an evaluation system that penalizes false confidence, models will keep pretending to know things they don’t.
What’s Different in 2026?
AI hallucination isn’t new, but 2026 shifted the conversation. Three signals:
Signal One: Courts are getting involved. The first AI hallucination infringement case was entered into China’s Supreme People’s Court work report. Legal systems are starting to demand accountability — you can’t just say “the AI said it” and walk away.
Signal Two: Bad actors weaponized it. IT Times’ “AI poisoning” test showed attackers can fabricate a brand in two hours, feed false data to corrupt a model, and then use its recommendations to scam users. This isn’t “oops, the model hallucinated” — it’s active fraud using hallucination as the delivery mechanism.
Signal Three: HKU AIEL’s benchmark exposed the floor. Reasoning models (Qwen 3 in thinking mode, Claude 4 Opus in thinking mode) significantly outperform their general-purpose counterparts on hallucination control. Making the model “think harder before answering” is currently one of the most effective paths forward. But even the best reasoning models top out around 75 on factual accuracy.

What Can Developers Actually Do?
RAG is still your best bet. Multiple studies show Retrieval-Augmented Generation can cut factual hallucination by 20–40%. The idea is dead simple: don’t let the model guess. Feed it reliable source material and force it to stick to that. The catch: retrieval quality is your ceiling. Retrieve garbage, and you’ll get garbage with citations.
Let the model say “I don’t know.” Sounds trivial, but it’s surprisingly effective. Most hallucination happens because the model was trained to always produce an answer. Adding “If you’re unsure, say ‘I don’t know'” to your prompt significantly reduces confident-sounding nonsense.
Cross-verify everything important. Names, dates, numbers, citations — these are the easiest things to fabricate. Even when the model sounds completely sure, if it involves a specific figure, double-check it. Ask the same question from different angles and compare answers, or use tools like uqlm for automated detection.
Layer your risk management. Not every use case needs 100% accuracy. Medical diagnosis, legal advice, financial decisions — those get RAG + human review + disclaimers. Brainstorming, first drafts, creative work — basic prompt tuning is fine.
Pick reasoning models when you can. The HKU AIEL data is consistent: models that “think” before answering hallucinate less. If your budget allows, spring for the reasoning variant.
Final Thoughts
AI hallucination is a congenital crack in LLMs. It won’t disappear anytime soon — no more than cars stopped being produced because braking distance exists.
The NUS proof is elegant and brutal: as long as LLMs are built on “predict the next token,” they will always have gaps they fill with fabrication. Vectara’s CEO puts it bluntly: we’re already running these models at the edge of our compute capacity. Trying to eliminate hallucination by making models bigger only gives you slower, more expensive, more power-hungry models that still hallucinate.
For developers and everyday users, the answer isn’t to abandon AI. It’s to learn to spot the crack and put a layer of human review between the model’s output and every decision that matters.
A model that writes classical Chinese prose is genuinely impressive. But if it rewrites your mother’s surname in the process — well, that’s a different story. 🥲
—
Resources:
– Vectara Hallucination Leaderboard: https://github.com/vectara/hallucination-leaderboard
– Suprmind AI Hallucination Rates & Benchmarks (April 2026): https://suprmind.ai/hub/ai-hallucination-rates-and-benchmarks
– HKU AIEL LLM Hallucination Control Report: https://www.hkubs.hku.hk/aimodelrankings/leaderboards/hallucination.html
📖 Recommended Reading
I recommend reading the following articles related to LLM
GPT-5 Series Complete Analysis: From GPT-5 to GPT-5.5 — OpenAI Insane Iteration in One Year
DeepSeek V4 Deep Dive: A Milestone for China’s AI Models
React 19 vs Vue 3.6: Same Year, Two Radically Different Frontend Philosophies