Gemini 3.1 Pro: The 77.1% Headline Hides a 15x Cost Problem
The Benchmark Picture: Impressive but Contradictory
Four independent sources covered Gemini 3.1 Pro's launch today, and the numbers are striking — but they tell different stories depending on which benchmark you read.
| Model | ARC-AGI-2 | ARC-AGI-3 (Interactive) | Token Usage (Express.js bug) | Pricing |
|---|---|---|---|---|
| Gemini 3.1 Pro | 77.1% | Below Opus 4.6 | ~350,000 tokens | Unchanged from 3.0; cheaper than Opus/GPT-5.2 |
| Opus 4.6 | 68.8% | Leading | ~23,000 tokens | ~5× Sonnet 4.6 |
| GPT-5.2 | 52.9% | Not reported | Not tested | Frontier tier |
| Gemini 3 Pro | 31.1% / <38.5% | N/A | N/A | Baseline |
The 148% relative improvement on ARC-AGI-2 (31.1% → 77.1%) is one of the largest single-version jumps in frontier model history. But here's the critical contradiction across sources: one source reports Gemini 3.1 Pro "surpassed" Opus 4.6, while another confirms Opus 4.6 outperforms Gemini on ARC-AGI-3, which measures interactive reasoning and generalization in novel environments — a harder, more agent-relevant benchmark.
ARC-AGI-2 asks: can the model solve a puzzle? ARC-AGI-3 asks: can the model learn and adapt within a session? These are fundamentally different capabilities, and conflating them will lead you to wrong model selection decisions.
The Token Economics Bombshell
A practitioner intercepted 3,177 API calls across four AI coding tools on the same Express.js bug fix. All four succeeded. But Gemini Pro consumed 350,000 tokens while Claude Opus used 23,000 — a 15x gap. Gemini's strategy: aggressive context dumping, filling the window with everything available. Claude's: targeted retrieval with surgical precision.
This means a model that's 2× better at reasoning but burns 15× more tokens may not be a net win for your inference budget. The metric that matters isn't benchmark score — it's cost-per-correct-answer on your task distribution.
What We Don't Know
- No ablation studies — Was the ARC-AGI-2 jump a genuine reasoning breakthrough or benchmark-specific optimization?
- No independent verification — All scores are self-reported until LMSYS or independent harnesses confirm
- No latency data — Deep Think integration suggests extended reasoning chains that trade latency for accuracy
- Token study is n=1 — One bug, one language, one framework; the 15× ratio may vary but the architectural difference in context management will persist
Your Model Routing Decision Matrix
If you're running a model routing layer, this release changes the calculus:
- Reasoning-heavy, single-turn tasks (classification, structured extraction, scientific QA): Benchmark Gemini 3.1 Pro — the ARC-AGI-2 score is a positive signal
- Agentic, multi-turn tasks (interactive problem-solving, memory-dependent workflows): Opus 4.6's ARC-AGI-3 advantage is more relevant
- High-volume, cost-sensitive tasks: Claude Sonnet 4.6 at 1/5 Opus pricing, or evaluate the 15× token savings of Opus over Gemini
- Long-context tasks: Gemini's confirmed 1M token window is a differentiator — verify competitors' effective utilization at similar lengths
What to do
Build a cost-per-correct-answer eval harness that measures tokens consumed, latency, and accuracy on 3-5 representative tasks from your production workload — run Gemini 3.1 Pro vs. Opus 4.6 vs. your current model this sprint
Implement a provider-agnostic model routing layer with per-task routing rules by end of quarter
Intercept and log token consumption on your current LLM API calls for 1 week to establish your baseline cost profile