Files
Yi.Admin/Yi.Ai.Vue3/src/api/model/index.ts

9 lines
284 B
TypeScript
Raw Normal View History

2025-06-17 22:37:37 +08:00
import type { GetSessionListVO } from './types';
import { get } from '@/utils/request';
// 获取当前用户的模型列表
export function getModelList() {
2025-06-19 23:45:22 +08:00
// return get<GetSessionListVO[]>('/system/model/modelList');
2025-06-28 23:07:32 +08:00
return get<GetSessionListVO[]>('/ai-chat/model').json();
2025-06-17 22:37:37 +08:00
}