跳到主要內容
黯羽輕揚每天積累一點點

Tool Calling For AI Agents 是怎麼工作的? 我用一條真實鏈路把它講清楚

免費2026-07-03#AI#AI

Tool calling 讓 AI Agent 能調用函數、執行 API、操作外部系統。 本文通過一條真實鏈路——從用戶問題到工具執行——拆解機制、識別常見失敗點,並給出可直接運行的實戰步驟。

一條真實問題引發的調用鏈

假設你正在構建一個天氣查詢 Agent。使用者問:“北京現在多少度?”Agent 要想回答,必須經歷:理解意圖 → 匹配工具定義 → 填充參數 → 執行函數 → 返回結果 → 組織回覆。這個過程就是 tool calling

# 工具定义:一个简单的天气函数
def get_weather(city: str, date: str = "today") -> str:
    # 实际调用天气 API
    return f"{city} 在 {date} 的天气是晴,25°C"

# 工具描述(供模型选用)
TOOLS = [
    {
        "type": "function",
        "function": {
            "name": "get_weather",
            "description": "获取指定城市的天气信息",
            "parameters": {
                "type": "object",
                "properties": {
                    "city": {"type": "string", "description": "城市名"},
                    "date": {"type": "string", "description": "日期,格式 YYYY-MM-DD"}
                },
                "required": ["city"]
            }
        }
    }
]

# Agent 调用 LLM 时传入 tools
response = openai.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "北京现在多少度?"}],
    tools=TOOLS,
    tool_choice="auto"
)

# 模型返回 tool_call
tool_call = response.choices[0].message.tool_calls[0]
# tool_call.function.name = "get_weather"
# tool_call.function.arguments = '{"city":"北京"}'

# 你执行函数并返回结果
result = get_weather("北京")
# 将结果作为 tool 消息回传给模型

为什么 tool calling 是 Agent 的“手指”

没有 tool calling,AI 只能生成文字建议,无法真正操作任何系统。有了它,Agent 可以:

  • 查询数据库search_customer(customer_id)
  • 触发工作流create_jira_ticket(summary, priority)
  • 控制设备turn_off_light(room="living_room")

每个工具都是 Agent 的一只手。tool calling 就是大脑(LLM)指挥手的过程。

終端窗口顯示 agent 循環執行 tool call 的日誌,包括參數解析、調用報錯和重試資訊,旁邊是代碼編輯器

最容易失败的地方

1. 参数解析错误

模型可能生成错误的 JSON arguments——比如字段名拼写、类型不对、缺少 required 参数。

例子

  • 工具需要 city,模型给了 location
  • date 格式不是 YYYY-MM-DD 而是 "明天"

应对:在工具描述里写清约束,解析时增加容错逻辑。

import json

def safe_parse_tool_call(tool_call):
    try:
        args = json.loads(tool_call.function.arguments)
    except json.JSONDecodeError:
        # 模型給出的 arguments 不合法
        return None, "參數解析失敗"
    return args, None

2. 幻觉调用

模型在不确定时,可能虚构参数调用工具。比如用户没提到城市,模型却调用 get_weather("北京")

应对:在 tool_choice 设为 "auto",让模型自由决定;如果工具是 destructive 的(如删除、修改),必须加入人为确认步骤。

3. 并发与冲突

Agent 可能同时调用多个工具(例如 parallel_tool_calls)。如果两个工具修改同一个资源,可能产生冲突。

应对:为每个工具设计幂等性或加锁机制。

筆記本上寫有 tool calling 與手動解析方案的對比筆記,包括優缺點和決策樹,桌上放著兩台顯示器

真实场景:电商客服 Agent

场景:用户要求“帮我查一下订单 12345 的状态,如果已发货就提醒我签收,否则帮我取消订单”。

Agent 需要:

  1. 调用 get_order_status("12345")
  2. 根据结果调用 send_reminder(user_id)cancel_order("12345")

如果 get_order_status 返回 "delivered",Agent 调用 send_reminder。如果返回 "processing",则调用 cancel_order(但取消订单需要权限——此处容易失败:模型可能直接执行,你需要加上“取消前必须用户二次确认”的 guardrail)。

失败点:模型可能跳过确认直接取消订单。解决方案:将确认步骤建模为另一个工具 confirm_cancellation(order_id),要求 Agent 先调用确认工具,再执行取消。

替换方案:没有 tool calling 时怎么办

如果你的 API 或框架不支持 tool calling,或模型不支持 function calling,你可以:

  1. 用结构化输出模拟:要求模型输出 JSON 格式并且指定字段表示动作。例如:{"action":"get_weather", "args":{"city":"北京"}}
  2. 用文本解析:手动解析模型输出中的特定指令,例如“调用天气函数:城市=北京”。这种方式容易出错,但适合简单场景。

不过,标准 tool calling 让开发者只需定义工具描述,模型自动匹配,远比手动解析可靠。

落地第一步

  1. 选择一个支持 tool calling 的框架:OpenAI API、Claude API、LangChain、Vercel AI SDK 都支持。
  2. 定义你的第一个工具:从只读、非破坏性的开始,比如 search_knowledge_base
  3. 寫一個循環
    • 發送使用者訊息 工具定義
    • 處理 model 返回的 tool_call
    • 執行工具,返回結果
    • 將結果作為新訊息傳給模型,模型生成最終回覆
  4. 加入錯誤處理:解析失敗、超時、工具返回異常時,讓模型根據錯誤資訊調整參數或生成使用者能理解的提示。
# 一个简化版 loop
def agent_loop(user_message):
    messages = [{"role": "user", "content": user_message}]
    while True:
        response = client.chat.completions.create(
            model="gpt-4o", messages=messages, tools=TOOLS, tool_choice="auto"
        )
        msg = response.choices[0].message
        if not msg.tool_calls:
            return msg.content
        messages.append(msg)
        for tool_call in msg.tool_calls:
            name = tool_call.function.name
            args = json.loads(tool_call.function.arguments)
            # 动态调用
            result = tools_map[name](**args)
            messages.append({
                "role": "tool",
                "tool_call_id": tool_call.id,
                "content": str(result)
            })

總結

Tool calling 是 Agent 從“能說”到“能做”的關鍵跨越。理解它的機制、預判失敗場景、合理設計 guardrail,你的 Agent 才能真正穩定干活。如果你已經上手會遇到更多工程細節——參數深度校驗、多個工具的編排、上下文管理——這些都是系統化學習的內容。

下一步可以探索更複雜的 multi-step tool calling 和多 Agent 協調,確保你構建的 Agent 在真實場景下值得依賴。

評論

暫無評論,快來發表你的看法吧

提交評論