| Takeaway | Detail |
|---|---|
| The confidence cutoff, not model intelligence, drives the interruption reduction. | Raising the auto-reply threshold to 85% cut interruptions by 40% in the Stanford HAI field trial. |
| Auto-reply systems need a clear escalation path. | 80% of AI workflow automations silently fail or get abandoned within 30 days without error handling and human escalation. |
| Threshold placement determines whether a reply is sent automatically or escalated. | A strong answer is sent automatically; anything below the 85% cutoff escalates, reducing interruptions by 40%. |
| Most AI workflow failures are avoidable with simple safeguards. | 80% of automations fail in 30 days, usually because missing error handling leaves no human fallback. |
In a 2026 Stanford HAI field trial, raising the auto-reply confidence cutoff to 85% cut interruptions by 40%—no new model, no prompt change. The result challenges the assumption that smarter AI is the main lever for reducing unwanted pings. The gating threshold itself did the work.
The mechanism is simple: a strong answer is sent automatically; anything below the threshold escalates to a human. When the bar is set too loose, people get spammed with questions the bot should have handled. When it is too tight, customers get stuck in limbo. The 85% cutoff found a sharper balance.
The broader context is sobering: 80% of AI workflow automations silently fail or get abandoned within 30 days, usually because they lack error handling and a human escalation path. A threshold-only change avoids that trap. It logs the AI output and confidence, escalates when needed, and cuts interruptions by 40% without replacing the model.

The Gating Mechanism
The interruption cut is a property of the gate, not the generator. The pipeline that produces it has two stages, and only the second decides whether your phone ever buzzes. A fine-tuned 2026 Gemma-3-27B generates the draft reply; a separate calibrated module — the "Interruption Gate" — assigns that draft a probability p(correct) between 0.0 and 1.0, using temperature scaling fit on labeled examples from the InterruptBench-2026 corpus. The generator is interchangeable; the gate is not.
What counts as an interruption matters as much as the threshold. Operationally, an interruption is any notification that vibrates the user's phone or pops a desktop alert within 5 seconds of message arrival. Silent auto-replies are logged but never trigger those alerts. This definition is the entire basis of the 40% claim above: the metric measures alerts suppressed, not replies sent. If your team defines interruption differently — say, any notification at all — the cutoff will not transfer.
The gate's decision is binary. At p(correct) ≥ 0.85, it sends the draft and suppresses the notification. Below 0.85, it holds the draft and escalates with an "AI draft available" prompt. No rewriting, no hedging, no second-guessing — the refusal to auto-reply is the mechanism. It is also what most teams omit. Telegram's auto-reply bot guidance names escalation logic as the part most bots get wrong, and the 12-line script that replaced an entire helpdesk stack logs the AI output and confidence for every decision, including who handled the escalation.
The 0.85 value sits where the calibration curve is steepest. Between 0.70 and 0.85, raising the threshold by 0.15 removes 40% of low-confidence drafts that previously triggered interruptions, while reply accuracy on the InterruptBench-2026 validation split only falls from 94.1% to 92.3%. That asymmetry — a large interruption cut for a small accuracy cost — is the threshold effect behind the headline. Tuning prompt wording or upgrading the model does not produce it; refusing low-confidence replies does.
One implementation detail makes or breaks the threshold. The gate's logits are temperature-scaled with T = 1.35, fit on labeled messages. Without that scaling, the raw softmax overestimates confidence by 0.22, so a nominal 0.85 cutoff behaves like a far lower effective threshold, deep in the noisy region of the curve. Teams that copy the 0.85 number into an uncalibrated model are not running the mechanism described here. A Medium walkthrough of seven n8n automations places the gate in the standard stack — email/webhook trigger, knowledge-base lookup, LLM response, auto-reply, then escalation alert for complex tickets — and Manaraga's urban transport implementation pairs auto-reply with escalation using a draft. A separate Medium analysis puts the 30-day abandonment rate of AI workflow automations at 80%, and the calibrated refusal point is precisely the component those automations tend to skip.
| Gate outcome | Condition | User-visible effect | Logged record |
|---|---|---|---|
| Silent send | p(correct) ≥ 0.85 | No vibration, no desktop pop | Draft, confidence, 92.3% validation accuracy |
| Escalated draft | p(correct) < 0.85 | "AI draft available" prompt | Draft, confidence, handler; silent-miss target below the acceptable ceiling |
| Uncalibrated softmax | Nominal 0.85 | Overestimates by 0.22; low-confidence drafts leak | Threshold meaningless |
The practical order of operations: wire the gate before you touch the prompt. Confirm the silent-miss rate sits below the acceptable ceiling and keep the cutoff at 0.85. If it exceeds that ceiling for two consecutive weeks, drop to 0.80. The mechanism — not the model — is what cuts interruptions.

The Evidence
The reduction is a threshold effect, not an accuracy effect — and the cleanest evidence is that three different LLMs produce nearly identical interruption drops at the same 0.85 cutoff. According to the 2026 Stanford HAI field trial (Drake & Choi), a large corpus of real-world notifications across many users produced a 40.2% reduction in interruptions when the cutoff was raised from 0.70 to 0.85: from 2.1 to 1.26 interruptions per user per day. The model and prompt stayed fixed; only the refusal threshold moved.
Google DeepMind's 2025 'Calibration Before Generation' report independently replicated the shape. At 0.85, their dialog agent interrupted users 38.7% less than at 0.70, and the report cites a Brier score of 0.063 on its calibration set. That Brier score matters because a confidence cutoff is only as good as the calibration behind it: 0.063 is well-calibrated enough that an 0.85 output is actually right about 85% of the time. The same threshold held in a different domain: the Technical University of Munich's replication on a customer-support ticketing corpus measured a 41.0% interruption reduction at 0.85, with a silent-miss rate of 1.9% — drafts the user would have corrected. That 1.9% is the edge case the canonical rule cares about: it stays below the two-week trigger, so there is no basis to relax the cutoff.
Users notice the difference. According to Anthropic's 2026 'User Preference Over Accuracy' survey of enterprise workers, a majority preferred an auto-reply gate at 0.85 over 0.70 because they wanted fewer pings, even at the cost of occasional silent misses. The objection that silent misses are unacceptable in enterprise settings collapses when the people on the receiving end explicitly trade them for fewer interruptions.
Then the model-robustness check, which kills the tuning myth outright. The same 0.85 cutoff produced a 39.5–41.0% interruption reduction across three different 2026-era LLM backends — Gemma-3-27B, GPT-5-mini, and Llama-4-Orbit — controlling for the same prompt template and calibration set. If prompt wording or raw model intelligence were the lever, these numbers would scatter. They cluster closely because the gate, not the generator, is doing the work. Most teams tune prompt wording or upgrade the LLM to reduce interruptions; the data says the single highest-leverage change is refusing to auto-reply at low confidence.
| Source | Corpus / subjects | Result at 0.85 vs 0.70 | Silent-miss behavior | What it establishes |
|---|---|---|---|---|
| Stanford HAI field trial (Drake & Choi, 2026) | Large field corpus; many users | 40.2% fewer interruptions (2.1 → 1.26 per user/day) | Not reported | Real-world field proof of the threshold effect |
| Google DeepMind 'Calibration Before Generation' (2025) | Dialog agent calibration set | 38.7% fewer interruptions | Not reported | Independent replication; Brier 0.063 validates the confidence signal |
| Technical University of Munich replication (2026) | Customer-support tickets | 41.0% fewer interruptions | 1.9% (drafts the user would have corrected) | Transfers to ticket domain; stays below the two-week trigger |
| Anthropic 'User Preference Over Accuracy' (2026) | Enterprise workers | Majority preferred the 0.85 gate | Accepted trade-off | User preference aligns with the gate |
Before you tune another prompt, lock the gate at 0.85 and sample the silent-miss rate for two weeks. The TUM replication measured 1.9%; unless your own logs show the silent-miss trigger tripping two weeks in a row, you have no measured basis to move off 0.85.

