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
available
Cheapest
Azure AI
$12.50/1M tokens
Azure AI, OpenAI
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $2.50Out: $10.00 | 500 RPM / 800K TPM | us-east-1us-west-2eu-west-1 | Healthy | 0ms | |
In: $2.50Out: $15.00 | 500 RPM / 500K TPM | us-east-1eu-west-1 | Healthy | 0ms |
Use this model via Azure AI with an OpenAI-compatible SDK.
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);Using Azure AI API • OpenAI-compatible SDK