yian
04/06/2025, 4:38 AMVapi Support Bot
04/06/2025, 4:39 AMendCallFunctionEnabled
to true in your dashboard settings [Discord thread](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1313293840580612166)
## 2. Add the endCall Tool to Your Model's Tools Array
The endCall
function is a default tool in Vapi, but you need to explicitly add it to your model's tools array:
javascript
// Make sure to include endCall in your tools array
const tools = [
// Your other tools
{
name: "endCall",
description: "Use this to end the call when the conversation is complete"
}
];
According to the [Vapi default tools documentation](https://docs.vapi.ai/tools/default-tools), you "**need** to add these tools to your model's tools
array."
## 3. Programmatically End the Call
If the tool approach isn't working, you can programmatically end a call by sending an end-call
message type:
javascript
// Send an end-call message type
{
type: "end-call"
}
This should be included when sending inbound messages to the client as mentioned in the [Vapi changelog](https://docs.vapi.ai/changelog/2025/1/14).
## 4. Check for Common Issues
If you're still having problems, here are some common issues to check:
- Ensure the exact function name is correct (Vapi needs the exact function name to trigger the endCall
tool)
- Check if Vapi-defined tools like endCall
are being filtered out from your chat completions endpoint
- Verify the function is being called with the correct parameters and at the right momentVapi Support Bot
04/06/2025, 4:39 AMendCall
tool in your custom LLM tools
- Send a "done stream" back to Vapi with the function name when the model requests it
This workaround was suggested in a [Discord thread](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1339871158975336498) for cases where the built-in tool isn't working.
Is there anything specific about your implementation that you'd like me to help troubleshoot further?
Sources:
- [Discord thread about endCallFunctionEnabled](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1313293840580612166)
- [Vapi default tools documentation](https://docs.vapi.ai/tools/default-tools)
- [Vapi changelog](https://docs.vapi.ai/changelog/2025/1/14)
- [Discord thread about filtered tools](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1339871158975336498)Kings_big💫
04/06/2025, 6:47 AMKyle Brunker
04/06/2025, 8:34 AM