()
| 52 | |
| 53 | /** 获取完整 model catalog(内置 + 自定义) */ |
| 54 | export function getModelCatalog(): ModelDefinition[] { |
| 55 | return [...BUILTIN_MODELS, ...loadCustomModels()] |
| 56 | } |
| 57 | |
| 58 | /** 获取指定 provider 下的全部模型(内置 + 自定义) */ |
| 59 | export function getModelsByProvider(providerId: string): ModelDefinition[] { |
nothing calls this directly
no test coverage detected