mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-11 11:46:38 +08:00
8 lines
222 B
TypeScript
8 lines
222 B
TypeScript
|
|
import type { GetSessionListVO } from './types';
|
||
|
|
import { get } from '@/utils/request';
|
||
|
|
|
||
|
|
// 获取当前用户的模型列表
|
||
|
|
export function getModelList() {
|
||
|
|
return get<GetSessionListVO[]>('/system/model/modelList');
|
||
|
|
}
|