Yandex's compact 8B parameter language model trained on 15T tokens of primarily Russian and English text. Features 32K context window with strong performance on web, code, and mathematics tasks. Open-weight release.
32K tokens
1
Kullanılabilir
En ucuz
Yandex Cloud
$0.60/1M tokens
Yandex Cloud
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.20Çıkış: $0.40 | 100 RPM / 200K TPM | ru-central-1 | Sağlıklı | 0ms |
Bu modeli Yandex Cloud üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yandex-cloud.com/v1",
apiKey: process.env.YANDEX_CLOUD_API_KEY,
});
const response = await client.chat.completions.create({
model: "yandexgpt-lite/latest",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Yandex Cloud API kullanılıyor · OpenAI uyumlu SDK