chatmcp-cli 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aider/__init__.py +20 -0
- aider/__main__.py +4 -0
- aider/_version.py +21 -0
- aider/analytics.py +250 -0
- aider/args.py +926 -0
- aider/args_formatter.py +228 -0
- aider/coders/__init__.py +34 -0
- aider/coders/architect_coder.py +48 -0
- aider/coders/architect_prompts.py +40 -0
- aider/coders/ask_coder.py +9 -0
- aider/coders/ask_prompts.py +35 -0
- aider/coders/base_coder.py +2483 -0
- aider/coders/base_prompts.py +60 -0
- aider/coders/chat_chunks.py +64 -0
- aider/coders/context_coder.py +53 -0
- aider/coders/context_prompts.py +75 -0
- aider/coders/editblock_coder.py +657 -0
- aider/coders/editblock_fenced_coder.py +10 -0
- aider/coders/editblock_fenced_prompts.py +143 -0
- aider/coders/editblock_func_coder.py +141 -0
- aider/coders/editblock_func_prompts.py +27 -0
- aider/coders/editblock_prompts.py +174 -0
- aider/coders/editor_diff_fenced_coder.py +9 -0
- aider/coders/editor_diff_fenced_prompts.py +11 -0
- aider/coders/editor_editblock_coder.py +8 -0
- aider/coders/editor_editblock_prompts.py +18 -0
- aider/coders/editor_whole_coder.py +8 -0
- aider/coders/editor_whole_prompts.py +10 -0
- aider/coders/help_coder.py +16 -0
- aider/coders/help_prompts.py +46 -0
- aider/coders/patch_coder.py +706 -0
- aider/coders/patch_prompts.py +161 -0
- aider/coders/search_replace.py +757 -0
- aider/coders/shell.py +37 -0
- aider/coders/single_wholefile_func_coder.py +102 -0
- aider/coders/single_wholefile_func_prompts.py +27 -0
- aider/coders/udiff_coder.py +429 -0
- aider/coders/udiff_prompts.py +115 -0
- aider/coders/udiff_simple.py +14 -0
- aider/coders/udiff_simple_prompts.py +25 -0
- aider/coders/wholefile_coder.py +144 -0
- aider/coders/wholefile_func_coder.py +134 -0
- aider/coders/wholefile_func_prompts.py +27 -0
- aider/coders/wholefile_prompts.py +67 -0
- aider/commands.py +1665 -0
- aider/copypaste.py +72 -0
- aider/deprecated.py +126 -0
- aider/diffs.py +128 -0
- aider/dump.py +29 -0
- aider/editor.py +147 -0
- aider/exceptions.py +107 -0
- aider/format_settings.py +26 -0
- aider/gui.py +545 -0
- aider/help.py +163 -0
- aider/help_pats.py +19 -0
- aider/history.py +143 -0
- aider/io.py +1175 -0
- aider/linter.py +304 -0
- aider/llm.py +47 -0
- aider/main.py +1267 -0
- aider/mdstream.py +243 -0
- aider/models.py +1286 -0
- aider/onboarding.py +428 -0
- aider/openrouter.py +128 -0
- aider/prompts.py +64 -0
- aider/queries/tree-sitter-language-pack/README.md +7 -0
- aider/queries/tree-sitter-language-pack/arduino-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/c-tags.scm +9 -0
- aider/queries/tree-sitter-language-pack/chatito-tags.scm +16 -0
- aider/queries/tree-sitter-language-pack/commonlisp-tags.scm +122 -0
- aider/queries/tree-sitter-language-pack/cpp-tags.scm +15 -0
- aider/queries/tree-sitter-language-pack/csharp-tags.scm +26 -0
- aider/queries/tree-sitter-language-pack/d-tags.scm +26 -0
- aider/queries/tree-sitter-language-pack/dart-tags.scm +92 -0
- aider/queries/tree-sitter-language-pack/elisp-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/elixir-tags.scm +54 -0
- aider/queries/tree-sitter-language-pack/elm-tags.scm +19 -0
- aider/queries/tree-sitter-language-pack/gleam-tags.scm +41 -0
- aider/queries/tree-sitter-language-pack/go-tags.scm +42 -0
- aider/queries/tree-sitter-language-pack/java-tags.scm +20 -0
- aider/queries/tree-sitter-language-pack/javascript-tags.scm +88 -0
- aider/queries/tree-sitter-language-pack/lua-tags.scm +34 -0
- aider/queries/tree-sitter-language-pack/ocaml-tags.scm +115 -0
- aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +98 -0
- aider/queries/tree-sitter-language-pack/pony-tags.scm +39 -0
- aider/queries/tree-sitter-language-pack/properties-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/python-tags.scm +14 -0
- aider/queries/tree-sitter-language-pack/r-tags.scm +21 -0
- aider/queries/tree-sitter-language-pack/racket-tags.scm +12 -0
- aider/queries/tree-sitter-language-pack/ruby-tags.scm +64 -0
- aider/queries/tree-sitter-language-pack/rust-tags.scm +60 -0
- aider/queries/tree-sitter-language-pack/solidity-tags.scm +43 -0
- aider/queries/tree-sitter-language-pack/swift-tags.scm +51 -0
- aider/queries/tree-sitter-language-pack/udev-tags.scm +20 -0
- aider/queries/tree-sitter-languages/README.md +23 -0
- aider/queries/tree-sitter-languages/c-tags.scm +9 -0
- aider/queries/tree-sitter-languages/c_sharp-tags.scm +46 -0
- aider/queries/tree-sitter-languages/cpp-tags.scm +15 -0
- aider/queries/tree-sitter-languages/dart-tags.scm +91 -0
- aider/queries/tree-sitter-languages/elisp-tags.scm +8 -0
- aider/queries/tree-sitter-languages/elixir-tags.scm +54 -0
- aider/queries/tree-sitter-languages/elm-tags.scm +19 -0
- aider/queries/tree-sitter-languages/go-tags.scm +30 -0
- aider/queries/tree-sitter-languages/hcl-tags.scm +77 -0
- aider/queries/tree-sitter-languages/java-tags.scm +20 -0
- aider/queries/tree-sitter-languages/javascript-tags.scm +88 -0
- aider/queries/tree-sitter-languages/kotlin-tags.scm +27 -0
- aider/queries/tree-sitter-languages/ocaml-tags.scm +115 -0
- aider/queries/tree-sitter-languages/ocaml_interface-tags.scm +98 -0
- aider/queries/tree-sitter-languages/php-tags.scm +26 -0
- aider/queries/tree-sitter-languages/python-tags.scm +12 -0
- aider/queries/tree-sitter-languages/ql-tags.scm +26 -0
- aider/queries/tree-sitter-languages/ruby-tags.scm +64 -0
- aider/queries/tree-sitter-languages/rust-tags.scm +60 -0
- aider/queries/tree-sitter-languages/scala-tags.scm +65 -0
- aider/queries/tree-sitter-languages/typescript-tags.scm +41 -0
- aider/reasoning_tags.py +82 -0
- aider/repo.py +623 -0
- aider/repomap.py +847 -0
- aider/report.py +200 -0
- aider/resources/__init__.py +3 -0
- aider/resources/model-metadata.json +468 -0
- aider/resources/model-settings.yml +1767 -0
- aider/run_cmd.py +132 -0
- aider/scrape.py +284 -0
- aider/sendchat.py +61 -0
- aider/special.py +203 -0
- aider/urls.py +17 -0
- aider/utils.py +338 -0
- aider/versioncheck.py +113 -0
- aider/voice.py +187 -0
- aider/waiting.py +221 -0
- aider/watch.py +318 -0
- aider/watch_prompts.py +12 -0
- aider/website/Gemfile +8 -0
- aider/website/_includes/blame.md +162 -0
- aider/website/_includes/get-started.md +22 -0
- aider/website/_includes/help-tip.md +5 -0
- aider/website/_includes/help.md +24 -0
- aider/website/_includes/install.md +5 -0
- aider/website/_includes/keys.md +4 -0
- aider/website/_includes/model-warnings.md +67 -0
- aider/website/_includes/multi-line.md +22 -0
- aider/website/_includes/python-m-aider.md +5 -0
- aider/website/_includes/recording.css +228 -0
- aider/website/_includes/recording.md +34 -0
- aider/website/_includes/replit-pipx.md +9 -0
- aider/website/_includes/works-best.md +1 -0
- aider/website/_sass/custom/custom.scss +103 -0
- aider/website/docs/config/adv-model-settings.md +1881 -0
- aider/website/docs/config/aider_conf.md +527 -0
- aider/website/docs/config/api-keys.md +90 -0
- aider/website/docs/config/dotenv.md +478 -0
- aider/website/docs/config/editor.md +127 -0
- aider/website/docs/config/model-aliases.md +103 -0
- aider/website/docs/config/options.md +843 -0
- aider/website/docs/config/reasoning.md +209 -0
- aider/website/docs/config.md +44 -0
- aider/website/docs/faq.md +378 -0
- aider/website/docs/git.md +76 -0
- aider/website/docs/index.md +47 -0
- aider/website/docs/install/codespaces.md +39 -0
- aider/website/docs/install/docker.md +57 -0
- aider/website/docs/install/optional.md +100 -0
- aider/website/docs/install/replit.md +8 -0
- aider/website/docs/install.md +115 -0
- aider/website/docs/languages.md +264 -0
- aider/website/docs/legal/contributor-agreement.md +111 -0
- aider/website/docs/legal/privacy.md +104 -0
- aider/website/docs/llms/anthropic.md +77 -0
- aider/website/docs/llms/azure.md +48 -0
- aider/website/docs/llms/bedrock.md +132 -0
- aider/website/docs/llms/cohere.md +34 -0
- aider/website/docs/llms/deepseek.md +32 -0
- aider/website/docs/llms/gemini.md +49 -0
- aider/website/docs/llms/github.md +105 -0
- aider/website/docs/llms/groq.md +36 -0
- aider/website/docs/llms/lm-studio.md +39 -0
- aider/website/docs/llms/ollama.md +75 -0
- aider/website/docs/llms/openai-compat.md +39 -0
- aider/website/docs/llms/openai.md +58 -0
- aider/website/docs/llms/openrouter.md +78 -0
- aider/website/docs/llms/other.md +103 -0
- aider/website/docs/llms/vertex.md +50 -0
- aider/website/docs/llms/warnings.md +10 -0
- aider/website/docs/llms/xai.md +53 -0
- aider/website/docs/llms.md +54 -0
- aider/website/docs/more/analytics.md +122 -0
- aider/website/docs/more/edit-formats.md +116 -0
- aider/website/docs/more/infinite-output.md +137 -0
- aider/website/docs/more-info.md +8 -0
- aider/website/docs/recordings/auto-accept-architect.md +31 -0
- aider/website/docs/recordings/dont-drop-original-read-files.md +35 -0
- aider/website/docs/recordings/index.md +21 -0
- aider/website/docs/recordings/model-accepts-settings.md +69 -0
- aider/website/docs/recordings/tree-sitter-language-pack.md +80 -0
- aider/website/docs/repomap.md +112 -0
- aider/website/docs/scripting.md +100 -0
- aider/website/docs/troubleshooting/aider-not-found.md +24 -0
- aider/website/docs/troubleshooting/edit-errors.md +76 -0
- aider/website/docs/troubleshooting/imports.md +62 -0
- aider/website/docs/troubleshooting/models-and-keys.md +54 -0
- aider/website/docs/troubleshooting/support.md +79 -0
- aider/website/docs/troubleshooting/token-limits.md +96 -0
- aider/website/docs/troubleshooting/warnings.md +12 -0
- aider/website/docs/troubleshooting.md +11 -0
- aider/website/docs/usage/browser.md +57 -0
- aider/website/docs/usage/caching.md +49 -0
- aider/website/docs/usage/commands.md +132 -0
- aider/website/docs/usage/conventions.md +119 -0
- aider/website/docs/usage/copypaste.md +121 -0
- aider/website/docs/usage/images-urls.md +48 -0
- aider/website/docs/usage/lint-test.md +118 -0
- aider/website/docs/usage/modes.md +211 -0
- aider/website/docs/usage/not-code.md +179 -0
- aider/website/docs/usage/notifications.md +87 -0
- aider/website/docs/usage/tips.md +79 -0
- aider/website/docs/usage/tutorials.md +30 -0
- aider/website/docs/usage/voice.md +121 -0
- aider/website/docs/usage/watch.md +294 -0
- aider/website/docs/usage.md +92 -0
- aider/website/share/index.md +101 -0
- chatmcp_cli-0.1.0.dist-info/METADATA +502 -0
- chatmcp_cli-0.1.0.dist-info/RECORD +228 -0
- chatmcp_cli-0.1.0.dist-info/WHEEL +5 -0
- chatmcp_cli-0.1.0.dist-info/entry_points.txt +3 -0
- chatmcp_cli-0.1.0.dist-info/licenses/LICENSE.txt +202 -0
- chatmcp_cli-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,843 @@
|
|
1
|
+
---
|
2
|
+
parent: Configuration
|
3
|
+
nav_order: 10
|
4
|
+
description: Details about all of aider's settings.
|
5
|
+
---
|
6
|
+
|
7
|
+
# Options reference
|
8
|
+
{: .no_toc }
|
9
|
+
|
10
|
+
You can use `aider --help` to see all the available options,
|
11
|
+
or review them below.
|
12
|
+
|
13
|
+
- TOC
|
14
|
+
{:toc}
|
15
|
+
|
16
|
+
{% include keys.md %}
|
17
|
+
|
18
|
+
## Usage summary
|
19
|
+
|
20
|
+
<!--[[[cog
|
21
|
+
from aider.args import get_md_help
|
22
|
+
cog.out(get_md_help())
|
23
|
+
]]]-->
|
24
|
+
```
|
25
|
+
usage: aider [-h] [--model] [--openai-api-key] [--anthropic-api-key]
|
26
|
+
[--openai-api-base] [--openai-api-type]
|
27
|
+
[--openai-api-version] [--openai-api-deployment-id]
|
28
|
+
[--openai-organization-id] [--set-env] [--api-key]
|
29
|
+
[--list-models] [--model-settings-file]
|
30
|
+
[--model-metadata-file] [--alias] [--reasoning-effort]
|
31
|
+
[--thinking-tokens] [--verify-ssl | --no-verify-ssl]
|
32
|
+
[--timeout] [--edit-format] [--architect]
|
33
|
+
[--auto-accept-architect | --no-auto-accept-architect]
|
34
|
+
[--weak-model] [--editor-model] [--editor-edit-format]
|
35
|
+
[--show-model-warnings | --no-show-model-warnings]
|
36
|
+
[--check-model-accepts-settings | --no-check-model-accepts-settings]
|
37
|
+
[--max-chat-history-tokens]
|
38
|
+
[--cache-prompts | --no-cache-prompts]
|
39
|
+
[--cache-keepalive-pings] [--map-tokens]
|
40
|
+
[--map-refresh] [--map-multiplier-no-files]
|
41
|
+
[--input-history-file] [--chat-history-file]
|
42
|
+
[--restore-chat-history | --no-restore-chat-history]
|
43
|
+
[--llm-history-file] [--dark-mode] [--light-mode]
|
44
|
+
[--pretty | --no-pretty] [--stream | --no-stream]
|
45
|
+
[--user-input-color] [--tool-output-color]
|
46
|
+
[--tool-error-color] [--tool-warning-color]
|
47
|
+
[--assistant-output-color] [--completion-menu-color]
|
48
|
+
[--completion-menu-bg-color]
|
49
|
+
[--completion-menu-current-color]
|
50
|
+
[--completion-menu-current-bg-color] [--code-theme]
|
51
|
+
[--show-diffs] [--git | --no-git]
|
52
|
+
[--gitignore | --no-gitignore] [--aiderignore]
|
53
|
+
[--subtree-only] [--auto-commits | --no-auto-commits]
|
54
|
+
[--dirty-commits | --no-dirty-commits]
|
55
|
+
[--attribute-author | --no-attribute-author]
|
56
|
+
[--attribute-committer | --no-attribute-committer]
|
57
|
+
[--attribute-commit-message-author | --no-attribute-commit-message-author]
|
58
|
+
[--attribute-commit-message-committer | --no-attribute-commit-message-committer]
|
59
|
+
[--attribute-co-authored-by | --no-attribute-co-authored-by]
|
60
|
+
[--git-commit-verify | --no-git-commit-verify]
|
61
|
+
[--commit] [--commit-prompt] [--dry-run | --no-dry-run]
|
62
|
+
[--skip-sanity-check-repo]
|
63
|
+
[--watch-files | --no-watch-files] [--lint]
|
64
|
+
[--lint-cmd] [--auto-lint | --no-auto-lint]
|
65
|
+
[--test-cmd] [--auto-test | --no-auto-test] [--test]
|
66
|
+
[--analytics | --no-analytics] [--analytics-log]
|
67
|
+
[--analytics-disable] [--just-check-update]
|
68
|
+
[--check-update | --no-check-update]
|
69
|
+
[--show-release-notes | --no-show-release-notes]
|
70
|
+
[--install-main-branch] [--upgrade] [--version]
|
71
|
+
[--message] [--message-file]
|
72
|
+
[--gui | --no-gui | --browser | --no-browser]
|
73
|
+
[--copy-paste | --no-copy-paste] [--apply]
|
74
|
+
[--apply-clipboard-edits] [--exit] [--show-repo-map]
|
75
|
+
[--show-prompts] [--voice-format] [--voice-language]
|
76
|
+
[--voice-input-device] [--disable-playwright] [--file]
|
77
|
+
[--read] [--vim] [--chat-language] [--commit-language] [--yes-always] [-v]
|
78
|
+
[--load] [--encoding] [--line-endings] [-c]
|
79
|
+
[--env-file]
|
80
|
+
[--suggest-shell-commands | --no-suggest-shell-commands]
|
81
|
+
[--fancy-input | --no-fancy-input]
|
82
|
+
[--multiline | --no-multiline]
|
83
|
+
[--notifications | --no-notifications]
|
84
|
+
[--notifications-command]
|
85
|
+
[--detect-urls | --no-detect-urls] [--editor]
|
86
|
+
[--shell-completions] [--opus] [--sonnet] [--haiku]
|
87
|
+
[--4] [--4o] [--mini] [--4-turbo] [--35turbo]
|
88
|
+
[--deepseek] [--o1-mini] [--o1-preview]
|
89
|
+
|
90
|
+
```
|
91
|
+
|
92
|
+
## options:
|
93
|
+
|
94
|
+
### `--help`
|
95
|
+
show this help message and exit
|
96
|
+
Aliases:
|
97
|
+
- `-h`
|
98
|
+
- `--help`
|
99
|
+
|
100
|
+
## Main model:
|
101
|
+
|
102
|
+
### `--model MODEL`
|
103
|
+
Specify the model to use for the main chat
|
104
|
+
Environment variable: `AIDER_MODEL`
|
105
|
+
|
106
|
+
## API Keys and settings:
|
107
|
+
|
108
|
+
### `--openai-api-key VALUE`
|
109
|
+
Specify the OpenAI API key
|
110
|
+
Environment variable: `AIDER_OPENAI_API_KEY`
|
111
|
+
|
112
|
+
### `--anthropic-api-key VALUE`
|
113
|
+
Specify the Anthropic API key
|
114
|
+
Environment variable: `AIDER_ANTHROPIC_API_KEY`
|
115
|
+
|
116
|
+
### `--openai-api-base VALUE`
|
117
|
+
Specify the api base url
|
118
|
+
Environment variable: `AIDER_OPENAI_API_BASE`
|
119
|
+
|
120
|
+
### `--openai-api-type VALUE`
|
121
|
+
(deprecated, use --set-env OPENAI_API_TYPE=<value>)
|
122
|
+
Environment variable: `AIDER_OPENAI_API_TYPE`
|
123
|
+
|
124
|
+
### `--openai-api-version VALUE`
|
125
|
+
(deprecated, use --set-env OPENAI_API_VERSION=<value>)
|
126
|
+
Environment variable: `AIDER_OPENAI_API_VERSION`
|
127
|
+
|
128
|
+
### `--openai-api-deployment-id VALUE`
|
129
|
+
(deprecated, use --set-env OPENAI_API_DEPLOYMENT_ID=<value>)
|
130
|
+
Environment variable: `AIDER_OPENAI_API_DEPLOYMENT_ID`
|
131
|
+
|
132
|
+
### `--openai-organization-id VALUE`
|
133
|
+
(deprecated, use --set-env OPENAI_ORGANIZATION=<value>)
|
134
|
+
Environment variable: `AIDER_OPENAI_ORGANIZATION_ID`
|
135
|
+
|
136
|
+
### `--set-env ENV_VAR_NAME=value`
|
137
|
+
Set an environment variable (to control API settings, can be used multiple times)
|
138
|
+
Default: []
|
139
|
+
Environment variable: `AIDER_SET_ENV`
|
140
|
+
|
141
|
+
### `--api-key PROVIDER=KEY`
|
142
|
+
Set an API key for a provider (eg: --api-key provider=<key> sets PROVIDER_API_KEY=<key>)
|
143
|
+
Default: []
|
144
|
+
Environment variable: `AIDER_API_KEY`
|
145
|
+
|
146
|
+
## Model settings:
|
147
|
+
|
148
|
+
### `--list-models MODEL`
|
149
|
+
List known models which match the (partial) MODEL name
|
150
|
+
Environment variable: `AIDER_LIST_MODELS`
|
151
|
+
Aliases:
|
152
|
+
- `--list-models MODEL`
|
153
|
+
- `--models MODEL`
|
154
|
+
|
155
|
+
### `--model-settings-file MODEL_SETTINGS_FILE`
|
156
|
+
Specify a file with aider model settings for unknown models
|
157
|
+
Default: .aider.model.settings.yml
|
158
|
+
Environment variable: `AIDER_MODEL_SETTINGS_FILE`
|
159
|
+
|
160
|
+
### `--model-metadata-file MODEL_METADATA_FILE`
|
161
|
+
Specify a file with context window and costs for unknown models
|
162
|
+
Default: .aider.model.metadata.json
|
163
|
+
Environment variable: `AIDER_MODEL_METADATA_FILE`
|
164
|
+
|
165
|
+
### `--alias ALIAS:MODEL`
|
166
|
+
Add a model alias (can be used multiple times)
|
167
|
+
Environment variable: `AIDER_ALIAS`
|
168
|
+
|
169
|
+
### `--reasoning-effort VALUE`
|
170
|
+
Set the reasoning_effort API parameter (default: not set)
|
171
|
+
Environment variable: `AIDER_REASONING_EFFORT`
|
172
|
+
|
173
|
+
### `--thinking-tokens VALUE`
|
174
|
+
Set the thinking token budget for models that support it (default: not set)
|
175
|
+
Environment variable: `AIDER_THINKING_TOKENS`
|
176
|
+
|
177
|
+
### `--verify-ssl`
|
178
|
+
Verify the SSL cert when connecting to models (default: True)
|
179
|
+
Default: True
|
180
|
+
Environment variable: `AIDER_VERIFY_SSL`
|
181
|
+
Aliases:
|
182
|
+
- `--verify-ssl`
|
183
|
+
- `--no-verify-ssl`
|
184
|
+
|
185
|
+
### `--timeout VALUE`
|
186
|
+
Timeout in seconds for API calls (default: None)
|
187
|
+
Environment variable: `AIDER_TIMEOUT`
|
188
|
+
|
189
|
+
### `--edit-format EDIT_FORMAT`
|
190
|
+
Specify what edit format the LLM should use (default depends on model)
|
191
|
+
Environment variable: `AIDER_EDIT_FORMAT`
|
192
|
+
Aliases:
|
193
|
+
- `--edit-format EDIT_FORMAT`
|
194
|
+
- `--chat-mode EDIT_FORMAT`
|
195
|
+
|
196
|
+
### `--architect`
|
197
|
+
Use architect edit format for the main chat
|
198
|
+
Environment variable: `AIDER_ARCHITECT`
|
199
|
+
|
200
|
+
### `--auto-accept-architect`
|
201
|
+
Enable/disable automatic acceptance of architect changes (default: True)
|
202
|
+
Default: True
|
203
|
+
Environment variable: `AIDER_AUTO_ACCEPT_ARCHITECT`
|
204
|
+
Aliases:
|
205
|
+
- `--auto-accept-architect`
|
206
|
+
- `--no-auto-accept-architect`
|
207
|
+
|
208
|
+
### `--weak-model WEAK_MODEL`
|
209
|
+
Specify the model to use for commit messages and chat history summarization (default depends on --model)
|
210
|
+
Environment variable: `AIDER_WEAK_MODEL`
|
211
|
+
|
212
|
+
### `--editor-model EDITOR_MODEL`
|
213
|
+
Specify the model to use for editor tasks (default depends on --model)
|
214
|
+
Environment variable: `AIDER_EDITOR_MODEL`
|
215
|
+
|
216
|
+
### `--editor-edit-format EDITOR_EDIT_FORMAT`
|
217
|
+
Specify the edit format for the editor model (default: depends on editor model)
|
218
|
+
Environment variable: `AIDER_EDITOR_EDIT_FORMAT`
|
219
|
+
|
220
|
+
### `--show-model-warnings`
|
221
|
+
Only work with models that have meta-data available (default: True)
|
222
|
+
Default: True
|
223
|
+
Environment variable: `AIDER_SHOW_MODEL_WARNINGS`
|
224
|
+
Aliases:
|
225
|
+
- `--show-model-warnings`
|
226
|
+
- `--no-show-model-warnings`
|
227
|
+
|
228
|
+
### `--check-model-accepts-settings`
|
229
|
+
Check if model accepts settings like reasoning_effort/thinking_tokens (default: True)
|
230
|
+
Default: True
|
231
|
+
Environment variable: `AIDER_CHECK_MODEL_ACCEPTS_SETTINGS`
|
232
|
+
Aliases:
|
233
|
+
- `--check-model-accepts-settings`
|
234
|
+
- `--no-check-model-accepts-settings`
|
235
|
+
|
236
|
+
### `--max-chat-history-tokens VALUE`
|
237
|
+
Soft limit on tokens for chat history, after which summarization begins. If unspecified, defaults to the model's max_chat_history_tokens.
|
238
|
+
Environment variable: `AIDER_MAX_CHAT_HISTORY_TOKENS`
|
239
|
+
|
240
|
+
## Cache settings:
|
241
|
+
|
242
|
+
### `--cache-prompts`
|
243
|
+
Enable caching of prompts (default: False)
|
244
|
+
Default: False
|
245
|
+
Environment variable: `AIDER_CACHE_PROMPTS`
|
246
|
+
Aliases:
|
247
|
+
- `--cache-prompts`
|
248
|
+
- `--no-cache-prompts`
|
249
|
+
|
250
|
+
### `--cache-keepalive-pings VALUE`
|
251
|
+
Number of times to ping at 5min intervals to keep prompt cache warm (default: 0)
|
252
|
+
Default: 0
|
253
|
+
Environment variable: `AIDER_CACHE_KEEPALIVE_PINGS`
|
254
|
+
|
255
|
+
## Repomap settings:
|
256
|
+
|
257
|
+
### `--map-tokens VALUE`
|
258
|
+
Suggested number of tokens to use for repo map, use 0 to disable
|
259
|
+
Environment variable: `AIDER_MAP_TOKENS`
|
260
|
+
|
261
|
+
### `--map-refresh VALUE`
|
262
|
+
Control how often the repo map is refreshed. Options: auto, always, files, manual (default: auto)
|
263
|
+
Default: auto
|
264
|
+
Environment variable: `AIDER_MAP_REFRESH`
|
265
|
+
|
266
|
+
### `--map-multiplier-no-files VALUE`
|
267
|
+
Multiplier for map tokens when no files are specified (default: 2)
|
268
|
+
Default: 2
|
269
|
+
Environment variable: `AIDER_MAP_MULTIPLIER_NO_FILES`
|
270
|
+
|
271
|
+
## History Files:
|
272
|
+
|
273
|
+
### `--input-history-file INPUT_HISTORY_FILE`
|
274
|
+
Specify the chat input history file (default: .aider.input.history)
|
275
|
+
Default: .aider.input.history
|
276
|
+
Environment variable: `AIDER_INPUT_HISTORY_FILE`
|
277
|
+
|
278
|
+
### `--chat-history-file CHAT_HISTORY_FILE`
|
279
|
+
Specify the chat history file (default: .aider.chat.history.md)
|
280
|
+
Default: .aider.chat.history.md
|
281
|
+
Environment variable: `AIDER_CHAT_HISTORY_FILE`
|
282
|
+
|
283
|
+
### `--restore-chat-history`
|
284
|
+
Restore the previous chat history messages (default: False)
|
285
|
+
Default: False
|
286
|
+
Environment variable: `AIDER_RESTORE_CHAT_HISTORY`
|
287
|
+
Aliases:
|
288
|
+
- `--restore-chat-history`
|
289
|
+
- `--no-restore-chat-history`
|
290
|
+
|
291
|
+
### `--llm-history-file LLM_HISTORY_FILE`
|
292
|
+
Log the conversation with the LLM to this file (for example, .aider.llm.history)
|
293
|
+
Environment variable: `AIDER_LLM_HISTORY_FILE`
|
294
|
+
|
295
|
+
## Output settings:
|
296
|
+
|
297
|
+
### `--dark-mode`
|
298
|
+
Use colors suitable for a dark terminal background (default: False)
|
299
|
+
Default: False
|
300
|
+
Environment variable: `AIDER_DARK_MODE`
|
301
|
+
|
302
|
+
### `--light-mode`
|
303
|
+
Use colors suitable for a light terminal background (default: False)
|
304
|
+
Default: False
|
305
|
+
Environment variable: `AIDER_LIGHT_MODE`
|
306
|
+
|
307
|
+
### `--pretty`
|
308
|
+
Enable/disable pretty, colorized output (default: True)
|
309
|
+
Default: True
|
310
|
+
Environment variable: `AIDER_PRETTY`
|
311
|
+
Aliases:
|
312
|
+
- `--pretty`
|
313
|
+
- `--no-pretty`
|
314
|
+
|
315
|
+
### `--stream`
|
316
|
+
Enable/disable streaming responses (default: True)
|
317
|
+
Default: True
|
318
|
+
Environment variable: `AIDER_STREAM`
|
319
|
+
Aliases:
|
320
|
+
- `--stream`
|
321
|
+
- `--no-stream`
|
322
|
+
|
323
|
+
### `--user-input-color VALUE`
|
324
|
+
Set the color for user input (default: #00cc00)
|
325
|
+
Default: #00cc00
|
326
|
+
Environment variable: `AIDER_USER_INPUT_COLOR`
|
327
|
+
|
328
|
+
### `--tool-output-color VALUE`
|
329
|
+
Set the color for tool output (default: None)
|
330
|
+
Environment variable: `AIDER_TOOL_OUTPUT_COLOR`
|
331
|
+
|
332
|
+
### `--tool-error-color VALUE`
|
333
|
+
Set the color for tool error messages (default: #FF2222)
|
334
|
+
Default: #FF2222
|
335
|
+
Environment variable: `AIDER_TOOL_ERROR_COLOR`
|
336
|
+
|
337
|
+
### `--tool-warning-color VALUE`
|
338
|
+
Set the color for tool warning messages (default: #FFA500)
|
339
|
+
Default: #FFA500
|
340
|
+
Environment variable: `AIDER_TOOL_WARNING_COLOR`
|
341
|
+
|
342
|
+
### `--assistant-output-color VALUE`
|
343
|
+
Set the color for assistant output (default: #0088ff)
|
344
|
+
Default: #0088ff
|
345
|
+
Environment variable: `AIDER_ASSISTANT_OUTPUT_COLOR`
|
346
|
+
|
347
|
+
### `--completion-menu-color COLOR`
|
348
|
+
Set the color for the completion menu (default: terminal's default text color)
|
349
|
+
Environment variable: `AIDER_COMPLETION_MENU_COLOR`
|
350
|
+
|
351
|
+
### `--completion-menu-bg-color COLOR`
|
352
|
+
Set the background color for the completion menu (default: terminal's default background color)
|
353
|
+
Environment variable: `AIDER_COMPLETION_MENU_BG_COLOR`
|
354
|
+
|
355
|
+
### `--completion-menu-current-color COLOR`
|
356
|
+
Set the color for the current item in the completion menu (default: terminal's default background color)
|
357
|
+
Environment variable: `AIDER_COMPLETION_MENU_CURRENT_COLOR`
|
358
|
+
|
359
|
+
### `--completion-menu-current-bg-color COLOR`
|
360
|
+
Set the background color for the current item in the completion menu (default: terminal's default text color)
|
361
|
+
Environment variable: `AIDER_COMPLETION_MENU_CURRENT_BG_COLOR`
|
362
|
+
|
363
|
+
### `--code-theme VALUE`
|
364
|
+
Set the markdown code theme (default: default, other options include monokai, solarized-dark, solarized-light, or a Pygments builtin style, see https://pygments.org/styles for available themes)
|
365
|
+
Default: default
|
366
|
+
Environment variable: `AIDER_CODE_THEME`
|
367
|
+
|
368
|
+
### `--show-diffs`
|
369
|
+
Show diffs when committing changes (default: False)
|
370
|
+
Default: False
|
371
|
+
Environment variable: `AIDER_SHOW_DIFFS`
|
372
|
+
|
373
|
+
## Git settings:
|
374
|
+
|
375
|
+
### `--git`
|
376
|
+
Enable/disable looking for a git repo (default: True)
|
377
|
+
Default: True
|
378
|
+
Environment variable: `AIDER_GIT`
|
379
|
+
Aliases:
|
380
|
+
- `--git`
|
381
|
+
- `--no-git`
|
382
|
+
|
383
|
+
### `--gitignore`
|
384
|
+
Enable/disable adding .aider* to .gitignore (default: True)
|
385
|
+
Default: True
|
386
|
+
Environment variable: `AIDER_GITIGNORE`
|
387
|
+
Aliases:
|
388
|
+
- `--gitignore`
|
389
|
+
- `--no-gitignore`
|
390
|
+
|
391
|
+
### `--aiderignore AIDERIGNORE`
|
392
|
+
Specify the aider ignore file (default: .aiderignore in git root)
|
393
|
+
Default: .aiderignore
|
394
|
+
Environment variable: `AIDER_AIDERIGNORE`
|
395
|
+
|
396
|
+
### `--subtree-only`
|
397
|
+
Only consider files in the current subtree of the git repository
|
398
|
+
Default: False
|
399
|
+
Environment variable: `AIDER_SUBTREE_ONLY`
|
400
|
+
|
401
|
+
### `--auto-commits`
|
402
|
+
Enable/disable auto commit of LLM changes (default: True)
|
403
|
+
Default: True
|
404
|
+
Environment variable: `AIDER_AUTO_COMMITS`
|
405
|
+
Aliases:
|
406
|
+
- `--auto-commits`
|
407
|
+
- `--no-auto-commits`
|
408
|
+
|
409
|
+
### `--dirty-commits`
|
410
|
+
Enable/disable commits when repo is found dirty (default: True)
|
411
|
+
Default: True
|
412
|
+
Environment variable: `AIDER_DIRTY_COMMITS`
|
413
|
+
Aliases:
|
414
|
+
- `--dirty-commits`
|
415
|
+
- `--no-dirty-commits`
|
416
|
+
|
417
|
+
### `--attribute-author`
|
418
|
+
Attribute aider code changes in the git author name (default: True). If explicitly set to True, overrides --attribute-co-authored-by precedence.
|
419
|
+
Environment variable: `AIDER_ATTRIBUTE_AUTHOR`
|
420
|
+
Aliases:
|
421
|
+
- `--attribute-author`
|
422
|
+
- `--no-attribute-author`
|
423
|
+
|
424
|
+
### `--attribute-committer`
|
425
|
+
Attribute aider commits in the git committer name (default: True). If explicitly set to True, overrides --attribute-co-authored-by precedence for aider edits.
|
426
|
+
Environment variable: `AIDER_ATTRIBUTE_COMMITTER`
|
427
|
+
Aliases:
|
428
|
+
- `--attribute-committer`
|
429
|
+
- `--no-attribute-committer`
|
430
|
+
|
431
|
+
### `--attribute-commit-message-author`
|
432
|
+
Prefix commit messages with 'aider: ' if aider authored the changes (default: False)
|
433
|
+
Default: False
|
434
|
+
Environment variable: `AIDER_ATTRIBUTE_COMMIT_MESSAGE_AUTHOR`
|
435
|
+
Aliases:
|
436
|
+
- `--attribute-commit-message-author`
|
437
|
+
- `--no-attribute-commit-message-author`
|
438
|
+
|
439
|
+
### `--attribute-commit-message-committer`
|
440
|
+
Prefix all commit messages with 'aider: ' (default: False)
|
441
|
+
Default: False
|
442
|
+
Environment variable: `AIDER_ATTRIBUTE_COMMIT_MESSAGE_COMMITTER`
|
443
|
+
Aliases:
|
444
|
+
- `--attribute-commit-message-committer`
|
445
|
+
- `--no-attribute-commit-message-committer`
|
446
|
+
|
447
|
+
### `--attribute-co-authored-by`
|
448
|
+
Attribute aider edits using the Co-authored-by trailer in the commit message (default: False). If True, this takes precedence over default --attribute-author and --attribute-committer behavior unless they are explicitly set to True.
|
449
|
+
Default: False
|
450
|
+
Environment variable: `AIDER_ATTRIBUTE_CO_AUTHORED_BY`
|
451
|
+
Aliases:
|
452
|
+
- `--attribute-co-authored-by`
|
453
|
+
- `--no-attribute-co-authored-by`
|
454
|
+
|
455
|
+
### `--git-commit-verify`
|
456
|
+
Enable/disable git pre-commit hooks with --no-verify (default: False)
|
457
|
+
Default: False
|
458
|
+
Environment variable: `AIDER_GIT_COMMIT_VERIFY`
|
459
|
+
Aliases:
|
460
|
+
- `--git-commit-verify`
|
461
|
+
- `--no-git-commit-verify`
|
462
|
+
|
463
|
+
### `--commit`
|
464
|
+
Commit all pending changes with a suitable commit message, then exit
|
465
|
+
Default: False
|
466
|
+
Environment variable: `AIDER_COMMIT`
|
467
|
+
|
468
|
+
### `--commit-prompt PROMPT`
|
469
|
+
Specify a custom prompt for generating commit messages
|
470
|
+
Environment variable: `AIDER_COMMIT_PROMPT`
|
471
|
+
|
472
|
+
### `--dry-run`
|
473
|
+
Perform a dry run without modifying files (default: False)
|
474
|
+
Default: False
|
475
|
+
Environment variable: `AIDER_DRY_RUN`
|
476
|
+
Aliases:
|
477
|
+
- `--dry-run`
|
478
|
+
- `--no-dry-run`
|
479
|
+
|
480
|
+
### `--skip-sanity-check-repo`
|
481
|
+
Skip the sanity check for the git repository (default: False)
|
482
|
+
Default: False
|
483
|
+
Environment variable: `AIDER_SKIP_SANITY_CHECK_REPO`
|
484
|
+
|
485
|
+
### `--watch-files`
|
486
|
+
Enable/disable watching files for ai coding comments (default: False)
|
487
|
+
Default: False
|
488
|
+
Environment variable: `AIDER_WATCH_FILES`
|
489
|
+
Aliases:
|
490
|
+
- `--watch-files`
|
491
|
+
- `--no-watch-files`
|
492
|
+
|
493
|
+
## Fixing and committing:
|
494
|
+
|
495
|
+
### `--lint`
|
496
|
+
Lint and fix provided files, or dirty files if none provided
|
497
|
+
Default: False
|
498
|
+
Environment variable: `AIDER_LINT`
|
499
|
+
|
500
|
+
### `--lint-cmd`
|
501
|
+
Specify lint commands to run for different languages, eg: "python: flake8 --select=..." (can be used multiple times)
|
502
|
+
Default: []
|
503
|
+
Environment variable: `AIDER_LINT_CMD`
|
504
|
+
|
505
|
+
### `--auto-lint`
|
506
|
+
Enable/disable automatic linting after changes (default: True)
|
507
|
+
Default: True
|
508
|
+
Environment variable: `AIDER_AUTO_LINT`
|
509
|
+
Aliases:
|
510
|
+
- `--auto-lint`
|
511
|
+
- `--no-auto-lint`
|
512
|
+
|
513
|
+
### `--test-cmd VALUE`
|
514
|
+
Specify command to run tests
|
515
|
+
Default: []
|
516
|
+
Environment variable: `AIDER_TEST_CMD`
|
517
|
+
|
518
|
+
### `--auto-test`
|
519
|
+
Enable/disable automatic testing after changes (default: False)
|
520
|
+
Default: False
|
521
|
+
Environment variable: `AIDER_AUTO_TEST`
|
522
|
+
Aliases:
|
523
|
+
- `--auto-test`
|
524
|
+
- `--no-auto-test`
|
525
|
+
|
526
|
+
### `--test`
|
527
|
+
Run tests, fix problems found and then exit
|
528
|
+
Default: False
|
529
|
+
Environment variable: `AIDER_TEST`
|
530
|
+
|
531
|
+
## Analytics:
|
532
|
+
|
533
|
+
### `--analytics`
|
534
|
+
Enable/disable analytics for current session (default: random)
|
535
|
+
Environment variable: `AIDER_ANALYTICS`
|
536
|
+
Aliases:
|
537
|
+
- `--analytics`
|
538
|
+
- `--no-analytics`
|
539
|
+
|
540
|
+
### `--analytics-log ANALYTICS_LOG_FILE`
|
541
|
+
Specify a file to log analytics events
|
542
|
+
Environment variable: `AIDER_ANALYTICS_LOG`
|
543
|
+
|
544
|
+
### `--analytics-disable`
|
545
|
+
Permanently disable analytics
|
546
|
+
Default: False
|
547
|
+
Environment variable: `AIDER_ANALYTICS_DISABLE`
|
548
|
+
|
549
|
+
## Upgrading:
|
550
|
+
|
551
|
+
### `--just-check-update`
|
552
|
+
Check for updates and return status in the exit code
|
553
|
+
Default: False
|
554
|
+
Environment variable: `AIDER_JUST_CHECK_UPDATE`
|
555
|
+
|
556
|
+
### `--check-update`
|
557
|
+
Check for new aider versions on launch
|
558
|
+
Default: True
|
559
|
+
Environment variable: `AIDER_CHECK_UPDATE`
|
560
|
+
Aliases:
|
561
|
+
- `--check-update`
|
562
|
+
- `--no-check-update`
|
563
|
+
|
564
|
+
### `--show-release-notes`
|
565
|
+
Show release notes on first run of new version (default: None, ask user)
|
566
|
+
Environment variable: `AIDER_SHOW_RELEASE_NOTES`
|
567
|
+
Aliases:
|
568
|
+
- `--show-release-notes`
|
569
|
+
- `--no-show-release-notes`
|
570
|
+
|
571
|
+
### `--install-main-branch`
|
572
|
+
Install the latest version from the main branch
|
573
|
+
Default: False
|
574
|
+
Environment variable: `AIDER_INSTALL_MAIN_BRANCH`
|
575
|
+
|
576
|
+
### `--upgrade`
|
577
|
+
Upgrade aider to the latest version from PyPI
|
578
|
+
Default: False
|
579
|
+
Environment variable: `AIDER_UPGRADE`
|
580
|
+
Aliases:
|
581
|
+
- `--upgrade`
|
582
|
+
- `--update`
|
583
|
+
|
584
|
+
### `--version`
|
585
|
+
Show the version number and exit
|
586
|
+
|
587
|
+
## Modes:
|
588
|
+
|
589
|
+
### `--message COMMAND`
|
590
|
+
Specify a single message to send the LLM, process reply then exit (disables chat mode)
|
591
|
+
Environment variable: `AIDER_MESSAGE`
|
592
|
+
Aliases:
|
593
|
+
- `--message COMMAND`
|
594
|
+
- `--msg COMMAND`
|
595
|
+
- `-m COMMAND`
|
596
|
+
|
597
|
+
### `--message-file MESSAGE_FILE`
|
598
|
+
Specify a file containing the message to send the LLM, process reply, then exit (disables chat mode)
|
599
|
+
Environment variable: `AIDER_MESSAGE_FILE`
|
600
|
+
Aliases:
|
601
|
+
- `--message-file MESSAGE_FILE`
|
602
|
+
- `-f MESSAGE_FILE`
|
603
|
+
|
604
|
+
### `--gui`
|
605
|
+
Run aider in your browser (default: False)
|
606
|
+
Default: False
|
607
|
+
Environment variable: `AIDER_GUI`
|
608
|
+
Aliases:
|
609
|
+
- `--gui`
|
610
|
+
- `--no-gui`
|
611
|
+
- `--browser`
|
612
|
+
- `--no-browser`
|
613
|
+
|
614
|
+
### `--copy-paste`
|
615
|
+
Enable automatic copy/paste of chat between aider and web UI (default: False)
|
616
|
+
Default: False
|
617
|
+
Environment variable: `AIDER_COPY_PASTE`
|
618
|
+
Aliases:
|
619
|
+
- `--copy-paste`
|
620
|
+
- `--no-copy-paste`
|
621
|
+
|
622
|
+
### `--apply FILE`
|
623
|
+
Apply the changes from the given file instead of running the chat (debug)
|
624
|
+
Environment variable: `AIDER_APPLY`
|
625
|
+
|
626
|
+
### `--apply-clipboard-edits`
|
627
|
+
Apply clipboard contents as edits using the main model's editor format
|
628
|
+
Default: False
|
629
|
+
Environment variable: `AIDER_APPLY_CLIPBOARD_EDITS`
|
630
|
+
|
631
|
+
### `--exit`
|
632
|
+
Do all startup activities then exit before accepting user input (debug)
|
633
|
+
Default: False
|
634
|
+
Environment variable: `AIDER_EXIT`
|
635
|
+
|
636
|
+
### `--show-repo-map`
|
637
|
+
Print the repo map and exit (debug)
|
638
|
+
Default: False
|
639
|
+
Environment variable: `AIDER_SHOW_REPO_MAP`
|
640
|
+
|
641
|
+
### `--show-prompts`
|
642
|
+
Print the system prompts and exit (debug)
|
643
|
+
Default: False
|
644
|
+
Environment variable: `AIDER_SHOW_PROMPTS`
|
645
|
+
|
646
|
+
## Voice settings:
|
647
|
+
|
648
|
+
### `--voice-format VOICE_FORMAT`
|
649
|
+
Audio format for voice recording (default: wav). webm and mp3 require ffmpeg
|
650
|
+
Default: wav
|
651
|
+
Environment variable: `AIDER_VOICE_FORMAT`
|
652
|
+
|
653
|
+
### `--voice-language VOICE_LANGUAGE`
|
654
|
+
Specify the language for voice using ISO 639-1 code (default: auto)
|
655
|
+
Default: en
|
656
|
+
Environment variable: `AIDER_VOICE_LANGUAGE`
|
657
|
+
|
658
|
+
### `--voice-input-device VOICE_INPUT_DEVICE`
|
659
|
+
Specify the input device name for voice recording
|
660
|
+
Environment variable: `AIDER_VOICE_INPUT_DEVICE`
|
661
|
+
|
662
|
+
## Other settings:
|
663
|
+
|
664
|
+
### `--disable-playwright`
|
665
|
+
Never prompt for or attempt to install Playwright for web scraping (default: False).
|
666
|
+
Default: False
|
667
|
+
Environment variable: `AIDER_DISABLE_PLAYWRIGHT`
|
668
|
+
|
669
|
+
### `--file FILE`
|
670
|
+
specify a file to edit (can be used multiple times)
|
671
|
+
Environment variable: `AIDER_FILE`
|
672
|
+
|
673
|
+
### `--read FILE`
|
674
|
+
specify a read-only file (can be used multiple times)
|
675
|
+
Environment variable: `AIDER_READ`
|
676
|
+
|
677
|
+
### `--vim`
|
678
|
+
Use VI editing mode in the terminal (default: False)
|
679
|
+
Default: False
|
680
|
+
Environment variable: `AIDER_VIM`
|
681
|
+
|
682
|
+
### `--chat-language CHAT_LANGUAGE`
|
683
|
+
Specify the language to use in the chat (default: None, uses system settings)
|
684
|
+
Environment variable: `AIDER_CHAT_LANGUAGE`
|
685
|
+
|
686
|
+
### `--commit-language COMMIT_LANGUAGE`
|
687
|
+
Specify the language to use in the commit message (default: None, user language)
|
688
|
+
Environment variable: `AIDER_COMMIT_LANGUAGE`
|
689
|
+
|
690
|
+
### `--yes-always`
|
691
|
+
Always say yes to every confirmation
|
692
|
+
Environment variable: `AIDER_YES_ALWAYS`
|
693
|
+
|
694
|
+
### `--verbose`
|
695
|
+
Enable verbose output
|
696
|
+
Default: False
|
697
|
+
Environment variable: `AIDER_VERBOSE`
|
698
|
+
Aliases:
|
699
|
+
- `-v`
|
700
|
+
- `--verbose`
|
701
|
+
|
702
|
+
### `--load LOAD_FILE`
|
703
|
+
Load and execute /commands from a file on launch
|
704
|
+
Environment variable: `AIDER_LOAD`
|
705
|
+
|
706
|
+
### `--encoding VALUE`
|
707
|
+
Specify the encoding for input and output (default: utf-8)
|
708
|
+
Default: utf-8
|
709
|
+
Environment variable: `AIDER_ENCODING`
|
710
|
+
|
711
|
+
### `--line-endings VALUE`
|
712
|
+
Line endings to use when writing files (default: platform)
|
713
|
+
Default: platform
|
714
|
+
Environment variable: `AIDER_LINE_ENDINGS`
|
715
|
+
|
716
|
+
### `--config CONFIG_FILE`
|
717
|
+
Specify the config file (default: search for .aider.conf.yml in git root, cwd or home directory)
|
718
|
+
Aliases:
|
719
|
+
- `-c CONFIG_FILE`
|
720
|
+
- `--config CONFIG_FILE`
|
721
|
+
|
722
|
+
### `--env-file ENV_FILE`
|
723
|
+
Specify the .env file to load (default: .env in git root)
|
724
|
+
Default: .env
|
725
|
+
Environment variable: `AIDER_ENV_FILE`
|
726
|
+
|
727
|
+
### `--suggest-shell-commands`
|
728
|
+
Enable/disable suggesting shell commands (default: True)
|
729
|
+
Default: True
|
730
|
+
Environment variable: `AIDER_SUGGEST_SHELL_COMMANDS`
|
731
|
+
Aliases:
|
732
|
+
- `--suggest-shell-commands`
|
733
|
+
- `--no-suggest-shell-commands`
|
734
|
+
|
735
|
+
### `--fancy-input`
|
736
|
+
Enable/disable fancy input with history and completion (default: True)
|
737
|
+
Default: True
|
738
|
+
Environment variable: `AIDER_FANCY_INPUT`
|
739
|
+
Aliases:
|
740
|
+
- `--fancy-input`
|
741
|
+
- `--no-fancy-input`
|
742
|
+
|
743
|
+
### `--multiline`
|
744
|
+
Enable/disable multi-line input mode with Meta-Enter to submit (default: False)
|
745
|
+
Default: False
|
746
|
+
Environment variable: `AIDER_MULTILINE`
|
747
|
+
Aliases:
|
748
|
+
- `--multiline`
|
749
|
+
- `--no-multiline`
|
750
|
+
|
751
|
+
### `--notifications`
|
752
|
+
Enable/disable terminal bell notifications when LLM responses are ready (default: False)
|
753
|
+
Default: False
|
754
|
+
Environment variable: `AIDER_NOTIFICATIONS`
|
755
|
+
Aliases:
|
756
|
+
- `--notifications`
|
757
|
+
- `--no-notifications`
|
758
|
+
|
759
|
+
### `--notifications-command COMMAND`
|
760
|
+
Specify a command to run for notifications instead of the terminal bell. If not specified, a default command for your OS may be used.
|
761
|
+
Environment variable: `AIDER_NOTIFICATIONS_COMMAND`
|
762
|
+
|
763
|
+
### `--detect-urls`
|
764
|
+
Enable/disable detection and offering to add URLs to chat (default: True)
|
765
|
+
Default: True
|
766
|
+
Environment variable: `AIDER_DETECT_URLS`
|
767
|
+
Aliases:
|
768
|
+
- `--detect-urls`
|
769
|
+
- `--no-detect-urls`
|
770
|
+
|
771
|
+
### `--editor VALUE`
|
772
|
+
Specify which editor to use for the /editor command
|
773
|
+
Environment variable: `AIDER_EDITOR`
|
774
|
+
|
775
|
+
### `--shell-completions SHELL`
|
776
|
+
Print shell completion script for the specified SHELL and exit. Supported shells: bash, tcsh, zsh. Example: aider --shell-completions bash
|
777
|
+
Environment variable: `AIDER_SHELL_COMPLETIONS`
|
778
|
+
|
779
|
+
## Deprecated model settings:
|
780
|
+
|
781
|
+
### `--opus`
|
782
|
+
Use claude-3-opus-20240229 model for the main chat (deprecated, use --model)
|
783
|
+
Default: False
|
784
|
+
Environment variable: `AIDER_OPUS`
|
785
|
+
|
786
|
+
### `--sonnet`
|
787
|
+
Use anthropic/claude-3-7-sonnet-20250219 model for the main chat (deprecated, use --model)
|
788
|
+
Default: False
|
789
|
+
Environment variable: `AIDER_SONNET`
|
790
|
+
|
791
|
+
### `--haiku`
|
792
|
+
Use claude-3-5-haiku-20241022 model for the main chat (deprecated, use --model)
|
793
|
+
Default: False
|
794
|
+
Environment variable: `AIDER_HAIKU`
|
795
|
+
|
796
|
+
### `--4`
|
797
|
+
Use gpt-4-0613 model for the main chat (deprecated, use --model)
|
798
|
+
Default: False
|
799
|
+
Environment variable: `AIDER_4`
|
800
|
+
Aliases:
|
801
|
+
- `--4`
|
802
|
+
- `-4`
|
803
|
+
|
804
|
+
### `--4o`
|
805
|
+
Use gpt-4o model for the main chat (deprecated, use --model)
|
806
|
+
Default: False
|
807
|
+
Environment variable: `AIDER_4O`
|
808
|
+
|
809
|
+
### `--mini`
|
810
|
+
Use gpt-4o-mini model for the main chat (deprecated, use --model)
|
811
|
+
Default: False
|
812
|
+
Environment variable: `AIDER_MINI`
|
813
|
+
|
814
|
+
### `--4-turbo`
|
815
|
+
Use gpt-4-1106-preview model for the main chat (deprecated, use --model)
|
816
|
+
Default: False
|
817
|
+
Environment variable: `AIDER_4_TURBO`
|
818
|
+
|
819
|
+
### `--35turbo`
|
820
|
+
Use gpt-3.5-turbo model for the main chat (deprecated, use --model)
|
821
|
+
Default: False
|
822
|
+
Environment variable: `AIDER_35TURBO`
|
823
|
+
Aliases:
|
824
|
+
- `--35turbo`
|
825
|
+
- `--35-turbo`
|
826
|
+
- `--3`
|
827
|
+
- `-3`
|
828
|
+
|
829
|
+
### `--deepseek`
|
830
|
+
Use deepseek/deepseek-chat model for the main chat (deprecated, use --model)
|
831
|
+
Default: False
|
832
|
+
Environment variable: `AIDER_DEEPSEEK`
|
833
|
+
|
834
|
+
### `--o1-mini`
|
835
|
+
Use o1-mini model for the main chat (deprecated, use --model)
|
836
|
+
Default: False
|
837
|
+
Environment variable: `AIDER_O1_MINI`
|
838
|
+
|
839
|
+
### `--o1-preview`
|
840
|
+
Use o1-preview model for the main chat (deprecated, use --model)
|
841
|
+
Default: False
|
842
|
+
Environment variable: `AIDER_O1_PREVIEW`
|
843
|
+
<!--[[[end]]]-->
|