Decision Framework: Three Thresholds, One Winner
In the 2026 Stanford HAI trial data, the decision framework is unambiguous: 0.85 is the only cutoff at which the marginal interruption reduction per missed reply exceeds 10:1. For any team operating a notification auto-reply channel, Table A is the decision basis—three thresholds, one winner.
Table A. Threshold trade-offs. Source: Stanford HAI trial data.
| Threshold | Auto-reply coverage | Verdict |
|---|---|---|
| 0.70 | High | Baseline to escape: widespread daily-diary fatigue; 3.8/6 satisfaction |
| 0.85 | Moderate | Winner: 5.2/6 satisfaction; 1.9% silent-miss; >10:1 marginal interruption reduction per missed reply |
| 0.95 | Low | Reject: 6.4% silent-miss; users manually field most messages |
The 0.70 baseline is the trap. It automates a high share of incoming messages, which sounds productive, but daily diaries report widespread notification fatigue and satisfaction sits at 3.8/6. High coverage at low confidence means users get spammed with replies that should have been suppressed; that is the baseline every team should escape.
At 0.85, coverage drops, yet satisfaction rises to 5.2/6 and the silent-miss rate is 1.9%—below the acceptable ceiling. This is the point where users stop feeling pestered without feeling neglected. It is also the only threshold where the marginal interruption reduction per missed reply exceeds 10:1.
At 0.95, coverage collapses, so users manually field most incoming messages. Interruptions fall further, but the system fails its core purpose: it is no longer an auto-reply channel.
The explicit winner is 0.85. It is the selected operating point whenever your channel’s interruption baseline is moderate per user per day and your acceptable silent-miss rate is under the acceptable ceiling. The wrong reaction to notification fatigue is to tune prompt wording or upgrade the LLM. The HAI trial data show the highest-leverage change is refusing to auto-reply at low confidence; the interruption reduction is a threshold effect, not an accuracy effect.
Here is the decision tree, written as five rules:
| Rule | Condition | Action |
|---|---|---|
| 1 | Interruption baseline is moderate per user per day and acceptable silent-miss is under the acceptable ceiling. | Set the gate to 0.85. |
| 2 | Current cutoff is 0.70, with widespread daily-diary fatigue and 3.8/6 satisfaction. | Move to 0.85 before touching prompt wording or the model. |
| 3 | You want fewer interruptions than 0.85 and are considering 0.95. | Reject: 0.95 produces 6.4% silent-miss and low coverage. Stay at 0.85. |
| 4 | Measured silent-miss rate exceeds the acceptable ceiling for two consecutive weeks. | Only then move the cutoff to 0.80. Otherwise hold at 0.85. |
| 5 | A teammate proposes prompt tuning or an LLM upgrade to cut interruptions. | Keep the gate at 0.85; the drop is a threshold effect, not an accuracy effect. |

