cw
03/08/2025, 12:36 AMVapi Support Bot
03/08/2025, 12:37 AMsilenceTimeoutSeconds
parameter which controls how long a session waits during silence before timing out. The default is set to 30 seconds (which matches exactly what you're experiencing), but you can customize it up to 3600 seconds (1 hour) [source](https://docs.vapi.ai/phone-calling/on-hold-specialist-transfer).
Here's an example configuration:
json
{
"firstMessageMode": "assistant-waits-for-user",
"silenceTimeoutSeconds": 300, // Increased to 5 minutes
"messagePlan": {
"silenceTimeoutMessage": "Hello! I noticed you haven't said anything. How can I help you today?"
}
}
Alternatively, if you're using voicemail detection features, you might also need to adjust the machineDetectionSilenceTimeout
parameter (measured in milliseconds):
json
{
"voicemailDetection": {
"provider": "twilio",
"enabled": true,
"machineDetectionSilenceTimeout": 300000, // 5 minutes in milliseconds
// other parameters...
}
}
I couldn't find specific information about the call ID you mentioned (abfadb45-618c-41db-acbb-2fb7b095044b), but adjusting these timeout parameters should help your agent remain patient during those hold periods.
Sources:
- [Phone Calling On-Hold Specialist Transfer](https://docs.vapi.ai/phone-calling/on-hold-specialist-transfer)
- [Discord Message Voicemail Detection Configuration](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1341760956732276736)
- [Discord Message Silence Timeout Configuration](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343915991670853654)Vapi Support Bot
03/08/2025, 12:37 AMShubham Bajaj
03/10/2025, 8:25 PMgzqq
03/13/2025, 1:42 AMcw
03/13/2025, 6:31 PMcw
03/13/2025, 6:33 PMcw
03/13/2025, 6:35 PMgzqq
03/14/2025, 8:41 PMgzqq
03/14/2025, 8:41 PM