feat(chatter): 添加should_quote_reply参数以控制引用回复行为

This commit is contained in:
Windpicker-owo
2025-10-31 22:36:53 +08:00
parent c83d1ac1d8
commit d53ee349f4
6 changed files with 77 additions and 15 deletions

View File

@@ -27,6 +27,7 @@ class ActionPlannerInfo(BaseDataModel):
action_data: dict | None = None
action_message: Optional["DatabaseMessages"] = None
available_actions: dict[str, "ActionInfo"] | None = None
should_quote_reply: bool | None = None # 是否应该引用回复原消息None表示由系统自动决定
@dataclass