rob
02/18/2025, 4:21 AM{
"results": [
{
"result": {
"order_status": "shipped",
"carrier": "Fedex",
"last_update": "2025-02-17 12:00:00",
"tracking_number": "1234567890",
"customer_name": "John Doe",
"estimated_delivery": "2025-02-24",
"shipping_address": "123 Main St, Anytown, USA 12345",
"order_id": "XXXXXXX"
},
"tool_call_id": "2c52f6c1-8238-4e78-a98f-46666183e196"
}
]
}
The following block never seems to use this information. It will tell me that the order date is Oct 23 2023 or tomorrow. It will tell me that it doesn't know the carrier.
In the call logs, I can see that the information is successfully retrieved.
{
"name": "tool_1",
"role": "tool_call_result",
"time": 1739852177820,
"result": {
"carrier": "Fedex",
"order_id": "XXXXXXX",
"last_update": "2025-02-17 12:00:00",
"order_status": "shipped",
"customer_name": "John Doe",
"tracking_number": "1234567890",
"shipping_address": "123 Main St, Anytown, USA 12345",
"estimated_delivery": "2025-02-24"
},
"toolCallId": "7a05b124-6a1f-4332-912f-ccfc01ad8aab",
"secondsFromStart": 13.673
}
Example call id:
c7cad41a-935e-4084-9ed3-513286c15193
Response should have included:
The 24th of Feb
Response I actually received:
TomorrowAditya
02/18/2025, 8:30 PM