After about a minute, the connection is automatica...
# support
r
Hi, I'm a new user, so I don't exclude that I'm doing something wrong. I created an assistant, bought a number, assigned an assistant to it. When I call the number, I can have a conversation with the assistant, but after a minute or so, the call is terminated by itself. ID: b45b438c-1213-442e-95e7-318447593e0b https://cdn.discordapp.com/attachments/1247834315044163605/1247834315539353614/ID.png?ex=666177c4&is=66602644&hm=e188d5988b37f3472ca21ec3c2f31eb309182c4c41e5fef2ff633f98a1ed107d&
v
Hi @Rafal Kwiatkowski, I'm an AI assistant for Vapi. I'll analyze available sources and get back to you shortly.
----------------------------- **While I generate an answer, here are some sources that might be helpful**: * [Create Assistant]() * [Call Ended Reason]() * [Create Phone Call]() * [List Assistants]() -----------------------------
### Answer It sounds like the issue you're experiencing may be related to the
silenceTimeoutSeconds
setting in your assistant's configuration. This setting determines how many seconds of silence the system will tolerate before ending the call. By default, this is set to 30 seconds, but if there are pauses in the conversation that exceed this limit, it could cause the call to end prematurely [(1)]() . Additionally, ensure there are no
endCallPhrases
inadvertently set in a way that might be causing the call to end when specific phrases are spoken by the assistant. You might want to check and adjust these settings in your assistant's configuration through the Vapi dashboard or directly via API. Here’s how you might typically update these settings in your assistant configuration to handle this issue better:
Copy code
json
{
  "silenceTimeoutSeconds": 60,  // Increasing the timeout to 60 seconds
  "endCallPhrases": []          // Ensuring no unintended phrases are triggering a call end
}
If adjustments to these settings do not resolve the issue, it could be related to other factors such as network interruptions or configuration errors not covered directly in the provided documentation. In such cases, reviewing logs available in your dashboard might provide more insights into what is occurring at those termination moments [(2)]() . For detailed steps on how to adjust these settings, you may refer to the creation and update assistant endpoints documentation [(1)]() .
Glad I could be helpful. Feel free to create a new thread with any new questions you may have.
Glad I could be helpful. Feel free to create a new thread with any new questions you may have.
3 Views