From 6de23a1a331f5ac4f5a276d5ff5063b6ac7fb278 Mon Sep 17 00:00:00 2001 From: Paillat Date: Tue, 15 Aug 2023 12:48:00 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=87=20chore(makeprompt.py):=20remove?= =?UTF-8?q?=20debug=20print=20statements=20for=20messages=20and=20response?= =?UTF-8?q?=20variables?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/makeprompt.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/makeprompt.py b/src/makeprompt.py index 14bde52..f4e930a 100644 --- a/src/makeprompt.py +++ b/src/makeprompt.py @@ -131,9 +131,7 @@ async def chatgpt_process( functions=called_functions, function_call="auto", ) - print(f"messages: {msgs}") response = response["choices"][0]["message"] # type: ignore - print(f"response: {response}") if response.get("function_call"): function_call = response.get("function_call") await call_function(message, function_call)