From 1673de73ba16d899a3d6c7df3cc5cc6c5e6b3813 Mon Sep 17 00:00:00 2001 From: 6vision Date: Thu, 25 Jul 2024 22:58:57 +0800 Subject: [PATCH] Role plugin supports more bots. --- plugins/role/role.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/role/role.py b/plugins/role/role.py index c75aa90..0f514d7 100644 --- a/plugins/role/role.py +++ b/plugins/role/role.py @@ -99,7 +99,8 @@ class Role(Plugin): if e_context["context"].type != ContextType.TEXT: return btype = Bridge().get_bot_type("chat") - if btype not in [const.OPEN_AI, const.CHATGPT, const.CHATGPTONAZURE, const.LINKAI]: + if btype not in [const.OPEN_AI, const.CHATGPT, const.CHATGPTONAZURE, const.QWEN_DASHSCOPE, const.XUNFEI, const.BAIDU, const.ZHIPU_AI, const.MOONSHOT, const.MiniMax]: + logger.warn(f'不支持的bot: {btype}') return bot = Bridge().get_bot("chat") content = e_context["context"].content[:]