This commit is contained in:
Paul Gauthier 2024-08-12 15:36:41 -07:00
parent 2a1fb7d150
commit 2f3aa54845
7 changed files with 39 additions and 1 deletions

View file

@ -1,6 +1,17 @@
# Release history # Release history
### main branch
- Infinite output for DeepSeek Coder, Mistral models in addition to Anthropic's models.
- New `--chat-mode <mode>` switch to launch in ask/help/code modes.
- New `/code <message>` command request a code edit while in `ask` mode.
- Web scraper is more robust if page never idles.
- Improvements and bug fixes for `/read` only files.
- Bug fix to persist files added during `/ask`.
- Bug fix for chat history size in `/tokens`.
### Aider v0.49.1 ### Aider v0.49.1
- Bugfix to `/help`. - Bugfix to `/help`.

View file

@ -16,6 +16,17 @@ cog.out(text)
# Release history # Release history
### main branch
- Infinite output for DeepSeek Coder, Mistral models in addition to Anthropic's models.
- New `--chat-mode <mode>` switch to launch in ask/help/code modes.
- New `/code <message>` command request a code edit while in `ask` mode.
- Web scraper is more robust if page never idles.
- Improvements and bug fixes for `/read` only files.
- Bug fix to persist files added during `/ask`.
- Bug fix for chat history size in `/tokens`.
### Aider v0.49.1 ### Aider v0.49.1
- Bugfix to `/help`. - Bugfix to `/help`.

View file

@ -47,6 +47,9 @@
## Use gpt-3.5-turbo model for the main chat ## Use gpt-3.5-turbo model for the main chat
#35turbo: false #35turbo: false
## Use deepseek/deepseek-coder model for the main chat
#deepseek: false
################# #################
# Model Settings: # Model Settings:

View file

@ -51,6 +51,9 @@
## Use gpt-3.5-turbo model for the main chat ## Use gpt-3.5-turbo model for the main chat
#AIDER_35TURBO= #AIDER_35TURBO=
## Use deepseek/deepseek-coder model for the main chat
#AIDER_DEEPSEEK=
################# #################
# Model Settings: # Model Settings:

View file

@ -86,6 +86,9 @@ cog.outl("```")
## Use gpt-3.5-turbo model for the main chat ## Use gpt-3.5-turbo model for the main chat
#35turbo: false #35turbo: false
## Use deepseek/deepseek-coder model for the main chat
#deepseek: false
################# #################
# Model Settings: # Model Settings:

View file

@ -93,6 +93,9 @@ cog.outl("```")
## Use gpt-3.5-turbo model for the main chat ## Use gpt-3.5-turbo model for the main chat
#AIDER_35TURBO= #AIDER_35TURBO=
## Use deepseek/deepseek-coder model for the main chat
#AIDER_DEEPSEEK=
################# #################
# Model Settings: # Model Settings:

View file

@ -27,7 +27,7 @@ cog.out(get_md_help())
``` ```
usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model] usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
[--opus] [--sonnet] [--4] [--4o] [--mini] [--4-turbo] [--opus] [--sonnet] [--4] [--4o] [--mini] [--4-turbo]
[--35turbo] [--models] [--openai-api-base] [--35turbo] [--deepseek] [--models] [--openai-api-base]
[--openai-api-type] [--openai-api-version] [--openai-api-type] [--openai-api-version]
[--openai-api-deployment-id] [--openai-organization-id] [--openai-api-deployment-id] [--openai-organization-id]
[--model-settings-file] [--model-metadata-file] [--model-settings-file] [--model-metadata-file]
@ -118,6 +118,10 @@ Aliases:
- `--3` - `--3`
- `-3` - `-3`
### `--deepseek`
Use deepseek/deepseek-coder model for the main chat
Environment variable: `AIDER_DEEPSEEK`
## Model Settings: ## Model Settings:
### `--models MODEL` ### `--models MODEL`