xAI's latest model with real-time information access, strong reasoning capabilities, and competitive performance on coding and analysis tasks. Features improved tool use and multimodal understanding.
256K tokens
1
Kullanılabilir
En ucuz
xAI
$40.00/1M tokens
xAI
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ş: $10.00Çıkış: $30.00 | 300 RPM / 500K TPM | us-east-1global | Sağlıklı | 0ms |
Bu modeli xAI üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.xai.com/v1",
apiKey: process.env.XAI_API_KEY,
});
const response = await client.chat.completions.create({
model: "grok-4",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);xAI API kullanılıyor · OpenAI uyumlu SDK