The AI Mirage · Feature · July 2026
Trust, but Verify
You can't manage what you can't measure — and most teams still ship AI on a feeling. Here's how to turn "it seems good" into a number you can defend.
Ask a team how good their AI feature is and you'll usually get an answer built on sand: "It's been working really well in testing." Press on how they know, and it dissolves into anecdote — a few impressive demos, a couple of caught mistakes, a general vibe of confidence. No enterprise would ship a financial system on "it seems to add up," yet AI features cross into production every day on exactly that basis. The discipline that separates the teams who trust their AI from the teams who merely hope is unglamorous and decisive: they measure hallucination instead of feeling their way past it. This is the practice of evaluation, and it is how a mirage becomes a metric.
01 — The ShiftFrom anecdote to instrument
An eval — short for evaluation — is a test suite for a probabilistic system. In traditional software, a test asserts that a function returns exactly the right value; the answer is deterministic, so the test is pass/fail. AI broke that model, because the same prompt can yield different wording every time and "correct" lives on a spectrum. So evals measure something subtler: across a curated set of representative inputs, how often does the system produce a faithful, accurate, appropriately-hedged answer — and how does that rate move when you change the model, the prompt, or the retrieval?
The mental shift is from judging outputs one at a time to measuring behavior in aggregate. A single good answer tells you almost nothing; a hallucination rate of 3% across a thousand realistic questions tells you whether you can ship. This is the same leap manufacturing made a century ago — from inspecting the occasional part to tracking defect rates across the line. You stop asking "is this answer good?" and start asking "what fraction of answers are good, and is that fraction improving?" Only the second question can be managed.
There's a reason teams resist this. Building an eval is genuinely harder than running a demo, because it forces you to define, in advance, what "correct" even means for your use case — and that definition is often uncomfortable to pin down. It surfaces disagreements between product, legal, and engineering about what the system is actually for. But that discomfort is the point. An organization that cannot articulate what a good answer looks like has no business shipping a machine that produces answers at scale. The eval is where those fuzzy expectations get forced into something explicit enough to measure, and that clarity is valuable even before the first number comes back.
02 — The MetricsHow you actually measure a hallucination
"Measure hallucination" sounds abstract until you break it into the specific things a good eval tracks. Each is a number between zero and one, computed over your test set, and each catches a different failure.
Faithfulness (or groundedness) asks whether the answer is actually supported by the source it was given — the core RAG metric. Factual accuracy compares the answer against a known ground truth for questions that have one. Correct abstention measures the underrated skill of saying "I don't know" when the answer isn't available, instead of inventing one. Citation validity checks that a cited source genuinely contains the claim. And adversarial pass rate tracks how the system holds up against deliberately tricky, ambiguous, or hostile inputs. Notice how the scorecard above tells a story no single demo could: this system looks strong on faithfulness and citations but is quietly fragile under attack — exactly the profile that sails through a friendly pilot and collapses in the wild.
The unglamorous truth is that these metrics are only as good as the test set behind them, and building that test set is the real work. You need a collection of questions that mirrors what real users actually ask — including the messy, ambiguous, and rare ones — each paired with a known-correct answer or an authoritative source to grade against. Assemble a test set only from easy, well-behaved questions and you'll manufacture a comforting 95% that means nothing, because you measured the system exactly where it was never going to fail. The most valuable test cases are the ones that make your system look bad today, and a mature team hunts for those on purpose. The scorecard is the visible artifact; the curated, adversarial, continuously-growing test set underneath it is the asset that actually took skill to build.
03 — The GraderUsing AI to judge AI
The obvious objection: measuring faithfulness across thousands of answers would take an army of human reviewers. This is where the practice became viable at scale — LLM-as-judge. You give a second model the question, the answer, and the source, plus a precise rubric, and ask it to grade: is this answer supported? Is it accurate? Does it hedge appropriately? Used well, model-based grading correlates strongly with human judgment and runs in seconds for pennies, which is what makes continuous evaluation practical rather than aspirational.
But a leader should hold one caveat firmly: the judge is a model too, and it hallucinates. It can be swayed by length, by confident tone, or by favoring answers that resemble its own style. So model-based grading is not a truth oracle; it's a fast first pass that must itself be validated against a smaller set of human-labeled examples. The right posture is "trust the judge to scale, verify the judge with humans." A team that grades its AI with another AI and never checks the grader has simply moved the confidence trap up one level — and called it measurement.
04 — The AttackRed-teaming: break it before your customer does
Evals over a representative test set tell you how the system performs on expected inputs. Red-teaming tells you how it fails on hostile ones. A red team's job is to be the adversary you'd rather meet in a test than in the news: they try prompt injections, contradictory instructions, questions engineered to elicit fabrication, and the strange edge cases that never appear in a tidy pilot. Remember the dealership bot that "agreed" to sell a car for a dollar, or the delivery bot goaded into insulting its own company — both were red-team failures discovered by the public instead of by the company. Every one of those headlines was a test someone chose not to run.
What makes red-teaming distinct from ordinary testing is its mindset. A normal tester asks "does it work?" A red-teamer asks "how can I make it fail, embarrass us, or say something we'll regret?" — and is rewarded for succeeding. That inversion matters, because the failures that generate headlines are almost never the ones a team building the system would think to check; they require someone actively hostile to the product's assumptions. Many organizations now run this as a standing function or bring in outside red teams precisely because the people who built a system are the worst-placed to imagine how a stranger will abuse it. The output isn't a pass/fail stamp; it's a stream of new failure cases that flow straight back into the eval set.
The reframe
Red-teaming isn't pessimism; it's cheap insurance. An hour spent trying to break your own AI in a controlled test is worth more than any amount of hoping the ten thousand strangers who'll use it tomorrow all play nice.
05 — The LoopMake verification a habit, not an event
The final shift is temporal. Most teams treat evaluation as a gate — a thing you pass once, right before launch. But a model's behavior drifts as data changes, prompts get edited, vendors silently update models, and the world moves on. Verification only works as a continuous loop.
The loop runs like this. You build a test set from real, representative, and adversarial cases. You run evals automatically on every change — new prompt, new model, new data — so a regression is caught before release, not after. You red-team to find what the test set missed. You monitor in production, sampling live traffic for faithfulness and logging user-flagged errors. And critically, you feed every real failure back into the test set, so the system can never fail the same way twice without you knowing. Each production mistake becomes a permanent tripwire. That feedback edge is what turns evaluation from a one-time hurdle into a compounding asset — the test suite gets smarter every week, and the mirage has fewer places to hide.
One reason this loop so often goes unbuilt is that it has no obvious owner. Evaluation sits awkwardly between data science, engineering, product, and risk, and a responsibility that belongs to everyone tends to belong to no one. The organizations that get it right name an owner and treat the eval suite as a first-class product artifact — versioned, reviewed, and reported on to leadership like any other quality metric. The tell of a serious AI operation isn't the sophistication of its model; it's whether someone can pull up the current hallucination rate on demand and tell you which way it moved last month. That single capability separates teams that manage their AI from teams that are merely hoping alongside it.
The TakeawayIf you can't put a number on it, you're guessing
The teams that trust their AI don't feel their way to that trust — they measure it. Evaluation converts a vague "seems good" into a defensible defect rate, broken into faithfulness, accuracy, abstention, citation validity, and adversarial resilience. Model-based grading makes that measurement scale, provided you audit the grader; red-teaming exposes the failures a friendly pilot never will; and running the whole thing as a continuous loop turns each production mistake into a permanent test case. For a leader, the question to ask before any AI ships is simple and unforgiving: what's the number, how did you measure it, and what happens when it drops? No number, no launch.
From ANCI AI
Agents you can put a number on
ANCI builds AI agents the way this article argues you should buy them — grounded in real sources, measured against an eval suite rather than a demo, and gated by a human commit point on every irreversible action. When someone asks what the failure rate is, that is a question worth being able to answer.
Explore ANCI
Sources: Practitioner and research literature on LLM evaluation, faithfulness/groundedness metrics, and LLM-as-judge reliability (2024–2025); public hallucination benchmarks and leaderboards; documented red-team failures (Chevrolet dealership bot, 2023; DPD chatbot, 2024).
Article 4 of 10 · The AI Mirage · AI Edge for Leaders.