From 21c82dc6e761397ba3813ed264042c2fe535aa84 Mon Sep 17 00:00:00 2001 From: SlyAimer <2289782085@qq.com> Date: Fri, 28 Feb 2025 14:27:46 +0800 Subject: [PATCH] =?UTF-8?q?refactor(src/plugins/check.py):=20=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=20AI=20=E8=81=8A=E5=A4=A9=E5=87=BD=E6=95=B0=20-=20?= =?UTF-8?q?=E5=B0=86=20ai=5Fchat.deepseek=5Fchat()=20=E5=87=BD=E6=95=B0?= =?UTF-8?q?=E6=9B=BF=E6=8D=A2=E4=B8=BA=20ai=5Fchat.silicon=5Fflow()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugins/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/check.py b/src/plugins/check.py index 018d8b2..646b16d 100644 --- a/src/plugins/check.py +++ b/src/plugins/check.py @@ -42,7 +42,7 @@ async def handle_function(message: MessageEvent): member_openid, content = message.author.id, message.get_plaintext() status = await GroupChatRole.is_on(group_openid) if status: - msg = await ai_chat.deepseek_chat(group_openid,content) + msg = await ai_chat.silicon_flow(group_openid,content) await check.finish(msg) else: await check.finish(message=Message(random.choice(text_list)))