From 035a6ebfd73ec20a177769a867f2c12314acc358 Mon Sep 17 00:00:00 2001 From: Yasir Aris M Date: Tue, 13 Aug 2024 21:35:37 +0700 Subject: [PATCH] Forgot comma --- misskaty/plugins/chatbot_ai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misskaty/plugins/chatbot_ai.py b/misskaty/plugins/chatbot_ai.py index 851d21c6..f10bb53b 100644 --- a/misskaty/plugins/chatbot_ai.py +++ b/misskaty/plugins/chatbot_ai.py @@ -79,7 +79,7 @@ async def openai_chatbot(self, ctx: Message, strings): try: response = await ai.chat.completions.create( model="gpt-4o-mini", - messages=[{"role": "user", "content": pertanyaan}] + messages=[{"role": "user", "content": pertanyaan}], temperature=0.7, stream=True, )