ART Framework API Docs
    Preparing search index...

    Interface ThreadContext

    Encapsulates the configuration and state for a specific thread.

    ThreadContext

    interface ThreadContext {
        config: ThreadConfig;
        state: null | AgentState;
    }
    Index

    Properties

    Properties

    config: ThreadConfig

    The configuration settings (ThreadConfig) currently active for the thread.

    state: null | AgentState

    The persistent state (AgentState) associated with the thread, or null if no state exists.