diff --git a/e2e/test_suite1_basic_validation.py b/e2e/test_suite1_basic_validation.py index 5cd90ddc..81448d64 100644 --- a/e2e/test_suite1_basic_validation.py +++ b/e2e/test_suite1_basic_validation.py @@ -365,7 +365,7 @@ def _judge_call_anthropic(model: str, system: str, user: str) -> str: max_tokens=1024, system=system, messages=[{"role": "user", "content": user}], - temperature=0, + extra_body={"temperature": 0}, ) return response.content[0].text.strip()