anyone having issues with blocks and tool calls. w...
# general-english
l
anyone having issues with blocks and tool calls. was working, then suddenly, not, and still, not. The problem is that all the tool call names are now 'tool' (minor issue) big issue is that the variables passed is the placeholders from config, not the actual values. '{{ conversation.output.email }}'
Copy code
"message": {
    "timestamp": 1734880604860,
    "type": "tool-calls",
    "tool_calls": [
      {
        "type": "function",
        "function": {
          "name": "tool",
          "parameters": {
            "type": "object",
            "properties": {
              "email": {
                "type": "string"
              },
              "date_of_birth": {
                "type": "string"
              }
            },
            "required": [
              "email",
              "date_of_birth"
            ]
          },
          "arguments": {
            "email": "{{conversation.output.email}}",
            "date_of_birth": "{{start.output.date_of_birth}}"
          }
        },
        "id": "42d3b619-8c5d-4f1d-b486-a358d991fcd1"
2 Views