diff --git a/litellm/main.py b/litellm/main.py index 60c4d802dd..23cfb2c581 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 fb91205e54..a41b181587 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"