mirror of
https://github.com/csunny/DB-GPT.git
synced 2026-07-17 18:28:42 +00:00
Co-authored-by: yaoyifan-yyf <yaoyifan.yyf@antgroup.com> Co-authored-by: alan.cl <alan.cl@antgroup.com> Co-authored-by: iterminatorheart <123625928+iterminatorheart@users.noreply.github.com> Co-authored-by: VLADIMIR KOBZEV <vladimir.kobzev@improvado.io> Co-authored-by: Aries-ckt <916701291@qq.com> Co-authored-by: xiandu.wl <xiandu.wl@antgroup.com>
7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
import { GET } from '../index';
|
|
|
|
// 获取评测结果详情
|
|
export const getBenchmarkResultDetail = (evaluateCode: string) => {
|
|
return GET<string, any>(`/api/v2/serve/evaluate/benchmark/result/${evaluateCode}`);
|
|
};
|