Skip to content

Commit

Permalink
better arg desc
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Jan 31, 2025
1 parent 5c87787 commit 14612fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions aider/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@ def get_parser(default_config_files, git_root):
metavar="ALIAS:MODEL",
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(
"--verify-ssl",
action=argparse.BooleanOptionalAction,
Expand Down Expand Up @@ -304,11 +309,6 @@ 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")
Expand Down

0 comments on commit 14612fc

Please sign in to comment.