π°πππππππ
04/14/2025, 10:17 AMVapi Support Bot
04/14/2025, 10:19 AMVapi Support Bot
04/14/2025, 10:19 AMjson
"start_speaking_plan": {
"waitSeconds": 2,
"transcriptionEndpointingPlan": {
"onPunctuationSeconds": 0.3
}
}
json
"transcriber": {
"model": "nova-2",
"language": "en",
"provider": "deepgram"
},
To:
json
"start_speaking_plan": {
"waitSeconds": 0.8,
"smartEndpointingEnabled": true
}
json
"transcriber": {
"model": "nova-2",
"language": "en",
"provider": "deepgram",
"endpointing": 300
},
### 2. Voice Activity Detection (VAD) Settings
The [documentation](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1316042862630146058) suggests that if the VAD settings aren't calibrated correctly, it might miss quieter speech. This could explain why it's logging your input but not responding until you speak louder.
### 3. Microphone Permission Issues
Even though permissions appear to be granted, the application might not be receiving full access to the microphone according to [this source](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1334948523816259604). You might want to call the checkAndRequestMicrophonePermission
function before initializing Vapi.
### 4. Network Connectivity Issuesπ°πππππππ
04/14/2025, 10:22 AMKings_bigπ«
04/14/2025, 10:37 AM