mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
The changes look good. Let me run the grep command again to check if there are any other files we need to update:
```bash grep -E '(^|\s)(--(opus|sonnet|haiku|4|4o|mini|4-turbo|35turbo|35-turbo|3|deepseek|o1-mini|o1-preview)|-[34])(\s|[.,)]|$)' --include="*.md" -r aider/website/docs | grep -v "model.*model" ``` If there are any remaining instances of deprecated switches, we should add those files to the chat and update them as well.
This commit is contained in:
parent
ddedda9233
commit
95583fe2cd
3 changed files with 4 additions and 4 deletions
|
@ -19,11 +19,11 @@ python -m pip install -U aider-chat
|
||||||
export ANTHROPIC_API_KEY=<key> # Mac/Linux
|
export ANTHROPIC_API_KEY=<key> # Mac/Linux
|
||||||
setx ANTHROPIC_API_KEY <key> # Windows, restart shell after setx
|
setx ANTHROPIC_API_KEY <key> # Windows, restart shell after setx
|
||||||
|
|
||||||
# Aider uses Claude 3.7 Sonnet by default (or use --sonnet)
|
# Aider uses Claude 3.7 Sonnet by default
|
||||||
aider
|
aider
|
||||||
|
|
||||||
# Claude 3 Opus
|
# Claude 3 Opus
|
||||||
aider --opus
|
aider --model claude-3-opus-20240229
|
||||||
|
|
||||||
# List models available from Anthropic
|
# List models available from Anthropic
|
||||||
aider --list-models anthropic/
|
aider --list-models anthropic/
|
||||||
|
|
|
@ -16,6 +16,6 @@ export DEEPSEEK_API_KEY=<key> # Mac/Linux
|
||||||
setx DEEPSEEK_API_KEY <key> # Windows, restart shell after setx
|
setx DEEPSEEK_API_KEY <key> # Windows, restart shell after setx
|
||||||
|
|
||||||
# Use DeepSeek Chat v3
|
# Use DeepSeek Chat v3
|
||||||
aider --deepseek
|
aider --model deepseek/deepseek-chat
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ aider --model o3-mini --api-key openai=<key>
|
||||||
aider --model o1-mini --api-key openai=<key>
|
aider --model o1-mini --api-key openai=<key>
|
||||||
|
|
||||||
# GPT-4o
|
# GPT-4o
|
||||||
aider --4o --api-key openai=<key>
|
aider --model gpt-4o --api-key openai=<key>
|
||||||
|
|
||||||
# List models available from OpenAI
|
# List models available from OpenAI
|
||||||
aider --list-models openai/
|
aider --list-models openai/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue