remove print statements

This commit is contained in:
Krrish Dholakia 2023-09-27 17:06:41 -07:00
parent 59999e4399
commit 1f2a12fe1f
3 changed files with 1 additions and 4 deletions

View file

@ -27,7 +27,6 @@ def test_streaming_mock_request():
response = litellm.mock_completion(model=model, messages=messages, stream=True)
complete_response = ""
for chunk in response:
print(f"chunk: {chunk}")
complete_response += chunk["choices"][0]["delta"]["content"]
if complete_response == "":
raise Exception("Empty response received")