mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
copy
This commit is contained in:
parent
a596a32290
commit
97d103f6a4
3 changed files with 17 additions and 6 deletions
|
@ -13,6 +13,9 @@
|
||||||
#######
|
#######
|
||||||
# Main:
|
# Main:
|
||||||
|
|
||||||
|
## Log the conversation with the LLM to this file (for example, .aider.llm.history)
|
||||||
|
#llm-history-file:
|
||||||
|
|
||||||
## Specify the OpenAI API key
|
## Specify the OpenAI API key
|
||||||
#openai-api-key:
|
#openai-api-key:
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,9 @@ cog.outl("```")
|
||||||
#######
|
#######
|
||||||
# Main:
|
# Main:
|
||||||
|
|
||||||
|
## Log the conversation with the LLM to this file (for example, .aider.llm.history)
|
||||||
|
#llm-history-file:
|
||||||
|
|
||||||
## Specify the OpenAI API key
|
## Specify the OpenAI API key
|
||||||
#openai-api-key:
|
#openai-api-key:
|
||||||
|
|
||||||
|
|
|
@ -14,12 +14,13 @@ from aider.args import get_md_help
|
||||||
cog.out(get_md_help())
|
cog.out(get_md_help())
|
||||||
]]]-->
|
]]]-->
|
||||||
```
|
```
|
||||||
usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
|
usage: aider [-h] [--llm-history-file] [--openai-api-key]
|
||||||
[--opus] [--sonnet] [--4] [--4o] [--4-turbo]
|
[--anthropic-api-key] [--model] [--opus] [--sonnet]
|
||||||
[--35turbo] [--models] [--openai-api-base]
|
[--4] [--4o] [--4-turbo] [--35turbo] [--models]
|
||||||
[--openai-api-type] [--openai-api-version]
|
[--openai-api-base] [--openai-api-type]
|
||||||
[--openai-api-deployment-id] [--openai-organization-id]
|
[--openai-api-version] [--openai-api-deployment-id]
|
||||||
[--model-metadata-file] [--edit-format] [--weak-model]
|
[--openai-organization-id] [--model-metadata-file]
|
||||||
|
[--edit-format] [--weak-model]
|
||||||
[--show-model-warnings | --no-show-model-warnings]
|
[--show-model-warnings | --no-show-model-warnings]
|
||||||
[--map-tokens] [--max-chat-history-tokens] [--env-file]
|
[--map-tokens] [--max-chat-history-tokens] [--env-file]
|
||||||
[--input-history-file] [--chat-history-file]
|
[--input-history-file] [--chat-history-file]
|
||||||
|
@ -52,6 +53,10 @@ Aliases:
|
||||||
|
|
||||||
## Main:
|
## Main:
|
||||||
|
|
||||||
|
### `--llm-history-file LLM_HISTORY_FILE`
|
||||||
|
Log the conversation with the LLM to this file (for example, .aider.llm.history)
|
||||||
|
Environment variable: `AIDER_LLM_HISTORY_FILE`
|
||||||
|
|
||||||
### `--openai-api-key OPENAI_API_KEY`
|
### `--openai-api-key OPENAI_API_KEY`
|
||||||
Specify the OpenAI API key
|
Specify the OpenAI API key
|
||||||
Environment variable: `OPENAI_API_KEY`
|
Environment variable: `OPENAI_API_KEY`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue