mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
feat: add cog script to auto-generate model aliases docs
This commit is contained in:
parent
1647da2942
commit
f94e3e6aba
1 changed files with 8 additions and 9 deletions
|
@ -42,15 +42,14 @@ aider --model smart # Uses gpt-4
|
|||
|
||||
Aider includes some built-in aliases for convenience:
|
||||
|
||||
- `4`: gpt-4-0613
|
||||
- `4o`: gpt-4o-2024-08-06
|
||||
- `4-turbo`: gpt-4-1106-preview
|
||||
- `35turbo` or `35-turbo`: gpt-3.5-turbo
|
||||
- `3`: gpt-3.5-turbo
|
||||
- `sonnet`: claude-3-sonnet-20241022
|
||||
- `haiku`: claude-3-haiku-20241022
|
||||
- `opus`: claude-3-opus-20240229
|
||||
- `deepseek`: deepseek/deepseek-coder
|
||||
[[[cog
|
||||
import cog
|
||||
from aider.models import MODEL_ALIASES
|
||||
|
||||
for alias, model in sorted(MODEL_ALIASES.items()):
|
||||
cog.outl(f"- `{alias}`: {model}")
|
||||
]]]
|
||||
[[[end]]]
|
||||
|
||||
## Priority
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue