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
可用
价格最低
Yandex Cloud
$0.60/1M tokens
Yandex Cloud
按每百万输入与输出 token 的总成本排序。选择一行可查看提供商详情。
| 提供商 | 价格(每百万) | 速率限制 | 区域 | 状态 | 延迟 |
|---|---|---|---|---|---|
输入: $0.20输出: $0.40 | 100 RPM / 200K TPM | ru-central-1 | 正常 | 0ms |
通过 Yandex Cloud 使用此模型,兼容 OpenAI SDK。
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 · 兼容 OpenAI SDK