Check if a model exists and is accessible
Future<bool> modelExists(String modelId) async { final model = await getModel(modelId); return model != null; }