From f15c8fa05e3e4eae8ef093ba6ba827ad74e38fec Mon Sep 17 00:00:00 2001 From: yangyin <1850366751@qq.com> Date: 星期二, 05 十一月 2024 10:32:27 +0800 Subject: [PATCH] 常用语联调接口 --- src/api/ai/chat.ts | 186 ++++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 169 insertions(+), 17 deletions(-) diff --git a/src/api/ai/chat.ts b/src/api/ai/chat.ts index 1ca211c..d7a9c9a 100644 --- a/src/api/ai/chat.ts +++ b/src/api/ai/chat.ts @@ -1,8 +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]; +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]; //#region ====================== knowledge ====================== @@ -69,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', }, }); }; @@ -94,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', }, }); }; @@ -249,16 +246,32 @@ * @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) => + streamReq( + { + url: `/chat/question_stream`, + method: 'post', + params: {}, + data: params, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + }, + callback + ); /** * @summary AI澶фā鍨嬪璇� @@ -298,7 +311,6 @@ }); }; - export const reportHistoryProblem = async (params, req: any = request) => { return req({ url: 'history/report_history_problem', @@ -308,4 +320,144 @@ 'Content-Type': 'application/x-www-form-urlencoded', }, }); -}; \ No newline at end of file +}; + +export const querySimilarityHistory = async (params, req: any = request) => { + return req({ + url: 'history/query_similarity_history', + 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', + method: 'POST', + data: params, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + }); +}; + +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', + }, + }); +}; + +/** + * 娣诲姞鐢ㄦ埛鑷畾涔変緥瀛� + * @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', + }, + }); +}; -- Gitblit v1.9.3