From f0f4eda13c9a1f19ff95dd0f25cc89b13f5b5f39 Mon Sep 17 00:00:00 2001 From: yangyin <1850366751@qq.com> Date: 星期一, 15 七月 2024 11:34:42 +0800 Subject: [PATCH] fix: 添加全部的应用场景 --- src/api/ai/chat.ts | 244 +++++++++++++++++++++++++++++++++++++----------- 1 files changed, 185 insertions(+), 59 deletions(-) diff --git a/src/api/ai/chat.ts b/src/api/ai/chat.ts index e34ab01..d334b58 100644 --- a/src/api/ai/chat.ts +++ b/src/api/ai/chat.ts @@ -2,44 +2,43 @@ import { toFormData } from '/@/utils/util'; //#region ====================== knowledge ====================== - + export interface KnowledgeRes { - json_ok: boolean; - question: string; - answer_type: string; - knowledge: KnowledgeData[]; + json_ok: boolean; + question: string; + answer_type: string; + knowledge: KnowledgeData[]; } export interface KnowledgeData { - answer: string; - contexts: Context[]; + answer: string; + contexts: Context[]; } export interface Context { - page_content: string; - metadata: Metadata; + page_content: string; + metadata: Metadata; } export interface Metadata { - Title?: string; + Title?: string; } //#endregion - //#region ====================== RecordSet ====================== export interface RecordSetRes { - json_ok: boolean; - question: string; - answer_type: string; - values: RecordSetValues; + json_ok: boolean; + question: string; + answer_type: string; + values: RecordSetValues; } export interface RecordSetValues { - names: string[]; - values: Array<Array<any>>; - type: string; - title: string; + names: string[]; + values: Array<Array<any>>; + type: string; + title: string; } //#endregion @@ -104,56 +103,183 @@ }); }; - - - - +/** + * @summary 鑾峰彇涓诲満鏅� + */ +export const getSectionList = async (req: any = request) => { + return req({ + url: '/section/get_section_a_list', + method: 'POST', + }); +}; +/** + * @summary 鏍规嵁涓诲簲鐢ㄥ満鏅幏鍙栨搴旂敤鍦烘櫙 + */ +export const getSectionByIdList = async (params, req: any = request) => { + return req({ + url: '/section/get_section_b_list', + method: 'POST', + data: params, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + }); +}; +/** + * @summary 鑾峰彇鍏ㄩ儴娆″満鏅� + */ +export const getSectionByAllList = async (req: any = request) => { + return req({ + url: '/section/get_section_list', + method: 'POST', + }); +}; /** * @summary description */ -export const CreateHistoryGroup = async (params, req:any = request) => { - return req({ - url: "/history/create_history_group", - method: "POST", - data: params, - headers: { - 'Content-Type': 'application/x-www-form-urlencoded', - }, - }); +export const CreateHistoryGroup = async (params, req: any = request) => { + return req({ + url: '/history/create_history_group', + method: 'POST', + data: params, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + }); }; - -export const GetHistoryGroups = async ( req:any = request) => { +export const GetHistoryGroups = async (req: any = request) => { return req({ - url: "/history/get_history_groups", - method: "POST", - + url: '/history/get_history_groups', + method: 'POST', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, }); - }; +}; - - - -export const QueryHistoryDetail = 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', - }, + url: '/history/delete_history_group', + method: 'POST', + data: params, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, }); - }; +}; - - -export const GetHistoryAnswer= async (params, req:any = request) => { +export const QueryHistoryGroup = 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/query_history_detail', + method: 'POST', + data: params, + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, }); - }; \ No newline at end of file +}; + +// 鑾峰彇AI瀵硅瘽娴嬭瘯渚嬪瓙鍒楄〃 +export const getSelectSample = async (params, req: any = request) => { + return req({ + url: '/section/get_section_sample', + 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', + }, + }); +}; -- Gitblit v1.9.3