Error When trying to update smartEndpointing in St...
# support
e
I get an error when I try updating smartEndpointing for assistants currently using livekit for smartEndpointing. It seems you may have removed livekit as an option and no default set for current assistants using livekit? I have an image attached below of the error I get. https://cdn.discordapp.com/attachments/1367516984354279618/1367516985130483783/Screenshot_2025-05-01_at_16.03.40.png?ex=6814def0&is=68138d70&hm=0691637961d05a11374e63e10ac91902e76f33bb21aa3bf6c1bbc9db8f8d5542&
v
Based on the information I found, the error you're experiencing might be related to UI bugs in Vapi. Since smartEndpointing is off by default, you could try using the API to update your assistant configuration instead of the UI:
Copy code
bash
curl -X PATCH https://api.vapi.ai/assistant/YOUR_ASSISTANT_ID \
     -H "Authorization: Bearer YOUR_TOKEN" \
     -H "Content-Type: application/json" \
     -d '{
  "transcriber": {
    "provider": "deepgram",
    "endpointing": 300
  }
}'
If issues persist, contact support at support@vapi.ai. Sources: - [Discord conversation](https://discord.com/channels/1211482211119796234/1331035264751112202) - [Vapi documentation](https://docs.vapi.ai/customization/speech-configuration) - [Discord support reference](https://discord.com/channels/1211482211119796234/1336339138898694184)
Based on the information I found, the error you're experiencing might be related to UI bugs in Vapi. Since smartEndpointing is off by default, you could try using the API to update your assistant configuration instead of the UI:
Copy code
bash
curl -X PATCH https://api.vapi.ai/assistant/YOUR_ASSISTANT_ID \
     -H "Authorization: Bearer YOUR_TOKEN" \
     -H "Content-Type: application/json" \
     -d '{
  "transcriber": {
    "provider": "deepgram",
    "endpointing": 300
  }
}'
If issues persist, contact support at support@vapi.ai. Sources: - [Discord conversation](https://discord.com/channels/1211482211119796234/1331035264751112202) - [Vapi documentation](https://docs.vapi.ai/customization/speech-configuration) - [Discord support reference](https://discord.com/channels/1211482211119796234/1336339138898694184)
k
Switch to a currently supported method like the default model to resolve it.
e
That is my point @Kings_big💫 I WAS TRYING TO SWITCH. I couldn't. I can only update through the api I have many assistants to update too
k
You can batch update assistants via the API by sending PATCH requests with a new smartEndpointing provider to each assistant’s ID, using a script if needed..
3 Views