mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
refactor(main.py): remove print statement
This commit is contained in:
parent
38fa9827d5
commit
96cdee7d18
1 changed files with 0 additions and 1 deletions
|
@ -1559,7 +1559,6 @@ def text_completion(*args, **kwargs):
|
||||||
kwargs["messages"] = messages
|
kwargs["messages"] = messages
|
||||||
kwargs.pop("prompt")
|
kwargs.pop("prompt")
|
||||||
response = completion(*args, **kwargs) # assume the response is the openai response object
|
response = completion(*args, **kwargs) # assume the response is the openai response object
|
||||||
print(f"response: {response}")
|
|
||||||
formatted_response_obj = {
|
formatted_response_obj = {
|
||||||
"id": response["id"],
|
"id": response["id"],
|
||||||
"object": "text_completion",
|
"object": "text_completion",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue