LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
LangChain
  • Browser
  • Universal
  • Hub
  • Node
  • Load
  • Serializable
  • Encoder Backed
  • File System
  • In Memory
  • Tools
LangChain Core
  • Agents
  • Caches
  • Base
  • Dispatch
  • Web
  • Manager
  • Promises
  • Chat History
  • Context
  • Base
  • Langsmith
  • Documents
  • Embeddings
  • Errors
  • Example Selectors
  • Indexing
  • Base
  • Chat Models
  • Compat
  • Event
  • Llms
  • Openai Completions Stream
  • Profile
  • Stream
  • Structured Output
  • Load
  • Serializable
  • Memory
  • Messages
  • Tool
  • Output Parsers
  • Openai Functions
  • Openai Tools
  • Outputs
  • Prompt Values
  • Prompts
  • Retrievers
  • Document Compressors
  • Runnables
  • Graph
  • Singletons
  • Stores
  • Structured Query
  • Testing
  • Tools
  • Base
  • Console
  • Log Stream
  • Run Collector
  • Tracer Langchain
  • Stream
  • Async Caller
  • Chunk Array
  • Context
  • Env
  • Event Source Parse
  • Format
  • Function Calling
  • Hash
  • Json Patch
  • Json Schema
  • Math
  • Ssrf
  • Standard Schema
  • Stream
  • Testing
  • Tiktoken
  • Types
  • Uuid
  • Vectorstores
Text Splitters
MCP Adapters
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

LangChain
BrowserUniversalHubNodeLoadSerializableEncoder BackedFile SystemIn MemoryTools
LangChain Core
AgentsCachesBaseDispatchWebManagerPromisesChat HistoryContextBaseLangsmithDocumentsEmbeddingsErrorsExample SelectorsIndexingBaseChat ModelsCompatEventLlmsOpenai Completions StreamProfileStreamStructured OutputLoadSerializableMemoryMessagesToolOutput ParsersOpenai FunctionsOpenai ToolsOutputsPrompt ValuesPromptsRetrieversDocument CompressorsRunnablesGraphSingletonsStoresStructured QueryTestingToolsBaseConsoleLog StreamRun CollectorTracer LangchainStreamAsync CallerChunk ArrayContextEnvEvent Source ParseFormatFunction CallingHashJson PatchJson SchemaMathSsrfStandard SchemaStreamTestingTiktokenTypesUuidVectorstores
Text Splitters
MCP Adapters
Language
Theme
JavaScript@langchain/coretracerstracer_langchainRunUpdate
Interface●Since v1.0

RunUpdate

Copy
interface RunUpdate

Bases

RunUpdate

Properties

Inherited fromRunUpdate

Properties

PattachmentsPdotted_order: string
—

The dotted order for the run.

Pend_time: number
—

The epoch time at which the run ended, if applicable.

Perror
View source on GitHub
: string
—

An error message associated with the tool call

Pevents: __type[]
—

Events like 'start', 'end' linked to the run.

Pextra
Pid: string
—

An optional identifier for the document.

Pinputs: any
—

Inputs to this run. Not available currently via streamLog.

Pname: string
Poutputs
Pparent_run_id
Preference_example_id
Prun_type
Pserialized
Psession_id
Psession_name
Pstart_time: number
—

The epoch time at which the run started, if available.

Ptags: string[]
Ptrace_id: string
—

Unique ID assigned to every run within this nested trace. *

property
attachments: Attachments
property
dotted_order: string
property
end_time: string | number
property
error: string
property
events: KVMap[] | undefined
property
extra: KVMap
property
id: string
property
inputs: KVMap
property
name: string
property
outputs: KVMap
property
parent_run_id: string
property
reference_example_id: string
property
run_type: string
property
serialized: object
property
session_id: string
property
session_name: string
property
start_time: string | number
property
tags: string[]
property
trace_id: string

The dotted order for the run.

This is a string composed of {time}{run-uuid}.* so that a trace can be sorted in the order it was executed.

Example:

  • Parent: 20230914T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8
  • Children:
    • 20230914T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8.20230914T223155649Z809ed3a2-0172-4f4d-8a02-a64e9b7a0f8a
    • 20230915T223155647Z1b64098b-4ab7-43f6-afee-992304f198d8.20230914T223155650Zc8d9f4c5-6c5a-4b2d-9b1c-3d9d7a7c5c7c

The epoch time at which the run ended, if applicable.

An error message associated with the tool call

Events like 'start', 'end' linked to the run.

An optional identifier for the document.

Ideally this should be unique across the document collection and formatted as a UUID, but this will not be enforced.

Inputs to this run. Not available currently via streamLog.

The epoch time at which the run started, if available.

Unique ID assigned to every run within this nested trace. *