mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
copy
This commit is contained in:
parent
c760b61cf5
commit
4e718fa8e1
5 changed files with 20 additions and 3 deletions
|
@ -98,6 +98,9 @@
|
|||
## Enable caching of prompts (default: False)
|
||||
#cache-prompts: false
|
||||
|
||||
## Number of pings to warm up the cache (default: 0)
|
||||
#cache-warming-pings: false
|
||||
|
||||
## Multiplier for map tokens when no files are specified (default: 2)
|
||||
#map-multiplier-no-files: true
|
||||
|
||||
|
|
|
@ -102,6 +102,9 @@
|
|||
## Enable caching of prompts (default: False)
|
||||
#AIDER_CACHE_PROMPTS=false
|
||||
|
||||
## Number of pings to warm up the cache (default: 0)
|
||||
#AIDER_CACHE_WARMING_PINGS=false
|
||||
|
||||
## Multiplier for map tokens when no files are specified (default: 2)
|
||||
#AIDER_MAP_MULTIPLIER_NO_FILES=true
|
||||
|
||||
|
|
|
@ -137,6 +137,9 @@ cog.outl("```")
|
|||
## Enable caching of prompts (default: False)
|
||||
#cache-prompts: false
|
||||
|
||||
## Number of pings to warm up the cache (default: 0)
|
||||
#cache-warming-pings: false
|
||||
|
||||
## Multiplier for map tokens when no files are specified (default: 2)
|
||||
#map-multiplier-no-files: true
|
||||
|
||||
|
|
|
@ -144,6 +144,9 @@ cog.outl("```")
|
|||
## Enable caching of prompts (default: False)
|
||||
#AIDER_CACHE_PROMPTS=false
|
||||
|
||||
## Number of pings to warm up the cache (default: 0)
|
||||
#AIDER_CACHE_WARMING_PINGS=false
|
||||
|
||||
## Multiplier for map tokens when no files are specified (default: 2)
|
||||
#AIDER_MAP_MULTIPLIER_NO_FILES=true
|
||||
|
||||
|
|
|
@ -36,9 +36,9 @@ usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
|
|||
[--show-model-warnings | --no-show-model-warnings]
|
||||
[--map-tokens] [--map-refresh]
|
||||
[--cache-prompts | --no-cache-prompts]
|
||||
[--map-multiplier-no-files] [--max-chat-history-tokens]
|
||||
[--env-file] [--input-history-file]
|
||||
[--chat-history-file]
|
||||
[--cache-warming-pings] [--map-multiplier-no-files]
|
||||
[--max-chat-history-tokens] [--env-file]
|
||||
[--input-history-file] [--chat-history-file]
|
||||
[--restore-chat-history | --no-restore-chat-history]
|
||||
[--llm-history-file] [--dark-mode] [--light-mode]
|
||||
[--pretty | --no-pretty] [--stream | --no-stream]
|
||||
|
@ -205,6 +205,11 @@ Aliases:
|
|||
- `--cache-prompts`
|
||||
- `--no-cache-prompts`
|
||||
|
||||
### `--cache-warming-pings VALUE`
|
||||
Number of pings to warm up the cache (default: 0)
|
||||
Default: 0
|
||||
Environment variable: `AIDER_CACHE_WARMING_PINGS`
|
||||
|
||||
### `--map-multiplier-no-files VALUE`
|
||||
Multiplier for map tokens when no files are specified (default: 2)
|
||||
Default: 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue