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