coco
01/26/2025, 12:54 PMShubham Bajaj
01/27/2025, 5:20 AMShubham Bajaj
01/27/2025, 5:33 AMShubham Bajaj
01/27/2025, 6:57 AMShubham Bajaj
01/28/2025, 5:50 AMcoco
01/28/2025, 5:12 PMcoco
01/28/2025, 5:13 PMcoco
01/28/2025, 5:15 PMShubham Bajaj
01/29/2025, 3:18 PMjson
"start_speaking_plan": {
"waitSeconds": 0.8,
"smartEndpointingEnabled": false,
}
json
"transcriber": {
"model": "nova-2",
"language": "fr",
"provider": "deepgram",
"endpointing": 300
}
@coco It was because of user inputs were not captured properly, use the following startSpeakingPlan and set the deepgram's endpoting value to 300 after that users input will be captured as expected and call will continue normally. Do give it a try and let me know how it goes.Shubham Bajaj
01/30/2025, 9:58 AMcoco
02/01/2025, 12:24 AMcoco
02/01/2025, 12:31 AMShubham Bajaj
02/01/2025, 3:37 AMinsert-your-private-key-here
with your private-key and insert-your-assistant-id-here
with the assistant-id and then it will work.
exmaple_curl_request
curl -X PATCH https://api.vapi.ai/assistant/insert-your-private-key-here \
-H "Authorization: Bearer insert-your-assistant-id-here" \
-H "Content-Type: application/json" \
-d '{
"transcriber": {
"provider": "deepgram",
"model": "nova-2",
"endpointing": 300,
"language": "fr"
},
"startSpeakingPlan": {
"waitSeconds": 0.8,
"smartEndpointingEnabled": false
}
}'