Skip to content

Commit aceb853

Browse files
author
Shrey Modi
committed
reasoning effort string change
1 parent a89c9d9 commit aceb853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eval_protocol/pytest/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def pytest_configure(config) -> None:
307307
# Always place under extra_body to avoid LiteLLM rejecting top-level params
308308
eb = merged.setdefault("extra_body", {})
309309
# Convert "none" string to None value for API compatibility
310-
eb["reasoning_effort"] = None if reasoning_effort.lower() == "none" else str(reasoning_effort)
310+
eb["reasoning_effort"] = str(reasoning_effort)
311311
if merged:
312312
os.environ["EP_INPUT_PARAMS_JSON"] = json.dumps(merged)
313313
except Exception:

0 commit comments

Comments
 (0)