wujingjing
2024-07-04 89323ef5405d9e1721b85afcba55984feb9d1942
src/api/ai/chat.ts
@@ -148,11 +148,10 @@
   });
};
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',
      },
@@ -228,3 +227,22 @@
      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',
   },
  });
};