From c829798e04c47049bcbe93b365668692b2f40e98 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 16 Sep 2023 20:59:24 -0700 Subject: [PATCH] bump version and clean print statements --- litellm/main.py | 1 - pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/litellm/main.py b/litellm/main.py index 60c4d802d..23cfb2c58 100644 --- a/litellm/main.py +++ b/litellm/main.py @@ -163,7 +163,6 @@ def completion( custom_llm_provider = model.split("/", 1)[0] model = model.split("/", 1)[1] model, custom_llm_provider = get_llm_provider(model=model, custom_llm_provider=custom_llm_provider) - print(f"model: {model}; llm provider: {custom_llm_provider}") # check if user passed in any of the OpenAI optional params optional_params = get_optional_params( functions=functions, diff --git a/pyproject.toml b/pyproject.toml index fb91205e5..a41b18158 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.686" +version = "0.1.687" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"