惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
罗磊的独立博客
雷峰网
雷峰网
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
B
Blog RSS Feed
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
D
Docker
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
小众软件
小众软件
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
I
InfoQ
S
SegmentFault 最新的问题

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Google's "Budget" Model Just Beat Its Own Flagship. Here'...
Aashita · 2026-05-22 · via DEV Community

This is a submission for the Google I/O Writing Challenge

Flash models were supposed to be the budget option.
Faster and cheaper — that was the deal. You
used Flash when you needed speed and could tolerate a
quality tradeoff. You used Pro when the task actually
mattered.

At Google I/O 2026, Gemini 3.5 Flash beat Gemini 3.1 Pro
on every benchmark that matters for building agents.

That sentence should sound impossible. It isn't. And
understanding why it happened tells you everything about
where AI development is actually heading right now.


The Numbers First

Benchmark What it measures 3.1 Pro 3.5 Flash
MCP Atlas Tool-use reliability 78.2% 83.6%
Terminal-Bench 2.1 Agentic coding 70.3% 76.2%
GDPval-AA Long-horizon tasks 1314 Elo 1656 Elo

Not close. Not one cherry-picked test. Across coding,
tool-use reliability, and long-horizon task completion —
the three things that actually matter if you are building
something real — the cheaper model won.

It also runs 4x faster than comparable frontier models
and costs roughly half as much.

Artificial Analysis put 3.5 Flash alone in the top-right
quadrant of their Intelligence vs Speed index. The only
frontier model right now combining top-tier intelligence
with exceptional speed.


Why This Happened

The old assumption was that intelligence scaled with model
size. Bigger parameters, better reasoning, end of story.

3.5 Flash breaks that assumption because it was not
optimized for general intelligence. It was optimized
specifically for tool use, multi-agent coordination,
and live environment execution
.

The benchmarks it beats 3.1 Pro on are exactly those
benchmarks. The one benchmark where 3.1 Pro still leads
is long-context retrieval — passive reading, not active
doing.

Google essentially asked: what does a model need to be
good at to power the agentic era? Then they built
directly toward that target instead of chasing a general
leaderboard. The result is a model that is purpose-built
for the exact moment we are in.


What This Feels Like to Actually Build With

Let me make this concrete.

You are working on a mid-sized Node.js project. You have
route files, a database schema, authentication middleware,
environment config, and architectural decisions documented
in a README from six months ago.

Previously you copy-pasted relevant pieces into a chat
window and hoped the model could infer the missing
connections. You were the context manager, manually
bridging gaps the model could not hold.

3.5 Flash has a 1,048,576 token context window
roughly 786,000 words. You paste everything once. Then
you just talk:

My checkout flow is failing silently on orders over $500.
It works fine below that. Walk me through what could
cause this given everything you can see.

Enter fullscreen mode Exit fullscreen mode

The model sees your payment middleware, database schema,
route handlers, environment variables, and error logging
simultaneously. It does not need you to guess which file
is relevant. It knows.

That is not faster at the same thing. That is different
in kind.


The FinOps Detail Nobody Is Talking About

Context caching on 3.5 Flash costs $0.15 per million
tokens
— a 90% discount from the standard $1.50 input
price.

For agent loops this changes the production math entirely.
The expensive part of running persistent agents is not
generating responses. It is re-sending your system prompt,
tool descriptions, and conversation history on every
single turn.

Turn 1: Send 100k tokens of context     → $0.150
Turn 2: Read same context from cache    → $0.015
Turn 3: Read same context from cache    → $0.015
Turn 4: Read same context from cache    → $0.015

Enter fullscreen mode Exit fullscreen mode

A session that cost $1.50 in context fees costs $0.19
with caching. At production scale that difference is not
marginal — it is what makes a product financially viable
or not.


The API Detail Worth Getting Right

3.5 Flash ships with dynamic thinking on by default.
You can control it explicitly:

import google.generativeai as genai

genai.configure(api_key="YOUR_API_KEY")
model = genai.GenerativeModel("gemini-3.5-flash")

# Fast path for simple tool calls
response = model.generate_content(
    "Extract the order ID from this receipt: ...",
    generation_config={"thinking_level": "minimal"}
)

# Deep reasoning for hard decisions
response = model.generate_content(
    "Given this entire codebase, recommend how to "
    "restructure auth for multi-tenancy",
    generation_config={"thinking_level": "high"}
)

Enter fullscreen mode Exit fullscreen mode

Options: minimal, low, medium (default), high.

Use minimal for deterministic tool calls where you need
speed. Use high for planning steps where you need real
reasoning. Your cost and latency per session shifts
significantly depending on how you tune this.


Why Gemini Spark Could Only Exist Now

This is the part that connects everything.

Gemini Spark — the 24/7 personal agent Google announced
at I/O, running on dedicated Cloud VMs, managing your
inbox and calendar while you sleep — could not have
existed six months ago.

Not because the idea was new. Because the economics did
not work. A persistent personal agent holding full context
and calling tools reliably across millions of users would
have required flagship model pricing and still been too
slow to feel responsive.

3.5 Flash's combination of 1M context window, 83.6%
tool reliability, 4x speed, and 90% caching discount
is precisely what unlocks Spark as a product.

Google did not build Spark and then find a model to run
it. They built 3.5 Flash for this exact workload —
always on, context-heavy, multi-step, running at scale —
and Spark is what becomes possible on top of it.

When Google says I/O 2026 is the shift from "prompting"
to "acting" — 3.5 Flash is the technical foundation that
makes acting affordable enough to actually ship.

What Changes for What You Build

The practical takeaway is simpler than the benchmarks
make it sound.

The model tier you reach for by default just changed.

Previously: start with Flash, upgrade to Pro when quality
is not good enough.

Now: start with Flash, stay on Flash unless you
specifically need deep passive long-context retrieval.

For anything involving tool calls, agents, coding
assistance, or multi-step workflows — which is most of
what developers are building with AI right now — 3.5
Flash is not the budget option anymore.

It is the right option.