New feature
Text Processing
8 min reading

Gemini 3.6 Flash and Flash-Cyber: Google's New Speed and Security AI Models Explained

Gemini 3.6 Flash and Flash-Cyber: Google's New Speed and Security AI Models Explained

Summarize this article with:

summary
  • Gemini 3.6 Flash: $1.50/$7.50 per 1M tokens with 17% fewer output tokens — near-Pro intelligence at Flash-tier pricing
  • Flash-Lite: $0.30/$2.50 per 1M tokens, the new price floor for sub-agents and high-volume classification
  • Flash-Cyber: Google's first cybersecurity-tuned LLM, found 55 real V8 vulnerabilities (limited CodeMender pilot)
  • Google silently deprecated temperature, top_p, and top_k across the new Gemini models
  • All three are reachable through one unified API for tiered, cost-optimized routing

Gemini 3.6 Flash, Flash-Lite, and Flash-Cyber are Google's July 2026 model lineup built for cost-optimized routing. Flash 3.6 is the general workhorse at $1.50/$7.50 per million tokens, Flash-Lite is the $0.30 budget tier for sub-agents, and Flash-Cyber is Google's first security-tuned LLM for finding software vulnerabilities.

On July 21, 2026, Google launched three Gemini models simultaneously: Gemini 3.6 Flash, Gemini 3.5 Flash-Lite, and Gemini 3.5 Flash-Cyber. The release reached 627 points and 502 comments on HackerNews — not because of raw benchmark numbers, but because it signals a strategic shift. Google is optimizing for cost-per-task efficiency, not just intelligence scores. Gemini 3.6 Flash cuts output token costs by 17% over its predecessor. Flash-Lite hits a new price floor at $0.30 per million input tokens. Flash-Cyber is Google's first LLM tuned specifically for cybersecurity, rivaling Anthropic's Mythos at a fraction of the cost. And Google deprecated temperature, top_p, and top_k — silently ignoring sampling parameters that developers have relied on for years. This article breaks down each model, the API changes, and what it means for production routing.

Gemini 3.6 Flash: The New Default Workhorse

Gemini 3.6 Flash is Google's new Flash-tier model, positioned as the default workhorse for production workloads. It matches the intelligence of Gemini 3.5 Flash while cutting both cost and latency.

Key specifications:
- API model ID: gemini-3.6-flash
- Context window: 1,000,000 tokens
- Pricing: $1.50 per million input tokens, $7.50 per million output tokens
- Output token efficiency: 17% fewer tokens than Gemini 3.5 Flash for the same tasks
- Availability: AI Studio, Gemini API, Gemini app (day one)
The 17% output token reduction matters more than it sounds. For agentic workflows that generate long chains of reasoning tokens, this compounds across thousands of iterations. Google reports up to 65% cost reduction on long-horizon engineering tasks compared to the previous Flash model, because fewer output tokens means lower cost per task and faster completion.

Benchmarks show stronger agentic coding scores than 3.5 Flash, though the model does not match Pro-tier or frontier models like Claude Opus 5 or GPT-5.6 Sol on complex reasoning. The value proposition is clear: near-Pro intelligence at Flash-tier pricing.

When to Use Gemini 3.6 Flash

  • High-volume production workloads where cost per task matters more than peak intelligence
  • Agentic workflows with many LLM calls (each call is cheaper due to lower token output)
  • Applications needing 1M token context at a competitive price point
  • Real-time applications where latency matters (Flash models are faster than Pro)

Gemini 3.5 Flash-Lite: The Ultra-Efficient Tier

Gemini 3.5 Flash-Lite is the cheapest model in the Gemini lineup, designed for sub-agent deployment within multi-agent workflows. Where Gemini 3.6 Flash is the main workhorse, Flash-Lite handles focused, narrow tasks within a larger agent pipeline.

Key specifications:
- API model ID: gemini-3.5-flash-lite
- Pricing: $0.30 per million input tokens, $2.50 per million output tokens
- Designed for: Sub-agent execution, focused tasks, high-volume classification
- Context: Optimized for shorter contexts within agent workflows
At $0.30/$2.50, Flash-Lite is one of the cheapest production-grade LLMs available. For context, a pipeline running 10,000 classification calls per day with 2k input and 500 output tokens per call costs approximately $0.75/day on Flash-Lite, compared to $7.50/day on Gemini 3.6 Flash and $30/day on Claude Sonnet 4.6.

The use case is specific: Flash-Lite is not a general-purpose model. It is designed for focused tasks within a multi-agent architecture — the sub-agent that extracts entities, classifies intent, or routes a request before the main agent takes over. Google documentation describes it as "suited for subagents that execute focused tasks within complex, multi-agent workflows."

Gemini 3.5 Flash-Cyber: Google's First Cybersecurity LLM

Gemini 3.5 Flash-Cyber is the most novel release — Google's first LLM tuned specifically for cybersecurity. It is designed to find, validate, and patch software vulnerabilities, and Google claims it approaches the performance of Anthropic's much larger and more expensive Claude Mythos model.

Key facts:
- API model ID: gemini-3.5-flash-cyber
- Found 55 confirmed V8 (Chrome JavaScript engine) vulnerabilities during testing
- Uses explicit chain-of-thought reasoning for vulnerability analysis
- Entering CodeMender pilot for governments and trusted partners (limited initial release)
- BenchLM is tracking the model but has excluded it from public leaderboards due to insufficient non-generated benchmark coverage
Flash-Cyber represents a broader trend: domain-specialized LLMs that outperform generalist models on specific tasks. A security-tuned Flash model finding real V8 vulnerabilities is more valuable than a frontier model that is 5% better on general reasoning benchmarks but has no security-specific capabilities.

The limited release through the CodeMender pilot means Flash-Cyber is not yet available via standard API access. Google is gating initial deployment to governments and trusted partners — a signal that they view the model's vulnerability-finding capabilities as dual-use technology requiring controlled access.

Flash-Cyber vs Generalist Models for Security

Model V8 Vulns Found Price ($/M Out) Availability
Flash-Cyber 55 confirmed Flash-tier Limited pilot
Claude Mythos Comparable ~$50 (est.) API available
GPT-5.6 Sol Not tuned $30.00 API available
Gemini 3.6 Flash Not tuned $7.50 API available

Flash-Cyber's advantage is cost-per-vulnerability-found, not raw capability. For security teams running thousands of scans across codebases, paying Flash-tier pricing instead of Mythos-tier pricing is a significant budget difference.

API Changes: Temperature, Top_p, Top_k Deprecated

Alongside the model launch, Google deprecated three sampling parameters across Gemini models: temperature, top_p, and top_k. The change was not loudly announced — Google's documentation now states these parameters are deprecated, and the API silently ignores them when provided.

An HN thread about the deprecation reached 99 points and 37 comments. Developers raised concerns about losing control over output randomness, creativity, and diversity. Google's position appears to be that the new Flash models are optimized for deterministic, task-focused output, and sampling parameters interfere with the optimization.

Migration Impact

For developers using temperature to control output style (higher temperature for creative writing, lower for code generation), the deprecation means:
1. Output will use Google's default sampling strategy regardless of what you pass
2. If you need creative output, you may need to prompt-engineer around the constraint
3. If you need deterministic output, this is actually a benefit — less configuration to manage
4. Cross-provider APIs that normalize parameters across providers will need to handle the silent rejection

# Before: temperature worked
response = client.generate_content(
    model="gemini-3.5-flash",
    contents="Write a creative story",
    generation_config={"temperature": 0.9, "top_p": 0.95}
)

# After (3.6 Flash): temperature silently ignored
response = client.generate_content(
    model="gemini-3.6-flash",
    contents="Write a creative story",
    generation_config={"temperature": 0.9, "top_p": 0.95}
    # Parameters accepted but have NO effect — Google ignores them
)

# Migration: use prompt engineering instead
response = client.generate_content(
    model="gemini-3.6-flash",
    contents="Write a highly creative, imaginative story with unexpected twists and vivid imagery",
    # No sampling parameters — control via prompt instead
)

The broader lesson is API stability: when a vendor deprecates core parameters, applications coupled to that vendor break. Multi-provider APIs absorb these changes — if Google deprecates temperature, you can route creative-writing tasks to Claude or GPT, which still support it, without rewriting your application.

Pricing Comparison: Where Flash Models Fit

Model Input ($/M) Output ($/M) Context Best For
Gemini 3.5 Flash-Lite $0.30 $2.50 Short Sub-agent tasks
Gemini 3.6 Flash $1.50 $7.50 1M General production
Gemini 3.1 Pro $2.00 $12.00 2M Complex reasoning
Claude Haiku 4.5 $1.00 $5.00 200k Fast classification
Claude Sonnet 4.6 $3.00 $15.00 200k Code generation
Claude Opus 5 $5.00 $25.00 1M Frontier reasoning
GPT-5.6 Sol $5.00 $30.00 400k OpenAI ecosystem

Flash-Lite at $0.30/$2.50 is cheaper than Claude Haiku 4.5 ($1.00/$5.00) for high-volume, short-context tasks. Gemini 3.6 Flash at $1.50/$7.50 is the price-performance sweet spot for general workloads — cheaper than Sonnet 4.6 ($3.00/$15.00) and Gemini 3.1 Pro ($2.00/$12.00) while delivering near-Pro intelligence.

For a production pipeline processing 1M tokens of input and 200k tokens of output daily:
- Flash-Lite: $0.30 + $0.50 = $0.80/day
- Gemini 3.6 Flash: $1.50 + $1.50 = $3.00/day
- Claude Haiku 4.5: $1.00 + $1.00 = $2.00/day
- Claude Sonnet 4.6: $3.00 + $3.00 = $6.00/day
- Claude Opus 5: $5.00 + $5.00 = $10.00/day
The 12.5x cost spread between Flash-Lite and Opus 5 is why tiered routing matters: route the 80% of tasks that do not need frontier quality to Flash-tier models.

