better arg desc

This commit is contained in:
Paul Gauthier 2025-01-31 13:10:19 -08:00
parent 5c87787351
commit 14612fc116

View file

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