mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
missing ); update docs
This commit is contained in:
parent
cf451d5e9e
commit
8c5c2d27a4
6 changed files with 32 additions and 26 deletions
|
@ -163,6 +163,7 @@ def get_parser(default_config_files, git_root):
|
||||||
metavar="MODEL_SETTINGS_FILE",
|
metavar="MODEL_SETTINGS_FILE",
|
||||||
default=None,
|
default=None,
|
||||||
help="Specify a file with aider model settings for unknown models",
|
help="Specify a file with aider model settings for unknown models",
|
||||||
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--model-metadata-file",
|
"--model-metadata-file",
|
||||||
metavar="MODEL_METADATA_FILE",
|
metavar="MODEL_METADATA_FILE",
|
||||||
|
@ -174,7 +175,7 @@ def get_parser(default_config_files, git_root):
|
||||||
action=argparse.BooleanOptionalAction,
|
action=argparse.BooleanOptionalAction,
|
||||||
default=True,
|
default=True,
|
||||||
help="Verify the SSL cert when connecting to models (default: True)",
|
help="Verify the SSL cert when connecting to models (default: True)",
|
||||||
)
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--edit-format",
|
"--edit-format",
|
||||||
metavar="EDIT_FORMAT",
|
metavar="EDIT_FORMAT",
|
||||||
|
|
|
@ -64,12 +64,15 @@
|
||||||
## Specify the OpenAI organization ID
|
## Specify the OpenAI organization ID
|
||||||
#openai-organization-id:
|
#openai-organization-id:
|
||||||
|
|
||||||
## Verify the SSL cert when connecting to models (default: True)
|
## Specify a file with aider model settings for unknown models
|
||||||
#verify-ssl: true
|
#model-settings-file:
|
||||||
|
|
||||||
## Specify a file with context window and costs for unknown models
|
## Specify a file with context window and costs for unknown models
|
||||||
#model-metadata-file:
|
#model-metadata-file:
|
||||||
|
|
||||||
|
## Verify the SSL cert when connecting to models (default: True)
|
||||||
|
#verify-ssl: true
|
||||||
|
|
||||||
## Specify what edit format the LLM should use (default depends on model)
|
## Specify what edit format the LLM should use (default depends on model)
|
||||||
#edit-format:
|
#edit-format:
|
||||||
|
|
||||||
|
|
|
@ -72,12 +72,15 @@
|
||||||
## Specify the OpenAI organization ID
|
## Specify the OpenAI organization ID
|
||||||
#OPENAI_ORGANIZATION_ID=
|
#OPENAI_ORGANIZATION_ID=
|
||||||
|
|
||||||
## Verify the SSL cert when connecting to models (default: True)
|
## Specify a file with aider model settings for unknown models
|
||||||
#AIDER_VERIFY_SSL=true
|
#AIDER_MODEL_SETTINGS_FILE=
|
||||||
|
|
||||||
## Specify a file with context window and costs for unknown models
|
## Specify a file with context window and costs for unknown models
|
||||||
#AIDER_MODEL_METADATA_FILE=
|
#AIDER_MODEL_METADATA_FILE=
|
||||||
|
|
||||||
|
## Verify the SSL cert when connecting to models (default: True)
|
||||||
|
#AIDER_VERIFY_SSL=true
|
||||||
|
|
||||||
## Specify what edit format the LLM should use (default depends on model)
|
## Specify what edit format the LLM should use (default depends on model)
|
||||||
#AIDER_EDIT_FORMAT=
|
#AIDER_EDIT_FORMAT=
|
||||||
|
|
||||||
|
|
|
@ -92,12 +92,15 @@ cog.outl("```")
|
||||||
## Specify the OpenAI organization ID
|
## Specify the OpenAI organization ID
|
||||||
#openai-organization-id:
|
#openai-organization-id:
|
||||||
|
|
||||||
## Verify the SSL cert when connecting to models (default: True)
|
## Specify a file with aider model settings for unknown models
|
||||||
#verify-ssl: true
|
#model-settings-file:
|
||||||
|
|
||||||
## Specify a file with context window and costs for unknown models
|
## Specify a file with context window and costs for unknown models
|
||||||
#model-metadata-file:
|
#model-metadata-file:
|
||||||
|
|
||||||
|
## Verify the SSL cert when connecting to models (default: True)
|
||||||
|
#verify-ssl: true
|
||||||
|
|
||||||
## Specify what edit format the LLM should use (default depends on model)
|
## Specify what edit format the LLM should use (default depends on model)
|
||||||
#edit-format:
|
#edit-format:
|
||||||
|
|
||||||
|
|
|
@ -105,12 +105,15 @@ cog.outl("```")
|
||||||
## Specify the OpenAI organization ID
|
## Specify the OpenAI organization ID
|
||||||
#OPENAI_ORGANIZATION_ID=
|
#OPENAI_ORGANIZATION_ID=
|
||||||
|
|
||||||
## Verify the SSL cert when connecting to models (default: True)
|
## Specify a file with aider model settings for unknown models
|
||||||
#AIDER_VERIFY_SSL=true
|
#AIDER_MODEL_SETTINGS_FILE=
|
||||||
|
|
||||||
## Specify a file with context window and costs for unknown models
|
## Specify a file with context window and costs for unknown models
|
||||||
#AIDER_MODEL_METADATA_FILE=
|
#AIDER_MODEL_METADATA_FILE=
|
||||||
|
|
||||||
|
## Verify the SSL cert when connecting to models (default: True)
|
||||||
|
#AIDER_VERIFY_SSL=true
|
||||||
|
|
||||||
## Specify what edit format the LLM should use (default depends on model)
|
## Specify what edit format the LLM should use (default depends on model)
|
||||||
#AIDER_EDIT_FORMAT=
|
#AIDER_EDIT_FORMAT=
|
||||||
|
|
||||||
|
|
|
@ -14,22 +14,15 @@ from aider.args import get_md_help
|
||||||
cog.out(get_md_help())
|
cog.out(get_md_help())
|
||||||
]]]-->
|
]]]-->
|
||||||
```
|
```
|
||||||
usage: aider [-h] [--vim] [--openai-api-key] [--anthropic-api-key]
|
|
||||||
[--model] [--opus] [--sonnet] [--4] [--4o] [--4-turbo]
|
|
||||||
[--35turbo] [--models] [--openai-api-base]
|
|
||||||
[--openai-api-type] [--openai-api-version]
|
|
||||||
[--openai-api-deployment-id] [--openai-organization-id]
|
|
||||||
[--model-settings-file] [--model-metadata-file]
|
|
||||||
[--edit-format] [--weak-model]
|
|
||||||
=======
|
|
||||||
usage: aider [-h] [--llm-history-file] [--openai-api-key]
|
usage: aider [-h] [--llm-history-file] [--openai-api-key]
|
||||||
[--anthropic-api-key] [--model] [--opus] [--sonnet]
|
[--anthropic-api-key] [--model] [--opus] [--sonnet]
|
||||||
[--4] [--4o] [--4-turbo] [--35turbo] [--models]
|
[--4] [--4o] [--4-turbo] [--35turbo] [--models]
|
||||||
[--openai-api-base] [--openai-api-type]
|
[--openai-api-base] [--openai-api-type]
|
||||||
[--openai-api-version] [--openai-api-deployment-id]
|
[--openai-api-version] [--openai-api-deployment-id]
|
||||||
[--openai-organization-id]
|
[--openai-organization-id] [--model-settings-file]
|
||||||
[--verify-ssl | --no-verify-ssl]
|
[--model-metadata-file]
|
||||||
[--model-metadata-file] [--edit-format] [--weak-model]
|
[--verify-ssl | --no-verify-ssl] [--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]
|
||||||
|
@ -137,10 +130,14 @@ Environment variable: `OPENAI_API_DEPLOYMENT_ID`
|
||||||
Specify the OpenAI organization ID
|
Specify the OpenAI organization ID
|
||||||
Environment variable: `OPENAI_ORGANIZATION_ID`
|
Environment variable: `OPENAI_ORGANIZATION_ID`
|
||||||
|
|
||||||
### `--model-settings-file MODEL_FILE`
|
### `--model-settings-file MODEL_SETTINGS_FILE`
|
||||||
Specify a file with aider model settings for unknown models
|
Specify a file with aider model settings for unknown models
|
||||||
Environment variable: `AIDER_MODEL_SETTINGS_FILE`
|
Environment variable: `AIDER_MODEL_SETTINGS_FILE`
|
||||||
=======
|
|
||||||
|
### `--model-metadata-file MODEL_METADATA_FILE`
|
||||||
|
Specify a file with context window and costs for unknown models
|
||||||
|
Environment variable: `AIDER_MODEL_METADATA_FILE`
|
||||||
|
|
||||||
### `--verify-ssl`
|
### `--verify-ssl`
|
||||||
Verify the SSL cert when connecting to models (default: True)
|
Verify the SSL cert when connecting to models (default: True)
|
||||||
Default: True
|
Default: True
|
||||||
|
@ -149,10 +146,6 @@ Aliases:
|
||||||
- `--verify-ssl`
|
- `--verify-ssl`
|
||||||
- `--no-verify-ssl`
|
- `--no-verify-ssl`
|
||||||
|
|
||||||
### `--model-metadata-file MODEL_FILE`
|
|
||||||
Specify a file with context window and costs for unknown models
|
|
||||||
Environment variable: `AIDER_MODEL_METADATA_FILE`
|
|
||||||
|
|
||||||
### `--edit-format EDIT_FORMAT`
|
### `--edit-format EDIT_FORMAT`
|
||||||
Specify what edit format the LLM should use (default depends on model)
|
Specify what edit format the LLM should use (default depends on model)
|
||||||
Environment variable: `AIDER_EDIT_FORMAT`
|
Environment variable: `AIDER_EDIT_FORMAT`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue