mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00
aider is AI pair programming in your terminal
https://aider.chat/
![]() # Context: USER: for each arg that takes an environ default, add $ENV_NAME to the end of the help string ASSISTANT: I will update the help strings for each argument that takes an environment variable default to include the environment variable name. ```python main.py <<<<<<< ORIGINAL help="Specify the history file (default: .coder.history)", ======= help="Specify the history file (default: .coder.history, env: CODER_HISTORY_FILE)", >>>>>>> UPDATED main.py <<<<<<< ORIGINAL help="Disable prettyd output of GPT responses", default=bool(int(os.environ.get(env_prefix + "PRETTY", 1))), ======= help="Disable prettyd output of GPT responses (env: CODER_PRETTY)", default=bool(int(os.environ.get(env_prefix + "PRETTY", 1))), >>>>>>> UPDATED main.py <<<<<<< ORIGINAL help="Commit dirty files without confirmation (env: CODER_COMMIT_DIRTY)", default=bool(int(os.environ.get(env_prefix + "COMMIT_DIRTY", 0))), ======= help="Commit dirty files without confirmation (default: False, env: CODER_COMMIT_DIRTY)", default=bool(int(os.environ.get(env_prefix + "COMMIT_DIRTY", 0))), >>>>>>> UPDATED ``` |
||
---|---|---|
.flake8 | ||
.pre-commit-config.yaml | ||
coder.py | ||
dump.py | ||
main.py | ||
prompts.py | ||
utils.py |