it's free*.ai

Kilo Code

Kilo Code ist ein Cline-Fork, aber das Ding auf dieser Seite ist das Gateway dahinter: api.kilo.ai/api/gateway, OpenAI-kompatibel, ein Key, Hunderte Modelle — aktuell 19 davon mit :free markiert: Nemotron, Laguna, MiniMax, Ling.

Kilo Code ist ein Cline-Fork, aber das Ding auf dieser Seite ist das Gateway dahinter: api.kilo.ai/api/gateway, OpenAI-kompatibel, ein Key, Hunderte Modelle — aktuell 19 davon mit :free markiert: Nemotron, Laguna, MiniMax, Ling.

Kostenlose :free-Modelle antworten ohne Key — keine E-Mail, kein Konto. Anonymer Verkehr: 200 Anfragen pro Stunde je IP. NVIDIAs Gratis-Endpunkte auf dem Gateway sind nur für Tests — keine persönlichen Daten. Ein Kilo-Konto ist erst für bezahlte Modelle oder den eigenen Upstream-Key nötig.

Kostenlose Modelle
19
Max. Kontext
1M
Gratis-Tarif
200 Anfragen/Stunde
Anforderung
Nichts — kein Konto

Endpunkt

Basis-URLhttps://api.kilo.ai/api/gateway
UmgebungsvariableKILO_API_KEY
Ratengrenze200 requests per hour per IP

Codebeispiele

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)

Wissenswert

Modelle, die Sie gratis bekommen20