saveState method

Future<Uint8List> saveState()

Captures the current KV Cache of this scope from VRAM. Returns the serialized state as a byte array (Tier 2).

Implementation

Future<Uint8List> saveState() async {
  return await _parent.saveState(this);
}