LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
    • Overview
    • Caches
    • Callbacks
    • Documents
    • Document loaders
    • Embeddings
    • Exceptions
    • Language models
    • Serialization
    • Output parsers
    • Prompts
    • Rate limiters
    • Retrievers
    • Runnables
    • Utilities
    • Vector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    OverviewCachesCallbacksDocumentsDocument loadersEmbeddingsExceptionsLanguage modelsSerializationOutput parsersPromptsRate limitersRetrieversRunnablesUtilitiesVector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    Language
    Theme
    Pythonlangchain-coretracersevent_streamRunInfo
    Classā—Since v0.2

    RunInfo

    Copy
    RunInfo()

    Bases

    TypedDict

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    namestr
    tagslist[str]
    metadatadict[str, Any]
    run_typestr
    inputsNotRequired[Any]
    parent_run_idUUID | None
    tool_call_idNotRequired[str | None]
    attribute
    name: str

    The name of the run.

    attribute
    tags: list[str]

    The tags associated with the run.

    attribute
    metadata: dict[str, Any]

    The metadata associated with the run.

    attribute
    run_type: str

    The type of the run.

    attribute
    inputs: NotRequired[Any]

    The inputs to the run.

    attribute
    parent_run_id: UUID | None

    The ID of the parent run.

    attribute
    tool_call_id: NotRequired[str | None]

    The tool call ID associated with the run.

    Information about a run.

    This is used to keep track of the metadata associated with a run.