{
    "basic": {
        "name": "get_orders_by_user",
        "description": "Use this tool when customer asks to 'list my orders', 'show my posts', or 'what are my recent requests'. Extract userId from conversation.",
        "method": "GET",
        "url": "https://jsonplaceholder.typicode.com/posts",
        "remark": "Demo - Query orders by user ID"
    },
    "response_settings": {
        "disable_interruptions": false,
        "force_pre_tool_speech": true,
        "execution_mode": "immediate",
        "tool_call_sound": "Typing",
        "sound_behavior": "always_play",
        "response_timeout": 20
    },
    "path_params": [],
     "headers": [
        {
            "parameter": "Accept",
            "value": "application/json"
        }
    ],
    "query_params": [
        {
            "parameter": "userId",
            "required": true,
            "data_type": "Integer",
            "value_logic": "llm",
            "description": "Extract user ID from conversation, e.g., 'my user ID is 1' → 1"
        }
    ],
    "body_description": "",
    "body_params": []
}