ART Framework API Docs
    Preparing search index...

    Interface AgentState

    Represents non-configuration state associated with an agent or thread. Could include user preferences, accumulated knowledge, etc. (Less defined for v1.0)

    AgentState

    interface AgentState {
        data: any;
        version?: number;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Allows for other arbitrary properties to be stored in the agent's state.

    Index

    Properties

    Properties

    data: any

    The primary data payload of the agent's state. Structure is application-defined.

    version?: number

    An optional version number for the agent's state, useful for migrations or tracking changes.