调试一下内容。

This commit is contained in:
liuwei
2025-05-21 16:52:21 +08:00
parent 4e345197e8
commit c91633f58d

View File

@@ -62,7 +62,6 @@ class AIAutoResponsePlugin(MessagePluginInterface):
# 加载配置
config_path = os.path.join(os.path.dirname(__file__), "config.toml")
self.enable = self._config.get("enable", True)
self._commands = ["ai介入", "ai对话", "ai自动回复"]
# 从配置中获取DIFY API密钥
self.dify_api_key = self._config.get("dify_api_key", "")
@@ -71,7 +70,6 @@ class AIAutoResponsePlugin(MessagePluginInterface):
# 初始化介入机器人
self.intervention_bot = InterventionBot(config_path)
self.LOG.info(f"[{self.name}] 插件初始化完成,指令:{self._commands}")
return True
def start(self) -> bool:
@@ -98,6 +96,7 @@ class AIAutoResponsePlugin(MessagePluginInterface):
return False
# 如果是群消息,且该群启用了自动回复,则处理
if roomid:
self.LOG.debug(f"[{roomid}] 进入AI自动回复逻辑")
# 存储消息
if roomid not in self.group_messages:
self.group_messages[roomid] = []