(modelName: string, params: Partial<InferenceParams>)
| 10 | } |
| 11 | |
| 12 | setModelParams(modelName: string, params: Partial<InferenceParams>): void { |
| 13 | ModelManager.getInstance().setModelParams(modelName, params); |
| 14 | } |
| 15 | |
| 16 | clearModelParams(modelName: string): void { |
| 17 | ModelManager.getInstance().clearModelParams(modelName); |
nothing calls this directly
no test coverage detected