feat: create dispatch plans from group messages

This commit is contained in:
kris
2026-03-30 01:49:07 +08:00
parent 74ea7151ad
commit 11724e9834
4 changed files with 277 additions and 10 deletions

View File

@@ -130,7 +130,10 @@ export type AiProvider = "master_codex_node" | "openai_api";
export type AiAccountRole = "primary" | "backup" | "api_fallback";
export type AiAccountStatus = "ready" | "needs_login" | "needs_api_key" | "degraded" | "disabled";
export type MasterAgentTaskStatus = "queued" | "running" | "completed" | "failed";
export type MasterAgentTaskType = "conversation_reply" | "attachment_analysis";
export type MasterAgentTaskType =
| "conversation_reply"
| "attachment_analysis"
| "group_dispatch_plan";
export type DispatchPlanStatus =
| "pending_user_confirmation"
| "approved"