Interface IPersistStateData<T>

Defines the structure for state data persistence in the swarm system. Wraps arbitrary state data for storage, used by PersistStateUtils.

interface IPersistStateData<T = unknown> {
    state: T;
}

Type Parameters

  • T = unknown

    The type of the state data, defaults to unknown. IPersistStateData

Properties

Properties

state: T

The state data to persist (e.g., agent configuration or session state)