{
    "basic": {
        "name": "query_order",
        "description": "当客户询问“查询订单”、“查看订单状态”或“获取订单详情”时使用此工具。从对话中提取数字类型的 order_id（例如“订单 3”→ order_id=3）。",
        "method": "GET",
        "url": "https://jsonplaceholder.typicode.com/posts/{order_id}",
        "remark": "示例 - 根据 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": [
        {
            "parameter": "order_id",
            "data_type": "Integer",
            "value_logic": "llm",
            "description": "从客户请求中提取订单 ID，例如“订单 3”→ 3"
        }
    ],
    "headers": [
        {
            "parameter": "Accept",
            "value": "application/json"
        }
    ],
    "query_params": [],
    "body_description": "",
    "body_params": []
}