
Gemini 3.7 Flash vs Gemini 3.6 Flash: Should You Upgrade?

The Short Answer
minimal thinking level, because that level no longer exists on 3.7 — for those pipelines the honest answer is not 3.7 at all, it is Gemini 3.5 Flash-Lite.Everything below is what to verify before you commit.
What Actually Changed
Is the 3.6-to-3.7 Migration Drop-In?
Not quite. Per Google's official migration checklist, four things break:
minimalthinking level is gone. Levels arelow,medium(default), andhigh. Sendingminimalto the Gemini API errors.temperature,top_p,top_k, andcandidate_countmust be removed from generation configs.- Numeric
thinking_budgetis replaced by thethinking_levelstring. - Prefilled model turns must be removed.
reasoning_effort: "none" or "minimal" are set to be downgraded to low rather than failing, so a staged migration will not break in flight while you update call sites.The Behavior Changes Worth Testing
Benchmarks tell you where a model improved on someone else's tasks. These are the changes most likely to show up on yours:
minimal, your new floor is low. For a high-volume classification pipeline that difference compounds across every call, and it is the single most common reason a 3.6 workload should not move to 3.7.When Staying on 3.6 Flash Is the Right Call
- You depend on
minimalthinking. Evaluate 3.5 Flash-Lite instead of paying thelowfloor on every call. - Your workload is simple, latency-critical, and high-volume. More reasoning is not free; a Lite-tier route usually wins.
- You have a validated, frozen pipeline and no coding/agent pain. With no price incentive, upgrading a stable system buys you re-validation work and little else.
- You cannot afford a regression window right now. Google is shipping Flash-tier updates quickly, and batching your validation across releases costs you nothing.
A Reproducible Evaluation

- Freeze a baseline. Capture 50–200 real requests on 3.6 Flash with full telemetry: input tokens, output tokens, thinking tokens, cache hits, tool-call validity, retries, and human corrections.
- Replay against 3.7. Same prompts, same tools, same thinking level (map
minimal→lowexplicitly so you know what you are comparing). Change one variable at a time. - Run 3.7 as a challenger. Route a slice of live traffic and compare on accepted-task rate and total cost per accepted task — not per-request price, which is identical by definition.
- Set promotion and rollback gates in advance. Decide the numbers that would make 3.7 your default and the numbers that would send you back, before you look at the results.
Both models stay available at the same price on the same endpoints, so rollback is a model-ID change with no commercial consequence.
Running Both on EvoLink
gemini-3.7-flash for the challenger slice and keep gemini-3.6-flash serving production until your gates are met.FAQ
Is Gemini 3.7 Flash better than Gemini 3.6 Flash?
On Google's published benchmarks, yes — most clearly on coding and agentic execution. Those are vendor-reported figures, and Artificial Analysis measured a higher hallucination rate at launch, so verify on your own tasks before switching defaults.
Is Gemini 3.7 Flash more expensive than 3.6 Flash?
No. Both share the same rate card, including the introductory pricing through December 31, 2026. Your bill can still change if 3.7 uses more tokens per task, since thinking tokens bill at the output rate.
Do I have to change my code to migrate from 3.6 to 3.7?
temperature, top_p, top_k, and candidate_count, replacing numeric thinking_budget with the thinking_level string, and removing prefilled model turns.What replaces the minimal thinking level?
low is the new floor on 3.7 Flash. For cost-sensitive, high-volume classification and extraction, Gemini 3.5 Flash-Lite is usually the better route than paying low on every call.Should I upgrade if I only run simple chat or classification?
Usually not. The gains concentrate in coding and multi-step agents; simple high-volume work is better served by a Lite-tier model.
Can I run Gemini 3.7 Flash and 3.6 Flash at the same time?
Yes. They share endpoints and pricing, so you can route a traffic slice to 3.7 as a challenger and roll back by changing the model ID.
Is Gemini 3.6 Flash being deprecated?
Google has not announced a retirement date for Gemini 3.6 Flash. It remains available at the same price alongside 3.7 Flash.
How long do I have before the price changes?
The introductory rates apply to both models through December 31, 2026, with standard rates from January 1, 2027 — so the upgrade decision and the pricing deadline are independent of each other.


