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요청
- 요구사항
- 아무것도 없음 — 계정 불필요
엔드포인트
기본 URL
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