feat: Add --reasoning-effort CLI parameter to control model reasoning effort

This commit is contained in:
Paul Gauthier (aider) 2025-01-31 13:07:08 -08:00
parent f4f4761517
commit 3fa796382e
2 changed files with 12 additions and 4 deletions

View file

@ -304,6 +304,11 @@ def get_parser(default_config_files, git_root):
default=2,
help="Multiplier for map tokens when no files are specified (default: 2)",
)
group.add_argument(
"--reasoning-effort",
type=float,
help="Control how much effort the model spends on reasoning (0.0-1.0)",
)
##########
group = parser.add_argument_group("History Files")