marem
05/06/2025, 9:47 AMVoicemail, the agent waits 30s before speaking.
Example Call Id: aa578a31-360a-460e-95ea-b8975eab0e1a
I use this config:
"voicemailDetection": {
"provider": "google",
"voicemailExpectedDurationSeconds": 18
},
I was expecting agent to speak after 18s.
How can I fix that?Vapi Support Bot
05/06/2025, 9:49 AMstartSpeakingPlan with custom endpointing rules to control when the agent speaks.
For example:
json
"startSpeakingPlan": {
"customEndpointingRules": [
{
"type": "assistant",
"regex": ".*voicemail.*",
"delayMs": 18000 // 18 seconds in milliseconds
}
]
}
This would help ensure your agent speaks after the expected 18 seconds.marem
05/06/2025, 9:50 AMKings_big💫
05/06/2025, 5:20 PMmarem
05/07/2025, 9:05 AM"voicemailDetection": {
"provider": "google",
"voicemailExpectedDurationSeconds": 18
},
It should speak after 18s (to my understanding)
https://cdn.discordapp.com/attachments/1369249282535723079/1369601102739148911/image.png?ex=681c73ec&is=681b226c&hm=01200e33b1a7c6c013c9b9b4c8d4468079e86900b0feca165e58e5c50857a15d&marem
05/09/2025, 3:17 PMKings_big💫
05/09/2025, 3:37 PMmarem
05/12/2025, 10:10 AMmarem
05/12/2025, 2:25 PMKings_big💫
05/12/2025, 2:56 PM