This commit is contained in:
X1627315083
2025-10-28 13:57:55 +08:00
16 changed files with 372 additions and 128 deletions

View File

@@ -130,6 +130,7 @@ export function getTryOnEffectStyleList(styleId: string | number) {
}
// 选择顾客
interface CustomerInfo {
name: string
email: string
@@ -140,4 +141,12 @@ export const customerCheckin = (data: CustomerInfo) => {
method: 'get',
params: data,
})
}
}
// AI对话
interface AIConversation {
message: string
sessionId: string | number //用户ID
gender: 'male' | 'female' //性别
}
export const streamChatAddress = '/api/llm/streamChat'