Human in the Loop
An AI workflow that pauses for a human to review, approve, or correct the model’s output at key steps — instead of running fully autonomously.
In plain English
Human-in-the-Loop (HITL) is the design pattern of inserting human approval gates inside an AI workflow. The model proposes, the human disposes — at least for the actions that matter most (sending an email, executing a transaction, deleting data).
Why it's the default for production agents:
- Catches hallucinations before they cause real-world damage
- Builds trust with users and regulators
- Captures training data — every correction is a signal you can learn from
- Reduces liability — a human in the loop is often legally meaningful
Common HITL checkpoints:
- Approval before action — agent proposes, human clicks "approve"
- Edit before send — agent drafts, human revises
- Sampling review — agent acts on 99%, human reviews 1% as quality control
- Confidence-based escalation — only the low-confidence cases reach a human
The opposite end: "Human-on-the-loop" — the human supervises a fleet of autonomous agents rather than approving each action. "Human-out-of-the-loop" — full autonomy, used only in low-stakes or reversible contexts.