🤖 OpenRouter 免费模型中心

免费模型
更新于

🔍 筛选模型

📋 免费模型列表(按上下文长度排序)

模型 ID名称能力上下文
加载中…

🔑 OpenRouter API Key 配置

OpenRouter 的 :free 模型仍需要一个免费 API Key(点此获取)。 配置后本服务的代理接口即可直接使用;也可以在请求时通过 Authorization 头传入。

🔌 在 WorkBuddy 中接入

  1. 打开 WorkBuddy「设置 → 模型服务」,添加自定义 OpenAI 兼容提供商。
  2. Base URL 填:http://localhost:3789/v1
  3. API Key 填任意值或上方保存的 OpenRouter Key。
  4. 模型列表会自动拉取本站同步的免费模型(接口 GET /v1/models),对话走 POST /v1/chat/completions,支持流式输出。
curl http://localhost:3789/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-or-v1-你的key" \
  -d '{"model":"deepseek/deepseek-chat-v3.1:free","messages":[{"role":"user","content":"你好"}],"stream":true}'