We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a89c9d9 commit aceb853Copy full SHA for aceb853
1 file changed
eval_protocol/pytest/plugin.py
@@ -307,7 +307,7 @@ def pytest_configure(config) -> None:
307
# Always place under extra_body to avoid LiteLLM rejecting top-level params
308
eb = merged.setdefault("extra_body", {})
309
# Convert "none" string to None value for API compatibility
310
- eb["reasoning_effort"] = None if reasoning_effort.lower() == "none" else str(reasoning_effort)
+ eb["reasoning_effort"] = str(reasoning_effort)
311
if merged:
312
os.environ["EP_INPUT_PARAMS_JSON"] = json.dumps(merged)
313
except Exception:
0 commit comments