Skip to content

Commit

Permalink
fix: update model version in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescalam committed Jul 19, 2024
1 parent ea1be71 commit d04b4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/llms/test_llm_azure_openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit d04b4af

Please sign in to comment.