it's free*.ai

OpenCode Zen

OpenCode Zen 是 OpenCode 团队运营的可选模型网关。用 OpenCode 并不需要它;它是一份他们真正测过、适合当编程助手的模型清单,其中一部分免费。

OpenCode Zen 是 OpenCode 团队运营的可选模型网关。用 OpenCode 并不需要它;它是一份他们真正测过、适合当编程助手的模型清单,其中一部分免费。

登录、复制密钥、调用 opencode.ai/zen/v1。文档写明的免费组是六个 id —— Nemotron Ultra、Lightning、MiMo、Ling Flash、big-pickle、Muse Spark。Zen 上的 DeepSeek V4 和 GLM 5.2 是付费的。免费 id 可能是限时的推广,随时会消失。

免费模型
6
最大上下文
1M
免费额度
6 个免费模型
注册要求
只要邮箱,不要卡

端点

接口地址https://opencode.ai/zen/v1
环境变量OPENCODE_API_KEY

代码示例

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://opencode.ai/zen/v1',
  apiKey: process.env.OPENCODE_API_KEY
})

const response = await client.chat.completions.create({
  model: 'nemotron-3-ultra-free',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

console.log(response.choices[0].message.content)

值得注意

你能免费使用的模型6