feat: 添加通知消息处理功能,支持戳一戳、禁言等事件,并更新相关逻辑

This commit is contained in:
Windpicker-owo
2025-11-27 22:54:58 +08:00
parent 3538716515
commit a06510b9b6
4 changed files with 187 additions and 35 deletions

View File

@@ -106,6 +106,7 @@ class EventType(Enum):
ON_START = "on_start" # 启动事件,用于调用按时任务
ON_STOP = "on_stop"
ON_MESSAGE = "on_message"
ON_NOTICE_RECEIVED = "on_notice_received" # Notice 消息事件(戳一戳、禁言等)
ON_PLAN = "on_plan"
POST_LLM = "post_llm"
AFTER_LLM = "after_llm"