bump version and fix testing issue

This commit is contained in:
Krrish Dholakia 2023-09-23 23:07:41 -07:00
parent 667242889f
commit 5ec84059d9
2 changed files with 3 additions and 1 deletions

View file

@ -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}")

View file

@ -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"