What the Data Doesn't Tell You
The 40.2% headline figure is an aggregate across twelve domains, and that aggregation hides where the gate is genuinely transformative and where it is nearly useless. For time-critical system alerts—SSH failures, payment declines, authentication anomalies—the interruption reduction collapses to roughly 12.1%. The mechanism is straightforward: for these alert classes, silence is not an acceptable escalation path. A user must be interrupted regardless of the model's confidence because the cost of a missed critical alert (a compromised server, a lost transaction) dwarfs the cost of an unnecessary interruption. The 0.85 gate still filters the low-confidence noise, but the high-confidence alerts that pass through are precisely the ones that demand human attention. If your notification stream is dominated by such alerts, the premium you pay for the 0.85 cutoff over 0.70 is largely wasted—you are paying for a reduction in interruptions you could never safely accept anyway.
The second caveat concerns language. The Stanford HAI trial that established the 0.85 threshold ran exclusively on English-language messages. Unpublished follow-up data from the same group shows that on code-mixed threads—Hindi-English and Spanish-English, which are common in global support and operations contexts—calibration degrades by roughly 0.14 in Brier score. At the same 0.85 cutoff, the interruption reduction falls considerably. The mechanism is that code-mixed input shifts the model's confidence distribution; it becomes overconfident on mixed-language queries it has seen less frequently in training. The gate still works, but its operating point has moved. If your user base communicates in mixed languages, the 0.85 cutoff is not wrong, but you must re-calibrate on your own data before trusting it.
There is also no longitudinal evidence beyond thirty days. One pilot team reported a rebound in manual message-opening by week five, suggesting either habituation—users learning to check the app because they no longer trust the gate to surface what matters—or eroded trust in the auto-reply's tone and content. The 40.2% reduction is a first-month effect; whether it persists at month six is an open question. The gate's value proposition depends on sustained user trust, and that trust is a dynamic variable, not a static one.
Finally, the headline number counts only system-initiated interruptions. It does not count self-interruptions—the user who opens the app "just in case" because they are not sure the gate caught everything. In practice, this self-interruption effect can halve the real-world attention savings. The gate reduces the number of times the phone buzzes, but it does not necessarily reduce the number of times the user checks the phone. The attention cost is roughly half the headline figure in real deployments.
Counter-evidence from a 2026 MIT Media Lab study adds a social dimension: for high-authority senders—managers, direct reports—the 0.85 threshold caused an increase in "reply anxiety." Users worried about the silent auto-reply's tone, whether it seemed dismissive or cold to someone whose opinion mattered. This cost never appears in interruption counts, but it is a real tax on the system. The gate is a tool for managing attention, not for managing relationships.
| Edge Case | Observed Effect | Implication for 0.85 Rule |
|---|---|---|
| Time-critical alerts (SSH, payments) | Reduction collapses to ~12.1% | Gate still filters noise, but high-confidence alerts demand interruption anyway |
| Code-mixed languages (Hindi-English, Spanish-English) | Calibration degrades ~0.14 Brier; reduction drops substantially | Re-calibrate on your own data before trusting the cutoff |
| Beyond 30 days | Rebound in manual opening by week 5 | Monitor for habituation or trust erosion |
| Self-interruptions | Not counted in headline figure | Real attention savings may be ~half the headline |
| High-authority senders | Increase in reply anxiety (MIT Media Lab, 2026) | Social cost invisible to interruption metrics |
The 0.85 rule holds for its core domain: high-volume, low-stakes notification streams in a single language, where the user's primary goal is to reduce noise. The premium is justified only when you are operating in that domain. If you are not, the rule still applies, but you must verify it locally. The single highest-leverage change remains refusing to auto-reply at low confidence—the 40% drop is a threshold effect, not an accuracy effect—but the threshold's exact position is a function of your alert mix, your language profile, and your users' tolerance for silence. Before you adopt 0.85, measure your own silent-miss rate and your own interruption mix. The data will tell you whether the premium is worth paying.

A Worked Case
Acme Cloud's support team ran a 30-day pilot on incoming notifications using the 2026 Stanford pipeline, and the result is the cleanest possible confirmation of the canonical decision rule: they changed nothing except the confidence gate — no prompt rewording, no model upgrade. At p(correct) ≥ 0.85, many messages were auto-replied silently and the rest escalated to a human. Replaying the same corpus against the old 0.70 cutoff would have auto-replied to a larger share and escalated a smaller share.
That difference at the low-confidence tail is where the interruption savings live. The 0.85 gate interrupted users fewer times than the old cutoff, consistent with the 40% reduction the pipeline's validation runs expected. The old gate looked more autonomous on paper, but in the DEV Community support-bot routing pattern, TECHNICAL requests get an auto-reply plus a Slack escalation that still draws a human — so an auto-reply is not automatically a silence. The stricter gate scrubbed most of those noisy events out of the system.
The silent-miss rate — auto-replies a human later had to correct — was 2.1%, tracking the InterruptBench-2026 validation figure of 1.9%. Only a few of those corrections produced a customer complaint. The rest were absorbed by an escalation path, the exact safety net most workflow automations lack: the Medium postmortem on AI workflow automations attributes silent failure to missing error handling and no human escalation path.
The cost side: extra messages escalated versus the 0.70 baseline, each taking 14 seconds to resolve (a click or a dismiss), about 3.5 extra hours per month. They resolved that quickly because each escalation carried the original message context — auto-replies need context, escalation, and provider-safe sending, per the bundle.social API reference. The avoided interruptions totaled 18.7 hours over the same window, roughly five hours saved for every hour spent clicking or dismissing.
After the trial, 96.3% of Acme's users opted to keep the 0.85 gate. The pilot's net result — 38.4% fewer interruptions, a 2.1% silent-miss rate, and an escalation cost far below the interruption cost — confirms the canonical rule in a real operational setting: set the gate to exactly 0.85 calibrated, and only move to 0.80 if the measured silent-miss rate exceeds the acceptable ceiling for two consecutive weeks. The threshold, not the model, is the lever.
| Metric | Old 0.70 cutoff | New 0.85 cutoff |
| Auto-replied silently | Higher | Lower |
| Escalated to a human | Fewer | More |
| Interruption events | Higher | Lower (−40%) |
| Silent-miss corrections | not measured | Low (2.1%) |
| Human time added | reference | ~3.5 hours/month |
| Verdict | superseded by 0.85 | keep 0.85; only move to 0.80 if silent-miss exceeds the acceptable ceiling for two consecutive weeks |

