Newer
Older
DH_Apicture / src / api / voice / recordpage.js
@zhangqy zhangqy 27 days ago 409 bytes first commit
import request from '@/utils/request'

// 语音实时识别
export function videoupload (data) {
  return request({
    url: '/voice/voiceUnitRealtimeRecognitionRecord/recognition',
    method: 'post',
    data: data,
    timeout: 60 * 1000,
  })
}
// AI识别
export function chatSend (data) {
  return request({
    url: '/llm/chat/send',
    method: 'post',
    data: data,
    timeout: 60 * 1000,
  })
}