Chapter BAI for automationPage 4 of 8

AI for automation

Human gates for consequential actions

A human gate is useful only when it pauses the workflow before the risky action and gives a qualified person enough evidence and authority to decide.

~14 minControl pattern

Before you start

Why this matters

An AI reads a customer complaint, changes the account balance, drafts an explanation, and asks an employee to approve the email. The interface includes a human, but the important action has already happened. Editing the wording cannot undo the balance change.

This is a common design mistake: review is added where it is easy to display, not where it controls consequence. A meaningful gate sits before the first action that is expensive, hard to reverse, regulated, privacy-sensitive, or unusually uncertain.

1Learn the idea

Read

Gate actions, not vague workflows

Separate the workflow into exact verbs: classify, retrieve, calculate, propose, approve, update, send, publish, delete, pay. Then rate each action by:

  • impact if wrong;
  • number of people or records affected;
  • reversibility;
  • speed of detection;
  • uncertainty in the evidence;
  • legal or policy obligations.

Low-impact, reversible classification may run with sampled review. Sending a private draft to an employee may need no special gate. Changing an entitlement, denying an application, disclosing personal information, or moving funds requires stronger control.

The gate belongs immediately before the consequential side effect. If one approval covers multiple actions, the interface must show all of them. “Approve response” should not silently mean “refund $250, cancel the subscription, and email the customer.”

Teach

Choose a review pattern

Human involvement is not one pattern.

Approve or reject works when the proposed action is clear and the reviewer can decide from supplied evidence.

Edit before execution works for drafts where the reviewer owns final wording. Track edits because repeated corrections reveal quality problems.

Escalate exceptions lets routine, bounded cases proceed while uncertain or prohibited cases reach a specialist. Escalation criteria should include missing data, conflicts, out-of-distribution cases, and hard policy categories.

Batch or sampled review suits high-volume, low-impact, reversible actions. Random samples estimate ordinary quality; risk-based samples target cases near thresholds or from sensitive groups.

Dual control requires two independent approvals for especially consequential actions. It is appropriate for cases such as high-value transfers or privileged access, not for ordinary formatting.

Choose the least burdensome pattern that contains credible harm. Review itself costs time and can become careless when every trivial action demands a click.

Read

Give the reviewer decision-ready evidence

A reviewer needs more than fluent output. A good review screen separates:

  1. original source material;
  2. authoritative facts retrieved from systems;
  3. the AI’s interpretation;
  4. the exact proposed side effect;
  5. policy rules and thresholds;
  6. missing or conflicting information;
  7. approve, edit, reject, and escalate controls.

For an invoice, show the source image beside extracted values, duplicate checks, purchase order match, proposed payment amount, and payee destination. Do not hide uncertainty in a tiny tooltip or present a model confidence score as proof.

Confidence can be one signal if it is calibrated on representative data, but reviewers should decide from evidence and consequence. Polished language often creates automation bias: people accept a proposal because it looks finished.

Read

Design the waiting state

Approval creates a stateful process. Define:

  • who is eligible to review;
  • how work enters their queue;
  • expected response time;
  • reminders and escalation;
  • what happens when the reviewer is unavailable;
  • what changes invalidate an approval;
  • how rejection and edits are recorded;
  • when pending work expires.

If a price, account status, or policy version changes after approval, execution may need revalidation or a new approval. Bind the approval to a versioned proposal. Otherwise a person may approve one action while the system executes another.

Timeout behavior is crucial. If a supposedly required approval defaults to execution after fifteen minutes, the gate is not approval; it is a delay with an opt-out. Safe timeout behavior usually pauses, cancels, or escalates.

Read

Preserve separation of duties

The proposer and approver should be meaningfully independent when stakes are high. An AI should not “review” its own output using a second prompt and call that human oversight. A person who lacks authority, training, time, or evidence is not an effective control either.

Permissions should enforce the design. The drafting component should not hold credentials that can issue payment. Execution should require an approval record signed by an authorized role. Logging should capture proposal, source versions, reviewer identity, decision, edits, timestamps, execution result, and a shared trace identifier.

Do not collect logs without access and retention controls. Review evidence can contain sensitive customer or employee information.

Read

Manage review workload

Human gates can fail through overload. If reviewers receive 2,000 low-value approvals per day, they will rubber-stamp, build unofficial shortcuts, or miss urgent cases. Estimate queue volume before launch and test with real reviewers.

Reduce load by narrowing the automated slice, using deterministic prechecks, separating high-risk from low-risk queues, and improving the proposal interface. Measure review time, rejection rate, edit distance, escalation rate, backlog age, and agreement between reviewers. Sudden changes can indicate model drift, policy confusion, or poor routing.

Review should create learning. Group override reasons into useful categories such as missing evidence, wrong intent, stale data, policy exception, and unsafe proposed action. Feed these categories into evaluations and workflow changes. Do not treat every override as proof that the human or model was wrong; investigate the underlying rule.

Checking tutor…

Continue learning · glossary & guides