工具
Function Calling
定义 model 可以在 conversation 中调用的 custom tool。Model 发出调用请求,你在本地执行并返回结果。这样可以与 database、API 和任意外部系统集成。
使用名称、说明和 parameter JSON schema 定义 tool
在请求中包含 tool
Model 返回
tool_call,表示需要外部数据在本地执行 function 并返回结果
Model 使用结果继续执行
快速入门
curl https://api.x.ai/v1/responses \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $XAI_API_KEY" \
-d '{
"model": "grok-4.5",
"input": [
{"role": "user", "content": "What is the temperature in San Francisco?"}
],
"tools": [
{
"type": "function",
"name": "get_temperature",
"description": "Get current temperature for a location",
"parameters": {
"type": "object",
"properties": {
"location": {"type": "string", "description": "City name"},
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"], "default": "fahrenheit"}
},
"required": ["location"]
}
}
]
}'使用 Pydantic 定义 Tool
使用 Pydantic model 创建 type-safe parameter schema:
from typing import Literal
from pydantic import BaseModel, Field
from xai_sdk.chat import tool
class TemperatureRequest(BaseModel):
location: str = Field(description="City and state, e.g. San Francisco, CA")
unit: Literal["celsius", "fahrenheit"] = Field("fahrenheit", description="Temperature unit")
class CeilingRequest(BaseModel):
location: str = Field(description="City and state, e.g. San Francisco, CA")
# Generate JSON schema from Pydantic models
tools = [
tool(
name="get_temperature",
description="Get current temperature for a location",
parameters=TemperatureRequest.model_json_schema(),
),
tool(
name="get_ceiling",
description="Get current cloud ceiling for a location",
parameters=CeilingRequest.model_json_schema(),
),
]处理 Tool Call
当 model 要使用 tool 时,执行 function 并返回结果:
import json
def get_temperature(location: str, unit: str = "fahrenheit") -> dict:
# In production, call a real weather API
temp = 59 if unit == "fahrenheit" else 15
return {"location": location, "temperature": temp, "unit": unit}
def get_ceiling(location: str) -> dict:
return {"location": location, "ceiling": 15000, "unit": "ft"}
tools_map = {
"get_temperature": get_temperature,
"get_ceiling": get_ceiling,
}
chat.append(user("What's the weather in Denver?"))
response = chat.sample()
# Process tool calls
if response.tool_calls:
chat.append(response)
for tool_call in response.tool_calls:
name = tool_call.function.name
args = json.loads(tool_call.function.arguments)
result = tools_map[name](**args)
chat.append(tool_result(json.dumps(result)))
response = chat.sample()
print(response.content)与 Built-in Tool 结合
Function calling 可与 built-in agentic tool 配合使用。Model 可以先使用 web search,再调用 custom function:
from xai_sdk.chat import tool
from xai_sdk.tools import web_search, x_search
tools = [
web_search(), # Built-in: runs on xAI servers
x_search(), # Built-in: runs on xAI servers
tool( # Custom: runs on your side
name="save_to_database",
description="Save research results to the database",
parameters={
"type": "object",
"properties": {
"data": {"type": "string", "description": "Data to save"}
},
"required": ["data"]
},
),
]
chat = client.chat.create(
model="grok-4.5",
tools=tools,
)混合使用 tool 时:
Built-in tool 在 xAI server 上自动执行
Custom tool 会暂停执行并返回给你处理
完整的 tool loop 示例请参阅 高级用法。
Tool Choice
控制 model 何时使用 tool:
| 值 | 行为 |
|---|---|
"auto" | Model 决定是否调用 tool(默认) |
"required" | Model 必须调用至少一个 tool |
"none" | 禁用 tool calling |
{"type": "function", "function": {"name": "..."}} | 强制使用指定 tool |
并行 Function Calling
默认启用 parallel function calling,model 可以在单个 response 中请求多个 tool call。继续之前请处理全部调用:
# response.tool_calls may contain multiple calls
for tool_call in response.tool_calls:
result = tools_map[tool_call.function.name](**json.loads(tool_call.function.arguments))
# Append each result...在请求中设置 parallel_tool_calls: false 可禁用。
Tool Schema Reference
| 字段 | 必需 | 说明 |
|---|---|---|
name | 是 | 唯一 identifier(每个请求最多 200 个 tool) |
description | 是 | Tool 的作用,帮助 model 决定何时使用 |
parameters | 是 | 定义 function input 的 JSON Schema |
Parameter Schema
{
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name"
},
"unit": {
"type": "string",
"enum": ["celsius", "fahrenheit"],
"default": "celsius"
}
},
"required": ["location"]
}以下 schema 的 root:parameters,必须是 object("type": "object");请将其他类型嵌套在 properties 中。Root anyOf 或 oneOf 也可以使用,但每个 branch 本身都必须是 object,从而定义接受多个 object variant 之一的 tool:
{
"oneOf": [
{
"type": "object",
"properties": {
"kind": { "const": "email" },
"address": { "type": "string" }
},
"required": ["kind", "address"]
},
{
"type": "object",
"properties": {
"kind": { "const": "sms" },
"phone": { "type": "string" }
},
"required": ["kind", "phone"]
}
]
}完整 Vercel AI SDK 示例
Vercel AI SDK 会自动处理 tool 定义、执行和 request/response loop:
import { xai } from '@ai-sdk/xai';
import { streamText, tool, stepCountIs } from 'ai';
import { z } from 'zod';
const result = streamText({
model: xai.responses('grok-4.5'),
tools: {
getCurrentTemperature: tool({
description: 'Get current temperature for a location',
inputSchema: z.object({
location: z.string().describe('City and state, e.g. San Francisco, CA'),
unit: z.enum(['celsius', 'fahrenheit']).default('fahrenheit'),
}),
execute: async ({ location, unit }) => ({
location,
temperature: unit === 'fahrenheit' ? 59 : 15,
unit,
}),
}),
getCurrentCeiling: tool({
description: 'Get current cloud ceiling for a location',
inputSchema: z.object({
location: z.string().describe('City and state'),
}),
execute: async ({ location }) => ({
location,
ceiling: 15000,
ceiling_type: 'broken',
unit: 'ft',
}),
}),
},
stopWhen: stepCountIs(5),
prompt: "What's the temperature and cloud ceiling in San Francisco?",
});
for await (const chunk of result.fullStream) {
switch (chunk.type) {
case 'text-delta':
process.stdout.write(chunk.text);
break;
case 'tool-call':
console.log(`Tool call: ${chunk.toolName}`, chunk.input);
break;
case 'tool-result':
console.log(`Tool result: ${chunk.toolName}`, chunk.output);
break;
}
}