后端:
1. 主动调度 graph + session bridge 收口——把 dry-run / select / preview / confirm / rerun 串成受限 graph,新增 active_schedule_sessions 缓存与聊天拦截,ready_preview 后释放回自由聊天
2. 会话与通知链路对齐——notification 统一绑定 conversation_id,action_url 指向 /assistant/{conversation_id},会话不存在改回 404 语义,避免 wrong param type 误导排障
3. estimated_sections 写入与主动调度消费链路补齐——任务创建、quick task 与随口记入口都透传估计节数,主动调度只消费落库值
前端:
4. AssistantPanel 最小适配主动调度预览与失败态——复用主动调度卡片/微调弹窗,补历史加载失败可见提示与跨账号会话拦截
文档:
5. 更新主动调度缺口分阶段实施计划和实现方案,标记阶段 0-2 收口并同步接力状态
37 lines
1.4 KiB
Go
37 lines
1.4 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
// TaskQueryParams 描述快捷任务查询路径传给业务层的内部查询参数。
|
|
//
|
|
// 职责边界:
|
|
// 1. 这里只承载“查询条件”本身,不负责 args 解析、默认值填充和错误提示;
|
|
// 2. 所有字段均为轻量筛选语义,便于 quick_task 节点和 service 层直接复用;
|
|
// 3. 不承担 LLM 工具协议,因为 query_tasks 工具链已下线。
|
|
type TaskQueryParams struct {
|
|
Quadrant *int
|
|
SortBy string // deadline | priority | id
|
|
Order string // asc | desc
|
|
Limit int
|
|
IncludeCompleted bool
|
|
Keyword string
|
|
DeadlineBefore *time.Time
|
|
DeadlineAfter *time.Time
|
|
}
|
|
|
|
// TaskQueryResult 描述快捷任务查询返回给上层的轻量任务视图。
|
|
//
|
|
// 职责边界:
|
|
// 1. 这里只保留展示所需字段,避免把底层任务模型直接暴露给 newAgent 节点;
|
|
// 2. 结果既可用于 quick_task 节点文本回复,也可供 service 装配其他轻量输出;
|
|
// 3. 不负责序列化策略和文案渲染。
|
|
type TaskQueryResult struct {
|
|
ID int `json:"id"`
|
|
Title string `json:"title"`
|
|
PriorityGroup int `json:"priority_group"`
|
|
EstimatedSections int `json:"estimated_sections"`
|
|
PriorityLabel string `json:"priority_label"`
|
|
IsCompleted bool `json:"is_completed"`
|
|
DeadlineAt string `json:"deadline_at,omitempty"`
|
|
}
|