传入群信息,用于记录群的总结次数

This commit is contained in:
liuwei
2025-03-14 17:25:09 +08:00
parent bd05109fc9
commit 93cf280630
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -640,7 +640,7 @@ class Robot(Job):
if self.gbm.get_group_permission(sender, Feature.SUMMARY_CAPABILITY) == PermissionStatus.ENABLED:
self.LOG.info(f"群: {sender} 消息总结开始执行!")
content = self.message_storage.get_messages(sender, self.allContacts)
summary, spath = message_summary_dify(content)
summary, spath = message_summary_dify(content, self.allContacts.get(sender, sender))
# self.send_text_msg(summary, sender)
self.wcf.send_file(spath, sender)
else: