Call Experience Features
These features control how your voice agent sounds, reacts, and behaves during calls. They’re configured via voice settings and inject behavior through the system prompt — no explicit LLM tool calls needed.Dynamic Speed / Pace Control
Adjusts the agent’s speaking speed based on conversation context. When explaining complex topics, the agent slows down. For simple confirmations, it speeds up.Silence Fillers
When the agent is processing a response (thinking), it speaks natural filler phrases to avoid awkward silence.| Setting | Type | Default | Description |
|---|---|---|---|
silenceFillersEnabled | boolean | false | Enable silence fillers |
silenceFillerPhrases | string[] | default set | Custom filler phrases |
Instant Filler Words
Short, natural sounds like “hmm”, “aha”, or “acchha” that play instantly when the user stops speaking — before the AI starts generating a response. This eliminates the perceived gap between the user finishing and the agent replying, creating a human-like conversational rhythm. Unlike silence fillers (which are LLM-driven phrases for tool calls), instant filler words are fired at the audio level and don’t wait for the LLM.| Setting | Type | Default | Description |
|---|---|---|---|
fillerWordsEnabled | boolean | false | Enable instant filler words |
fillerWords | string[] | language defaults | Custom filler words. If empty, uses language-appropriate defaults |
fillerWordsMinChars | number | 10 | Minimum user transcript length to trigger a filler. Short replies (“yes”, “no”) skip fillers |
| Language | Default Fillers |
|---|---|
| Hindi | ”hmm”, “acchha”, “haan”, “theek hai”, “ji” |
| English | ”hmm”, “uh huh”, “um”, “right”, “okay” |
| Other | ”hmm”, “aha”, “um”, “okay” |
- User finishes speaking → STT produces final transcript
- If transcript is longer than
fillerWordsMinChars, a random filler word is spoken immediately via TTS - The filler is interruptible — once the LLM response is ready, it seamlessly takes over
- The filler uses the same voice as the agent, so it sounds natural
- Support agents that handle complex queries (user asks a long question → agent says “hmm” while thinking)
- Sales calls where natural flow matters
- Indian language agents where conversational fillers are culturally expected
- IVR-style bots with short yes/no interactions
- Agents that already respond very quickly (the filler may overlap with the real response)
Backchanneling
The agent interjects brief acknowledgment cues (“uh huh”, “got it”, “I see”) while the caller is speaking, showing active listening.| Setting | Type | Default | Description |
|---|---|---|---|
backchannelingEnabled | boolean | false | Enable active listening cues |
backchannelingFrequency | string | medium | Frequency: low, medium, high |
backchannelingPhrases | string[] | default set | Custom acknowledgment phrases |
Greeting Variants (A/B Testing)
Randomly select from multiple greeting messages for A/B testing.Pronunciation Dictionary
Map words or acronyms to their phonetic pronunciation for the TTS engine.Business Hours
Configure operating hours and after-hours behavior. When a call comes in outside business hours, the agent can play a custom greeting, switch to an after-hours prompt, or end the call.| After Hours Action | Behavior |
|---|---|
continue | Use the after-hours prompt and continue the call |
end_call | Play the after-hours greeting and hang up |
Holiday Calendar
Extend business hours with holiday support. When today matches a holiday date, the agent uses after-hours behavior.recurring: true for holidays that repeat every year (matches month/day only).
Barge-In Phrases (Smart Interruption)
Configure specific phrases that immediately interrupt the agent, even if interruption threshold isn’t met.Call Whisper / Agent Coaching
A supervisor can send text messages to the agent during a live call. The agent sees the coaching message but the caller doesn’t hear it.Conversational Memory (Cross-Call)
Remember context from previous calls with the same phone number. The agent receives a summary of past interactions at the start of each new call.| Setting | Type | Default | Description |
|---|---|---|---|
conversationalMemoryEnabled | boolean | false | Enable cross-call memory |
memoryMaxPreviousCalls | integer | 5 | Max previous calls to include |
memoryContextTokenBudget | integer | 500 | Max tokens for memory context |

