Skip to main content

GPT-5.4 Nano

Approved Data Classifications

Description

GPT-5.4 Nano is OpenAI’s lightest GPT-5.4 model for ultra-low-latency and cost-sensitive workloads. It supports text and image input, outputs text, and keeps a 400,000-token context window while reducing price for high-volume automations, routing layers, classification, extraction, and lightweight agent tasks. OpenAI lists pricing at $0.20 per 1M input tokens, $1.25 per 1M output tokens, and $0.02 per 1M cached input tokens.

Capabilities

ModelKnowledge CutoffInputOutputContext LengthCost (per 1 million tokens)
gpt-5.4-nanoAug 31 2025Text, ImageText400,000$0.20/1M input
$1.25/1M output
info
  • 1M represents 1 Million Tokens
  • All prices listed are based on 1 Million Tokens
  • Cached input: $0.02 per 1M tokens

Availability

Cloud Provider

Usage

curl -X POST https://api.ai.it.ufl.edu/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_TOKEN>" \
-d '{
"model": "gpt-5.4-nano",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Write a haiku about an Alligator."
}
]
}'

References

  1. OpenAI - Introducing GPT-5.4 mini and nano
    https://openai.com/index/introducing-gpt-5-4-mini-and-nano/
  2. OpenAI API Docs - GPT-5.4 nano
    https://developers.openai.com/api/docs/models/gpt-5.4-nano
  3. OpenAI API Pricing
    https://developers.openai.com/api/docs/pricing