(modelPath string)
| 26 | } |
| 27 | |
| 28 | func NewModelConfigLoader(modelPath string) *ModelConfigLoader { |
| 29 | return &ModelConfigLoader{ |
| 30 | configs: make(map[string]ModelConfig), |
| 31 | modelPath: modelPath, |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | type LoadOptions struct { |
| 36 | modelPath string |
no outgoing calls