diff --git a/aider/args.py b/aider/args.py index 04ceb3ba2..cbb325ae4 100644 --- a/aider/args.py +++ b/aider/args.py @@ -40,9 +40,6 @@ def get_parser(default_config_files, git_root): help="Specify the model to use for the main chat", ) - # Add deprecated model shortcut arguments - add_deprecated_model_args(parser, group) - ########## group = parser.add_argument_group("API Keys and settings") group.add_argument( @@ -754,6 +751,11 @@ def get_parser(default_config_files, git_root): help="Specify which editor to use for the /editor command", ) + ########## + group = parser.add_argument_group("Deprecated model settings") + # Add deprecated model shortcut arguments + add_deprecated_model_args(parser, group) + return parser