applyLoraAdapters method

Future<void> applyLoraAdapters(
  1. List<LoraAdapterInfo> adapters
)

Implementation

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