mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-02 18:54:59 +00:00
feat: Add --senior switch as alias for --edit-format senior
This commit is contained in:
parent
3fe3e0f700
commit
bf015e27d6
1 changed files with 7 additions and 0 deletions
|
@ -197,6 +197,13 @@ def get_parser(default_config_files, git_root):
|
||||||
default=None,
|
default=None,
|
||||||
help="Specify what edit format the LLM should use (default depends on model)",
|
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(
|
group.add_argument(
|
||||||
"--weak-model",
|
"--weak-model",
|
||||||
metavar="WEAK_MODEL",
|
metavar="WEAK_MODEL",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue