list method

Future<LoraState> list()

Adapters currently applied to the loaded model.

Throws SDKException when the SDK is not initialized.

Implementation

Future<LoraState> list() async {
  if (!DartBridge.isInitialized) {
    throw SDKException.notInitialized();
  }
  return LoraState.fromProto(await RunAnywhereLoRACapability.shared.list());
}