wujingjing
2024-10-31 8203dbf3281ab379484be289aa770fd40ec1560f
src/api/ai/chat.ts
@@ -37,7 +37,16 @@
   });
};
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',
      },
   });
};
/**
 * @summary 设置历史对话状态(未设置:NULL,顶1,踩0
 */
@@ -79,4 +88,21 @@
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
};
};
/**
 * 曲线查询
 * @param params
 * @param req
 * @returns
 */
export const curveQuery = (params,req:any=request) =>{
   return req({
      url: 'chat/chat_supervisor_json',
      method: 'POST',
      data: params,
      headers: {
         'Content-Type': 'application/x-www-form-urlencoded',
      },
   });
}