feat:为私聊增加checker和次级回复,更多动作

This commit is contained in:
SengokuCola
2025-12-04 23:39:09 +08:00
parent a155194157
commit 95a1712c90
19 changed files with 4146 additions and 42 deletions

View File

@@ -0,0 +1,10 @@
from typing import Optional
class ConversationInfo:
def __init__(self):
self.done_action = []
self.goal_list = []
self.knowledge_list = []
self.memory_list = []
self.last_successful_reply_action: Optional[str] = None