Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eval_protocol/pytest/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def pytest_configure(config) -> None:
# Always place under extra_body to avoid LiteLLM rejecting top-level params
eb = merged.setdefault("extra_body", {})
# Convert "none" string to None value for API compatibility
eb["reasoning_effort"] = None if reasoning_effort.lower() == "none" else str(reasoning_effort)
eb["reasoning_effort"] = str(reasoning_effort)
if merged:
os.environ["EP_INPUT_PARAMS_JSON"] = json.dumps(merged)
except Exception:
Expand Down
Loading