OpenAI's frontier reasoning model combining advances in coding, reasoning, and agentic workflows. Features 1.1M token context window and strong performance on complex multi-step problems.
1.1M tokens
2
Kullanılabilir
En ucuz
Azure AI
$12.50/1M tokens
Azure AI, OpenAI
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ş: $2.50Çıkış: $10.00 | 500 RPM / 800K TPM | us-east-1us-west-2eu-west-1 | Sağlıklı | 0ms | |
Giriş: $2.50Çıkış: $15.00 | 500 RPM / 500K TPM | us-east-1eu-west-1 | Sağlıklı | 0ms |
Bu modeli Azure AI üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.azure-ai.com/v1",
apiKey: process.env.AZURE_AI_API_KEY,
});
const response = await client.chat.completions.create({
model: "gpt-5.4",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Azure AI API kullanılıyor · OpenAI uyumlu SDK