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.
Detailed answer & concept explanation~7 min readEverything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
6 min: the two-axis principle (harm times detector unreliability), the healthcare escalate list, the automate list, production telemetry signals, and closing the offline to online loop by feeding incidents back into eval.
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.
- Microsoft Azure AI Content Safety and Guardrails AI run as automated gates for format and policy, with sampled human audit on the passes.
- Patronus AI and Galileo market production monitoring that flags drift via refusal-rate and hallucination signals for human triage.
- Modern frontier assistants (Claude Opus 4.7, GPT-5.5) expose safety-classifier scores that teams threshold for escalation rather than treat as final.
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?
QHow do you stop the escalation channel from decaying into rubber-stamping over time?
QWhat live telemetry signals catch user-facing failures that a golden-set eval misses entirely?
Don't say thisRed flags and common mistakes that signal junior thinking. Click to expand.
Red flags and common mistakes 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.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.
Same topic, related formats. Practice these next.