Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents agent state that has been cached in the turn context.

    Used internally to track state changes and avoid unnecessary storage operations.

    interface CachedAgentState {
        hash: string;
        state: { [id: string]: any };
    }
    Index

    Properties

    Properties

    hash: string

    Hash of the state used to detect changes

    state: { [id: string]: any }

    The state object containing all properties and their values