it's free*.ai

Kilo Code

A Cline fork that ships with free models included.

Kilo Code is a Cline fork, but the thing on this page is the gateway behind it: api.kilo.ai/api/gateway, OpenAI-compatible, one key, hundreds of models, 19 of them tagged :free right now — Nemotron, Laguna, MiniMax, Ling.

Free :free models answer without a key — no email, no account. Anonymous traffic is 200 requests an hour per IP. NVIDIA’s free endpoints on the gateway are trial-use only — no personal data. A Kilo account is only needed for paid models or to bring your own upstream key.

Free models
19
Max context
1M
Free tier
200 requests per hour
Requirement
Nothing — no account

Endpoint

Base URLhttps://api.kilo.ai/api/gateway
Env varKILO_API_KEY
Rate limit200 requests per hour per IP

Code examples

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)

Worth knowing

Models you get for free20