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