LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph-sdkschemaRunCreate
    Class●Since v0.1

    RunCreate

    Defines the parameters for initiating a background run.

    Copy
    RunCreate()

    Bases

    TypedDict

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    thread_idstr | None
    assistant_idstr
    inputdict | None
    metadatadict | None
    configConfig | None
    contextContext | None
    checkpoint_idstr | None
    interrupt_beforelist[str] | None
    interrupt_afterlist[str] | None
    webhookstr | None
    multitask_strategyMultitaskStrategy | None
    attribute
    thread_id: str | None

    The identifier of the thread to run. If not provided, the run is stateless.

    attribute
    assistant_id: str

    The identifier of the assistant to use for this run.

    attribute
    input: dict | None

    Initial input data for the run.

    attribute
    metadata: dict | None

    Additional metadata to associate with the run.

    attribute
    config: Config | None

    Configuration options for the run.

    attribute
    context: Context | None

    The static context of the run.

    attribute
    checkpoint_id: str | None

    The identifier of a checkpoint to resume from.

    attribute
    interrupt_before: list[str] | None

    List of node names to interrupt execution before.

    attribute
    interrupt_after: list[str] | None

    List of node names to interrupt execution after.

    attribute
    webhook: str | None

    URL to send webhook notifications about the run's progress.

    attribute
    multitask_strategy: MultitaskStrategy | None

    Strategy for handling concurrent runs on the same thread.