chat.js 698 B

123456789101112131415161718
  1. import { get, post } from '@/util/request.js'
  2. // AI聊天(弃用)
  3. export const sendMsgApi = (params, config = {}) => post('/tools/chat/sendMsg', params, config)
  4. // 查询用户余额
  5. export const getUserChatAssetApi = (params, config = {}) => post('/tools/chat/getUserChatAsset', params, config)
  6. // 开启新会话
  7. export const startNewChatApi = (params, config = {}) => post('/tools/chat/startNewChat', params, config)
  8. // 查询提示语
  9. export const findPromptListApi = (params, config = {}) => post('/tools/chat/findPromptList', params, config)
  10. // 激励视频奖励
  11. export const rewardedVideoAdAssetApi = (params, config = {}) => post('/tools/chat/rewardedVideoAdAsset', params, config)