diff --git a/litellm/__pycache__/main.cpython-311.pyc b/litellm/__pycache__/main.cpython-311.pyc index 5cde9036ab..d6d03bc5ad 100644 Binary files a/litellm/__pycache__/main.cpython-311.pyc and b/litellm/__pycache__/main.cpython-311.pyc differ diff --git a/litellm/__pycache__/utils.cpython-311.pyc b/litellm/__pycache__/utils.cpython-311.pyc index fb4eca6d43..df6c1ee8b2 100644 Binary files a/litellm/__pycache__/utils.cpython-311.pyc and b/litellm/__pycache__/utils.cpython-311.pyc differ diff --git a/litellm/tests/test_logging.py b/litellm/tests/test_logging.py index e68c90b357..92514daf9d 100644 --- a/litellm/tests/test_logging.py +++ b/litellm/tests/test_logging.py @@ -169,13 +169,13 @@ def test_logging_success_streaming_non_openai(): elif "Logging Details LiteLLM-Success Call" not in output: raise Exception("Required log message not found!") elif "Complete Streaming Response:" not in output: - raise Exception("Required log message not found!") + raise Exception(f"Required log message not found! {output}") score += 1 except Exception as e: pytest.fail(f"Error occurred: {e}") pass -test_logging_success_streaming_non_openai() +# test_logging_success_streaming_non_openai() # embedding def test_logging_success_embedding_openai():