From be70e09c6eb8e6be70647a65f105b8858ae80031 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Tue, 1 Aug 2023 16:02:38 +0000 Subject: [PATCH] Update litellm/tests/test_bad_params.py --- litellm/tests/test_bad_params.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/tests/test_bad_params.py b/litellm/tests/test_bad_params.py index dd1e8d509..255fb0d96 100644 --- a/litellm/tests/test_bad_params.py +++ b/litellm/tests/test_bad_params.py @@ -26,13 +26,13 @@ litellm.failure_callback = ["slack", "sentry", "posthog"] user_message = "Hello, how are you?" messages = [{ "content": user_message,"role": "user"}] -model_val = "krrish is a model" +model_val = "" def test_completion_with_empty_model(): # test on empty try: - response = completion(model=model_val, messages=messages) + response = completion(model="", messages=messages) except Exception as e: print(f"error occurred: {e}") pass