LangGraph.js API Reference
    Preparing search index...

    Interface Thread<ValuesType>

    interface Thread<ValuesType = DefaultValues> {
        config?: Config;
        created_at: string;
        error?: Optional<string | Record<string, unknown>>;
        interrupts: Record<string, Interrupt[]>;
        metadata: Metadata;
        status: ThreadStatus;
        thread_id: string;
        updated_at: string;
        values: ValuesType;
    }

    Type Parameters

    Index

    Properties

    config?: Config

    The config for the thread

    created_at: string

    The time the thread was created.

    error?: Optional<string | Record<string, unknown>>

    The error for the thread (if status == "error")

    interrupts: Record<string, Interrupt[]>

    Interrupts which were thrown in this thread

    metadata: Metadata

    The thread metadata.

    status: ThreadStatus

    The status of the thread

    thread_id: string

    The ID of the thread.

    updated_at: string

    The last time the thread was updated.

    values: ValuesType

    The current state of the thread.