mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-02 15:52:26 +08:00
24 lines
505 B
TypeScript
24 lines
505 B
TypeScript
/**
|
|
* GlobalModel API 客户端
|
|
* 统一导出,简化导入路径
|
|
*/
|
|
|
|
export * from './endpoints/global-models'
|
|
export type {
|
|
GlobalModelCreate,
|
|
GlobalModelUpdate,
|
|
GlobalModelResponse,
|
|
GlobalModelWithStats,
|
|
GlobalModelListResponse,
|
|
} from './endpoints/types'
|
|
|
|
// 重新导出为更简洁的函数名
|
|
export {
|
|
getGlobalModels as listGlobalModels,
|
|
getGlobalModel,
|
|
createGlobalModel,
|
|
updateGlobalModel,
|
|
deleteGlobalModel,
|
|
batchAssignToProviders,
|
|
} from './endpoints/global-models'
|