Skip to content
AI Engineering
AI Engineering11 min read0 views

Tuning VAD for AI Voice Agents: Thresholds, Hangover, Hysteresis (2026)

VAD doesn't make ASR more accurate — it controls endpointing latency, barge-in feel, and turn-taking. We tune Silero VAD threshold, prefix_padding, and silence_duration_ms with real production traces.

TL;DR — VAD's job is not transcription — it's deciding when the user stopped. Tune threshold for noise, silence_duration_ms for endpoint latency, prefix_padding_ms for capture safety. Default settings rarely work; build a harness that measures FAR/h and end-of-speech delay distributions per vertical.

The latency problem

VAD lives at the front of every voice turn. A too-eager VAD endpoints mid-word and you cut the caller off. A too-lazy VAD waits an extra 500ms after silence and you blow the latency budget. Most platforms ship a default that is wrong for your acoustic profile.

Where the ms come from

The VAD adds three controllable delays:

Hear it before you finish reading

Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.

Try Live Demo →
  • Activation threshold (0.0-1.0) — higher = more noise tolerance, less false-positive triggering
  • prefix_padding_ms — audio captured before speech detection (ensures you don't clip the first phoneme)
  • silence_duration_ms — silence required before declaring end-of-speech (the hangover)

Typical OpenAI Realtime defaults: threshold 0.5, prefix_padding 300ms, silence_duration 500ms. That 500ms is where most of the "feels slow" complaints originate.

flowchart LR
  AUDIO[Audio frames] --> NN[Silero NN]
  NN --> PROB[Speech prob]
  PROB --> THR{> threshold?}
  THR -->|Yes| ON[Speech ON<br/>capture w/ prefix_padding]
  THR -->|No| HOLD{Silence<br/>> silence_duration_ms?}
  HOLD -->|Yes| END[End-of-speech]
  HOLD -->|No| ON

CallSphere stack

CallSphere uses server-side VAD on OpenAI Realtime PCM16 24kHz for Healthcare, plus Silero VAD in the FastAPI :8084 path for other verticals. Each of the 6 verticals ships with a tuned VAD profile (e.g. salons run noisy, so threshold 0.55; legal intake runs quiet, so threshold 0.4). 37 agents, 90+ tools, 115+ DB tables. Pricing $149/$499/$1,499, 14-day trial, 22% affiliate.

Test the VAD or start a trial.

Optimization steps

  1. Build a per-vertical labeled dataset of ~500 calls. Measure FAR/h (false-activation rate per hour) and end-of-speech delay.
  2. Tune threshold for FAR < 5/h on the noisy vertical, then check ASR WER didn't degrade.
  3. Drop silence_duration_ms from 500 → 250-300 for fast-feeling agents; raise it for callers who pause mid-sentence (elderly, complex intake).
  4. Increase prefix_padding_ms if you hear clipped first words; decrease if it's bloating buffers.
  5. Add hysteresis — different on/off thresholds — to stop chatter at the boundary.

FAQ

Q: Does better VAD mean better ASR? No. ASR has its own VAD internally. Better VAD = better feel.

Still reading? Stop comparing — try CallSphere live.

CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.

Q: Should I use Silero or WebRTC's built-in VAD? Silero — neural, far more robust to noise and music.

Q: What's a good silence_duration_ms? 250-400ms for transactional voice agents, 500-700ms for support/intake.

Q: Does VAD help with barge-in? Yes — it's the trigger that detects the user starting to speak during agent TTS.

Q: How does CallSphere update VAD profiles? Weekly recalibration job re-fits thresholds against the last 10k labeled calls per vertical.

Sources

## Tuning VAD for AI Voice Agents: Thresholds, Hangover, Hysteresis (2026): production view Tuning VAD for AI Voice Agents: Thresholds, Hangover, Hysteresis (2026) is also a cost-per-conversation problem hiding in plain sight. Once you instrument tokens-in, tokens-out, tool calls, ASR seconds, and TTS seconds against booked-revenue per call, the right tradeoff between Realtime API and an async ASR + LLM + TTS pipeline becomes obvious — and it's almost never the same answer for healthcare as it is for salons. ## Shipping the agent to production Production AI agents live or die on three loops: evals, retries, and handoff state. CallSphere runs **37 agents** across 6 verticals, each with its own eval suite — synthetic call transcripts replayed nightly with assertion checks on extracted entities (date, time, party size, insurance, address). Without that loop, prompt regressions ship silently and you only find out when bookings drop. Structured tools beat free-form text every time. Our **90+ function tools** all enforce JSON schemas validated server-side; if the model hallucinates an integer where a string is required, we retry with a corrective system message before falling back to a deterministic path. For long-running flows, we treat agent handoffs as a state machine — booking → confirmation → SMS — so context survives turn boundaries. The Realtime API vs. async decision usually comes down to "is the user holding the phone right now?" If yes, Realtime; if no (callback queue, after-hours voicemail), async wins on cost-per-conversation, which we track per agent in **115+ database tables** spanning all 6 verticals. ## FAQ **How does this apply to a CallSphere pilot specifically?** Setup runs 3–5 business days, the trial is 14 days with no credit card, and pricing tiers are $149, $499, and $1,499 — so a vertical-specific pilot is a same-week decision, not a quarterly project. For a topic like "Tuning VAD for AI Voice Agents: Thresholds, Hangover, Hysteresis (2026)", that means you're not starting from scratch — you're configuring an agent template that's already been hardened across thousands of conversations. **What does the typical first-week implementation look like?** Day one is integration mapping (scheduler, CRM, messaging) and prompt tuning against your top 20 real call transcripts. Day two through five is shadow-mode running, where the agent transcribes and recommends but a human still answers, so you can compare side-by-side. Go-live is the moment your eval pass-rate clears your internal bar. **Where does this break down at scale?** The honest answer: it scales until your tool catalog gets stale. The agent is only as good as the integrations it can actually call, so the operational discipline is keeping schemas, webhooks, and fallback paths green. The platform handles the rest — observability, retries, multi-region routing — without your team owning the GPU layer. ## Talk to us Want to see how this maps to your stack? Book a live walkthrough at [calendly.com/sagar-callsphere/new-meeting](https://calendly.com/sagar-callsphere/new-meeting), or try the vertical-specific demo at [escalation.callsphere.tech](https://escalation.callsphere.tech). 14-day trial, no credit card, pilot live in 3–5 business days.
Share

Try CallSphere AI Voice Agents

See how AI voice agents work for your industry. Live demo available -- no signup required.

Related Articles You May Like

AI Engineering

Latency Benchmarking AI Voice Agent Vendors (2026)

Vapi 465ms optimal, Retell 580-620ms, Bland ~800ms, ElevenLabs 400-600ms — but those are best-case. We design a fair benchmark harness, P95 measurement, and a reproducible methodology for 2026.

AI Infrastructure

Defense, ITAR & AI Voice Vendor Compliance in 2026

ITAR technical-data definitions don't care if a human or an LLM produced the output. CMMC Level 2 has been mandatory since November 2025. Here is what an AI voice vendor needs to ship to defense in 2026.

AI Infrastructure

WebRTC Over QUIC and the Future of Realtime: Where Voice AI Goes After 2026

WebTransport is Baseline as of March 2026. Media Over QUIC ships in production within the year. Here is what changes for AI voice agents — and what stays the same.

AI Engineering

Latency vs Cost: A Decision Matrix for Voice AI Spend in 2026

Every 100ms of latency costs you. So does every cent per minute. Here is the decision matrix we use across 6 verticals to pick where to spend and where to save on voice AI infrastructure.

Agentic AI

Streaming Agent Responses with OpenAI Agents SDK and LangChain in 2026

How to stream tokens, tool-call deltas, and intermediate steps from an agent — with code for both the OpenAI Agents SDK and LangChain — and the gotchas that bite in production.

Agentic AI

Token-Level Evaluation of Streaming Agents: TTFT, Stream Smoothness, and Mid-Stream Hallucination Detection

Streaming changes the eval game — final-answer correctness isn't enough when users perceive the answer one token at a time. Here's the metric set that matters.