返回模型列表

Grok 4.1 Fast Reasoning

xaixai/grok-4-1-fast-reasoning

供应商自营与 TheRouter 服务形态的差异

供应商自己运营时

xAI 于 2026 年 5 月 15 日退役上游 grok-4-1-fast-reasoning 标识并将其重定向到 grok-4.3;厂商未将其作为当前独立模型卡展示。

在 TheRouter 上

TheRouter 仍通过 OpenAI 兼容 chat 路由暴露已上架的 xai/grok-4-1-fast-reasoning 模型 ID,并使用 TheRouter 目录价格与 200 万上下文配置;客户应把它视为兼容性路由,并在迁移前验证。

API 使用指南

推理 Chat 调用

使用 OpenAI 兼容 chat completions 端点和 TheRouter 模型 ID。此示例适合兼容性测试;新项目优先考虑后继模型。

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "xai/grok-4-1-fast-reasoning",
    "messages": [
      {"role": "system", "content": "Reason carefully and flag uncertainty."},
      {"role": "user", "content": "Summarize the migration risks in this plan."}
    ],
    "reasoning": {"effort": "medium"}
  }'

推理 + 工具调用

该模型行支持 tools 与 tool_choice。请使用精简 schema,让遗留兼容性测试衡量路由本身,而不是 schema 膨胀。

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "xai/grok-4-1-fast-reasoning",
    "messages": [{"role": "user", "content": "Check order ord_123 and decide whether to escalate."}],
    "tools": [{"type": "function", "function": {"name": "get_order_status", "description": "Return order status by id", "parameters": {"type": "object", "properties": {"order_id": {"type": "string"}}, "required": ["order_id"]}}}],
    "tool_choice": "auto",
    "reasoning": {"effort": "low"}
  }'
事实档案 — 本页每条断言可在此回溯来源
来源URL采集于
TheRouter 模型 ID——已核实
上游标识状态docs.x.ai ↗2026-08-08已核实
上下文窗口——已核实
输入模态——已核实
输出模态——已核实
TheRouter 定价——已核实
Reasoning 参数docs.x.ai ↗2026-08-08已核实
结构化输出——已核实
训练数据截止——未知
许可——已核实
Exact retired slug benchmarksdocs.x.ai ↗2026-08-08未知
Successor benchmark guidancedocs.x.ai ↗2026-08-08未知
TheRouter route validationdocs.x.ai ↗2026-08-08未知
xAI 退役 Grok 4.1 fast 标识并重定向到 Grok 4.3docs.x.ai ↗2026-08-08已核实
xai/grok-4-1-fast-reasoning 和 Grok 4.3 是同一个模型吗?docs.x.ai ↗2026-08-08待核实
新的生产集成应该使用这个模型吗?docs.x.ai ↗2026-08-08待核实
为什么此页没有列出精确基准分?docs.x.ai ↗2026-08-08待核实
帮助与联系