From 5ec84059d9344991bd5ff29a7178b8434bc48115 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 23 Sep 2023 23:07:41 -0700 Subject: [PATCH] bump version and fix testing issue --- litellm/tests/test_streaming.py | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/litellm/tests/test_streaming.py b/litellm/tests/test_streaming.py index a91ba43baa..155633da13 100644 --- a/litellm/tests/test_streaming.py +++ b/litellm/tests/test_streaming.py @@ -421,6 +421,8 @@ def test_completion_claude_stream_bad_key(): if complete_response.strip() == "": raise Exception("Empty response received") print(f"completion_response: {complete_response}") + except AuthenticationError as e: + pass except Exception as e: pytest.fail(f"Error occurred: {e}") diff --git a/pyproject.toml b/pyproject.toml index b1524ed82f..e9d792bc94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.742" +version = "0.1.743" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"