mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 10:14:59 +00:00
better arg desc
This commit is contained in:
parent
5c87787351
commit
14612fc116
1 changed files with 5 additions and 5 deletions
|
@ -203,6 +203,11 @@ def get_parser(default_config_files, git_root):
|
||||||
metavar="ALIAS:MODEL",
|
metavar="ALIAS:MODEL",
|
||||||
help="Add a model alias (can be used multiple times)",
|
help="Add a model alias (can be used multiple times)",
|
||||||
)
|
)
|
||||||
|
group.add_argument(
|
||||||
|
"--reasoning-effort",
|
||||||
|
type=str,
|
||||||
|
help="Set the reasoning_effort API parameter (default: not set)",
|
||||||
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--verify-ssl",
|
"--verify-ssl",
|
||||||
action=argparse.BooleanOptionalAction,
|
action=argparse.BooleanOptionalAction,
|
||||||
|
@ -304,11 +309,6 @@ def get_parser(default_config_files, git_root):
|
||||||
default=2,
|
default=2,
|
||||||
help="Multiplier for map tokens when no files are specified (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")
|
group = parser.add_argument_group("History Files")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue