The voice pipeline
The voice engine’s job is to make a conversation feel natural — which mostly comes down to latency and knowing when to stop talking. It runs a streaming cascade:
Caller
1Listen
2Understand
3Think
4Speak
Answer
How a turn works
Section titled “How a turn works”- Listen. Live caller audio streams in from Twilio. The engine detects when the caller has finished a thought.
- Transcribe (ASR). Speech is turned into text quickly with a Whisper-based model.
- Think (LLM). A fast language model generates the reply as a token stream, following your locked-in instructions, knowledge, and Call Map.
- Speak (TTS). As soon as the first clause is ready, it’s synthesized into your chosen voice and played — so the caller hears a response well before the full reply has been generated.
Barge-in
Section titled “Barge-in”If the caller starts talking while Neuros is speaking, the engine stops — it aborts the in-flight reply and speech within a fraction of a second and listens again. It also distinguishes a real interruption from a backchannel (“mm-hmm”), which it ignores so it doesn’t cut itself off unnecessarily.
Agent
Caller
Latency budget
Section titled “Latency budget”Streaming each stage into the next keeps turns conversational:
| Measure | Target |
|---|---|
| First audio (end of caller’s speech → Neuros starts speaking) | ~0.6–1.2 s |
| Full turn | ≤ ~2.5 s |