Vertekx
AI & Automation8 min read

Where Human-in-the-Loop Review Belongs

if confidence < τhuman
V

Vertekx Engineering

Human-in-the-loop review belongs at the specific points where an automated system produces an output that is uncertain, silent in failure, or irreversible in consequence. It does not belong on every transaction, and applying it everywhere destroys the throughput that justified building the automation in the first place.

The useful question is never "should there be a human in this workflow." It's which outputs reach a human, triggered by what condition, and what is that person authorised to do about it. Teams that skip to the first question ship either a rubber-stamp queue or a silent failure. Teams that answer the second one ship something that works.

Review is a routing decision, not a safety setting

Treating human review as a general-purpose safeguard leads to one of two outcomes.

Put a human on everything, and you've rebuilt the manual process with extra steps. The reviewer sees thousands of correct outputs in a row, stops reading carefully within a week, and approves the wrong one at the same rate they'd have made the error themselves. This is automation bias, it is well documented, and it is the predictable consequence of asking a person to check work that is almost always right.

Put a human on nothing, and probabilistic failures pass through undetected, materially worse than deterministic failures, because a model's wrong answer is usually well-formatted, schema-valid, and plausible enough to survive every downstream check you built.

Both are the same mistake: applying review uniformly instead of routing it.

Where it belongs
  • Below a confidence thresholdAny probabilistic step should emit a confidence signal; outputs below the line route to a person.
  • Where the failure is silentIf no downstream validation would catch a wrong output, a human is the only detector you have.
  • Where the action is irreversibleMoney leaving an account, a filing to a regulator, a record with no rollback. Reversibility beats importance as a trigger.
  • Where experts would disagreeIf the correct output is a judgment call, the system should propose and a person should decide.
  • During cold startA new model, document type, or client format warrants elevated review, temporary, with a defined exit criterion.
Where it doesn't
  • On deterministic stepsA human reviewing a rules-engine output adds latency and no accuracy. They're checking arithmetic that can't be wrong.
  • As a blanket approval gateApproving every transaction produces 99%+ approval within a month; review that's no longer occurring.
  • With no better informationSame input, no extra context, tooling, or authority? That's accountability theatre, not quality control.
  • With no defined actionA review step with no path to correct, reject, or escalate is a notification. If the only option is approve, remove it.
  • To paper over a known defectIf one document type fails 40% of the time, that's an engineering problem, not a permanent review queue.

Our tourist tax refund platform runs at 94% OCR accuracy and 92% classification accuracy on traveller-photographed receipts: roughly 6 in 100 extractions and 8 in 100 classifications need correcting, and the review step exists precisely to catch that residual rather than pretend it away.

On the other side, our credit repair platform is RPA-driven with fully specified submission rules, and the gains came from removing human handling: a 70x throughput increase, a 95% reduction in submission errors, and turnaround down from 6 hours to 5 minutes. Inserting a review gate there would have reintroduced the exact failure mode the automation was built to eliminate.

Designing the review step itself

The placement decision is half the work. A review step that's correctly placed and badly built still fails.

Show the reason for the flag. "Confidence 0.61 on vendor name" directs attention. "Needs review" does not.
Show the source alongside the output. Original document and extracted value side by side. Force a second system open and review time triples.
Constrain the decision. Approve, correct, reject, escalate. An open-ended review invites inconsistency.
Capture corrections as labelled data. Every correction is a real failure example: the highest-value data collection available, and most systems throw it away.
Measure reviewer agreement. If two reviewers disagree at a meaningful rate, your correctness definition is ambiguous, not your model.

Do the queue arithmetic before you build

Review capacity is a hard constraint, and it's the one most often discovered after launch. Multiply daily volume by flag rate by minutes per review, and compare it against available reviewer hours.

5,000 docs/day×10% flag rate×3 min each=25 hrs/day

If that isn't staffed, the queue grows without limit until someone starts bulk-approving to clear it, at which point you have no review step, only the belief that you have one. That calculation should set your confidence threshold, not the other way round.

Threshold, flag rate, and staffing are one decision made three times, and they need to be made together. It's a core part of how we scope AI agents and automation work, and it belongs in the architecture phase rather than in the operations handover.

The threshold should move

A confidence threshold set at launch and never revisited is a missed opportunity in both directions. As corrections accumulate and accuracy on a category is demonstrated, the threshold can tighten and the flag rate can fall. When a new input type arrives or a model version changes, it should widen again.

The goal is not to minimise human involvement. It's to spend review where it changes the result.

Frequently asked

Continue exploring

Keep Reading

Let's Connect

Designing where a human belongs in your workflow?

We'll set the trigger conditions, the threshold, and the queue arithmetic together, so review lands only where it changes the outcome.

Get a Free Consultation