GPT-5.4 Mini/Nano: The Three-Tier Inference Revolution Is Here — But Ship With Your Own Eval
The Pricing Earthquake
Eight independent sources covered GPT-5.4 mini and nano this week, and the consensus is clear: the bottom of the inference stack just got dramatically cheaper. Nano lands at $0.20/M input tokens and $1.25/M output — API-only, purpose-built for classification, extraction, and ranking. Mini arrives at $0.75/M input, $4.50/M output, with a 400K context window, and scores 54.38% on SWE-bench Pro (up from GPT-5 mini's 45.69%, a 19% relative improvement).
At nano pricing, you can run 5 million classifications for $1. That shifts the break-even for maintaining custom fine-tuned BERT or logistic regression classifiers — when you factor in training compute, labeling, infrastructure, and retraining cadence, the total cost of ownership for self-hosted models is suddenly harder to justify below millions of daily inferences.
Where Sources Agree — and Disagree
All eight sources agree on the pricing and strategic positioning. The divergence is on whether these models are actually good enough. One source reports mini scored "relatively low" on BullshitBench — a benchmark testing resistance to false premises and jargon. Another flags a 24.5% Pass@1 on APEX-Agents for agentic tasks. A third source claims OpenAI hiked prices 4x versus predecessors, directly contradicting the "cheaper inference" narrative — the models are cheaper than GPT-5.4 full, but may be more expensive than the GPT-5 mini/nano they replace.
Zero sources published multi-benchmark quality comparisons, latency methodology, or ablation studies. "Outperforms predecessors" without evaluation harnesses is marketing, not science.
The Three-Tier Routing Architecture
The practical architecture is now obvious: nano for high-volume extraction and classification, mini for coding/reasoning/tool-use, full GPT-5.4 for frontier tasks. Even a rule-based router (task type → model tier) can cut inference costs 30-50%. A learned router that classifies query complexity is the next step. Multiple sources independently converge on this pattern — it's the new default for any pipeline running more than 10K daily inference calls.
But there's a trap: small models degrade unpredictably on distribution tails. Nano may handle 95% of your classification traffic beautifully and silently fail on the 5% that matters most. Set up automated quality monitoring with distribution shift detection on nano outputs from day one. Stratify your evaluation by input difficulty — aggregate accuracy will mask the failures that cost you.
The Fine-Tuning Calculus Shifts Again
Every API pricing drop changes the build-vs-buy math. If your fine-tuned BERT requires GPU hosting at $0.50-2/hr, the break-even volume against nano at $0.20/M is surprisingly high. Run the numbers for your specific volume, latency SLA, and accuracy requirements before your next model retraining cycle. The comparison isn't nano's accuracy vs. your model's accuracy — it's nano's accuracy × $0.20/M vs. your model's accuracy × (hosting + training + labeling + maintenance).
What to do
Benchmark GPT-5.4 nano against your current classification/extraction pipeline on 500+ labeled production samples, stratified by difficulty
Implement a task-complexity router dispatching to nano/mini/full tiers, starting with rule-based classification
Add adversarial and false-premise test cases to your model evaluation harness before deploying mini in any pipeline
Calculate your fine-tuned model TCO (training + labeling + hosting + retraining) and compare against nano API costs at current volume