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

9 lines
286 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-21 21:52:44 +08:00
return get<GetSessionListVO[]>('/prod-api/ai-chat/model');
2025-06-17 22:37:37 +08:00
}