CallID: fcfcc656-c788-4d2d-bd4f-
# general-english
p
CallID: fcfcc656-c788-4d2d-bd4f-9f71492ddd89 It says "No result" but this is the webhook log: { "status": "success", "response": { "tool_call_id": "call_XxfFYIjKuAgcbqcYU05Oqjyg", "result": "Förnamn: Mathias, Efternamn: Degrander, E-post: mathias@intelligentbrands.se" } }
s
@Pappamats callID please.
p
Its right there in my message: CallID: fcfcc656-c788-4d2d-bd4f-9f71492ddd89
s
current
Copy code
{
  "status": "success",
  "response": {
    "tool_call_id": "call_XxfFYIjKuAgcbqcYU05Oqjyg",
    "result": "Förnamn: Mathias, Efternamn: Degrander, E-post: mathias@intelligentbrands.se"
  }
}
expected
{ "results": [ { { "tool_call_id": "call_XxfFYIjKuAgcbqcYU05Oqjyg", "result": "Förnamn: Mathias,Efternamn: Degrander, E-post mathias@intelligentbrands.se" } } ] }
@Pappamats this is the format which you need to follow strictly.
Copy code
json
{
    "results": [
        {
            "toolCallId": "X",
            "result": "Y"
        }
    ]
}
p
Yes this is the format now: { "results": [ { { "tool_call_id": "call_Mvju7K2fyc1PnasUOieHXMjs", "result": "Förnamn: Mathias,Efternamn: Degrander, E-post mathias@intelligentbrands.se, Telefonnummer: +46706552708" } } ] } However, it did not get recognized by my voice agent.
s
call Id please.
p
e431962f-b5df-4aac-ba3b-3847c59be7bb
s
Copy code
json
{
    "results": [
        {
            "tool_call_id": "call_Mvju7K2fyc1PnasUOieHXMjs",
            "result": "Förnamn: Mathias,Efternamn: Degrander, E-postmathias@intelligentbrands.se,Telefonnummer: +46706552708"
        }
    ]
}
@Pappamats once your done with changes letme know, how it goes for you.
p
What changes do you mean? I dont see any new suggestion?
s
@Pappamats your were pass an extra
{}
brackets because of my mistake above. so please use this format https://discord.com/channels/1211482211119796234/1347236121393893478/1347265760711540776
2 Views