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.

10 lines
231 B
TypeScript

import { http } from "@/utils/http";
/** 创建案件前,根据关键词查找案件ID或名称
*/
export const chatKnowledgeQA = (data?: object) => {
return http.request("get", "/chat/knowledgeQA", {
params: data
});
};