From 50f811399f22b835fd2fc33375fe01ff8eb83dd8 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期一, 21 十月 2024 13:50:04 +0800 Subject: [PATCH] 查询高亮指标 --- src/api/ai/chat.ts | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/src/api/ai/chat.ts b/src/api/ai/chat.ts index f503e76..b517867 100644 --- a/src/api/ai/chat.ts +++ b/src/api/ai/chat.ts @@ -315,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', -- Gitblit v1.9.3