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-sdkschemaSend
    Class●Since v0.1

    Send

    Copy
    Send()

    Bases

    TypedDict

    Used in Docs

    • Build a multi-source knowledge base with routing
    • Fault tolerance
    • Graph API overview
    • Router
    • Use the graph API

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    nodestr
    inputdict[str, Any] | None
    attribute
    node: str

    The name of the target node to send the message to.

    attribute
    input: dict[str, Any] | None

    Optional dictionary containing the input data to be passed to the node.

    If None, the node will be called with no input.

    Represents a message to be sent to a specific node in the graph.

    This type is used to explicitly send messages to nodes in the graph, typically used within Command objects to control graph execution flow.