From 4fe43d51c3f7a3923986b23ccf5c27ab83e6e5e5 Mon Sep 17 00:00:00 2001 From: yangyin <1850366751@qq.com> Date: 星期五, 08 十一月 2024 16:34:18 +0800 Subject: [PATCH] 修改新建聊天室为新建对话 --- src/api/ai/chat.ts | 387 ++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 352 insertions(+), 35 deletions(-) diff --git a/src/api/ai/chat.ts b/src/api/ai/chat.ts index 99a0050..e74f3b5 100644 --- a/src/api/ai/chat.ts +++ b/src/api/ai/chat.ts @@ -1,5 +1,9 @@ import request from '/@/utils/request'; -import { toFormData } from '/@/utils/util'; +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 ====================== @@ -66,13 +70,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', }, }); }; @@ -91,14 +94,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', }, }); }; @@ -108,12 +109,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,36 +149,19 @@ }); }; - -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 QueryHistoryGroup = async (params, req:any = request) => { +export const DeleteHistoryGroups = async (params, req: any = request) => { return req({ - url: "/history/query_history_detail", - method: "POST", - data: params, - headers: { - 'Content-Type': 'application/x-www-form-urlencoded', - }, - }); - }; - - // 鑾峰彇AI瀵硅瘽娴嬭瘯渚嬪瓙鍒楄〃 -export const getSelectSample = async (params, req: any = request) => { - return req({ - url: '/section/get_section_sample', + url: '/history/delete_history_group', method: 'POST', data: params, headers: { @@ -185,3 +169,336 @@ }, }); }; + +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', + }, + }); +}; + +// 鑾峰彇AI瀵硅瘽娴嬭瘯渚嬪瓙鍒楄〃 +export const getSelectSample = async (params, req: any = request) => { + return req({ + 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) => { + return req({ + url: '/chat/question1', + method: 'POST', + data: params, + headers: { + '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澶фā鍨嬪璇� + */ +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: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + }); +}; + +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', + }, + }); +}; + +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', + }, + }); +}; + +/** + * @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', + }, + }); -- Gitblit v1.9.3