mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 23:05:00 +00:00
fix: Change reasoning_effort type to string in benchmark script
This commit is contained in:
parent
ec9327dcb4
commit
5c8150fd16
1 changed files with 2 additions and 2 deletions
|
@ -206,7 +206,7 @@ def main(
|
||||||
read_model_settings: str = typer.Option(
|
read_model_settings: str = typer.Option(
|
||||||
None, "--read-model-settings", help="Load aider model settings from YAML file"
|
None, "--read-model-settings", help="Load aider model settings from YAML file"
|
||||||
),
|
),
|
||||||
reasoning_effort: Optional[float] = typer.Option(
|
reasoning_effort: Optional[str] = typer.Option(
|
||||||
None, "--reasoning-effort", help="Set reasoning effort for models that support it"
|
None, "--reasoning-effort", help="Set reasoning effort for models that support it"
|
||||||
),
|
),
|
||||||
exercises_dir: str = typer.Option(
|
exercises_dir: str = typer.Option(
|
||||||
|
@ -674,7 +674,7 @@ def run_test_real(
|
||||||
editor_edit_format,
|
editor_edit_format,
|
||||||
num_ctx=None,
|
num_ctx=None,
|
||||||
sleep=0,
|
sleep=0,
|
||||||
reasoning_effort=None,
|
reasoning_effort: Optional[str] = None,
|
||||||
read_model_settings=None,
|
read_model_settings=None,
|
||||||
):
|
):
|
||||||
if not os.path.isdir(testdir):
|
if not os.path.isdir(testdir):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue