remove print statement in replicate.py

This commit is contained in:
Krrish Dholakia 2023-09-27 10:42:58 -07:00
parent ba5705c376
commit 07c74838ff
3 changed files with 1 additions and 2 deletions

View file

@ -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):]

View file

@ -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"