From d04b4af025ce5e50b341836324680946b8e889d0 Mon Sep 17 00:00:00 2001 From: James Briggs <james.briggs@hotmail.com> Date: Fri, 19 Jul 2024 15:37:54 +0800 Subject: [PATCH] fix: update model version in tests --- tests/unit/llms/test_llm_azure_openai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/llms/test_llm_azure_openai.py b/tests/unit/llms/test_llm_azure_openai.py index a50b08fb..1b2db3cb 100644 --- a/tests/unit/llms/test_llm_azure_openai.py +++ b/tests/unit/llms/test_llm_azure_openai.py @@ -14,7 +14,7 @@ class TestOpenAILLM: def test_azure_openai_llm_init_with_api_key(self, azure_openai_llm): assert azure_openai_llm.client is not None, "Client should be initialized" assert ( - azure_openai_llm.name == "gpt-3.5-turbo" + azure_openai_llm.name == "gpt-4o" ), "Default name not set correctly" def test_azure_openai_llm_init_success(self, mocker): -- GitLab