wujingjing
2024-07-19 16b491229cc9f37547a5d30bfecf74bcdd53d31b
src/api/ai/chat.ts
@@ -1,5 +1,8 @@
import request from '/@/utils/request';
import { toFormData } from '/@/utils/util';
const GET_SECTION_SAMPLE_API = '/section/get_section_sample';
const GET_SECTION_A_LIST_API = '/section/get_section_a_list';
export const NO_AUTH_API_LIST = [GET_SECTION_SAMPLE_API, GET_SECTION_A_LIST_API];
//#region ====================== knowledge ======================
@@ -108,12 +111,12 @@
 */
export const getSectionList = async (req: any = request) => {
   return req({
      url: '/section/get_section_a_list',
      url: GET_SECTION_A_LIST_API,
      method: 'POST',
   });
};
/**
 * @summary  获取单个次场景
 * @summary  根据主应用场景获取次应用场景
 */
export const getSectionByIdList = async (params, req: any = request) => {
   return req({
@@ -148,36 +151,19 @@
   });
};
export const GetHistoryGroups = async (params, req:any = request) => {
export const GetHistoryGroups = async (req: any = request) => {
   return req({
     url: "/history/get_history_groups",
     method: "POST",
     data: params,
     headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
     },
      url: '/history/get_history_groups',
      method: 'POST',
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
};
export const QueryHistoryGroup = async (params, req:any = request) => {
export const DeleteHistoryGroups = async (params, req: any = request) => {
   return req({
     url: "/history/query_history_detail",
     method: "POST",
     data: params,
     headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
     },
   });
  };
  // 获取AI对话测试例子列表
export const getSelectSample = async (params, req: any = request) => {
   return req({
      url: '/section/get_section_sample',
      url: '/history/delete_history_group',
      method: 'POST',
      data: params,
      headers: {
@@ -185,3 +171,141 @@
      },
   });
};
export const QueryHistoryGroup = async (params, req: any = request) => {
   return req({
      url: '/history/query_history_detail',
      method: 'POST',
      data: params,
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
};
// 获取AI对话测试例子列表
export const getSelectSample = async (params, req: any = request) => {
   return req({
      url: GET_SECTION_SAMPLE_API,
      method: 'POST',
      data: params,
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
};
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',
      },
   });
};
//系统通知
export const systemNotifyList = async (req: any = request) => {
   return req({
      url: '/system/get_sys_notify_list',
      method: 'POST',
   });
};
//获取大模型列表
export const getBigModelList = async (req: any = request) => {
   return req({
      url: '/llm/llm/get_llm_list',
      method: 'POST',
   });
};
/**
 * @summary 设置历史对话状态(未设置:NULL,顶1,踩0
 */
export const SetHistoryAnswerState = async (params, req: any = request) => {
   return req({
      url: '/history/set_history_answer_state',
      method: 'POST',
      data: params,
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
};
/**
 * @summary AI大模型对话
 */
export const QuestionWorkAi = async (params, req: any = request) => {
   const formData = toFormData(params);
   return req({
      url: '/chat/question1',
      method: 'POST',
      data: formData,
      headers: {
         'Content-Type': 'multipart/form-data',
      },
   });
};
/**
 * @summary AI大模型对话
 */
export const getUserTemplateList = async (req: any = request) => {
   return req({
      url: '/system/get_user_template_list',
      method: 'POST',
   });
};
/**
 * 查询问题进度
 * @param params
 * @param req
 * @returns
 */
export const getQuestionProcess = async (params, req: any = request) => {
   return req({
      url: 'chat/get_question_process',
      method: 'POST',
      data: params,
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
};
export const setHistoryGroupTitle = async (params, req: any = request) => {
   return req({
      url: 'history/set_history_group_title',
      method: 'POST',
      data: params,
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
};
export const reportHistoryProblem = async (params, req: any = request) => {
   return req({
      url: 'history/report_history_problem',
      method: 'POST',
      data: params,
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
};