resolveModelFilePath method
Resolve the actual model file path for loading. Delegates to C++ rac_model_paths_resolve_artifact() which handles model artifact roots, primary model selection, and companion file discovery.
Implementation
Future<String?> resolveModelFilePath(ModelInfo model) async {
return resolveArtifact(model)?.primaryModelPath;
}