核工业西南物理研究院知识库AI客户端
xiangpei
2025-04-18 7789aeaad9032763805da324d743bc664bddd2e8
1
2
3
4
5
6
7
8
9
10
import axios from "./request";
 
// 发送知识库问题
export const sendKbMsg = (data) => {
    return axios({
        url: "chat/send/msg",
        method: "POST",
        data: data
    })
}