12345678910111213141516171819202122 |
- import { get, post } from '@/util/request.js'
- // AI聊天
- export const sendMsgApi = (params, config = {}) => post('/tools/chat/sendMsg', params, config)
- // 提示列表
- export const msgList = (params, config = {}) => get('/tools/chat/getModuleList', params, config)
- // 获取图片
- export const sendMsgPic = (params, config = {}) => post('/tools/chat/sendMsg', params, config)
- // 查询用户余额
- export const getUserChatAssetApi = (params, config = {}) => post('/tools/chat/getUserChatAsset', params, config)
- // 开启新会话
- export const startNewChatApi = (params, config = {}) => post('/tools/chat/startNewChat', params, config)
- // 查询提示语
- export const findPromptListApi = (params, config = {}) => post('/tools/chat/findPromptList', params, config)
- // 激励视频奖励
- export const rewardedVideoAdAssetApi = (params, config = {}) => post('/tools/chat/rewardedVideoAdAsset', params, config)
|