refactor: move deprecated model args to dedicated group

This commit is contained in:
Paul Gauthier 2025-03-08 17:13:50 -08:00 committed by Paul Gauthier (aider)
parent 95583fe2cd
commit ac1c05389a

View file

@ -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