From c89ed8f4c8011d795ec0ea59ca4f5f9910f72f8d Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Mon, 11 Dec 2023 23:22:40 -0800 Subject: [PATCH] (ci/cd) test --- litellm/tests/test_completion.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index 1f58668b1fa..b6dc82e0550 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -1024,6 +1024,9 @@ def test_customprompt_together_ai(): try: litellm.set_verbose = False litellm.num_retries = 0 + print("in test_customprompt_together_ai") + print(litellm.success_callback) + print(litellm._async_success_callback) response = completion( model="together_ai/mistralai/Mistral-7B-Instruct-v0.1", messages=messages, @@ -1032,7 +1035,6 @@ def test_customprompt_together_ai(): print(response) except litellm.exceptions.Timeout as e: print(f"Timeout Error") - litellm.num_retries = 3 # reset retries pass except Exception as e: print(f"ERROR TYPE {type(e)}")