mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-11 23:25:01 +00:00
copy
This commit is contained in:
parent
8da47b9664
commit
4b82277ef7
9 changed files with 477 additions and 14 deletions
|
@ -137,8 +137,8 @@ cog.outl("```")
|
|||
## Enable caching of prompts (default: False)
|
||||
#cache-prompts: false
|
||||
|
||||
## Number of times to ping every 5min to keep prompt cache warm (default: 0)
|
||||
#cache-warming-pings: false
|
||||
## Number of times to ping at 5min intervals to keep prompt cache warm (default: 0)
|
||||
#cache-keepalive-pings: false
|
||||
|
||||
## Multiplier for map tokens when no files are specified (default: 2)
|
||||
#map-multiplier-no-files: true
|
||||
|
|
|
@ -144,8 +144,8 @@ cog.outl("```")
|
|||
## Enable caching of prompts (default: False)
|
||||
#AIDER_CACHE_PROMPTS=false
|
||||
|
||||
## Number of times to ping every 5min to keep prompt cache warm (default: 0)
|
||||
#AIDER_CACHE_WARMING_PINGS=false
|
||||
## Number of times to ping at 5min intervals to keep prompt cache warm (default: 0)
|
||||
#AIDER_CACHE_KEEPALIVE_PINGS=false
|
||||
|
||||
## Multiplier for map tokens when no files are specified (default: 2)
|
||||
#AIDER_MAP_MULTIPLIER_NO_FILES=true
|
||||
|
|
|
@ -36,7 +36,7 @@ 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]
|
||||
[--cache-warming-pings] [--map-multiplier-no-files]
|
||||
[--cache-keepalive-pings] [--map-multiplier-no-files]
|
||||
[--max-chat-history-tokens] [--env-file]
|
||||
[--input-history-file] [--chat-history-file]
|
||||
[--restore-chat-history | --no-restore-chat-history]
|
||||
|
@ -205,10 +205,10 @@ Aliases:
|
|||
- `--cache-prompts`
|
||||
- `--no-cache-prompts`
|
||||
|
||||
### `--cache-warming-pings VALUE`
|
||||
Number of times to ping every 5min to keep prompt cache warm (default: 0)
|
||||
### `--cache-keepalive-pings VALUE`
|
||||
Number of times to ping at 5min intervals to keep prompt cache warm (default: 0)
|
||||
Default: 0
|
||||
Environment variable: `AIDER_CACHE_WARMING_PINGS`
|
||||
Environment variable: `AIDER_CACHE_KEEPALIVE_PINGS`
|
||||
|
||||
### `--map-multiplier-no-files VALUE`
|
||||
Multiplier for map tokens when no files are specified (default: 2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue