为什么选择 Grok 4.3?
Grok 4.3 是 xAI 当前的旗舰文本模型,主打实时性与 agentic 能力。
- 100 万 token 上下文:整本书、超长代码库一次喂入。
- 实时接入 X 数据:掌握全球此刻正在发生的事,时效性远超训练截止式模型。
- 强 agentic 工具调用:针对 Colossus 超算集群深度优化。
- 原生读图:支持图像输入理解。
现在可在 Cloudflare(平台直接计费、免额外 Key、每日免费额度)与 Vercel(每月 $5 免 Key 额度)上免费调用。
Call Grok 4.3 free on Cloudflare — no extra key, platform-billed within the daily free allowance.
Grok 4.3 是 xAI 当前的旗舰文本模型,主打实时性与 agentic 能力。
现在可在 Cloudflare(平台直接计费、免额外 Key、每日免费额度)与 Vercel(每月 $5 免 Key 额度)上免费调用。
Grok 由你的 Cloudflare 账户直接计费,无需任何额外的 auth / env / API Key(Workers AI 绑定 env.AI.run),落在每日免费额度(Neurons)内即 0 成本。Cloudflare Workers AI 为免费账户提供每天约 10,000 Neurons 的免费额度,足够日常上百次文本调用。
外部 REST 调用需用你的 Cloudflare API Token($CF_API_TOKEN),仍是你自己的 Cloudflare 账户,不需要 xAI Key。
curl https://api.cloudflare.com/client/v4/accounts/$CF_ACCOUNT_ID/ai/run/xai/grok-4.3 \
-H "Authorization: Bearer $CF_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"messages":[{"role":"user","content":"Explain black holes in one sentence."}]}'// Cloudflare Worker: no extra key/env; Grok is billed directly by Cloudflare
export default {
async fetch(request, env) {
const res = await env.AI.run('xai/grok-4.3', {
messages: [{ role: 'user', content: 'Explain black holes in one sentence.' }],
});
return Response.json(res);
},
};