feat: Add --auto-accept-architect option with default true

This commit is contained in:
Paul Gauthier (aider) 2025-03-12 13:08:59 -07:00
parent 70547171ca
commit c052270048
2 changed files with 7 additions and 0 deletions

View file

@ -148,6 +148,12 @@ def get_parser(default_config_files, git_root):
const="architect",
help="Use architect edit format for the main chat",
)
group.add_argument(
"--auto-accept-architect",
action=argparse.BooleanOptionalAction,
default=True,
help="Enable/disable automatic acceptance of architect changes (default: True)",
)
group.add_argument(
"--weak-model",
metavar="WEAK_MODEL",