From 485d5487afffc2ec175abc8674f982d99bde481b Mon Sep 17 00:00:00 2001 From: "fry69 (aider)" <142489379+fry69@users.noreply.github.com> Date: Thu, 5 Sep 2024 18:27:05 +0200 Subject: [PATCH] feat: add --list-models alias for --models option --- aider/args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/args.py b/aider/args.py index ac6d86dec..c09de2f3c 100644 --- a/aider/args.py +++ b/aider/args.py @@ -121,7 +121,7 @@ def get_parser(default_config_files, git_root): ########## group = parser.add_argument_group("Model Settings") group.add_argument( - "--models", + "--models", "--list-models", metavar="MODEL", help="List known models which match the (partial) MODEL name", )