From d2189367630d9d35b2048dcfc017803ef4635881 Mon Sep 17 00:00:00 2001 From: ccurme Date: Wed, 29 Oct 2025 17:09:18 -0400 Subject: [PATCH] fix(openai): update model used in test (#33733) Co-authored-by: Mason Daugherty --- .../tests/integration_tests/chat_models/test_base_standard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/partners/openai/tests/integration_tests/chat_models/test_base_standard.py b/libs/partners/openai/tests/integration_tests/chat_models/test_base_standard.py index 302b8ab0327..a4c622bdc3b 100644 --- a/libs/partners/openai/tests/integration_tests/chat_models/test_base_standard.py +++ b/libs/partners/openai/tests/integration_tests/chat_models/test_base_standard.py @@ -75,7 +75,7 @@ class TestOpenAIStandard(ChatModelIntegrationTests): return _invoke(llm, input_, stream) def invoke_with_reasoning_output(self, *, stream: bool = False) -> AIMessage: - llm = ChatOpenAI(model="o1-mini", stream_usage=True, temperature=1) + llm = ChatOpenAI(model="gpt-5-nano", reasoning_effort="medium") input_ = ( "explain the relationship between the 2008/9 economic crisis and the " "startup ecosystem in the early 2010s"