mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00: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 by adding the environment variable name to the end of the help string. ```python main.py <<<<<<< ORIGINAL help="Specify the history file (default: .coder.history)", ) ... help="Disable prettyd output of GPT responses", ======= help="Specify the history file (default: .coder.history, env: CODER_HISTORY_FILE)", ) ... help="Disable prettyd output of GPT responses (env: CODER_PRETTY)", >>>>>>> UPDATED ``` ```python main.py <<<<<<< ORIGINAL help="Commit dirty files without confirmation", ======= help="Commit dirty files without confirmation (env: CODER_COMMIT_DIRTY)", >>>>>>> UPDATED ``` |
||
---|---|---|
.flake8 | ||
.pre-commit-config.yaml | ||
coder.py | ||
dump.py | ||
main.py | ||
prompts.py | ||
utils.py |