list method

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

Return the current loaded-adapter snapshot. The request state can carry optional base_model_id filtering without introducing an empty request type.

Implementation

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