astradevlabsastradevlabs
← All posts
AI News5 min

Field Guide: How to Route Gemini 3.6 Flash, 3.5 Flash-Lite, and Flash Cyber After Google’s July Split

AI News

Google’s late July Gemini updates matter less as a model-launch headline and more as a routing change for teams building agents in production. In a one-week stretch, Google introduced Gemini 3.6 Flash, Gemini 3.5 Flash-Lite, and Gemini 3.5 Flash Cyber, then updated Managed Agents in the Gemini API so 3.6 Flash became the default on July 28, 2026.

That changes a practical question every AI product team has to answer: which jobs should go to the default model, which should fan out to a cheaper worker, and which should stay behind a tighter security boundary?

This field guide is the useful answer.

1. Start with 3.6 Flash unless you have a reason not to

Google positions Gemini 3.6 Flash as the workhorse model for coding, knowledge work, and multimodal tasks. On its model page, Google says 3.6 Flash reduces output token usage by 17% versus 3.5 Flash, and the July 21 launch post says some coding benchmarks saw reductions up to 65%.

That is why the July 28 Managed Agents update matters: Google made gemini-3.6-flash the default for antigravity-preview-05-2026 with no code changes required.

If you are running one main agent that has to reason, use tools, and stay generally reliable, 3.6 Flash is now the safe baseline. It is the model to start with when you do not yet know where your bottleneck is.

Use it for:

  • Primary coding agents that need balanced quality and speed
  • Knowledge-work flows that mix retrieval, analysis, and synthesis
  • Multimodal tasks where you do not want to hand-route every input type

2. Use 3.5 Flash-Lite for fan-out work, not final judgment

Flash-Lite is the interesting release if your product depends on concurrency. Google describes it as its fastest, most cost-effective 3.5-class model, with 350 output tokens per second according to the Artificial Analysis Index. Its listed pricing is $0.30 per million input tokens and $2.50 per million output tokens.

The model page also makes the intended role obvious. Google says Flash-Lite is best for low-latency, high-throughput agentic tasks, and the Managed Agents post explicitly recommends it when you want lower cost than the default.

That makes Flash-Lite a worker model, not a captain.

Use it for:

  • Parallel exploration, such as generating many candidate UI directions or search plans
  • Cheap first-pass extraction, classification, or translation
  • Sub-agents that summarize logs, receipts, docs, or narrow code regions before a stronger model decides

Avoid using it as the final authority for tasks where one bad answer is expensive. A good pattern is a two-tier route: Flash-Lite does the wide scan, then 3.6 Flash validates or merges the result.

ts
const interaction = await client.interactions.create({
  agent: "antigravity-preview-05-2026",
  environment: "remote",
  input: "Inspect this repo and propose three migration plans.",
  agent_config: {
    type: "antigravity",
    model: "gemini-3.5-flash-lite",
    max_total_tokens: 10000,
  },
});

3. Treat Flash Cyber as a specialized lane, not a general upgrade

Gemini 3.5 Flash Cyber is not Google’s new default. It is a constrained specialist. Google announced it on July 21 as a lightweight cybersecurity model built on 3.5 Flash and said it will be offered in a limited-access pilot for governments and trusted partners through CodeMender.

The important part is not just access control. It is the workload shape. Google says CodeMender can call Flash Cyber multiple times so sub-agents explore more code paths, and that this approach performed competitively with much larger models on CyberGym. Google also reports the model found 55 unique confirmed issues on the V8 JavaScript engine versus 47 for mainline 3.5 Flash and 36 for Claude Opus 4.6 in its stated setup.

That points to a specific lesson: specialized cheap models become more useful when the task rewards repeated search over a huge space. Security review fits that pattern better than many general coding tasks do.

Use the idea even if you cannot access Flash Cyber yet. Route search-heavy, repeatable security checks into their own evaluation lane instead of assuming your main assistant should do everything.

4. The bigger story is agent architecture, not model branding

Google’s July 28 Managed Agents update fills in the architecture around the model split. The release added environment hooks, budget controls, scheduled triggers, and free-tier access. Hooks can run custom scripts before or after tool calls, which is a concrete way to block dangerous writes, auto-lint files, or attach verification steps inside the sandbox.

That is the real news for builders. Google is not just asking teams to pick a smarter model. It is giving them a default coordinator model, a cheaper worker tier, and the control plane needed to keep autonomous runs bounded.

The practical routing rule looks like this:

  1. Default to 3.6 Flash for your main agent loop.
  2. Fan out bursty or repetitive subtasks to 3.5 Flash-Lite.
  3. Keep security-heavy analysis in a separate lane, with Flash Cyber where available or an internal equivalent where not.
  4. Add hooks and max_total_tokens before you scale usage, not after the first expensive failure.

The July split is worth watching because it suggests where mainstream AI platforms are heading next. The product surface is no longer one flagship plus one cheap mini. It is becoming a small operations stack: coordinator, worker, and specialist. Teams that route work that way will probably feel the benefit sooner than teams that keep benchmarking one model at a time.

References