chat.js 914 B

12345678910111213141516171819202122
  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 msgList = (params, config = {}) => get('/tools/chat/getModuleList', params, config)
  6. // 获取图片
  7. export const sendMsgPic = (params, config = {}) => post('/tools/chat/sendMsg', params, config)
  8. // 查询用户余额
  9. export const getUserChatAssetApi = (params, config = {}) => post('/tools/chat/getUserChatAsset', params, config)
  10. // 开启新会话
  11. export const startNewChatApi = (params, config = {}) => post('/tools/chat/startNewChat', params, config)
  12. // 查询提示语
  13. export const findPromptListApi = (params, config = {}) => post('/tools/chat/findPromptList', params, config)
  14. // 激励视频奖励
  15. export const rewardedVideoAdAssetApi = (params, config = {}) => post('/tools/chat/rewardedVideoAdAsset', params, config)