From 04565b918142426935fc177416f70cc685010521 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 13 May 2023 10:31:21 -0700 Subject: [PATCH] wip: Changed the help message for using gpt-3.5-turbo model and updated the example docs. --- README.md | 3 +-- aider/main.py | 2 +- examples/update-docs.md | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 629f7b0b8..b496889c0 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,8 @@ You can also use additional command-line options to customize the behavior of th - `--input-history-file INPUT_HISTORY_FILE`: Specify the chat input history file (default: .aider.input.history). Override the default with the environment variable `AIDER_INPUT_HISTORY_FILE`. - `--chat-history-file CHAT_HISTORY_FILE`: Specify the chat history file (default: .aider.chat.history.md). Override the default with the environment variable `AIDER_CHAT_HISTORY_FILE`. - `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). Override the default 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. +- `-3`: Use gpt-3.5-turbo model for the main chat (not advised). No environment variable override. - `--no-pretty`: Disable pretty, colorized output. Override the default 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 (debug). - `--no-auto-commits`: Disable auto commit of changes. Override the default with the environment variable `AIDER_AUTO_COMMITS` (default: 1 for enabled, 0 for disabled). - `--show-diffs`: Show diffs when committing changes (default: False). Override the default with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True). - `--yes`: Always say yes to every confirmation (default: False). diff --git a/aider/main.py b/aider/main.py index 00b6560cc..e3ca0fd22 100644 --- a/aider/main.py +++ b/aider/main.py @@ -48,7 +48,7 @@ def main(args=None, input=None, output=None): action="store_const", dest="model", const="gpt-3.5-turbo", - help="Use gpt-3.5-turbo model for the main chat (basically won't work)", + help="Use gpt-3.5-turbo model for the main chat (not advised)", ) parser.add_argument( "--no-pretty", diff --git a/examples/update-docs.md b/examples/update-docs.md index 2bb6f909f..18b9d1909 100644 --- a/examples/update-docs.md +++ b/examples/update-docs.md @@ -1,4 +1,4 @@ -# Automatically update docs with aider and GPT-4 +# Automatically update docs with aider and gpt-4 > The user asks aider to automatically update the Usage docs based on the latest version of the main() function in the code.