123456789101112131415161718 |
- import { get, post } from '@/util/request.js'
- // AI聊天(弃用)
- export const sendMsgApi = (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)
|