From fbc3f38256713719120e6b988b69ddd560871127 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 7 Mar 2024 13:07:02 -0800 Subject: [PATCH] tweaked model args --- aider/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/main.py b/aider/main.py index e80bcb446..bebb70743 100644 --- a/aider/main.py +++ b/aider/main.py @@ -159,13 +159,13 @@ def main(argv=None, input=None, output=None, force_git_root=None): ) default_4_turbo_model = "gpt-4-1106-preview" core_group.add_argument( - "--4-turbo", "--4turbo", + "--4-turbo", "--4", action="store_const", dest="model", const=default_4_turbo_model, - help=f"Use {default_4_turbo_model} model for the main chat (gpt-4 is better)", + help=f"Use {default_4_turbo_model} model for the main chat", ) default_3_model = models.GPT35_0125 core_group.add_argument(