From 4eb6092c32df67d752101ab8ae23c9b2236db0dc Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期三, 24 七月 2024 18:34:36 +0800
Subject: [PATCH] 监测点列表

---
 src/api/ai/chat.ts |  192 ++++++++++++++++++++++++++++++++++-------------
 1 files changed, 139 insertions(+), 53 deletions(-)

diff --git a/src/api/ai/chat.ts b/src/api/ai/chat.ts
index 14056a1..1ca211c 100644
--- a/src/api/ai/chat.ts
+++ b/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,50 +151,145 @@
 	});
 };
 
-
-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 DeleteHistoryGroups = async (params, req:any = request) => {
+export const DeleteHistoryGroups = async (params, req: any = request) => {
 	return req({
-	  url: "/history/delete_history_group",
-	  method: "POST",
-	  data: params,
-	  headers: {
-		  'Content-Type': 'application/x-www-form-urlencoded',
-	  },
+		url: '/history/delete_history_group',
+		method: 'POST',
+		data: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
 	});
 };
 
-  
-
-export const QueryHistoryGroup = async (params, req:any = request) => {
+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',
-	  },
+		url: '/history/query_history_detail',
+		method: 'POST',
+		data: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
 	});
-  };
+};
 
-  // 鑾峰彇AI瀵硅瘽娴嬭瘯渚嬪瓙鍒楄〃
+// 鑾峰彇AI瀵硅瘽娴嬭瘯渚嬪瓙鍒楄〃
 export const getSelectSample = async (params, req: any = request) => {
 	return req({
-		url: '/section/get_section_sample',
+		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: {
@@ -201,25 +299,13 @@
 };
 
 
-export const GetHistoryAnswer= async (params, req:any = request) => {
+export const reportHistoryProblem = async (params, req: any = request) => {
 	return req({
-	  url: "/history/get_history_answer",
-	  method: "POST",
-	  data: params,
-	  headers: {
-		  'Content-Type': 'application/x-www-form-urlencoded',
-	  },
+		url: 'history/report_history_problem',
+		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',
-	  },
-	});
-  };
\ No newline at end of file
+};
\ No newline at end of file

--
Gitblit v1.9.3