Production Routing: When to Use Flash vs Pro vs Competitors

The three-model release enables a tiered routing architecture within the Google ecosystem alone:
1. Flash-Lite handles triage: Intent classification, entity extraction, routing decisions ($0.30/$2.50)
2. Flash 3.6 handles execution: Standard generation, code completion, agentic steps ($1.50/$7.50)
3. Pro 3.1 handles complexity: Multi-step reasoning, complex analysis ($2.00/$12.00)
4. Flash-Cyber handles security: Vulnerability scanning, code auditing (limited release)
For cross-provider routing, the natural tiering combines Google Flash models with Claude and GPT:
- Triage tier: Flash-Lite ($0.30/$2.50) or Claude Haiku 4.5 ($1.00/$5.00)
- Workhorse tier: Gemini 3.6 Flash ($1.50/$7.50) or Claude Sonnet 4.6 ($3.00/$15.00)
- Frontier tier: Claude Opus 5 ($5.00/$25.00) or GPT-5.6 Sol ($5.00/$30.00)
- Security tier: Flash-Cyber (when available) or Claude Mythos
The cost savings from routing are significant. An 80/20 split between Flash 3.6 and Opus 5 cuts output costs by approximately 70% compared to running everything on Opus 5, with minimal quality loss for the 80% of tasks that do not need frontier reasoning.

Conclusion: Key Takeaways

Google's three-model release signals that the AI market is shifting from a single-model-per-application paradigm to a tiered, cost-optimized routing paradigm.
1. Gemini 3.6 Flash is the new price-performance leader: At $1.50/$7.50 with 17% fewer output tokens, it is the cheapest model that delivers near-Pro intelligence for general workloads.
2. Flash-Lite redefines the price floor: At $0.30/$2.50, sub-agent tasks that were expensive on any model are now nearly free — enabling multi-agent architectures at scale.
3. Flash-Cyber validates domain-specialized LLMs: A Flash-tier model finding 55 real V8 vulnerabilities shows that task-specific tuning beats raw model size for specialized work.
4. Parameter deprecation is a vendor risk: Google silently deprecating temperature and top_k is a reminder that API stability depends on vendor decisions you do not control.
5. Multi-provider routing is the hedge: When a vendor changes their API or pricing, a unified API layer lets you switch providers without rewriting code.
6. The 12.5x cost spread demands routing: With Flash-Lite at $0.30 and Opus 5 at $25.00 per million output tokens, running everything on one model is the most expensive mistake in 2026 AI infrastructure.

FAQ

What is Gemini 3.6 Flash?

Gemini 3.6 Flash is Google's July 2026 Flash-tier model, priced at $1.50/$7.50 per million input/output tokens with a 1M-token context window. It matches Gemini 3.5 Flash on intelligence while using 17% fewer output tokens, making it Google's default workhorse for cost-sensitive production workloads.

How much does Gemini 3.6 Flash cost?

Gemini 3.6 Flash costs $1.50 per million input tokens and $7.50 per million output tokens. That undercuts Claude Sonnet 4.6 ($3/$15) and Gemini 3.1 Pro ($2/$12) while delivering near-Pro intelligence, and the 17% output-token reduction lowers the real cost per task further.

What is Gemini 3.5 Flash-Cyber?

Flash-Cyber is Google's first LLM tuned specifically for cybersecurity. It finds, validates, and patches software vulnerabilities using explicit chain-of-thought reasoning, and found 55 confirmed V8 vulnerabilities during testing. It is currently limited to a CodeMender pilot for governments and trusted partners.

Did Google deprecate temperature in the Gemini API?

Yes. Google deprecated the temperature, top_p, and top_k sampling parameters on the new Gemini models. The API still accepts them but silently ignores them, so output uses Google's default sampling strategy regardless of the values you pass.

Gemini 3.6 Flash vs Flash-Lite: which should I use?

Use Gemini 3.6 Flash ($1.50/$7.50) as the main workhorse for general generation and agentic steps. Use Flash-Lite ($0.30/$2.50) for narrow, high-volume sub-agent tasks like classification, entity extraction, or routing within a larger multi-agent pipeline.

How do I access all three Gemini models through one API?

All three are available through Google's Gemini API, and Flash 3.6 and Flash-Lite are also reachable through unified gateways like Eden AI alongside Claude and GPT. A unified API lets you route by task tier and switch providers without rewriting code when pricing or parameters change.

Similar articles

New feature
Vision
NEW: Image Deepfake Detection Available on Eden AI
12/27/2024
·
Written byTaha Zemmouri
New feature
Generative AI
NEW: AI Video Generator Available on Eden AI
12/19/2024
·
Written byTaha Zemmouri
New feature
Video Processing
NEW: Video Question Answering (VideoQA) available on Eden AI
11/29/2024
·
Written byTaha Zemmouri
let’s start

Start building with Eden AI

A single interface to integrate the best AI technologies into your products.