src/api/ai/chat.ts | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/api/ai/chat.ts
@@ -185,3 +185,27 @@ }, }); }; export const GetHistoryAnswer= async (params, req:any = request) => { return req({ url: "/history/get_history_answer", method: "POST", data: params, headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, }); }; export const QueryHistoryDetail = async (params, req:any = request) => { return req({ url: "/history/query_history_detail", method: "POST", data: params, headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, }); };