mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
remove print statements
This commit is contained in:
parent
59999e4399
commit
1f2a12fe1f
3 changed files with 1 additions and 4 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue