From 96cdee7d18f8ce4c8b4310e75c083c20fc7f10d7 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 16 Oct 2023 07:33:15 -0700 Subject: [PATCH] refactor(main.py): remove print statement --- litellm/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/litellm/main.py b/litellm/main.py index cc018e9fe2..7b9799020c 100644 --- a/litellm/main.py +++ b/litellm/main.py @@ -1559,7 +1559,6 @@ def text_completion(*args, **kwargs): kwargs["messages"] = messages kwargs.pop("prompt") response = completion(*args, **kwargs) # assume the response is the openai response object - print(f"response: {response}") formatted_response_obj = { "id": response["id"], "object": "text_completion",