Tinker AI
Read reviews
2026-04-24 Source

Aider added support for Claude 3.5 Haiku within hours of its public availability. This is the third model release in a row where Aider has shipped support on launch day — same pattern with the original Sonnet 3.5, with the GPT-4o family, and with several Gemini and DeepSeek releases.

The newsworthy thing isn’t Haiku itself. It’s that “Aider supports the model on day one” has become reliable enough to factor into tooling decisions.

How Aider does this

Most AI coding tools that wrap a model have a release lag. The vendor needs to update prompt templates, test the new model’s behavior, push a release to users. The lag varies — some are weeks, some are months.

Aider’s architecture sidesteps most of this. The tool uses LiteLLM as its model abstraction layer, which means new models become available as soon as LiteLLM adds them — typically the same day as the provider releases. Aider’s own configuration is mostly model-agnostic; you specify the model name and the appropriate environment variable, and it works.

For new providers, there’s a small amount of Aider-side work to handle quirks (some models need different prompt formatting, some have different rate-limit semantics). For new models from established providers, the work is usually zero.

The result: a consistent pattern where Aider users get access to new models faster than users of the closed-source tools.

What Haiku 3.5 brings

Claude 3.5 Haiku is positioned as a faster, cheaper alternative to Sonnet for tasks that don’t need full Sonnet reasoning. Anthropic’s pricing puts it at roughly a quarter of Sonnet’s per-token cost.

For Aider specifically, this matters because Aider is often used iteratively — many small turns rather than a few big ones. The cost of a 6-turn debugging session adds up faster on Sonnet than on Haiku. Haiku’s lower cost lets you iterate more freely without worrying about the bill.

Anecdotally from a few hours of testing on common Aider tasks:

  • Boilerplate generation: Haiku is roughly equivalent to Sonnet. No detectable quality difference on these tasks.
  • Test scaffolding: Equivalent. Both produce similar test patterns.
  • Refactors with constraints: Sonnet noticeably better. Haiku misses some constraints when they’re stated implicitly.
  • Multi-file reasoning: Sonnet noticeably better. Haiku stays in the immediate file more often.
  • Architect mode (Sonnet plans, Haiku edits): Worth the routing. Plans are good; edits are fast and cheap.

For users who currently run Sonnet for everything, Haiku for the easier tasks is a real cost win. The pattern from previous Haiku releases — heavy users save 50-70% on iteration-heavy days — should continue.

The wider point

Aider’s model agility is a structural advantage worth understanding. The closed tools eventually catch up; “Cursor adds Claude 3.5 Haiku” will be a release note in a few weeks. But for users who want to test new models the day they ship — for personal evaluation, for a specific cost optimization, for curiosity — Aider is the lowest-friction option.

This isn’t a “Aider is better than Cursor” point. The closed tools have UX advantages that compensate for their model-update lag. But if your workflow includes “I want to know whether the new model is good for me, today,” Aider’s plumbing makes that easy in a way the alternatives don’t.

Configuration

For users on Aider 0.55+ already, switching to Haiku is one flag:

aider --model claude-3-5-haiku-20241022

Or set as default in .aider.conf.yml:

model: claude-3-5-haiku-20241022

Anthropic API key needs to be in ANTHROPIC_API_KEY. No other configuration required.

For architect mode (Sonnet plans, Haiku edits):

aider --architect \
      --model claude-3-5-sonnet-20241022 \
      --editor-model claude-3-5-haiku-20241022

What’s not in this release

A few things not changing with Haiku 3.5 support:

No new Aider features. This is a model addition, not a tool feature. Aider’s surface area is unchanged.

No new pricing model. Aider remains free; you pay for the underlying API. Whatever Anthropic charges for Haiku is what you pay; Aider doesn’t add markup.

No quality breakthrough. Haiku is positioned as the cost-optimization choice, not the new top of the model stack. Don’t expect it to be better than Sonnet on hard tasks. It’s about being good enough for cheaper, not better.

The signal isn’t “everyone should switch to Haiku.” It’s “if you’ve been running Sonnet for everything, evaluating Haiku for the easier subset of your work is now possible without waiting for tooling support.”