diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index adb55a45e..795803c38 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -12,7 +12,7 @@ messages = [{ "content": user_message,"role": "user"}] def test_completion_openai(): try: - response = completion(model="gpt-3.5-turbo", messages=messages) + response = completion(model="updated-model", messages=messages) # Add any assertions here to check the response print(response) except Exception as e: @@ -80,7 +80,7 @@ def test_completion_azure(): def test_completion_claude(): try: - response = completion(model="claude-instant-1", messages=messages) + response = completion(model="updated-model", messages=messages) # Add any assertions here to check the response print(response) except Exception as e: