【新增】AI:对话管理 50%

This commit is contained in:
YunaiV
2024-05-25 00:08:40 +08:00
parent ca40047f0b
commit d172d3db73
5 changed files with 196 additions and 18 deletions

View File

@@ -6,7 +6,7 @@ import { config } from '@/config/axios/config'
// 聊天VO
export interface ChatMessageVO {
id: number // 编号
conversationId: number // 话编号
conversationId: number // 话编号
type: string // 消息类型
userId: string // 用户编号
roleId: string // 角色编号
@@ -20,7 +20,7 @@ export interface ChatMessageVO {
}
export interface ChatMessageSendVO {
conversationId: string // 话编号
conversationId: string // 话编号
content: number // 聊天内容
}