From 81ac07644de9e2c8daffc2f3035a62d9effcf269 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Thu, 7 Sep 2023 16:24:05 -0700 Subject: [PATCH] bump version --- litellm/utils.py | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/litellm/utils.py b/litellm/utils.py index d7500e2e28..22101f5b5c 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -1055,6 +1055,8 @@ def set_callbacks(callback_list, function_id=None): liteDebuggerClient = LiteDebugger(email=litellm.token) elif litellm.email: liteDebuggerClient = LiteDebugger(email=litellm.email) + else: + liteDebuggerClient = LiteDebugger() except Exception as e: raise e diff --git a/pyproject.toml b/pyproject.toml index 491fec23b1..00dabe2abc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.558" +version = "0.1.559" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"