remove method

Future<LoRAState> remove(
  1. ClientContext? ctx,
  2. LoRARemoveRequest request
)

Remove named/path adapters, or clear all when LoRARemoveRequest.clear_all is true.

Implementation

$async.Future<LoRAState> remove(
        $pb.ClientContext? ctx, LoRARemoveRequest request) =>
    _client.invoke<LoRAState>(ctx, 'LoRA', 'Remove', request, LoRAState());