feat: add AI serving status to conversation management and update related components
This commit is contained in:
@@ -112,11 +112,13 @@ export const IMConversationServiceModeLabels: Record<IMConversationServiceMode,
|
||||
}
|
||||
|
||||
export enum IMConversationStatus {
|
||||
Pending = 1,
|
||||
Active = 2,
|
||||
Closed = 3,
|
||||
AIServing = 1,
|
||||
Pending = 2,
|
||||
Active = 3,
|
||||
Closed = 4,
|
||||
}
|
||||
export const IMConversationStatusLabels: Record<IMConversationStatus, string> = {
|
||||
[IMConversationStatus.AIServing]: "AI接待中",
|
||||
[IMConversationStatus.Pending]: "待接入",
|
||||
[IMConversationStatus.Active]: "处理中",
|
||||
[IMConversationStatus.Closed]: "已关闭",
|
||||
|
||||
@@ -19,6 +19,7 @@ import { generateUUID } from "@/lib/utils"
|
||||
|
||||
export const agentConversationFilterOptions = [
|
||||
// { value: "mine", label: "我的" },
|
||||
{ value: "ai_serving", label: "AI接待中" },
|
||||
{ value: "active", label: "处理中" },
|
||||
{ value: "pending", label: "待接入" },
|
||||
{ value: "closed", label: "已关闭" },
|
||||
|
||||
Reference in New Issue
Block a user