From be0b1a911b5e36faf8bcc61c452520e97f00cd16 Mon Sep 17 00:00:00 2001
From: yangyin <1850366751@qq.com>
Date: 星期一, 28 十月 2024 16:08:22 +0800
Subject: [PATCH] 默认应用场景选择第一个

---
 src/api/ai/chat.ts |   71 ++++++++++++++++++++++++++++-------
 1 files changed, 57 insertions(+), 14 deletions(-)

diff --git a/src/api/ai/chat.ts b/src/api/ai/chat.ts
index 0db2c88..b517867 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';
+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,13 +246,12 @@
  * @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',
 		},
 	});
 };
@@ -320,7 +315,15 @@
 		},
 	});
 };
-
+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,3 +334,43 @@
 		},
 	});
 };
+
+export const queryScadaTimeValues = async (params, req: any = request) => {
+	return req({
+		url: 'data/query_scada_time_values',
+		method: 'POST',
+		data: params,
+		headers: {
+			'Content-Type': 'application/x-www-form-urlencoded',
+		},
+	});
+};
+
+/** @description 鍏宠仈鏌ヨ */
+export const extCallQuery = async (params, req: any = request) => {
+	return req({
+		url: 'chat/ext_call_query',
+		method: 'POST',
+		data: params,
+		headers: {
+			'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',
+		},
+	});
+}
\ No newline at end of file

--
Gitblit v1.9.3