(modelName: string)
| 6 | |
| 7 | class InferenceConfigStore { |
| 8 | getModelParams(modelName: string): Partial<InferenceParams> { |
| 9 | return ModelManager.getInstance().getModelParams(modelName); |
| 10 | } |
| 11 | |
| 12 | setModelParams(modelName: string, params: Partial<InferenceParams>): void { |
| 13 | ModelManager.getInstance().setModelParams(modelName, params); |
nothing calls this directly
no test coverage detected