ModelRefs / Human-in-the-Loop (HITL) — AI Glossary
Human-in-the-Loop (HITL) — AI Glossary
A design pattern that inserts human review, approval, or correction at defined points in an AI workflow. Human-in-the-loop is not human-on-the-loop.
Overview
HITL is critical for high-stakes actions (sending emails, executing code, making purchases). Modern frameworks (LangGraph, CrewAI) support interrupt-on-tool-call patterns that pause the agent and request human confirmation. Balancing automation with oversight is the core design challenge.
Reference details
| Topic | agents |
|---|---|
| Also known as | HITL, human oversight |
| Last reviewed | 2026-06-24 |
Related terms
Example: Gate the irreversible step, not every step
An agent that can read a calendar, draft a reply and send an email has one action that cannot be undone. Gating all three means a human confirms three times per task; across twenty tasks a day that is sixty approvals, and the reviewer starts approving without reading — the automation now has the appearance of oversight and none of the substance. Gating only the send is one approval per task, on the step that matters, and it stays meaningful. Choose interrupt points by reversibility and blast radius, not by uniformity.
Commonly confused with
Human-in-the-loop is not human-on-the-loop. In the loop, a human approves before the action proceeds. On the loop, the system acts and a human monitors and can intervene after. The second scales far better and is the weaker guarantee; saying which one you mean is the whole design decision.
When to use it
Reach for it when:
- Irreversible or externally visible actions: payments, sends, publishes, deletions
- Low-confidence cases routed for review, with the threshold tuned on measured error rates
- Early deployment, as a source of labelled corrections that later become evals
Reach for something else when:
- High-volume reversible steps, where approval fatigue destroys the review's value
- As a compliance fig leaf when the reviewer lacks the context or time to genuinely refuse
- Latency-critical paths, unless the interrupt is designed to be asynchronous
Referenced by
This term is used by the following ModelRefs references:
Continue your research
Use these connected ModelRefs sections to compare alternatives, inspect implementation paths, and review the evidence and governance boundaries relevant to Human-in-the-Loop (HITL) — AI Glossary.
Frequently asked questions
What is Human-in-the-Loop (HITL)?
A design pattern that inserts human review, approval, or correction at defined points in an AI workflow.
Is Human-in-the-Loop (HITL) the same as HITL?
Yes — HITL, human oversight are common aliases for Human-in-the-Loop (HITL).
What concepts are related to Human-in-the-Loop (HITL)?
Closely related concepts include agent, guardrails, agentic loop.