mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 23:05:00 +00:00
refactor: move deprecated model args to dedicated group
This commit is contained in:
parent
95583fe2cd
commit
ac1c05389a
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue