diff --git a/skillopt/model/claude_backend.py b/skillopt/model/claude_backend.py index 22031b7..04a17a3 100644 --- a/skillopt/model/claude_backend.py +++ b/skillopt/model/claude_backend.py @@ -254,7 +254,7 @@ def _run_claude_print(*, system: str, prompt: str, model: str, tools: list[dict[ if system: cmd.extend(["--append-system-prompt", system]) if effort: - cmd.extend(["--thinking", effort]) + cmd.extend(["--effort", effort]) structured_output = bool(return_message) if structured_output: cmd.extend(["--schema", _assistant_message_schema_wrapper()])