Moonshot AI's latest open-source, coding-focused model in the Kimi K2 family, built to complete end-to-end programming tasks reliably over long contexts. A 1-trillion-parameter model that cuts reasoning token usage by roughly 30% versus K2.6 while improving coding and agent performance — +21.8% on Kimi Code Bench v2, +11.0% on Program Bench, and +31.5% on MLS Bench Lite for multi-language support. Released under a Modified MIT License and available via Kimi APIs and Hugging Face.
1.0M tokens
3
Kullanılabilir
En ucuz
Hugging Face Inference
$3.00/1M tokens
Hugging Face Inference, Moonshot AI, OpenRouter
Toplam maliyete göre sıralanır (1M token başına giriş + çıkış). Sağlayıcı ayrıntılarını görmek için bir satır seçin.
| Sağlayıcı | Fiyat (1M başına) | Hız sınırları | Bölgeler | Durum | Gecikme |
|---|---|---|---|---|---|
Giriş: $0.60Çıkış: $2.40 | 300 RPM / 500K TPM | us-east-1eu-west-1 | Sağlıklı | 0ms | |
Giriş: $0.60Çıkış: $2.40 | 200 RPM / 500K TPM | us-east-1 | Sağlıklı | 0ms | |
Giriş: $1.00Çıkış: $3.00 | 200 RPM / 500K TPM | us-east-1global | Sağlıklı | 0ms |
Bu modeli Hugging Face Inference üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.hugging-face.com/v1",
apiKey: process.env.HUGGING_FACE_API_KEY,
});
const response = await client.chat.completions.create({
model: "moonshotai/Kimi-K2.7-Code",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Hugging Face Inference API kullanılıyor · OpenAI uyumlu SDK