Vapi Support Bot
05/07/2025, 3:55 PMendCall
, they might be filtered from the chat completions endpoint, resulting in an empty response. Try including these tools in your custom LLM tools:
javascript
// Include endCall in your custom LLM tools
const tools = [
{
type: "endCall"
}
];
// When the model requests them, send a "done" stream back to Vapi with the function name
This approach should help resolve the empty webhook response issue.
Source:
- [Discord discussion about endCall filtering](https://discord.com/channels/1211482211119796234/1339871158975336498)Vapi Support Bot
05/07/2025, 3:55 PMendCall
, they might be filtered from the chat completions endpoint, resulting in an empty response. Try including these tools in your custom LLM tools:
javascript
// Include endCall in your custom LLM tools
const tools = [
{
type: "endCall"
}
];
// When the model requests them, send a "done" stream back to Vapi with the function name
This approach should help resolve the empty webhook response issue.
Source:
- [Discord discussion about endCall filtering](https://discord.com/channels/1211482211119796234/1339871158975336498)micek
05/07/2025, 4:06 PMKyle Brunker
05/08/2025, 1:29 AMKyle Brunker
05/08/2025, 1:29 AMmicek
05/08/2025, 9:16 PMmicek
05/08/2025, 9:17 PMKyle Brunker
05/10/2025, 11:59 PM