From bf015e27d67577478aae706fc26ae58d8f2046ba Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 26 Sep 2024 11:27:55 -0700 Subject: [PATCH] feat: Add --senior switch as alias for --edit-format senior --- aider/args.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/aider/args.py b/aider/args.py index a94c97a07..26ec41b57 100644 --- a/aider/args.py +++ b/aider/args.py @@ -197,6 +197,13 @@ def get_parser(default_config_files, git_root): default=None, help="Specify what edit format the LLM should use (default depends on model)", ) + group.add_argument( + "--senior", + action="store_const", + dest="edit_format", + const="senior", + help="Use senior edit format for the main chat", + ) group.add_argument( "--weak-model", metavar="WEAK_MODEL",