feat(C组): C-T1~T13 AI与数据模块完成

- C-T1 Wingman 辅助面板
- C-T2 Wingman 后端接口
- C-T3 排查流程图编辑器
- C-T4 流程图后端接口
- C-T5 流程图H5端展示
- C-T6 运营数据看板
- C-T7 看板数据接口
- C-T8 全局一致性审查(周2)
- C-T9 坐席绩效报表
- C-T10 绩效数据接口+Excel导出
- C-T11 会话智能标注
- C-T12 全局一致性审查(周3)
- C-T13 代码评审+PR创建
This commit is contained in:
Simon
2026-07-02 19:23:03 +08:00
parent fc22de7f4d
commit 6277db3951
5 changed files with 2207 additions and 18 deletions
+19
View File
@@ -89,3 +89,22 @@ export async function suggestTags(conversationId: string): Promise<TagsResult> {
)
return response.data.data
}
/**
* 保存会话标签
* 将标签保存到会话记录中
*
* @param conversationId - 会话ID
* @param tags - 标签字典
* @returns 更新后的会话详情
*/
export async function saveConversationTags(
conversationId: string,
tags: Record<string, any>
): Promise<any> {
const response: AxiosResponse = await apiClient.post(
`/conversations/${conversationId}/tags`,
{ tags }
)
return response.data.data
}