Initial commit

This commit is contained in:
fawney19
2025-12-10 20:52:44 +08:00
commit f784106826
485 changed files with 110993 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/**
* 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'