From a80a7e893bed73de4928e9e7b29bc27c80302a54 Mon Sep 17 00:00:00 2001 From: yjoonjang Date: Fri, 31 May 2024 12:28:42 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20redirect=20uri=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/openai_call.py | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/openai_call.py b/utils/openai_call.py index eb3e361..e7a9c8a 100644 --- a/utils/openai_call.py +++ b/utils/openai_call.py @@ -17,7 +17,6 @@ def get_chat_openai(prompt, model="gpt-4o"): temperature=0, ) output = response.choices[0].message.content - print(output) return output