Back to docs
Research Methods

AI-to-Human Handoff: How to Design and Research the Escalation Moment (2026)

The handoff from AI to a human is where most AI products actually fail. A practical guide to escalation triggers, why accuracy metrics mis-measure handoff timing, what to research at the transfer point, and how to test it with real users.

The handoff from AI to a human is not an edge case in your AI product. For a meaningful share of your users, it is the product. It is the moment the system admits a limit, and how it handles that moment determines whether the user reads your AI as competent-with-boundaries or as an obstacle placed between them and help.

Almost every team measures the wrong thing here. The standard metric is containment — the share of conversations the AI resolves without a human. Containment is optimised upward by default, which means the system is rewarded for not handing off, including in exactly the cases where handing off was the right call. A bot that traps a user in three rounds of unhelpful rephrasing scores better on containment than one that transfers on turn two.

This guide covers when to hand off, why standard classification metrics mis-measure handoff timing, what to carry across the boundary, and how to research the moment with actual users instead of inferring it from logs.

Why containment is the wrong headline metric

Containment rate answers "how often did we avoid a human?" The question that matters is "how often did the user get what they came for?" These come apart in a specific and expensive way.

Consider two failure modes:

Handed offNot handed off
AI could have resolved itUnnecessary escalation — costs money, mildly annoyingIdeal outcome
AI could not resolve itCorrect escalation — the system working as designedThe expensive failure

The bottom-right cell is where trust dies, and it is the cell containment optimisation actively pushes you toward. Unnecessary escalation costs you a support minute. A failed non-escalation costs you the user's belief that the system knows its own limits — and that belief, once gone, degrades every future interaction with every AI feature you ship.

This is not an argument for escalating more. It is an argument for measuring resolution and handoff quality as first-class outcomes, and treating containment as a cost metric rather than a success metric.

Handoff timing is a tolerance problem, not a classification problem

There is a useful piece of research here that most product teams have never encountered. Machine-Human Chatting Handoff (MHCH) is a formal task in the NLP literature: given a live conversation, decide at each turn whether to keep going or transfer to a human.

The critical insight comes from how researchers had to evaluate it. Liu et al., in "Time to Transfer: Predicting and Evaluating Machine-Human Chatting Handoff" (AAAI 2021), proposed a new metric — Golden Transfer within Tolerance (GT-T) — precisely because standard classification metrics do not fit. Their framing: the task has a tolerance property. Transferring one turn later than ideal is nearly as good as transferring at the ideal turn. Transferring eight turns late is a disaster. Transferring early is wasteful but survivable.

Standard precision, recall, and F1 treat all of these identically. A model that transfers one turn late and a model that transfers ten turns late get the same penalty, so optimising F1 gives you no pressure at all toward the thing that determines user experience: timeliness.

The practical consequence: if your handoff logic is evaluated on classification accuracy, you have no idea whether it transfers at the right moment. You only know whether it eventually transfers on the right conversations. Instrument lateness — the number of turns between the first signal a human was needed and the actual transfer — and treat its distribution, not its mean, as the metric. The tail is the story.

The five escalation triggers worth implementing

Research on chatbot design converges on a consistent set of signals. Nielsen Norman Group's work on AI chatbots identifies handoff willingness as one of the central qualities of a trustworthy assistant — alongside flexibility, proactivity, emotional responsiveness, and transparency — and the guidance is unambiguous that a bot should not deflect an explicit request for a human.

1. Explicit request. The user asks for a human. This should be honoured immediately and without negotiation. Making users fight for a human is the single most reliably resented pattern in conversational design, and it converts a routine support contact into a complaint.

2. Repetition and rephrasing. The user asks the same thing two or three ways. This is the highest-value implicit signal available, because it is unambiguous: rephrasing means the previous answer did not land.

3. Detectable frustration. Sentiment shifts, capitalisation, profanity, shortening replies. Useful, but noisier than repetition — treat as a contributing signal rather than a sole trigger.

4. Low model confidence or retrieval failure. The system cannot ground an answer. Note the trap: confidence scores are frequently miscalibrated, so a threshold that looks principled may be arbitrary in practice. Validate the threshold against outcomes before trusting it.

5. Consequence class. Some topics should never be contained regardless of confidence — billing disputes, account security, medical or legal implications, anything involving vulnerability or distress. This is a policy decision, not a model decision, and it belongs in a rules layer that the model cannot override.

What has to cross the boundary

A handoff that transfers the conversation but not the context is barely a handoff. The user experiences it as starting over, which is the specific thing that makes people describe support as exhausting.

Three things must travel:

  • The transcript, so the human can read what was already tried.
  • A summary of what the AI attempted and why it failed, so the human does not repeat it.
  • Any verified state — identity, account, order, entitlement — so the user is not asked to prove who they are twice.

And one thing must not travel: the AI's unverified conclusions presented as facts. If the model inferred the user was asking about a refund, that inference should be labelled as an inference. Handing a human a confident-sounding wrong summary is worse than handing them nothing, because they will act on it.

The receiving human also needs an explicit signal about why the handoff fired. "Escalated: user requested human" and "Escalated: three failed retrieval attempts" call for completely different opening moves.

The legal layer: human oversight is not optional for high-risk systems

Under the EU AI Act, human oversight of high-risk AI systems is a design obligation. Article 14 requires such systems to be built so people can effectively oversee them, and requires that overseers be able to correctly interpret the output, override or disregard it, and interrupt the system through a stop procedure that brings it to a halt in a safe state.

Two clauses matter directly for handoff design. First, Article 14 explicitly names the risk that overseers may "remain aware of the possible tendency to rely on the system" — automation bias is called out in the legislation itself. A human reviewer who approves everything the AI proposes is not providing oversight; they are laundering it. If your escalation path routes to a human whose only realistic action is to accept the AI's recommendation, you have built the appearance of oversight rather than oversight.

Second, the halt must land in a safe state. An escalation that drops the user into a queue with no acknowledgement, or into a closed-hours void, is not a safe state.

Most consumer AI features are not classified high-risk under the Act. The design principle transfers anyway, and if your product touches employment, credit, education, essential services, or law enforcement, the classification question deserves a real answer rather than an assumption.

Designing the moment itself

Google's People + AI Guidebook is the best short treatment of this territory. Its framing of graceful failure applies almost word for word to handoff: "The trick isn't to avoid failure, but to find it and make it just as user-centered." On returning control, it is direct — "When an AI system fails, often the easiest path forward is to let the user take over" — and on tone: "Address mistakes with humanity and humility, and explain the system's limits while inviting people forward."

That last phrase is the design brief for the handoff message. Compare:

"I'm sorry, I don't understand. Please rephrase your question."

"I can't resolve billing disputes myself — I'm connecting you to someone who can. I've passed along what we've discussed so you won't need to repeat it."

The second does four things: names the limit, attributes the failure to the system rather than the user, states what happens next, and removes the user's largest anticipated cost (repeating themselves). None of that is a model capability. It is copy, and it is testable.

What to research at the handoff point

Telemetry tells you the transfer happened. It cannot tell you what the user concluded from it, and the conclusion is what governs their next interaction. Five questions are worth putting to real users:

Research questionMethodWhen to ask
At what point did you decide this wasn't going to work?Retrospective interviewWithin hours of the session
What did you expect would happen when you asked for a human?Interview at the transfer momentImmediately, in-product
Did you have to repeat anything?Structured + open follow-upPost-resolution
Would you use the AI again for this kind of problem?Scale + open follow-upPost-resolution
What would have made the AI worth staying with?Open-endedPost-resolution

The first question is the one that pays. Users typically decide the AI is not going to help several turns before they act on it — they keep trying out of politeness or lack of an alternative. That gap between the internal decision and the observable behaviour is invisible in logs and obvious in interviews, and it is exactly the lateness the GT-T research is pointing at.

The fourth question is the leading indicator worth tracking over time. Escalation rate measures this contact. Willingness to try again measures whether you are accumulating trust or spending it.

How Koji helps

The obstacle to researching handoffs has always been timing. The moment is emotionally charged and fades fast: interview someone a week later and you get a reconstructed, tidied narrative rather than what they actually felt at turn four. But traditional research cannot move faster than recruit-schedule-moderate-transcribe-analyse, which is two to three weeks.

Koji closes that gap:

  • Trigger an AI-moderated interview at the escalation event itself, so you capture the reasoning while it is live rather than remembered.
  • Voice interviews for the frustration cases specifically. Tone carries information that a text box discards, and people are markedly more candid out loud than in writing.
  • Automatic thematic analysis across hundreds of escalation interviews, so you can see whether "I had to repeat myself" is three loud users or a third of the cohort — the distinction that decides whether it gets fixed.
  • Structured questions inside the conversation. Koji supports six types — open_ended, scale, single_choice, multiple_choice, ranking, and yes_no. A scale question tracks handoff satisfaction as a trend line, a single_choice captures which trigger the user perceived, and the open_ended follow-up explains both. See the structured questions guide for combining them in one instrument.
  • A customisable AI consultant briefed on your specific escalation policy, so it probes the transitions you care about rather than running a generic CSAT survey.
  • Real-time reporting, so a handoff regression is caught in days rather than in the following quarter's review.

The legacy alternative is a post-chat survey — typically one satisfaction question fielded to a user who has just been annoyed. It has a low response rate, it is biased toward the extremes, and it cannot ask a follow-up. It tells you the score dropped. It never tells you that users decided at turn three and gave up at turn seven.

Common mistakes

  1. Optimising containment. It rewards the system for refusing to transfer.
  2. Evaluating handoff logic with F1. Classification metrics are blind to timing, which is the whole user experience.
  3. Making users ask twice for a human. The most reliably resented pattern in conversational design.
  4. Transferring the conversation without the context. The user experiences this as starting over.
  5. Passing the AI's inferences to the human as facts. A confident wrong summary is worse than no summary.
  6. Routing to a human who can only rubber-stamp. That is the appearance of oversight, not oversight — and Article 14 names the failure mode explicitly.
  7. Measuring only this contact. Willingness to use the AI again is the metric that predicts next quarter.

Frequently asked questions

What is a good escalation rate for an AI support agent?

There is no universal number, and chasing a benchmark is how teams end up optimising the wrong thing. Escalation rate is only interpretable alongside resolution quality: a 10% escalation rate with high unresolved-contact rates is worse than a 30% rate where users get what they need. Track escalation as a cost metric and resolution plus repeat-contact rate as the success metrics.

Should the AI ever refuse to hand off to a human?

No. If a user explicitly asks for a human, honour it. You can offer a fast alternative first — "I can process that refund right now, or connect you to an agent" — but the request must be respected if repeated. Deflecting explicit requests is the pattern users resent most, and it converts a routine contact into a complaint about the company rather than the bot.

How do we know if we are handing off too late?

Instrument lateness, not just accuracy: measure the number of turns between the first detectable signal that a human was needed and the actual transfer, and look at the distribution rather than the mean. Then validate it against users, because people typically decide the AI cannot help several turns before they act on it. That internal decision point is invisible in logs and easy to surface in a short interview.

Why are precision and recall inadequate for measuring handoff?

Because handoff has a tolerance property: transferring one turn late is nearly as good as transferring on time, while transferring ten turns late is a serious failure. Standard classification metrics penalise both identically, so optimising F1 creates no pressure toward good timing. The AAAI 2021 MHCH research proposed the Golden Transfer within Tolerance (GT-T) metric specifically to address this.

What context should transfer with the user?

The transcript, a summary of what the AI attempted and why it failed, and any already-verified state such as identity or order details so the user is not asked to prove themselves twice. Label the AI's inferences as inferences rather than facts, and pass the reason the escalation fired — a user-requested transfer and a repeated-retrieval-failure transfer call for different opening moves from the human.

Does the EU AI Act say anything about AI-to-human handoff?

Indirectly but substantially. Article 14 requires that high-risk AI systems be designed so humans can effectively oversee them, including the ability to interpret output, override or disregard it, and halt the system in a safe state. It also names automation bias directly, requiring overseers to stay aware of the tendency to over-rely on the system. A handoff that routes to a human who can only approve the AI's recommendation does not satisfy the spirit of the requirement.

How do we research the handoff moment without annoying already-frustrated users?

Keep it short, make it clearly optional, and ask at the point of resolution rather than the point of frustration. A two-minute AI-moderated conversation asking what happened and what would have helped is generally well received — users who have just had a bad experience are often motivated to explain it. What frustrates people is a long survey served before their problem is solved.

Related Resources


Find out where your handoffs actually break. Koji gives you 10 free credits — enough to interview a cohort of escalated users and see the themes the same day.

Related Articles

Agent Trajectory Evaluation: How to Judge Multi-Step AI Agents with Real Users (2026)

Outcome-only scoring hides where AI agents actually break. Learn how to evaluate the full trajectory - every reasoning step, tool call, and hand-back to the user - using step-level rubrics and real participant evidence.

AI Explainability Testing: How to Find Out Whether Your Explanations Actually Help Users (2026)

Explanations that users rate highly often fail to improve their decisions — and in one 3,800-person experiment, the more transparent model made people worse at catching its mistakes. This guide covers the four outcome measures that separate a useful explanation from a satisfying one, and how to test yours.

AI Failure Mode Analysis: An FMEA Framework for AI Products (2026)

How to run Failure Mode and Effects Analysis (FMEA) on an AI product: the failure mode taxonomy, how to score severity, occurrence and detection when failures are probabilistic, and how user research supplies the numbers.

AI Guardrail Testing: How to Measure False Refusals and Over-Blocking with Real Users (2026)

Your safety layer has a false positive rate, and it is costing you users you never hear from. How to measure false refusal rate, run an over-blocking study, and tune guardrails against real user harm instead of vibes.

AI Over-Reliance and Automation Bias: How to Research Whether Users Trust Your AI Too Much (2026)

Users who accept every AI suggestion are a product risk, not a success metric. How to measure over-reliance and automation bias, why self-report fails, and the study designs that produce honest reliance data.

Staged Rollout for AI Features: Shadow Mode, Canary, and Kill Switches (2026)

A research-first guide to staging an AI feature launch. What shadow mode can and cannot measure, what to ask users at each canary ring, how to pre-register rollback thresholds, and why the EU AI Act made the kill switch a legal requirement.

The EU AI Act and User Research: What AI-Moderated Interviews Actually Require (2026)

AI-moderated customer interviews sit in the EU AI Act's limited-risk transparency tier, not the high-risk tier. Here is exactly what Article 50 requires from 2 August 2026, the two things that escalate a study to high-risk, and a compliance checklist you can run this week.

Structured Questions in AI Interviews

Mix quantitative data collection — scales, ratings, multiple choice, ranking — with AI-powered conversational follow-up in a single interview.