OpenAI's most capable model designed for complex real-world work including coding, online research, information analysis, and document creation. Features advanced agentic capabilities with tool search and multi-step task execution.
1.0M tokens
1
Kullanılabilir
En ucuz
OpenAI
$60.00/1M tokens
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ş: $12.00Çıkış: $48.00 | 500 RPM / 500K TPM | us-east-1eu-west-1 | Sağlıklı | 0ms |
Bu modeli OpenAI üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.openai.com/v1",
apiKey: process.env.OPENAI_API_KEY,
});
const response = await client.chat.completions.create({
model: "gpt-5.5",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);OpenAI API kullanılıyor · OpenAI uyumlu SDK