import type { ChatHistory, CreateSpeakerData, VoicePrint, } from './types' import { http } from '@/http/request/alova' // 获取声纹列表 export function getVoicePrintList(agentId: string) { return http.Get(`/agent/voice-print/list/${agentId}`, { meta: { ignoreAuth: false, toast: false, }, cacheFor: { expire: 0, }, }) } // 获取语音对话记录(用于选择声纹向量) export function getChatHistory(agentId: string) { return http.Get(`/agent/${agentId}/chat-history/user`, { meta: { ignoreAuth: false, toast: false, }, cacheFor: { expire: 0, }, }) } // 新增说话人 export function createVoicePrint(data: CreateSpeakerData) { return http.Post('/agent/voice-print', data, { meta: { ignoreAuth: false, toast: true, }, }) } // 删除声纹 export function deleteVoicePrint(id: string) { return http.Delete(`/agent/voice-print/${id}`, { meta: { ignoreAuth: false, toast: true, }, }) } // 更新声纹信息 export function updateVoicePrint(data: VoicePrint) { return http.Put('/agent/voice-print', data, { meta: { ignoreAuth: false, toast: true, }, }) } // 获取音频下载ID export function getAudioDownloadId(audioId: string) { return http.Post(`/agent/audio/${audioId}`, {}, { meta: { ignoreAuth: false, toast: false, }, }) }