feat: Add --senior switch as alias for --edit-format senior

This commit is contained in:
Paul Gauthier (aider) 2024-09-26 11:27:55 -07:00
parent 3fe3e0f700
commit bf015e27d6

View file

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