overall
05/06/2025, 3:51 PMVapi Support Bot
05/06/2025, 3:53 PMjavascript
// Switch from Deepgram to another transcriber
// In your Vapi configuration:
{
"transcriber": {
"type": "whisper", // Try "whisper", "gladia", or "azure" instead of "deepgram"
"useVapiKey": true // Use Vapi's key instead of your own
}
}
This addresses the most common cause where Deepgram might be blocking your IP.
Sources:
- [Troubleshooting steps for General Transcriber Deafness in Vapi](https://discord.com/channels/1211482211119796234/1340235729204285510)
- [Possible causes of General Transcriber Deafness in Vapi](https://discord.com/channels/1211482211119796234/1343612796717371393)overall
05/06/2025, 4:05 PMoverall
05/06/2025, 4:10 PMKings_big💫
05/06/2025, 6:02 PMoverall
05/07/2025, 6:15 AMoverall
05/07/2025, 6:17 AMoverall
05/07/2025, 6:24 AMKings_big💫
05/07/2025, 8:19 AMoverall
05/07/2025, 2:19 PMChiranjeet Mishra
05/10/2025, 11:21 PMcurrent
"startSpeakingPlan": {
"waitSeconds": 0.1,
"transcriptionEndpointingPlan": {
"onPunctuationSeconds": 0.1,
"onNoPunctuationSeconds": 0.8,
"onNumberSeconds": 0.5
},
"customEndpointingRules": [],
"smartEndpointingPlan": {
"provider": "vapi"
}
}
updated
You need to change your start speaking plan.
"startSpeakingPlan": {
"waitSeconds": 0.6,
"transcriptionEndpointingPlan": {
"onPunctuationSeconds": 0.1,
"onNoPunctuationSeconds": 1.2,
"onNumberSeconds": 0.5
}
}
- removed smartEndpointingPlan because it only works for English languages.
- changed onNoPunctuationSeconds is changed to 1.2, because when set to 0.8 value it may be slightly aggressive for non-English language. This change gives your assistant more breathing room to correctly identify when a user has actually finished speaking versus just interrupting momentarily. If interruptions happen, increase onNoPunctuationSeconds by 0.2 until it feels natural. If responses seem too slow, decrease by 0.1.