When should automated eval escalate to human review in a production LLM product?
You are running a production LLM assistant for a healthcare company. Describe which failure modes require escalation to human review versus which can be handled by automated eval, and explain the principle that distinguishes the two categories.
Escalate to human review when harm is severe AND detection is unreliable; automate when harm is bounded and the detector misses almost nothing. The deciding axis is the reliability gap, not the failure type.
Imagine an airport. The metal detector handles the easy, common, low-stakes stuff: it reliably catches keys and coins, so a machine is fine. But for something rare and dangerous that the scanner often misses, you call a human officer to inspect by hand. You do not send everyone to a human, because that does not scale, and you do not trust the machine for the scary cases it is bad at catching. A healthcare chatbot works the same way. A format slip or an off-topic answer is the keys and coins: cheap to catch, low harm if missed, so automate it. A wrong medication dose or a leaked patient detail is the dangerous case the scanner misses: high harm, unreliable detection, so a human must review it.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Automated eval is what lets an LLM product scale: a rule, an LLM-as-judge, or a safety classifier inspects outputs at a volume no human team could match. But automation has a blind spot, and in a high-stakes domain that blind spot can ship harm. The senior skill is knowing exactly where automation stops being trustworthy and a human must enter the loop.
This question asks you to draw that line for a healthcare assistant and, crucially, to state the principle behind it rather than recite a list. The principle is a two-axis risk surface: how severe is the harm if a failure ships, and how unreliable is your detector at catching it. The deep dive builds that surface, maps healthcare failures onto it, then extends past the offline golden set into the production telemetry and feedback loop that catch the failures you never anticipated.
The two-axis principle
Most candidates answer this question with a list of failure types and a gut call on each. That is the wrong frame. It collapses two separate questions into one and gives you no way to defend a borderline case. The right frame is a function over two independent variables.
The first axis is harm if missed: what does it cost if this failure reaches the user? The second axis is detector unreliability: the false-negative rate of your best automated check on this failure. These are independent. A failure can be catastrophic yet trivially detectable, or harmless yet hard to detect. Conflating them is the most common mistake, because it leads teams to escalate anything that sounds scary regardless of whether automation already catches it cleanly.
Escalate the quadrant where both are high: severe harm and an unreliable detector. Automate the quadrant where both are low: bounded harm and a near-zero false-negative rate. The remaining two quadrants are where cost and judgment live. Severe but reliably detected failures can often stay automated with a sampled human audit on the passes. Mild but hard to detect failures are usually not worth a human at all, since the expected harm does not justify the reviewer cost. Stating this surface, not the list, is what separates a staff answer from a senior one. It also gives you a principled way to defend why a given failure sits where it does.
Situations where this technique stops working.
2–4 min · Everything important, quickly.
Real products, models, and research that use this idea.
- Healthcare chatbots gated under HIPAA route any potential dosage or contraindication output to a clinician reviewer rather than a classifier alone.
- LangSmith and Langfuse capture thumbs-down, regeneration, and latency p99 as live signals that feed curated traces back into the offline eval set.
What an interviewer would ask next. Try answering before peeking at the approach.
QHow do you set the escalation threshold quantitatively rather than by intuition?
Estimate each failure mode's harm cost and its detector false-negative rate on a labelled holdout, then escalate where expected harm exceeds the reviewer cost per case. Recalibrate as detectors and traffic shift.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Routing every flagged response to humans. That does not scale and trains reviewers to rubber-stamp. The right cut is severity times detector unreliability, not raw flag volume.
60 second bullets to scan on the way to the call.
The two-axis principle: harm severity times detector false-negative rate
Two healthcare failure modes that must escalate and why detection fails
Primary sources. Browse if you want the original framing.
Same topic, related formats. Practice these next.