Tool calls in blocks
# support
r
Hey, going a bit crazy with this one. I have a tool call in a block. From the webhook logs, I can see that the tool call is completing successfully. Right now I am testing with a static json payload.
Copy code
{
  "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.
Copy code
{
  "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: Tomorrow
a
Hello Rob, The blocks are currently in beta mode, so please anticipate some minor issues. Could you please provide a one-to-two week timeframe for the complete rework of the blocks? The rework will be incorporated into the blocks during that period.