modelsForFramework static method
Get models for a specific framework
Implementation
static Future<List<ModelInfo>> modelsForFramework(
InferenceFramework framework) async {
final allModels = await RunAnywhere.availableModels();
return allModels.where((model) => model.framework == framework).toList();
}