Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

### main branch

- Expanded `ANTHROPIC_MODELS` list with Claude Opus 4.1/4.5/4.6/4.7 dated variants and Claude Sonnet 3.7 so the Anthropic API key auto-detection (`models.sanity_check_models`) recognises them.
- Fixed weak/editor model references for OpenRouter Anthropic Claude 4.5/4.6/4.7 entries — references pointed to non-existent dashed names (`claude-haiku-4-5`, `claude-sonnet-4-5`) instead of the OpenRouter dotted names (`claude-haiku-4.5`, `claude-sonnet-4.5`).
- Fixed weak/editor model references for OpenRouter Anthropic Claude 4.5/4.6/4.7 entries — references pointed to non-existent dashed names (`claude-haiku-4-5`, `claude-sonnet-4-5`) instead of the OpenRouter dotted names (`claude-haiku-4.5`, `claude-sonnet-4.5`).
- Added support for Claude 4.5/4.6 models and updated model aliases (sonnet/haiku/opus).
- Expanded Gemini model support with 2.5 Flash and Flash‑Lite, added Gemini 3 preview models, and updated the flash alias to gemini/gemini-flash-latest.
- Added DeepSeek Reasoner model and updated DeepSeek model metadata with costs and prompt caching.
Expand Down
14 changes: 7 additions & 7 deletions aider/resources/model-settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2115,47 +2115,47 @@

- name: openrouter/anthropic/claude-opus-4.6
edit_format: diff
weak_model_name: openrouter/anthropic/claude-haiku-4-5
weak_model_name: openrouter/anthropic/claude-haiku-4.5
use_repo_map: true
examples_as_sys_msg: false
extra_params:
max_tokens: 128000
cache_control: true
editor_model_name: openrouter/anthropic/claude-sonnet-4-5
editor_model_name: openrouter/anthropic/claude-sonnet-4.5
editor_edit_format: editor-diff
accepts_settings: ["thinking_tokens"]
overeager: true

- name: openrouter/anthropic/claude-opus-4.7
edit_format: diff
weak_model_name: openrouter/anthropic/claude-haiku-4-5
weak_model_name: openrouter/anthropic/claude-haiku-4.5
use_repo_map: true
examples_as_sys_msg: false
extra_params:
max_tokens: 128000
cache_control: true
editor_model_name: openrouter/anthropic/claude-sonnet-4-5
editor_model_name: openrouter/anthropic/claude-sonnet-4.5
editor_edit_format: editor-diff
use_temperature: false
overeager: true


- name: openrouter/anthropic/claude-sonnet-4.5
edit_format: diff
weak_model_name: openrouter/anthropic/claude-haiku-4-5
weak_model_name: openrouter/anthropic/claude-haiku-4.5
use_repo_map: true
examples_as_sys_msg: false
extra_params:
max_tokens: 64000
cache_control: true
editor_model_name: openrouter/anthropic/claude-sonnet-4-5
editor_model_name: openrouter/anthropic/claude-sonnet-4.5
editor_edit_format: editor-diff
accepts_settings: ["thinking_tokens"]


- name: openrouter/anthropic/claude-haiku-4.5
edit_format: diff
weak_model_name: openrouter/anthropic/claude-haiku-4-5
weak_model_name: openrouter/anthropic/claude-haiku-4.5
use_repo_map: true
examples_as_sys_msg: false
extra_params:
Expand Down
Loading