From a8414288cda4c7bdd1b5a6ceaedb67909fc10f27 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Thu, 7 Sep 2023 08:21:25 -0700 Subject: [PATCH] remove print statement --- litellm/utils.py | 2 -- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/litellm/utils.py b/litellm/utils.py index bced7067e4..75d320859f 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -604,8 +604,6 @@ def get_replicate_completion_pricing(completion_response=None, total_time=0.0): end_time = completion_response["ended"] total_time = end_time - start_time - print("total_replicate_run_time", total_time) - return a100_80gb_price_per_second_public*total_time diff --git a/pyproject.toml b/pyproject.toml index f48b82a473..4a27945864 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.555" +version = "0.1.556" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"