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
Kullanılabilir
En ucuz
01.AI
$1.98/1M tokens
01.AI
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.99Çıkış: $0.99 | 200 RPM / 800K TPM | us-east-1global | Sağlıklı | 0ms |
Bu modeli 01.AI üzerinden OpenAI uyumlu bir SDK ile kullanın.
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);01.AI API kullanılıyor · OpenAI uyumlu SDK