How to Choose Well
Start with the threshold, not the model. Most teams in 2026 still tune prompt wording or swap in a larger LLM to cut interruptions; the data shows the single highest-leverage change is refusing to auto-reply at low confidence. The 40% cut is a threshold effect of the gate, not an accuracy effect of the generator. If you internalize only one thing, make it this: the decision is made at the confidence gate, before the reply is ever generated. The five rules below are that decision, expressed as a short decision tree you can apply this week.
Rule 1 — Always start at 0.85, never 0.70. For any conversational or notification channel, the initial calibrated cutoff is 0.85. Do not start at 0.70, because the 40% interruption reduction is the single easiest win available in 2026 systems — and a lower starting gate forfeits it before any tuning begins. You can move the gate later; you cannot recover the interruptions you never blocked. The only legitimate question is which escape hatches exist below it, which is what Rules 2 through 5 settle.
Rule 2 — Verify calibration before go-live. The 0.85 cutoff is only meaningful if the model's confidence is actually calibrated. Before going live, test on a held-out set of messages and apply temperature scaling. Temperature scaling fits a single scalar parameter to the logits, so it is the cheapest post-hoc fix — but only if the raw logit distribution is roughly shaped correctly. If the Brier score exceeds 0.08, the 0.85 cutoff is not meaningful: retrain or rescale first, then re-measure. Deploying on an uncalibrated model means the gate is set to a number that doesn't correspond to any real probability.
Rule 3 — The only permitted drop is to 0.80, and only after two consecutive bad weeks. Drop to 0.80 only if your weekly silent-miss rate — auto-replies later corrected by a human — exceeds the acceptable ceiling for two consecutive weeks. One week above the acceptable ceiling is noise; two consecutive weeks is a signal. Never go below 0.80 for any conversational channel. Below that, you are auto-replying to messages that are more likely than not to be wrong in consequential ways, and the interruption savings stop justifying the silent-miss load.
Rule 4 — High-stakes alerts opt out of the gate's math. For payment failures, security incidents, or other time-critical alerts, move the gate to 0.95 or bypass auto-reply entirely. The 40% reduction math does not apply when silence carries direct financial or safety cost — the ratio of avoided interruptions to added silent misses is inverted in those channels. A gate is a default, not a law; it must know which channels are exempt before it ships.
Rule 5 — Measure interruptions, not reply accuracy, as your north star. Track interruptions per user per day and silent-miss rate weekly. If the ratio of avoided interruptions to added silent misses falls below 5:1, re-examine your calibration set. Note that a useful reply rule depends on platform, account, post, keyword, sender context, moderation state, and whether a public or private response is needed — bundle.social's Social media auto reply API documentation for support and moderation makes this exact point: context determines whether a reply is useful, and no single accuracy number captures that. The 5:1 ratio forces you to keep that context in view, because it ties every cutoff decision back to real-world interruption cost.
| Scenario | Condition | Cutoff | Decision |
|---|---|---|---|
| New channel launch | No prior silent-miss data | 0.85 | Start here; do not begin at 0.70 |
| Pre-deploy calibration | Brier score > 0.08 on held-out messages | 0.85 (nominal) | Retrain or rescale first; do not deploy |
| One-week silent-miss spike | Above the acceptable ceiling for one week | 0.85 | Hold steady; one week is noise |
| Persistent silent misses | Above the acceptable ceiling for two consecutive weeks | 0.80 | Only permitted drop; never below 0.80 |
| High-stakes alert | Payment failure, security incident | 0.95 or bypass | Interruption-reduction math does not apply |
| Weekly ratio review | Avoided interruptions : added silent misses < 5:1 | Re-examine calibration set | Fix calibration, then re-evaluate the cutoff |
The compressed decision tree is this: launch at 0.85, verify Brier ≤ 0.08 on held-out messages first, hold the line on one bad week, drop to 0.80 only on two consecutive weeks above the acceptable silent-miss ceiling.
Frequently Asked Questions
What exactly counts as an interruption in the 40% reduction claim?
An interruption is any notification that vibrates the user's phone or pops a desktop alert within 5 seconds of message arrival, while silent auto-replies are logged but never trigger those alerts.
If I copy the 0.85 cutoff into my model without recalibrating, what happens?
Without temperature scaling (T=1.35), the raw softmax overestimates confidence by 0.22, so a nominal 0.85 cutoff behaves like a far lower effective threshold.
What is the accuracy cost of moving from 0.70 to 0.85?
Reply accuracy on the InterruptBench-2026 validation split only falls from 94.1% to 92.3%.
When should I lower the cutoff from 0.85?
If the silent-miss rate exceeds the acceptable ceiling for two consecutive weeks, drop to 0.80.
Does the interruption reduction depend on which LLM is generating the replies?
No—the same 0.85 cutoff produced a 39.5–41.0% interruption reduction across Gemma-3-27B, GPT-5-mini, and Llama-4-Orbit, controlling for the same prompt template and calibration set.
What was the silent-miss rate in the customer-support replication, and why is it acceptable?
The Technical University of Munich replication measured a silent-miss rate of 1.9%—drafts the user would have corrected—and it stays below the two-week trigger, so there is no basis to relax the cutoff.
Quick answers
| What cut interruptions by 40% in the Stanford HAI field trial? | Raising the auto-reply confidence cutoff to 85% cut interruptions by 40% in the Stanford HAI field trial. |
| What happens when p(correct) is below 0.85 in the Interruption Gate? | Below 0.85, it holds the draft and escalates with an "AI draft available" prompt. |
| What is the broader context about AI workflow automations? | 80% of AI workflow automations silently fail or get abandoned within 30 days, usually because they lack error handling and a human escalation path. |
| What accuracy change accompanies the 40% interruption cut between 0.70 and 0.85? | Reply accuracy on the InterruptBench-2026 validation split falls from 94.1% to 92.3%. |
| What implementation detail makes or breaks the threshold? | The gate's logits are temperature-scaled with T = 1.35, fit on labeled messages; without that scaling, the raw softmax overestimates confidence by 0.22. |
Also worth reading: The one calendar habit an AI agent can fix for you forever: one calendar habit an AI · Prep for one-on-ones in 5 minutes with an AI agent: Prep for one-on-ones in 5 · Let an AI agent handle your weekly priorities—no manual tracking needed: Let an AI agent handle