gerson
2024-06-30 94045186501808e444a31584ea0362abc04f37c5
chat.ts
已修改1个文件
24 ■■■■■ 文件已修改
src/api/ai/chat.ts 24 ●●●●● 补丁 | 查看 | 原始文档 | 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',
      },
    });
  };