applyLoraAdapters method
Implementation
Future<void> applyLoraAdapters(List<LoraAdapterInfo> adapters) async {
if (_context == null) throw CactusException('CactusVLM not initialized');
await _context!.applyLoraAdapters(adapters);
}
Future<void> applyLoraAdapters(List<LoraAdapterInfo> adapters) async {
if (_context == null) throw CactusException('CactusVLM not initialized');
await _context!.applyLoraAdapters(adapters);
}