Back to ModelsBack to Models
GPT-5.4 (xhigh)
OpenAI57/ 57
Intelligence Score
Intelligence
57
#2 of 210 (top 1%)
Speed
74 tok/s
#88 of 148
Price
$5.63
per M tokens
#138 cheapest of 144
Context Window
1M
tokens
Latency: 195ms (#148)
Score Breakdown
Quality Score100%
Speed Score12%
Cost Score44%
Similar Models
Use This Model
Claude Code
claude --model gpt-5-4API (cURL)
curl https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-5-4",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openai } from "@ai-sdk/openai";
const { text } = await generateText({
model: openai("gpt-5-4"),
prompt: "Hello",
});