From 3a004440f75a8b822508aa98cedd9e2e2694dd6a Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Wed, 7 Feb 2024 11:14:54 -0800 Subject: [PATCH] Removed an extra print statement, thanks to @rez0. --- client/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/client/utils.py b/client/utils.py index f008a18..ed4fb13 100644 --- a/client/utils.py +++ b/client/utils.py @@ -105,7 +105,6 @@ class Standalone: frequency_penalty=0.1, presence_penalty=0.1, ) - print(response) print(response.choices[0].message.content) except Exception as e: print(f"Error: {e}")