it's free*.ai

Kilo Code

Kilo Code は Cline のフォークですが、このページの主役はその背後のゲートウェイです:api.kilo.ai/api/gateway、OpenAI互換、1キーで数百モデル、現在19個が :free タグ付き —— Nemotron、Laguna、MiniMax、Ling。

Kilo Code は Cline のフォークですが、このページの主役はその背後のゲートウェイです:api.kilo.ai/api/gateway、OpenAI互換、1キーで数百モデル、現在19個が :free タグ付き —— Nemotron、Laguna、MiniMax、Ling。

無料の :free モデルはキーなしで応答します —— メールもアカウントも不要。匿名トラフィックはIPごとに毎時200リクエスト。ゲートウェイ上のNVIDIA無料エンドポイントは試用専用で、個人データを送ってはいけません。Kiloアカウントが要るのは、有料モデルを使うときか自分の上流キーを持ち込むときだけです。

無料モデル
19
最大コンテキスト
1M
無料プラン
1時間200リクエスト
条件
不要 — アカウントなし

エンドポイント

ベースURLhttps://api.kilo.ai/api/gateway
環境変数KILO_API_KEY
レート制限200 requests per hour per IP

コード例

npm install openai
import 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)

知っておくべきこと

無料で利用できるモデル20