From a7f63afaf91a644062c359fcc7f26cffdff6afbc Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期四, 27 二月 2025 15:13:44 +0800
Subject: [PATCH] 停止操作

---
 src/api/ai/chat.ts |  224 +++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 204 insertions(+), 20 deletions(-)

diff --git a/src/api/ai/chat.ts b/src/api/ai/chat.ts
index a403db1..7b4d155 100644
--- a/src/api/ai/chat.ts
+++ b/src/api/ai/chat.ts
@@ -1,7 +1,6 @@
-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';
+import request, { streamReq } from '/@/utils/request';
+const GET_SECTION_SAMPLE_API = '/scene/get_scene_group_sample';
+const GET_SECTION_A_LIST_API = '/scene/get_scene_group_tree';
 export const Get_LOGIN_SMS = '/login_sms';
 export const NO_AUTH_API_LIST = [GET_SECTION_SAMPLE_API, GET_SECTION_A_LIST_API, Get_LOGIN_SMS];
 
@@ -70,13 +69,12 @@
  * @summary description
  */
 export const QuestionAi = async (params, req: any = request) => {
-	const formData = toFormData(params);
 	return req({
 		url: '/chat/question',
 		method: 'POST',
-		data: formData,
+		data: params,
 		headers: {
-			'Content-Type': 'multipart/form-data',
+			'Content-Type': 'application/x-www-form-urlencoded',
 		},
 	});
 };
@@ -95,14 +93,12 @@
  * @summary description
  */
 export const SetLLM = async (params, req: any = request) => {
-	const formData = toFormData(params);
-
 	return req({
 		url: '/llm/set_llm',
 		method: 'POST',
-		data: formData,
+		data: params,
 		headers: {
-			'Content-Type': 'multipart/form-data',
+			'Content-Type': 'application/x-www-form-urlencoded',
 		},
 	});
 };
@@ -250,17 +246,51 @@
  * @summary AI澶фā鍨嬪璇�
  */
 export const QuestionWorkAi = async (params, req: any = request) => {
-	const formData = toFormData(params);
 	return req({
 		url: '/chat/question1',
 		method: 'POST',
-		data: formData,
+		data: params,
 		headers: {
-			'Content-Type': 'multipart/form-data',
+			'Content-Type': 'application/x-www-form-urlencoded',
 		},
 	});
 };
-
+/**
+ * @description 娴佸紡澶фā鍨嬪璇�
+ * @param {FormData} params
+ **/
+export const questionStreamByPost = (params, callback: (chunkRes) => void, extraData: any = {}) =>
+	streamReq(
+		{
+			url: `/chat/question_stream`,
+			method: 'post',
+			params: {},
+			data: params,
+			headers: {
+				'Content-Type': 'application/x-www-form-urlencoded',
+			},
+			...extraData,
+		},
+		callback
+	);
+/**
+ * @description 娴佸紡澶фā鍨嬪璇�
+ * @param {FormData} params
+ **/
+export const agentStreamByPost = (params, callback: (chunkRes) => void, extraData: any = {}) =>
+	streamReq(
+		{
+			url: `/chat/agent_stream`,
+			method: 'post',
+			data: params,
+			params: {},
+			headers: {
+				'Content-Type': 'application/x-www-form-urlencoded',
+			},
+			...extraData,
+		},
+		callback
+	);
 /**
  * @summary AI澶фā鍨嬪璇�
  */
@@ -287,7 +317,7 @@
 		},
 	});
 };
-
+//淇敼瀵硅瘽鍒嗙粍鍒楄〃鏍囬
 export const setHistoryGroupTitle = async (params, req: any = request) => {
 	return req({
 		url: 'history/set_history_group_title',
@@ -321,6 +351,26 @@
 	});
 };
 
+export const querySimilarityScenePrompt = async (params, req: any = request) => {
+	return req({
+		url: 'scene/query_similarity_scene_prompt',
+		method: 'POST',
+		data: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+};
+
+export const getMetricsNames = async (req: any = request) => {
+	return req({
+		url: 'chat/get_metrics_names',
+		method: 'POST',
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+};
 export const filterQuery = async (params, req: any = request) => {
 	return req({
 		url: 'chat/filter_query',
@@ -331,8 +381,6 @@
 		},
 	});
 };
-
-
 
 export const queryScadaTimeValues = async (params, req: any = request) => {
 	return req({
@@ -345,7 +393,6 @@
 	});
 };
 
-
 /** @description 鍏宠仈鏌ヨ */
 export const extCallQuery = async (params, req: any = request) => {
 	return req({
@@ -356,4 +403,141 @@
 			'Content-Type': 'application/x-www-form-urlencoded',
 		},
 	});
-};
\ No newline at end of file
+};
+
+/**
+ * 鏇茬嚎鏌ヨ
+ * @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',
+		},
+	});
+};
+
+/**
+ * 娣诲姞鐢ㄦ埛鑷畾涔変緥瀛�
+ * @param params
+ * @param req
+ * @returns
+ */
+export const addUserSample = (params, req: any = request) => {
+	return req({
+		url: 'chat/add_user_sample',
+		method: 'POST',
+		data: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+};
+
+/**
+ * 
+鏌ヨ鐢ㄦ埛鑷畾涔変緥瀛�
+ * @param params 
+ * @param req 
+ * @returns 
+ */
+export const listUserSample = (params, req: any = request) => {
+	return req({
+		url: 'chat/list_user_sample',
+		method: 'POST',
+		data: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+};
+/**
+ * 
+淇敼鐢ㄦ埛鑷畾涔変緥瀛�
+ * @param params 
+ * @param req 
+ * @returns 
+ */
+export const updateUserSample = (params, req: any = request) => {
+	return req({
+		url: 'chat/update_user_sample',
+		method: 'POST',
+		data: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+};
+
+/**
+ * 
+鍒犻櫎鐢ㄦ埛鑷畾涔変緥瀛�
+ * @param params 
+ * @param req 
+ * @returns 
+ */
+export const deleteUserSample = (params, req: any = request) => {
+	return req({
+		url: 'chat/delete_user_sample',
+		method: 'POST',
+		data: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+};
+
+/**
+ * @description 灏嗗綋鍓嶅璇濆巻鍙插垎浜�
+ * @param {FormData} params
+ **/
+export const shareChatHistoryByPost = (params) =>
+	request({
+		url: `/chat/share_chat_history`,
+		method: 'post',
+		params: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+/**
+ * @description 鏌ヨ寮傛缁撴灉
+ * @param {FormData} params
+ **/
+export const shareAsyncQueryByPost = (params) =>
+	request({
+		url: `/chat/share_async_query`,
+		method: 'post',
+		params: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+/**
+ * @description 灏嗗綋鍓嶅璇濆巻鍙插垎浜�
+ * @param {FormData} params
+ **/
+export const getShareChatJsonByPost = (params) =>
+	request({
+		url: `/chat/get_share_chat_json`,
+		method: 'post',
+		params: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+
+export const question_stream_reply = (params) =>
+	request({
+		url: `/chat/question_stream_reply`,
+		method: 'post',
+		params: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});

--
Gitblit v1.9.3