dmorgan20
03/24/2025, 10:39 AMVapi Support Bot
03/24/2025, 10:41 AMsmartEndpointingEnabled
setting and waitSeconds
parameters can affect how quickly the assistant recognizes when you've finished speaking.
2. **Transcriber Settings**: The transcriber configuration might need tweaking. Some users have found success by [changing from Deepgram to Whisper using Talkscribe or Azure](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343612796717371393) as their transcriber.
3. **Turn-Taking Behavior**: The way [VAPI's audio-text model manages turn-taking](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336989548357353524) could be affecting input recognition, especially with short responses.
## Troubleshooting Steps
Here are some steps you can take to resolve this issue:
1. **Adjust Endpointing Configuration**: Try updating your configuration with these settings:
json
"start_speaking_plan": {
"waitSeconds": 0.8,
"smartEndpointingEnabled": true
}
And for the transcriber:
json
"transcriber": {
"model": "nova-2",
"language": "en",
"provider": "deepgram",
"endpointing": 300
}
Vapi Support Bot
03/24/2025, 10:41 AMnumWordsToInterruptAssistant
to 5 and maxDurationSeconds
to 10 as [suggested in the documentation](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1334027136305991750).
5. **Script Flow Adjustment**: [Adjust the flow of your assistant's script](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1334207710480306369) to allow for pauses where you can respond to each question.
Is there a specific part of this troubleshooting process you'd like me to elaborate on further?
Sources:
- [Discord Thread on Endpointing Configuration](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1338497725917827196)
- [Discord Thread on Transcriber Options](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343612796717371393)
- [Discord Thread on VAPI's Audio-Text Model](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336989548357353524)
- [Discord Thread on Assistant ID Configuration](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336652401733668864)
- [Discord Thread on Dialogue Management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1333406713931632731)
- [Discord Thread on Call Flow Settings](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1334027136305991750)Vapi Support Bot
03/24/2025, 10:41 AMdmorgan20
03/24/2025, 10:54 AMdmorgan20
03/24/2025, 10:58 AMVapi Support Bot
03/24/2025, 11:00 AMjson
"transcriber": {
"provider": "talkscriber",
"language": "en"
}
Other transcriber options available in Vapi include:
- Deepgram
- Gladia
- Assembly AI
- Azure Speech Transcriber
As mentioned in my previous message, some users have reported [better results](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343612796717371393) by switching from Deepgram to either Talkscriber (for Whisper) or Azure as their transcriber when facing input recognition issues.
Is there anything else you'd like to know about configuring these transcriber options?
Sources:
- [Vapi documentation on multilingual support](https://docs.vapi.ai/customization/multilingual)
- [Vapi documentation on Talkscriber](https://docs.vapi.ai/providers/transcriber/talkscriber)
- [Discord Thread on Transcriber Options](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343612796717371393)
- [Vapi documentation on Assembly AI](https://docs.vapi.ai/providers/transcriber/assembly-ai)Kings Big
03/24/2025, 11:02 PMKings Big
03/24/2025, 11:19 PM{
"waitSeconds": 0.6,
"smartEndpointingPlan": {
"provider": "livekit"
}
}
Can you try another poll with the following startSpeakingPlan config. This will give the speech AI models the ample amount of time to consider if users are finished speaking so that they can continue and pass the transcript to the next LLM model in the pipeline.dmorgan20
03/25/2025, 4:30 PMKings Big
03/27/2025, 6:02 AM