This commit is contained in:
Paul Gauthier 2024-09-26 11:35:33 -07:00
parent 5a78e7d1b8
commit c3b9d34e24
7 changed files with 192 additions and 5 deletions

View file

@ -27,13 +27,14 @@ cog.out(get_md_help())
```
usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
[--opus] [--sonnet] [--4] [--4o] [--mini] [--4-turbo]
[--35turbo] [--deepseek] [--list-models]
[--openai-api-base] [--openai-api-type]
[--35turbo] [--deepseek] [--o1-mini] [--o1-preview]
[--list-models] [--openai-api-base] [--openai-api-type]
[--openai-api-version] [--openai-api-deployment-id]
[--openai-organization-id] [--model-settings-file]
[--model-metadata-file]
[--verify-ssl | --no-verify-ssl] [--edit-format]
[--weak-model]
[--senior] [--weak-model] [--junior-model]
[--junior-edit-format]
[--show-model-warnings | --no-show-model-warnings]
[--max-chat-history-tokens] [--env-file]
[--cache-prompts | --no-cache-prompts]
@ -133,6 +134,14 @@ Aliases:
Use deepseek/deepseek-coder model for the main chat
Environment variable: `AIDER_DEEPSEEK`
### `--o1-mini`
Use o1-mini model for the main chat
Environment variable: `AIDER_O1_MINI`
### `--o1-preview`
Use o1-preview model for the main chat
Environment variable: `AIDER_O1_PREVIEW`
## Model Settings:
### `--list-models MODEL`
@ -187,10 +196,22 @@ Aliases:
- `--edit-format EDIT_FORMAT`
- `--chat-mode EDIT_FORMAT`
### `--senior`
Use senior edit format for the main chat
Environment variable: `AIDER_SENIOR`
### `--weak-model WEAK_MODEL`
Specify the model to use for commit messages and chat history summarization (default depends on --model)
Environment variable: `AIDER_WEAK_MODEL`
### `--junior-model JUNIOR_MODEL`
Specify the model to use for junior tasks (default depends on --model)
Environment variable: `AIDER_JUNIOR_MODEL`
### `--junior-edit-format JUNIOR_EDIT_FORMAT`
Specify the edit format for the junior model (default: depends on junior model)
Environment variable: `AIDER_JUNIOR_EDIT_FORMAT`
### `--show-model-warnings`
Only work with models that have meta-data available (default: True)
Default: True