diff --git a/litellm/__pycache__/main.cpython-311.pyc b/litellm/__pycache__/main.cpython-311.pyc index f1f66b5eb7..64c0ff698f 100644 Binary files a/litellm/__pycache__/main.cpython-311.pyc and b/litellm/__pycache__/main.cpython-311.pyc differ diff --git a/litellm/llms/replicate.py b/litellm/llms/replicate.py index e7c76d0ef7..dfeda5ee79 100644 --- a/litellm/llms/replicate.py +++ b/litellm/llms/replicate.py @@ -82,7 +82,6 @@ def handle_prediction_response_streaming(prediction_url, api_token, print_verbos if response.status_code == 200: response_data = response.json() status = response_data['status'] - print(f"response data: {response_data}") if "output" in response_data: output_string = "".join(response_data['output']) new_output = output_string[len(previous_output):] diff --git a/pyproject.toml b/pyproject.toml index 804521f051..698dba3479 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.782" +version = "0.1.783" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"