From 3ab3370a8ec0f662b471794b682b1035303914a1 Mon Sep 17 00:00:00 2001 From: Giles Odigwe Date: Wed, 29 Apr 2026 15:31:57 -0700 Subject: [PATCH] Remove temperature from foundry hosting test (unsupported by CI model) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- python/packages/foundry_hosting/tests/test_responses_int.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/packages/foundry_hosting/tests/test_responses_int.py b/python/packages/foundry_hosting/tests/test_responses_int.py index 91405575fe..a67b86f00a 100644 --- a/python/packages/foundry_hosting/tests/test_responses_int.py +++ b/python/packages/foundry_hosting/tests/test_responses_int.py @@ -563,13 +563,12 @@ class TestOptions: @pytest.mark.integration @skip_if_foundry_hosting_integration_tests_disabled async def test_temperature_and_max_tokens(self, server: ResponsesHostServer) -> None: - """Set temperature and max_output_tokens and verify the response succeeds.""" + """Set max_output_tokens and verify the response succeeds.""" resp = await _post_json( server, { "input": "Say hello briefly.", "stream": False, - "temperature": 0.7, "max_output_tokens": 200, }, )