The Assistant isnt aware of the check availability...
# support
s
So, I am returning the response below from make.com to vapi and when I check the vapi webhook logs, it returns same response the make.com response but the assistant keep saying "I am having some truble checking the availability" { "results": [ { "toolCallId": call_a4UfaahSSAzaRYT0HiCJpKNw, "result": { "message": "10:00 AM is available!" } } ] }
v
message has been deleted
@sambalicious0123 It sounds like you've successfully sent a response from make.com to VAPI indicating that "10:00 AM is available!" However, if the assistant on the VAPI side is still reporting trouble checking the availability, there might be an issue with how the response is being handled or interpreted by the assistant. To assist you further, I would need to know how you're expecting the assistant to process this response and what the expected behavior is. If there's a specific function or action you'd like to perform with this information, please let me know so I can help you accordingly. If you believe there might be an error in the way the assistant is handling the response, you may need to check the assistant's logic or configuration. If you need to troubleshoot this issue further, please provide additional details or ask support for more info on this.
You can continue this conversation by mentioning me in the message.
s
@Shubham Bajaj call id is 235820b1-7f74-4ad5-b3e1-5aee23fd1fb9
@Vapi
v
@sambalicious0123 Please ask support for more info on this.
h
s
@sambalicious0123 Your supposed to return the response of
result
in string message. You can learn more about it from here https://docs.vapi.ai/tools-calling#server-response-format-providing-results-and-context
current_response
Copy code
sh
šŸ”µ 09:30:28:882 Server Message Successful. (https://hook.us2.make.com/ao7pr3i4h2vi0e5xgd3nu073zro164j4). Response: {
"results": [
    {
      "toolCallId": call_pkFVRYyk2tM7GBG0gVAJK2gD,
      "result": {
"message": "10:00 AM is available!"
}
    }
  ]
}
expected_response
Copy code
sh
šŸ”µ 09:30:28:882 Server Message Successful. (https://hook.us2.make.com/ao7pr3i4h2vi0e5xgd3nu073zro164j4). Response: {
"results": [
    {
      "toolCallId": call_pkFVRYyk2tM7GBG0gVAJK2gD,
      "result": "10:00 AM is available!"
    }
  ]
}
@sambalicious0123 Do let me know if you require further help!!
@HennieVee I have looked into your ticket and you need to format your tool call response according to the shared format. Please let me know if you need any further help.
s
It worked. Thanks for your help