This commit is contained in:
Paul Gauthier 2024-06-21 07:47:29 -07:00
parent d73fddccb9
commit 93e104f79f
5 changed files with 23 additions and 2 deletions

View file

@ -64,6 +64,9 @@
## Specify the OpenAI organization ID
#openai-organization-id:
## Verify the SSL cert when connecting to models (default: True)
#verify-ssl: true
## Specify a file with context window and costs for unknown models
#model-metadata-file:

View file

@ -72,6 +72,9 @@
## Specify the OpenAI organization ID
#OPENAI_ORGANIZATION_ID=
## Verify the SSL cert when connecting to models (default: True)
#AIDER_VERIFY_SSL=true
## Specify a file with context window and costs for unknown models
#AIDER_MODEL_METADATA_FILE=

View file

@ -92,6 +92,9 @@ cog.outl("```")
## Specify the OpenAI organization ID
#openai-organization-id:
## Verify the SSL cert when connecting to models (default: True)
#verify-ssl: true
## Specify a file with context window and costs for unknown models
#model-metadata-file:

View file

@ -105,6 +105,9 @@ cog.outl("```")
## Specify the OpenAI organization ID
#OPENAI_ORGANIZATION_ID=
## Verify the SSL cert when connecting to models (default: True)
#AIDER_VERIFY_SSL=true
## Specify a file with context window and costs for unknown models
#AIDER_MODEL_METADATA_FILE=

View file

@ -19,8 +19,9 @@ usage: aider [-h] [--llm-history-file] [--openai-api-key]
[--4] [--4o] [--4-turbo] [--35turbo] [--models]
[--openai-api-base] [--openai-api-type]
[--openai-api-version] [--openai-api-deployment-id]
[--openai-organization-id] [--model-metadata-file]
[--edit-format] [--weak-model]
[--openai-organization-id]
[--verify-ssl | --no-verify-ssl]
[--model-metadata-file] [--edit-format] [--weak-model]
[--show-model-warnings | --no-show-model-warnings]
[--map-tokens] [--max-chat-history-tokens] [--env-file]
[--input-history-file] [--chat-history-file]
@ -128,6 +129,14 @@ Environment variable: `OPENAI_API_DEPLOYMENT_ID`
Specify the OpenAI organization ID
Environment variable: `OPENAI_ORGANIZATION_ID`
### `--verify-ssl`
Verify the SSL cert when connecting to models (default: True)
Default: True
Environment variable: `AIDER_VERIFY_SSL`
Aliases:
- `--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`