From 7c87d613ed6ce005bee4684886831a804f127fce Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 2 Nov 2023 17:26:30 -0700 Subject: [PATCH] (testing) test_function_call_non_openai_model --- litellm/tests/test_add_function_to_prompt.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/tests/test_add_function_to_prompt.py b/litellm/tests/test_add_function_to_prompt.py index 33d2ac2a976..a5ec5306298 100644 --- a/litellm/tests/test_add_function_to_prompt.py +++ b/litellm/tests/test_add_function_to_prompt.py @@ -37,6 +37,7 @@ def test_function_call_non_openai_model(): response = litellm.completion(model=model, messages=messages, functions=functions) pytest.fail(f'An error occurred') except Exception as e: + print(e) pass test_function_call_non_openai_model()