GPT-5 Nano
ActiveGPT-5-Nano is the smallest and fastest variant in the GPT-5 system, optimized for developer tools, rapid interactions, and ultra-low latency environments. While limited in reasoning depth compared to its larger...
Overview
GPT-5-Nano is the smallest and fastest variant in the GPT-5 system, optimized for developer tools, rapid interactions, and ultra-low latency environments. While limited in reasoning depth compared to its larger...
History
GPT-5 Nano became available via the OpenAI API on 2025-08-07.
Training & availability
Training data has a knowledge cutoff of 2024-05-31 — information about events after that date is unlikely to appear in the model's responses. OpenAI has not released the underlying model weights — access is via their hosted API only.
Capabilities
-
Context window: 272K tokens.
-
Max output: 128K tokens.
-
Input modalities: text, image, file.
Recommended for: vision, agentic, long-context, cheap.
Limitations
- The knowledge cutoff is 22 months old — this model will not know about recent events, releases, or API changes.
Pricing
- Input: $0.0500 per 1M tokens
- Output: $0.4000 per 1M tokens
Use the cost calculator above to estimate monthly spend for your workload.
Quick start
Minimal example using the openai API. Copy, paste, replace the key.
from openai import OpenAI
client = OpenAI(api_key="sk-...")
resp = client.chat.completions.create(
model="gpt-5-nano",
messages=[{"role": "user", "content": "Explain quantum computing in one sentence."}],
)
print(resp.choices[0].message.content)Cost calculator
Estimate your monthly bill. Presets are typical workload sizes.
Integrations & tooling support
- Tool calling
- Supported
- Structured outputs
- Not supported
Price vs quality
Priced low — good for high-volume tasks. Quality tier pending more benchmark coverage.
- Quality percentile
- —
- Effective price
- $0.313/1M
- Pricing breakdown
- $0.05/1M in
$0.4/1M out
Community ratings
Rate GPT-5 Nano
Sign in to rate and review.
Comments
Sign in to leave a comment.