DEV Community

Cover image for Google Just Shipped Gemini 3.5 Flash. Here's What Developers Actually Need to Know.
Om Shree
Om Shree

Posted on

Google Just Shipped Gemini 3.5 Flash. Here's What Developers Actually Need to Know.

The Flash series has always been Google's answer to the speed-vs-intelligence tradeoff. With Gemini 3.5 Flash, Google is making a different argument: you shouldn't have to choose.

The Problem It's Solving

The history of "fast" AI models is a history of compromise. You got low latency, but you gave up reasoning depth. You got cheaper inference, but you got worse results on multi-step tasks. The whole Flash premise — intelligence at Flash-level speed and cost — has always been aspirational. With Gemini 3.5 Flash, the benchmarks suggest Google has actually closed a meaningful portion of that gap, particularly for the workload that matters most right now: agentic execution.

How Gemini 3.5 Flash Actually Works

Gemini 3.5 Flash is designed for sub-agent deployment, multi-step workflows, and long-horizon tasks at scale, with particular effectiveness in rapid agentic loops involving complex coding cycles and iterations. That's the framing Google leads with, and the architecture reflects it.

The model supports a 1M token context window, 65k max output tokens, and thinking — the same set of tools and platform features as Gemini 3 Flash. The key architectural addition is thought preservation: the model now maintains intermediate reasoning across multi-turn conversations automatically. When present in the conversation history, reasoning context carries forward, which improves performance on complex multi-step tasks like iterative debugging and code refactoring. No API changes are needed.

The thinking system itself has also changed. The default thinking effort level is now medium, changed from high in Gemini 3 Flash Preview. medium yields very good results across a wide range of tasks while being faster and more cost-efficient. For complex problems, high encourages the model to think more deeply. Google's explicit recommendation: start at medium, drop to low for speed-sensitive agentic loops, escalate to high only for hard reasoning or math. The old thinking_budget numeric parameter is gone — use the thinking_level string enum instead.

One important note for teams running computer-use workloads: Computer Use is not supported in Gemini 3.5 Flash at this moment. For Computer Use workloads, continue using Gemini 3 Flash Preview.

What Developers Are Actually Using It For

The benchmark most worth examining for this audience is MCP Atlas — a multi-step workflows benchmark using MCP. Gemini 3.5 Flash scores 83.6% on MCP Atlas, leading the comparison set that includes Gemini 3.1 Pro (78.2%), Claude Opus 4.7 (79.1%), and GPT-5.5 (75.3%). If you're building anything involving MCP tool chains, that number is directly relevant.

On Finance Agent v2 (financial analysis and decision-making), Gemini 3.5 Flash scores 57.9%, ahead of Claude Sonnet 4.6 (51.0%), Claude Opus 4.7 (51.5%), and GPT-5.5 (51.8%).

The coding story is also compelling in a specific way. JetBrains reports that Gemini 3.5 Flash delivers coding and reasoning quality close to Gemini Pro while preserving the speed and cost profile that makes Flash ideal for real-time developer workflows, with low-reasoning coding performance improved by 10–20% compared to the previous Flash generation.

Enterprise validation comes from Box: Gemini 3.5 Flash beat Gemini 3 Flash by 19.6% on Box's enterprise work evaluation set, which was designed to reflect the kinds of real-world multi-step tasks their customers perform daily. For Life Sciences customers, Gemini 3.5 Flash can extract data and make calculations with 96.4% greater accuracy, and for Financial Services firms, it can build financial reports from structured data with 46.7% greater accuracy.

Why This Is a Bigger Deal Than It Looks

The MCP Atlas score deserves more attention than it's getting. For anyone building agentic systems using the Model Context Protocol — and the infrastructure around it is growing fast — having a model that leads on multi-step MCP workflows at Flash pricing changes the economics of what you can deploy. MCP-native tooling like Glama.ai and other agentic middleware layers become more viable when your inference costs stay low without sacrificing orchestration quality.

The thought preservation feature is the other architectural shift worth watching. Most developers managing multi-turn agentic sessions today are manually engineering state — reconstructing context, summarizing prior steps, managing memory externally. With Gemini 3.5 Flash, the model uses reasoning context from all previous turns when thought signatures are present in the conversation history; the SDKs handle this automatically. That's less scaffolding code your team has to maintain.

There is one behavioral change that could silently degrade quality if you migrate without testing: the default thinking effort changed from high to medium. Teams should verify quality, speed, and cost after migration, and note that thought preservation is now on by default — reasoning context carries forward across turns, which improves performance but may increase token usage.

Availability and Access

Gemini 3.5 Flash is generally available (GA), stable, and ready for scaled production use. The model ID is gemini-3.5-flash, last updated May 2026.

The model is accessible via the Gemini App, Gemini API, Google AI Studio, Google Antigravity, Gemini Enterprise Agent Platform, and Android Studio. It supports function calling, structured output, search grounding, Google Maps grounding, URL context, file search, code execution, and thinking — all available in the same request via combined tool use.

On the paid tier, input pricing runs $1.50 per million tokens and output at $9.00 per million tokens (including thinking tokens). Context caching is $0.15 per million tokens, with storage at $1.00 per million tokens per hour. Batch inference halves those rates. A free tier is available for experimentation through Google AI Studio.

For teams migrating from Gemini 3 Flash Preview: update the model string from gemini-3-flash-preview to gemini-3.5-flash, replace thinking_budget with thinking_level, remove temperature/top_p/top_k from your config (no longer recommended), and add id and matching name to all FunctionResponse parts. The full migration checklist is worth reading before touching production.

The speed-vs-intelligence tradeoff that has defined the Flash tier since its inception is getting smaller with each generation. The MCP Atlas score, the thought preservation architecture, and the enterprise validation from Box all point at the same conclusion: Gemini 3.5 Flash is the most credible case yet that "fast and cheap" doesn't have to mean "less capable" for agentic workloads specifically.

Follow for more coverage on MCP, agentic AI, and AI infrastructure.

Top comments (0)