mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-12 23:54:59 +00:00
![]() # Context: USER: don't include the ${env_prefix}XXXX info in the help strings. configargparse adds that info to the help message automatically ASSISTANT: I will remove the `${env_prefix}XXXX` info from the help strings in the `aider/main.py` file. ```python aider/main.py <<<<<<< ORIGINAL help=( "Specify the chat input history file (default: .aider.input.history," f" ${env_prefix}INPUT_HISTORY_FILE)" ), ======= help="Specify the chat input history file (default: .aider.input.history)", >>>>>>> UPDATED ```python aider/main.py <<<<<<< ORIGINAL help=( "Specify the chat history file (default: .aider.chat.history.md," f" ${env_prefix}CHAT_HISTORY_FILE)" ), ======= help="Specify the chat history file (default: .aider.chat.history.md)", >>>>>>> UPDATED ```python aider/main.py <<<<<<< ORIGINAL help=f"Specify the model to use for the main chat (default: gpt-4, ${env_prefix}MODEL)", ======= help="Specify the model to use for the main chat (default: gpt-4)", >>>>>>> UPDATED ```python aider/main.py <<<<<<< ORIGINAL help=f"Disable pretty, colorized output (${env_prefix}PRETTY)", ======= help="Disable pretty, colorized output", >>>>>>> UPDATED ```python aider/main.py <<<<<<< ORIGINAL help=f"Disable auto commit of changes (${env_prefix}AUTO_COMMITS)", ======= help="Disable auto commit of changes", >>>>>>> UPDATED ```python aider/main.py <<<<<<< ORIGINAL help=f"Show diffs when committing changes (default: False, ${env_prefix}SHOW_DIFFS)", ======= help="Show diffs when committing changes (default: False)", >>>>>>> UPDATED ```python aider/main.py <<<<<<< ORIGINAL help=( "Add ctags to the chat to help GPT understand the codebase (default: False," f" ${env_prefix}CTAGS)" ), ======= help="Add ctags to the chat to help GPT understand the codebase (default: False)", >>>>>>> UPDATED |
||
---|---|---|
.. | ||
__init__.py | ||
coder.py | ||
commands.py | ||
dump.py | ||
io.py | ||
main.py | ||
prompts.py | ||
repomap.py | ||
utils.py |