You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
apply-assistant-v3/api/chat.js

17 lines
852 B
JavaScript

3 months ago
let bindInfo = {
chat_create:"/yishoudan/common/user/job/match/getTalk",// 创建会话
chat_send:"/yishoudan/common/user/job/match/doTalk",// 处理会话
chat_ai_job:"/yishoudan/store/job/getShareJobs",// gpt返回的职位列表
chat_daotian_job:"/yishoudan/store/job/platform/list",// 稻田职位列表
job_detail_daotian:"/yishoudan/store/job/platform/detail",// 稻田职位详情
chat_config:'/yishoudan/common/user/job/match/getBotInfo',// 获取机器人配置
ai_config:'/robot/config/getRobotList',// 获取机器人列表
chat_getConversationld:'/chat/message/getConversationId',// 获取会话id
chat_getHistory:'/chat/message/getPageList',// 获取历史记录
chat_addHistory:'/chat/message/addChatMessage',// 新增聊天记录
chat_delMsg:'/chat/message/deleteMessage',// 删除聊天记录
}
export default bindInfo;