OpenAI's most capable model yet. One model that replaces the entire GPT-5.3-Codex line.
Amplifier supports the core capabilities below, including the full 1.05M context window with reliability streaming. Computer use and tool search are future integration targets.
Zero configuration changes. Pull latest and everything below is already working.
Pick a strategy. The system handles model selection, reasoning levels, and fallback order.
| Role | Model | Reasoning |
|---|---|---|
| General chat | gpt-5.4 | none |
| Coding | gpt-5.4 | none |
| Security audit | gpt-5.4 | high |
| Architecture | gpt-5.4-pro | high |
| Critique | gpt-5.4 | xhigh |
| Research | gpt-5.4-pro | high |
| Creative | gpt-5.4 | none |
| Fast tasks | gpt-5-mini | — |
| Role | Model | Reasoning |
|---|---|---|
| General chat | gpt-5.4 | low |
| Coding | gpt-5.4 | medium |
| Security audit | gpt-5.4 | high |
| Architecture | gpt-5.4-pro | high |
| Critique | gpt-5.4-pro | xhigh |
| Research | gpt-5.4-pro | high |
| Creative | gpt-5.4-pro | low |
| Fast tasks | gpt-5-mini | — |
GPT-5.4 supports five reasoning levels. The right level is chosen automatically per task.
Key insight: GPT-5.4 defaults to none — you must opt in to reasoning. This is the opposite of GPT-5.2's behavior. Amplifier's routing matrices handle this automatically, so you always get the right reasoning level for the task.
The routing matrix tries providers in priority order. GPT-5.4 slots in with correct capabilities.
Silent reasoning token loss — discovered during real-device testing. 70 orphaned reasoning references across 4 GPT-5.4 sub-sessions.
The provider checked “does this model reason by default?”
GPT-5.4 answer: No — it defaults to none.
But the right question is “CAN this model reason?”
GPT-5.4 answer: Yes — and when instructed, it produces reasoning tokens that need preservation.
One conceptual change: gate on capability, not behavior.
Check supports_reasoning (can it reason?) instead of default_reasoning_effort (does it reason by default?).
Matches the Anthropic provider's proven pattern. Shipped as hotfix PR #28.
This is why we test on real devices before shipping.
The new ModelCapabilities architecture means the next model drop is easier.
provider-openai #27 + #28 · routing-matrix #1 · provider-azure #14 · provider-copilot #23 · foundation #118 · amplifier #230