oms_ai
04/22/2025, 10:25 PMVapi Support Bot
04/22/2025, 10:27 PMwaitSeconds
parameter in the startSpeakingPlan
configuration to 0.8 can help reduce transcript truncation issues. This adjustment allows the system more time to capture the full context before responding, as mentioned in [several discussions](https://discord.com/channels/1211482211119796234/1337356648259387412).
## Confidence Threshold Impact
Your confidence threshold of 0.4 could be contributing to the issue. According to [information I found](https://discord.com/channels/1211482211119796234/1333510134617604147), Vapi filters out words with confidence scores below the threshold, which can lead to incomplete transcripts. This filtering can cause entire replies to be omitted, especially when dealing with accents or foreign names.
## Configuration Adjustment Example
You might want to try adjusting your configuration with something like this:
json
{
"transcriber": {
"provider": "deepgram",
"model": "nova-3",
"language": "en",
"endpointing": 300
},
"startSpeakingPlan": {
"smartEndpointingEnabled": true,
"waitSeconds": 0.8
}
}
Vapi Support Bot
04/22/2025, 10:27 PMKINGS BIG
04/23/2025, 12:50 AM