MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / inspect

Method inspect

src/framework/runtime/registry.cpp:114–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112 if (loader == nullptr) {
113 throw std::runtime_error("no registered model loader can inspect: " + request.model_path.string());
114 }
115 return loader->inspect(request);
116}
117
118ModelInspection ModelRegistry::inspect(const std::filesystem::path & model_path) const {
119 ModelLoadRequest request;
120 request.model_path = model_path;
121 return inspect(request);
122}
123
124std::unique_ptr<ILoadedVoiceModel> ModelRegistry::load(const ModelLoadRequest & request) const {

Callers 2

loadMethod · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected