forked from phoenix/litellm-mirror
remove print statement in replicate.py
This commit is contained in:
parent
ba5705c376
commit
07c74838ff
3 changed files with 1 additions and 2 deletions
Binary file not shown.
|
@ -82,7 +82,6 @@ def handle_prediction_response_streaming(prediction_url, api_token, print_verbos
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
response_data = response.json()
|
response_data = response.json()
|
||||||
status = response_data['status']
|
status = response_data['status']
|
||||||
print(f"response data: {response_data}")
|
|
||||||
if "output" in response_data:
|
if "output" in response_data:
|
||||||
output_string = "".join(response_data['output'])
|
output_string = "".join(response_data['output'])
|
||||||
new_output = output_string[len(previous_output):]
|
new_output = output_string[len(previous_output):]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "litellm"
|
name = "litellm"
|
||||||
version = "0.1.782"
|
version = "0.1.783"
|
||||||
description = "Library to easily interface with LLM API providers"
|
description = "Library to easily interface with LLM API providers"
|
||||||
authors = ["BerriAI"]
|
authors = ["BerriAI"]
|
||||||
license = "MIT License"
|
license = "MIT License"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue