Kilo Code
Kilo Code 是 Cline 的分支,但这个页面真正的主角是它背后的网关:api.kilo.ai/api/gateway,OpenAI 兼容,一个密钥,数百个模型,当前 19 个带 :free 标签 —— Nemotron、Laguna、MiniMax、Ling。
Kilo Code 是 Cline 的分支,但这个页面真正的主角是它背后的网关:api.kilo.ai/api/gateway,OpenAI 兼容,一个密钥,数百个模型,当前 19 个带 :free 标签 —— Nemotron、Laguna、MiniMax、Ling。
免费的 :free 模型无需密钥即可应答 —— 不要邮箱、不要账号。匿名流量为每 IP 每小时 200 次。网关上 NVIDIA 的免费端点仅限试用 —— 不要发送个人数据。只有付费模型或带自己的上游密钥才需要 Kilo 账号。
- 免费模型
- 19
- 最大上下文
- 1M
- 免费额度
- 每小时 200 次请求
- 注册要求
- 什么都不用 —— 无账号
端点
接口地址
https://api.kilo.ai/api/gateway环境变量
KILO_API_KEY速率限制
200 requests per hour per IP- OpenAI 兼容
- 文本
- 图像
- 音频
- 视频
- 代码
- 推理
代码示例
npm install openaiimport OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://api.kilo.ai/api/gateway',
apiKey: process.env.KILO_API_KEY
})
const response = await client.chat.completions.create({
model: 'nvidia/nemotron-3-ultra-550b-a55b:free',
messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})
console.log(response.choices[0].message.content)pip install openaiimport os
from openai import OpenAI
client = OpenAI(
base_url="https://api.kilo.ai/api/gateway",
api_key=os.environ["KILO_API_KEY"],
)
response = client.chat.completions.create(
model="nvidia/nemotron-3-ultra-550b-a55b:free",
messages=[{"role": "user", "content": "Explain closures in one paragraph."}],
)
print(response.choices[0].message.content)curl https://api.kilo.ai/api/gateway/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $KILO_API_KEY" \
-d '{
"model": "nvidia/nemotron-3-ultra-550b-a55b:free",
"messages": [{"role": "user", "content": "Explain closures in one paragraph."}]
}'值得注意
- 免费的 :free 模型无需密钥即可应答。匿名流量为每 IP 每小时 200 次。
- 只有付费模型,或要带自己的上游密钥时,才需要 Kilo 账号。
你能免费使用的模型20
- Auto Free
kilo-auto/free - StepFun Step 3.7 Flash
stepfun/step-3.7-flash:free - Laguna S 2.1
poolside/laguna-s-2.1:free - MiniMax M3
minimax/minimax-m3:free - Ling 3.0 Flash Fin
inclusionai/ling-3.0-flash-fin:free - Dots 3 Note Preview
dots-studio/dots-3-note-preview:free - LFM 2.5 2.6B
liquid/lfm-2.5-2.6b:free - Nemotron 3.5 Lightning
nvidia/nemotron-3.5-lightning:free - Inkling Small
thinkingmachines/inkling-small:free - Inkling
thinkingmachines/inkling:free - Laguna XS 2.1
poolside/laguna-xs-2.1:free - North Mini Code
cohere/north-mini-code:free - Nemotron 3.5 Content Safety
nvidia/nemotron-3.5-content-safety:free - Nemotron 3 Ultra
nvidia/nemotron-3-ultra-550b-a55b:free - Nemotron 3 Nano Omni
nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free - Lyria 3 Pro Preview
google/lyria-3-pro-preview - Lyria 3 Clip Preview
google/lyria-3-clip-preview - MiniMax M2.7
minimax/minimax-m2.7:free - Nemotron 3 Super
nvidia/nemotron-3-super-120b-a12b:free - OpenRouter Free Models Router
openrouter/free