Trait for provider-specific model loading customization.
| 264 | |
| 265 | /// Trait for provider-specific model loading customization. |
| 266 | pub trait CustomLoader: Send + Sync { |
| 267 | fn load( |
| 268 | &self, |
| 269 | provider: &ModelsProviderInfo, |
| 270 | provider_state: Option<&ProviderState>, |
| 271 | ) -> CustomLoaderResult; |
| 272 | } |
| 273 | |
| 274 | // --------------------------------------------------------------------------- |
| 275 | // Custom loader implementations for all 14+ providers |
nothing calls this directly
no outgoing calls
no test coverage detected