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

推荐订阅源

The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
宝玉的分享
宝玉的分享
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
量子位
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
D
Docker
罗磊的独立博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
Microsoft Azure Blog
Microsoft Azure Blog

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
Gemini 3.5 Flash vs Claude Haiku vs GPT-4o mini: Picking ...
Alan West · 2026-05-20 · via DEV Community
Cover image for Gemini 3.5 Flash vs Claude Haiku vs GPT-4o mini: Picking a Small Model

Alan West

The Gemini 3.5 Flash announcement made the rounds on Hacker News this week, and I've been getting pinged by teammates asking whether to migrate our internal tools off Claude Haiku or GPT-4o mini. After spending a weekend running informal evals on classification and code-routing tasks, I have some takes.

Upfront caveat: I'm hedging on specific Gemini 3.5 Flash feature claims because marketing benchmarks and actual API behavior rarely match. Check the official Gemini docs before you bet your architecture on any number — including the ones I quote.

Why migrate small models at all?

Most teams I work with use small, fast models for the boring stuff:

  • Classification (is this ticket billing, bug, or feature-request?)
  • Summarization (TL;DR a long Slack thread)
  • Code routing in agent setups
  • Lightweight extraction (pull dates and amounts out of an invoice)

You don't need a frontier model for any of these. You need something cheap, fast, and consistent. Frontier models are actually worse for tool routing in my experience — they overthink and burn latency on tasks that should be reflexive.

So when a new small model lands, it's worth 30 minutes of evaluation. Not a migration. Just a check.

The contenders

Three models I'd consider for a new project today:

  • Gemini 3.5 Flash — Google's latest fast model. Reportedly faster and cheaper than the 2.5 generation, with a very long context window. I'll caveat the specifics below.
  • Claude Haiku 4.5 — Anthropic's small model. I've used Haiku in production for two years; it's my default for anything that needs structured outputs or tool calling.
  • GPT-4o mini — OpenAI's small model. Still solid, still has the deepest ecosystem support.

I'm leaving out Llama and Mistral on purpose. Self-hosted open models deserve their own post.

Side-by-side: calling the APIs

Here's what each looks like in practice. All three have official SDKs, and the shape is similar but not identical.

Gemini 3.5 Flash

# pip install google-generativeai
import google.generativeai as genai

genai.configure(api_key="YOUR_KEY")

# verify the exact model ID in the official docs before shipping
model = genai.GenerativeModel("gemini-3.5-flash")

response = model.generate_content(
    "Classify this ticket: 'Cannot log in after password reset.'",
    generation_config={"temperature": 0.2}  # low temp for classification
)
print(response.text)

Claude Haiku 4.5

# pip install anthropic
from anthropic import Anthropic

client = Anthropic()  # reads ANTHROPIC_API_KEY from env

msg = client.messages.create(
    model="claude-haiku-4-5",
    max_tokens=200,
    messages=[{
        "role": "user",
        "content": "Classify this ticket: 'Cannot log in after password reset.'"
    }]
)
print(msg.content[0].text)

GPT-4o mini

# pip install openai
from openai import OpenAI

client = OpenAI()

resp = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{
        "role": "user",
        "content": "Classify this ticket: 'Cannot log in after password reset.'"
    }],
    temperature=0.2
)
print(resp.choices[0].message.content)

Three different shapes for the same operation. If you've been around long enough you know the drill — wrap it in your own interface and stop caring about the cosmetic differences.

Migrating: a thin adapter

I migrated one of our pipelines from GPT-4o mini to Gemini Flash last quarter (the 2.5 generation, not the new one). The pattern that saved me:

# adapter.py — keeps business logic provider-agnostic
class LLMClient:
    def __init__(self, provider: str):
        self.provider = provider
        if provider == "gemini":
            import google.generativeai as genai
            self.model = genai.GenerativeModel("gemini-3.5-flash")
        elif provider == "claude":
            from anthropic import Anthropic
            self.client = Anthropic()
        elif provider == "openai":
            from openai import OpenAI
            self.client = OpenAI()
        else:
            raise ValueError(f"Unknown provider: {provider}")

    def classify(self, prompt: str) -> str:
        # one method, three implementations — callers stay clean
        if self.provider == "gemini":
            return self.model.generate_content(prompt).text
        if self.provider == "claude":
            msg = self.client.messages.create(
                model="claude-haiku-4-5",
                max_tokens=200,
                messages=[{"role": "user", "content": prompt}]
            )
            return msg.content[0].text
        # openai
        resp = self.client.chat.completions.create(
            model="gpt-4o-mini",
            messages=[{"role": "user", "content": prompt}]
        )
        return resp.choices[0].message.content

Boring? Yes. But this adapter saved me a week when we needed to A/B test the new Gemini model. Flip a config flag, replay the same prompts, compare outputs. Zero business logic changed.

Tradeoffs I'm willing to commit to

Things I feel confident about from actually running these in production:

  • Claude Haiku is the most predictable for structured outputs and tool calling. If your downstream code parses JSON, start here.
  • GPT-4o mini has the deepest ecosystem — every framework, every tutorial, every Stack Overflow answer. If your team is junior, the docs alone are worth it.
  • Gemini Flash has historically had the largest context window of the three. Useful when you need to dump entire codebases or long docs into a prompt.

Things I'm explicitly hedging on for 3.5 Flash:

  • The benchmark numbers in Google's announcement look great. Benchmarks always look great. Run your own evals.
  • I haven't tested its tool-calling reliability against Haiku yet. That's next month's project.
  • Pricing on the official page is the only number I trust. Check it before architecting around cost assumptions.

Which one should you pick?

Honest answer: it depends on what you're already running.

  • Already on Haiku and it works? Don't migrate. The savings won't pay for the engineering time.
  • Building something new with massive context needs? Start with Gemini 3.5 Flash. Long-context is its lane.
  • Need bulletproof tool calling for agents? Claude Haiku, every time.
  • Just shipping a side project and want zero friction? GPT-4o mini.

The dirty secret of LLM migrations is that model choice matters way less than your prompts and your eval suite. Spend the time on evals first. Then pick whichever model wins your benchmark — not whichever one trended on Hacker News last week.