GPT-5.5
OpenAIProprietaryOpenAI's flagship reasoning model. Five effort tiers with unusually graceful degradation — the safest model to run below max effort.
Index @ Medium
76.6
Context
400K
$/M in · out
$1.25 · $10
Median speed
140 tok/s
Released
Apr 14, 2026
02·Which effort for which task
The sweet spot, per task
Cheapest effort tier that keeps ≥96% of this model's peak quality on the benchmarks behind each task type. Below the floor number, quality is not okay — it just fails quietly.
Everyday writing & Q&A
LowChat, drafting, summaries, general questions.
Code assist
MediumAutocomplete, single functions, small fixes.
Coding agents
HighReal repos, multi-file changes, end-to-end tickets.
⚠ at Minimal: only 76% of peak — avoid
Math & quantitative
HighDerivations, statistics, financial models.
⚠ at Minimal: only 63% of peak — avoid
Hard research problems
HighNovel, frontier, genuinely difficult questions.
⚠ at Minimal: only 72% of peak — avoid
Agents & tool use
HighLong workflows with tools, policies, and state.
03·The effort ladder
Quality and cost, tier by tier
On everyday tasks, Low keeps 96.5% of X-High quality at $0.012 vs $0.27 per task.
Intelligence Index by effort
Cost per typical task by effort
04·Benchmark detail
| Benchmark | Medium | Peak | What it predicts |
|---|---|---|---|
| MMLU-Pro | 87.7 | 89.0 | Everyday Q&A · Drafting emails & docs · Summarizing articles |
| GPQA Diamond | 81.9 | 89.0 | Technical analysis · Root-cause debugging · Scientific writing |
| Humanity's Last Exam | 32.2 | 35.0 | Novel research questions · Frontier problem solving |
| AIME 2025 | 83.4 | 97.0 | Financial modeling · Statistics · Algorithm design |
| SWE-bench Verified | 73.3 | 78.0 | Coding agents · Bug fixing in real repos · Multi-file refactors |
| LiveCodeBench | 79.9 | 85.0 | Writing functions from scratch · Algorithms · Code autocomplete |
| τ²-bench | 79.1 | 86.0 | Tool-using agents · Customer-facing automation · Multi-step workflows |
| IFEval | 92.1 | 93.0 | Structured output (JSON) · Templated generation · Batch pipelines |
06·Drift
Is it still the same model this week?
Weekly Intelligence Index · dashed rules mark serving-change events
Serving-stack regression in medium-effort routing under load; acknowledged by OpenAI and fixed four weeks later.
07·Call it
One key, this model, your effort
The gateway speaks the OpenAI Chat Completions dialect. Pick a host with gpt-5.5@host syntax, set reasoning_effort, and the sweet spot above becomes one line of config. Full docs →
curl https://models.fyi/api/v1/chat/completions \
-H "Authorization: Bearer $MFYI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5",
"reasoning_effort": "low",
"messages": [{"role": "user", "content": "Hello"}]
}'
# local dev: replace https://models.fyi with http://localhost:3000