langchain.js
    Preparing search index...

    Use LangChainTracer instead.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    awaitHandlers: boolean = ...
    endpoint: string = ...
    headers: Record<string, string> = ...
    ignoreAgent: boolean = false
    ignoreChain: boolean = false
    ignoreCustomEvent: boolean = false
    ignoreLLM: boolean = false
    ignoreRetriever: boolean = false
    lc_kwargs: SerializedFields
    lc_serializable: boolean = false
    name: string = "langchain_tracer"
    raiseError: boolean = false
    runMap: Map<string, Run> = ...

    Use runTreeMap instead.

    runTreeMap: Map<string, RunTree> = ...
    usesRunTreeMap: boolean = false

    Accessors

    • get lc_aliases(): undefined | { [key: string]: string }

      A map of aliases for constructor args. Keys are the attribute names, e.g. "foo". Values are the alias that will replace the key in serialization. This is used to eg. make argument names match Python.

      Returns undefined | { [key: string]: string }

    • get lc_attributes(): undefined | { [key: string]: string }

      A map of additional attributes to merge with constructor args. Keys are the attribute names, e.g. "foo". Values are the attribute values, which will be serialized. These attributes need to be accepted by the constructor as arguments.

      Returns undefined | { [key: string]: string }

    • get lc_id(): string[]

      The final serialized identifier for the module.

      Returns string[]

    • get lc_namespace(): ["langchain_core", "callbacks", string]

      A path to the module that contains the class, eg. ["langchain", "llms"] Usually should be the same as the entrypoint the class is exported from.

      Returns ["langchain_core", "callbacks", string]

    • get lc_secrets(): undefined | { [key: string]: string }

      A map of secrets, which will be omitted from serialization. Keys are paths to the secret in constructor args, e.g. "foo.bar.baz". Values are the secret ids, which will be used when deserializing.

      Returns undefined | { [key: string]: string }

    • get lc_serializable_keys(): undefined | string[]

      A manual list of keys that should be serialized. If not overridden, all fields passed into the constructor will be serialized.

      Returns undefined | string[]

    Methods

    • Parameters

      Returns void

    • Parameters

      Returns {
          child_execution_order: number;
          child_runs: Run[];
          dotted_order?: string;
          end_time?: number;
          events: { kwargs?: Record<string, unknown>; name: string; time: string }[];
          execution_order: number;
          id: string;
          start_time: number;
          trace_id?: string;
      }

      • child_execution_order: number
      • child_runs: Run[]
      • Optionaldotted_order?: 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
      • Optionalend_time?: number

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

      • events: { kwargs?: Record<string, unknown>; name: string; time: string }[]

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

      • execution_order: number
      • id: string

        Optionally, a unique identifier for the run.

      • start_time: number

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

      • Optionaltrace_id?: string

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

    • Create and add a run to the run map for chain start events. This must sometimes be done synchronously to avoid race conditions when callbacks are backgrounded, so we expose it as a separate method here.

      Parameters

      • chain: Serialized
      • inputs: ChainValues
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalmetadata: KVMap
      • OptionalrunType: string
      • Optionalname: string

      Returns {
          child_execution_order: number;
          child_runs: Run[];
          dotted_order?: string;
          end_time?: number;
          events: { kwargs?: Record<string, unknown>; name: string; time: string }[];
          execution_order: number;
          id: string;
          start_time: number;
          trace_id?: string;
      }

      • child_execution_order: number
      • child_runs: Run[]
      • Optionaldotted_order?: 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
      • Optionalend_time?: number

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

      • events: { kwargs?: Record<string, unknown>; name: string; time: string }[]

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

      • execution_order: number
      • id: string

        Optionally, a unique identifier for the run.

      • start_time: number

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

      • Optionaltrace_id?: string

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

    • Create and add a run to the run map for chat model start events. This must sometimes be done synchronously to avoid race conditions when callbacks are backgrounded, so we expose it as a separate method here.

      Parameters

      Returns {
          child_execution_order: number;
          child_runs: Run[];
          dotted_order?: string;
          end_time?: number;
          events: { kwargs?: Record<string, unknown>; name: string; time: string }[];
          execution_order: number;
          id: string;
          start_time: number;
          trace_id?: string;
      }

      • child_execution_order: number
      • child_runs: Run[]
      • Optionaldotted_order?: 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
      • Optionalend_time?: number

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

      • events: { kwargs?: Record<string, unknown>; name: string; time: string }[]

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

      • execution_order: number
      • id: string

        Optionally, a unique identifier for the run.

      • start_time: number

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

      • Optionaltrace_id?: string

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

    • Create and add a run to the run map for LLM start events. This must sometimes be done synchronously to avoid race conditions when callbacks are backgrounded, so we expose it as a separate method here.

      Parameters

      • llm: Serialized
      • prompts: string[]
      • runId: string
      • OptionalparentRunId: string
      • OptionalextraParams: KVMap
      • Optionaltags: string[]
      • Optionalmetadata: KVMap
      • Optionalname: string

      Returns {
          child_execution_order: number;
          child_runs: Run[];
          dotted_order?: string;
          end_time?: number;
          events: { kwargs?: Record<string, unknown>; name: string; time: string }[];
          execution_order: number;
          id: string;
          start_time: number;
          trace_id?: string;
      }

      • child_execution_order: number
      • child_runs: Run[]
      • Optionaldotted_order?: 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
      • Optionalend_time?: number

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

      • events: { kwargs?: Record<string, unknown>; name: string; time: string }[]

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

      • execution_order: number
      • id: string

        Optionally, a unique identifier for the run.

      • start_time: number

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

      • Optionaltrace_id?: string

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

    • Create and add a run to the run map for retriever start events. This must sometimes be done synchronously to avoid race conditions when callbacks are backgrounded, so we expose it as a separate method here.

      Parameters

      • retriever: Serialized
      • query: string
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalmetadata: KVMap
      • Optionalname: string

      Returns {
          child_execution_order: number;
          child_runs: Run[];
          dotted_order?: string;
          end_time?: number;
          events: { kwargs?: Record<string, unknown>; name: string; time: string }[];
          execution_order: number;
          id: string;
          start_time: number;
          trace_id?: string;
      }

      • child_execution_order: number
      • child_runs: Run[]
      • Optionaldotted_order?: 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
      • Optionalend_time?: number

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

      • events: { kwargs?: Record<string, unknown>; name: string; time: string }[]

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

      • execution_order: number
      • id: string

        Optionally, a unique identifier for the run.

      • start_time: number

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

      • Optionaltrace_id?: string

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

    • Create and add a run to the run map for tool start events. This must sometimes be done synchronously to avoid race conditions when callbacks are backgrounded, so we expose it as a separate method here.

      Parameters

      • tool: Serialized
      • input: string
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalmetadata: KVMap
      • Optionalname: string

      Returns {
          child_execution_order: number;
          child_runs: Run[];
          dotted_order?: string;
          end_time?: number;
          events: { kwargs?: Record<string, unknown>; name: string; time: string }[];
          execution_order: number;
          id: string;
          start_time: number;
          trace_id?: string;
      }

      • child_execution_order: number
      • child_runs: Run[]
      • Optionaldotted_order?: 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
      • Optionalend_time?: number

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

      • events: { kwargs?: Record<string, unknown>; name: string; time: string }[]

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

      • execution_order: number
      • id: string

        Optionally, a unique identifier for the run.

      • start_time: number

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

      • Optionaltrace_id?: string

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

    • Parameters

      Returns Promise<void>

    • Parameters

      • parentRunId: undefined | string

      Returns number

    • Parameters

      • endpoint: string

      Returns Promise<TracerSessionV1>

    • Returns this

    • Parameters

      • OptionalrunId: string

      Returns undefined | Run

    • Called when an agent is about to execute an action, with the action and the run ID.

      Parameters

      Returns Promise<void>

    • Called when an agent finishes execution, before it exits. with the final output and the run ID.

      Parameters

      Returns Promise<void>

    • Called at the end of a Chain run, with the outputs and the run ID.

      Parameters

      • outputs: ChainValues
      • runId: string
      • Optional_parentRunId: string
      • Optional_tags: string[]
      • Optionalkwargs: { inputs?: Record<string, unknown> }

      Returns Promise<Run>

    • Called if a Chain run encounters an error

      Parameters

      • error: unknown
      • runId: string
      • Optional_parentRunId: string
      • Optional_tags: string[]
      • Optionalkwargs: { inputs?: Record<string, unknown> }

      Returns Promise<Run>

    • Called at the start of a Chain run, with the chain name and inputs and the run ID.

      Parameters

      • chain: Serialized
      • inputs: ChainValues
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalmetadata: KVMap
      • OptionalrunType: string
      • Optionalname: string

      Returns Promise<Run>

    • Called at the start of a Chat Model run, with the prompt(s) and the run ID.

      Parameters

      Returns Promise<Run>

    • Parameters

      • eventName: string
      • data: any
      • runId: string
      • Optionaltags: string[]
      • Optionalmetadata: Record<string, any>

      Returns any

    • Called at the end of an LLM/ChatModel run, with the output and the run ID.

      Parameters

      • output: LLMResult
      • runId: string
      • Optional_parentRunId: string
      • Optional_tags: string[]
      • OptionalextraParams: Record<string, unknown>

      Returns Promise<Run>

    • Called if an LLM/ChatModel run encounters an error

      Parameters

      • error: unknown
      • runId: string
      • Optional_parentRunId: string
      • Optional_tags: string[]
      • OptionalextraParams: Record<string, unknown>

      Returns Promise<Run>

    • Called when an LLM/ChatModel in streaming mode produces a new token

      Parameters

      • token: string
      • idx: NewTokenIndices

        idx.prompt is the index of the prompt that produced the token (if there are multiple prompts) idx.completion is the index of the completion that produced the token (if multiple completions per prompt are requested)

      • runId: string
      • Optional_parentRunId: string
      • Optional_tags: string[]
      • Optionalfields: HandleLLMNewTokenCallbackFields

      Returns Promise<Run>

    • Called at the start of an LLM or Chat Model run, with the prompt(s) and the run ID.

      Parameters

      • llm: Serialized
      • prompts: string[]
      • runId: string
      • OptionalparentRunId: string
      • OptionalextraParams: KVMap
      • Optionaltags: string[]
      • Optionalmetadata: KVMap
      • Optionalname: string

      Returns Promise<Run>

    • Parameters

      • documents: Document<Record<string, unknown>>[]
      • runId: string

      Returns Promise<Run>

    • Parameters

      • error: unknown
      • runId: string

      Returns Promise<Run>

    • Parameters

      • retriever: Serialized
      • query: string
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalmetadata: KVMap
      • Optionalname: string

      Returns Promise<Run>

    • Parameters

      • text: string
      • runId: string

      Returns Promise<void>

    • Called at the end of a Tool run, with the tool output and the run ID.

      Parameters

      • output: any
      • runId: string

      Returns Promise<Run>

    • Called if a Tool run encounters an error

      Parameters

      • error: unknown
      • runId: string

      Returns Promise<Run>

    • Called at the start of a Tool run, with the tool name and input and the run ID.

      Parameters

      • tool: Serialized
      • input: string
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalmetadata: KVMap
      • Optionalname: string

      Returns Promise<Run>

    • Returns Promise<TracerSessionV1>

    • Parameters

      • sessionName: string

      Returns Promise<TracerSessionV1>

    • Parameters

      • OptionalsessionName: string

      Returns Promise<TracerSessionV1>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      • run: Run
      • token: string
      • Optionalkwargs: { chunk: any }

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      Returns void | Promise<void>

    • Parameters

      • error: unknown

      Returns string

    • Parameters

      • methods: BaseCallbackHandlerMethodsClass

      Returns Handler

    • The name of the serializable. Override to provide an alias or to preserve the serialized module name in minified environments.

      Implemented as a static method to support loading logic.

      Returns string