From f8939c55a516481ef3437aab821a6cf8b551ad1f Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 10 May 2023 17:58:34 -0700 Subject: [PATCH] aider: Updated the Usage section in README.md to show the new environment variable default for the `--model` command-line argument. # Context: USER: update readme ASSISTANT: Please provide more information about what you would like to update in the README.md file. USER: so usage shows the new env default for --model ASSISTANT: I will update the Usage section in the README.md file to show the new environment variable default for the `--model` command-line argument. ```python README.md <<<<<<< ORIGINAL - `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). No environment variable override. ======= - `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). Override with the environment variable `AIDER_MODEL`. >>>>>>> UPDATED ``` Now, the Usage section in the README.md file shows the environment variable default for the `--model` command-line argument. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e29c896aa..fce671098 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Replace ``, ``, etc., with the paths to the source code files you You can also use additional command-line options to customize the behavior of the tool. The following options are available, along with their corresponding environment variable overrides: - `--history-file HISTORY_FILE`: Specify the history file (default: .aider.history). Override with the environment variable `AIDER_HISTORY_FILE`. -- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). No environment variable override. +- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). Override with the environment variable `AIDER_MODEL`. - `-3`: Use gpt-3.5-turbo model for the main chat (basically won't work). No environment variable override. - `--no-pretty`: Disable pretty, colorized output. Override with the environment variable `AIDER_PRETTY` (default: 1 for enabled, 0 for disabled). - `--apply FILE`: Apply the changes from the given file instead of running the chat. No environment variable override.