RunInfo#

class langchain_core.tracers.event_stream.RunInfo[source]#

Information about a run.

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

Parameters:
  • name – The name of the run.

  • tags – The tags associated with the run.

  • metadata – The metadata associated with the run.

  • run_type – The type of the run.

  • inputs – The inputs to the run.

  • parent_run_id – The ID of the parent run.

name: str#
tags: List[str]#
metadata: Dict[str, Any]#
run_type: str#
inputs: NotRequired[Any]#
parent_run_id: UUID | None#