01.AI's flagship large language model with enhanced Mixture-of-Experts architecture. Ranked 6th on Chatbot Arena with particularly strong results in Chinese, Math, Coding, and Hard Prompts categories. Features advanced expert segmentation and optimized KV-caching.
131K tokens
1
Доступна
Самый доступный
01.AI
$1.98/1M tokens
01.AI
Сортировка по общей стоимости входных и выходных токенов за 1 млн. Выберите строку, чтобы открыть страницу провайдера.
| Провайдер | Цена за 1 млн | Лимиты | Регионы | Состояние | Задержка |
|---|---|---|---|---|---|
Вход: $0.99Выход: $0.99 | 200 RPM / 800K TPM | us-east-1global | Работает | 0ms |
Используйте эту модель через 01.AI с OpenAI-совместимым SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.01-ai.com/v1",
apiKey: process.env.01_AI_API_KEY,
});
const response = await client.chat.completions.create({
model: "yi-lightning",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);API 01.AI · OpenAI-совместимый SDK