Human in the loop
Why humans stay in the loop
Human review is not a sign that an AI system failed; it is a design choice for actions whose mistakes matter.
1Try it yourself
Playground
Human in the loop
AI drafts — humans approve high-stakes decisions.
Medical diagnosis for patient
Before you start
Why this matters
Imagine an AI drafts two messages. The first suggests three titles for an internal brainstorming document. The second tells a customer that a disputed payment has been refunded. Both messages may look polished, but a wrong title is easy to replace while a false refund promise can lose money and trust. “The model is 95% accurate” does not tell you whether either message should be sent automatically. You must also ask what happens when it is wrong.
2Learn the idea
Read
Start with consequences, not confidence
Human-in-the-loop, often shortened to HITL, means that a person has a defined role inside an AI-assisted process. The person may approve an action, correct a draft, choose between options, or handle cases the system cannot safely resolve.
The useful question is not “Is this AI smart enough?” It is:
- What action will happen?
- Who or what could be affected?
- Can we undo the action?
- How quickly would we notice a mistake?
- Who is accountable for the result?
An AI can produce a confident answer while missing context, using stale information, or misunderstanding an unusual case. Confidence in the wording is not evidence that the action is safe. Review requirements should follow the consequence of an error, not the fluency of the response.
Read
Reversible and irreversible actions
A practical first split is reversibility.
- Easy to reverse: generating ideas, changing formatting, sorting a private list, drafting text that has not been sent.
- Costly to reverse: publishing a statement, changing a customer record, rejecting an application, or issuing a payment.
- Effectively irreversible: disclosing private information, giving time-critical medical instructions, deleting the only copy of data, or making a public accusation.
Reversibility is not binary. Deleting a test record may be harmless because a backup exists. Deleting a production account may trigger billing, access, and legal consequences. Ask what a rollback really requires: one click, an engineer, a customer apology, or something that cannot be restored.
When reversal is cheap and detection is fast, automation can often proceed with monitoring. As reversal becomes harder or detection slower, a human checkpoint becomes more valuable.
Read
Three dimensions of risk
Use three dimensions together:
Impact asks how much harm one wrong action could cause. A typo in a private note has low impact. An incorrect medication dose has high impact.
Scale asks how many people or records one action can affect. A weak recommendation shown to one employee differs from an automated campaign sent to 200,000 customers.
Uncertainty asks how likely the system is to be operating outside familiar conditions. Missing fields, conflicting sources, unusual language, a new product, or an out-of-policy request should increase uncertainty.
A low-impact action at small scale may run automatically even when uncertainty is moderate. A high-impact action should require review even when the model usually performs well. Scale can transform a small individual error into a major incident: a two-percent failure rate is twenty bad outcomes per thousand actions.
Read
Trust has a recovery cost
Teams sometimes count only direct financial loss. Human review also protects trust. A false but authoritative message can make customers doubt later messages that are correct. An employee repeatedly correcting an unreliable assistant may stop using it. A clinician may spend more time checking a system than the system saves.
Trust recovery has real costs:
- investigating what happened;
- contacting affected people;
- correcting records and downstream decisions;
- proving that the failure is contained;
- changing the process so it does not repeat.
This is why “a human can fix it later” is not always a safety plan. Later may be after the customer acted, the post spread, or another system consumed the incorrect output.
Read
A simple first decision rule
Before automating an AI action, classify it:
- Draft only: AI creates material, but nothing leaves the workspace.
- Recommend: AI suggests an option; a person makes the decision.
- Act with review: AI prepares an action; a person approves before execution.
- Act and monitor: AI executes a reversible action; people review samples and alerts.
- Do not automate: the action requires human judgment that cannot be reduced to a reliable policy.
Choose the least restrictive level that keeps likely failures within an acceptable boundary. Requiring approval for every spelling correction creates pointless delay. Allowing an AI to approve its own high-value refunds removes the independent judgment the process needs.
Try next
Try this on a real workflow
Pick one task you perform weekly. Write the exact verb: “draft,” “send,” “approve,” “transfer,” “delete,” or “publish.” Then score impact, scale, reversibility, detection speed, and uncertainty as low, medium, or high.
Do not score “AI email” as one task. Drafting an email and sending it are separate actions with different risk. That separation is the beginning of a good HITL design.