fix:修改no_reply为no_action,同时修复一些小bug

This commit is contained in:
SengokuCola
2025-08-17 21:14:52 +08:00
parent 0b053dcf6f
commit 794a0d8fd4
24 changed files with 818 additions and 271 deletions

View File

@@ -735,7 +735,7 @@ def build_readable_actions(actions: List[Dict[str, Any]]) -> str:
for action in actions:
action_time = action.get("time", current_time)
action_name = action.get("action_name", "未知动作")
if action_name in ["no_action", "no_reply"]:
if action_name in ["no_action", "no_action"]:
continue
action_prompt_display = action.get("action_prompt_display", "无具体内容")