isAnyModelInstalled method
Checks if ANY model of the given type is installed
Implementation
@override
Future<bool> isAnyModelInstalled(ModelManagementType type) async {
await _ensureInitialized();
try {
return await ModelPreferencesManager.isAnyModelInstalled(type);
} catch (e) {
debugPrint('UnifiedModelManager: Failed to check if any model is installed for type $type: $e');
return false;
}
}