getLoadedLoraAdapters method

Future<List<LoraAdapterInfo>> getLoadedLoraAdapters()

Implementation

Future<List<LoraAdapterInfo>> getLoadedLoraAdapters() async {
  if (_context == null) throw CactusException('CactusTTS not initialized');
  return await _context!.getLoadedLoraAdapters();
}