Paul Gauthier
1e001bd73c
fix: Update model names in test_models.py
2026-02-11 08:29:48 -08:00
Paul Gauthier
b77180711c
copy
2026-02-11 07:34:31 -08:00
Paul Gauthier
750c61c6a0
bump deps
2026-02-11 07:33:32 -08:00
Paul Gauthier
0811a180cf
copy
2026-02-11 07:21:09 -08:00
Paul Gauthier
463bf8023c
copy
2026-02-11 07:17:19 -08:00
Paul Gauthier
fa3d7b14c0
refactor: Update flash alias to point to gemini/gemini-flash-latest
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 07:13:25 -08:00
Paul Gauthier
87c552bbee
feat: Add openrouter entries for new models
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 07:01:53 -08:00
Paul Gauthier
c7912bf76a
feat: Add Gemini 2.5 Flash and Flash-Lite models to settings
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 06:56:50 -08:00
Paul Gauthier
c1e0c601da
feat: Add settings for new OpenAI models
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 06:54:08 -08:00
Paul Gauthier
6a3bbfd95d
fix: Remove non-existent openrouter anthropic model versions
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 06:48:58 -08:00
Paul Gauthier
c50eb7512f
fix: Update openrouter model version numbers to use dots
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 06:46:45 -08:00
Paul Gauthier
3aa642fec9
feat: add missing openrouter anthropic model entries
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 06:45:56 -08:00
Paul Gauthier
114057283d
feat: update models.py for Claude 4.5/4.6
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 06:43:41 -08:00
Paul Gauthier
98cc418ea3
feat: Add Claude 4.5/4.6 models to model-settings.yml
...
Co-authored-by: aider (openai/gpt-5.2) <aider@aider.chat >
2026-02-11 06:41:17 -08:00
Paul Gauthier
a6a31c7b82
fix: Update python version in Dockerfile site-packages permissions
2026-02-11 06:32:23 -08:00
Paul Gauthier
5cb6b61047
dockerfile to 3.12
2026-02-10 19:26:46 -08:00
Paul Gauthier
22b9aec8ac
reqs
2026-02-10 19:25:06 -08:00
Paul Gauthier
f8f2726b14
copy
2026-02-10 18:59:19 -08:00
Paul Gauthier
d9d5c1e233
pip-compile
2026-02-10 18:55:35 -08:00
Paul Gauthier
94bd7abd17
from #4814
2026-02-10 18:55:16 -08:00
Paul Gauthier
c1924f2c45
from #4814
2026-02-10 18:53:22 -08:00
Paul Gauthier
a8c3e7c29c
copy
2026-02-10 18:46:04 -08:00
paul-gauthier
4bf56b7714
Merge pull request #4772 from markmcd/sdk-depro
...
Remove `google-generativeai` as a dependency.
2026-01-19 07:39:27 -08:00
Mark McDonald
d91c02c205
Remove google-generativeai as a dependency.
...
The `google-generativeai` package is deprecated, and emits warnings when
it's imported. I'm doing some cleanup work to remove it from popular
surfacess, so here's a PR :)
I'll note that `litellm` uses direct HTTP requests for the API, so it
does not use `google-genai` (except for type checking) or
`google-generativeai` (except for a deprecated PaLM codepath).
2026-01-16 17:54:49 +08:00
paul-gauthier
fb05748ace
Merge pull request #4748 from claui/fix-litellm-exception-list-regression
...
Fix regression in the LiteLLM exception list
2026-01-04 11:40:30 -04:00
Claudia Pellegrino
08165c57a2
fix: exclude regular classes that end with Error
...
In an attempt to fix issue #4615 [1], commit 656301c [2] introduces a
regression where running the `coder` feature raises the following error:
> TypeError: catching classes that do not inherit from BaseException is not allowed
The primary misunderstanding that caused the regression is the fact that
`ErrorEventError` sounds like an error class that needs to be included
in the exceptions list. In reality, however, the name `ErrorEventError`
is just a coincidence and actually belongs to a regular class, which
doesn’t have `BaseException` in its chain of base classes.
Current Python versions raise a `TypeError` at runtime if you try to
include such a class name in an `except` clause, which explains why the
error shows up.
Narrow down the filter so it only tries to include actual exception
classes and excludes classes like `ErrorEventError`.
Also remove `ErrorEventError` from the exception list.
Fixes issue #4615 [1] and #4724 [3]. Reverts commit 656301c [2].
[1]: https://github.com/Aider-AI/aider/issues/4615
[2]: 656301cc87
[3]: https://github.com/Aider-AI/aider/issues/4724
2026-01-04 15:26:28 +01:00
Paul Gauthier
1354e0bfa4
copy
2025-12-18 10:37:28 -08:00
Paul Gauthier
2d54feaa09
chore: Update dependencies in requirements files
2025-12-18 10:37:02 -08:00
Paul Gauthier
7ef1dcd64a
fix: Add ImageFetchError to aider's exceptions list
...
Co-authored-by: aider (gemini/gemini-3-flash-preview) <aider@aider.chat >
2025-12-18 10:34:52 -08:00
Paul Gauthier
656301cc87
fix: Add ErrorEventError to aider's exceptions list
...
Co-authored-by: aider (gemini/gemini-3-flash-preview) <aider@aider.chat >
2025-12-18 10:34:30 -08:00
Paul Gauthier
2c39cb68c7
fix: Add BadGatewayError to exceptions list
...
Co-authored-by: aider (gemini/gemini-3-flash-preview) <aider@aider.chat >
2025-12-18 10:33:52 -08:00
Paul Gauthier
7e292a2efc
feat: Add gemini-3-flash-preview model entries
...
Co-authored-by: aider (gemini/gemini-3-flash-preview) <aider@aider.chat >
2025-12-18 10:29:33 -08:00
paul-gauthier
7301d4522d
Merge pull request #4698 from codeofdusk/gpt-5.2
2025-12-11 11:28:27 -08:00
Bill Dengler
4ff959f55b
Add gpt-5.2 models
2025-12-11 11:14:33 -08:00
Chris McCormick
4e77720c6f
Don't stage files with no-auto-commits.
2025-11-30 15:21:00 +08:00
Chris McCormick
f73085357c
Allow adding read-only files to editable with git: false.
2025-11-30 09:54:14 +08:00
Paul Gauthier
5683f1c089
bump ts
2025-11-22 11:06:46 -08:00
Paul Gauthier
3bdd49c8ab
bump deps
2025-11-21 15:22:54 -08:00
Paul Gauthier
dbc7ee0d0b
copy
2025-11-21 15:22:43 -08:00
Paul Gauthier
a65e0892b9
feat: Add use_temperature: false to openrouter/openai/gpt-5-pro
...
Co-authored-by: aider (gemini/gemini-3-pro-preview) <aider@aider.chat >
2025-11-21 15:22:14 -08:00
Paul Gauthier
7360bb5064
feat: Add use_temperature: false to gpt-5 models
2025-11-21 15:22:14 -08:00
Paul Gauthier
f626e44a0d
copy
2025-11-20 20:34:03 -08:00
Paul Gauthier
90ac33cb88
copy
2025-11-20 20:33:46 -08:00
Paul Gauthier
5b0f6ce9e9
Merge branch 'main' of github.com:Aider-AI/aider
2025-11-20 11:13:35 -08:00
paul-gauthier
58eae2f94a
Merge pull request #4656 from codeofdusk/new-models-20251118
2025-11-19 09:08:49 -08:00
Bill Dengler
ab29b99518
Add Gemini 3
2025-11-18 13:54:03 -08:00
Bill Dengler
a719c2848b
Add gpt-5.1
2025-11-18 13:54:03 -08:00
Bill Dengler
749dee8f30
Add support for gpt-5-pro
2025-11-18 13:54:03 -08:00
paul-gauthier
c74f5efb2f
Merge pull request #4621 from TimPut/repomap-haskell
2025-11-02 09:43:18 -08:00
paul-gauthier
9fbfa36c27
Merge pull request #4620 from TimPut/repomap-zig
2025-11-02 09:42:56 -08:00