langchain.js
    Preparing search index...

    Class BaseCallbackHandlerAbstract

    Abstract base class for creating callback handlers in the LangChain framework. It provides a set of optional methods that can be overridden in derived classes to handle various events during the execution of a LangChain application.

    Hierarchy (View Summary)

    • BaseCallbackHandlerMethodsClass

    Implements

    Index

    Constructors

    Properties

    awaitHandlers: boolean = ...
    ignoreAgent: boolean = false
    ignoreChain: boolean = false
    ignoreCustomEvent: boolean = false
    ignoreLLM: boolean = false
    ignoreRetriever: boolean = false
    lc_kwargs: SerializedFields
    lc_serializable: boolean = false
    name: string
    raiseError: 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

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

      Parameters

      • action: AgentAction
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]

      Returns void | Promise<void>

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

      Parameters

      • action: AgentFinish
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]

      Returns void | Promise<void>

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

      Parameters

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

      Returns any

    • Called if a Chain run encounters an error

      Parameters

      • err: any
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalkwargs: { inputs?: Record<string, unknown> }

      Returns any

    • 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: Record<string, unknown>
      • OptionalrunType: string
      • OptionalrunName: string

      Returns any

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

      Parameters

      • llm: Serialized
      • messages: BaseMessage<MessageStructure, MessageType>[][]
      • runId: string
      • OptionalparentRunId: string
      • OptionalextraParams: Record<string, unknown>
      • Optionaltags: string[]
      • Optionalmetadata: Record<string, unknown>
      • OptionalrunName: string

      Returns any

    • 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
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • OptionalextraParams: Record<string, unknown>

      Returns any

    • Called if an LLM/ChatModel run encounters an error

      Parameters

      • err: any
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • OptionalextraParams: Record<string, unknown>

      Returns any

    • 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
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalfields: HandleLLMNewTokenCallbackFields

      Returns any

    • 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: Record<string, unknown>
      • Optionaltags: string[]
      • Optionalmetadata: Record<string, unknown>
      • OptionalrunName: string

      Returns any

    • Parameters

      • documents: DocumentInterface<Record<string, any>>[]
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]

      Returns any

    • Parameters

      • err: any
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]

      Returns any

    • Parameters

      • retriever: Serialized
      • query: string
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]
      • Optionalmetadata: Record<string, unknown>
      • Optionalname: string

      Returns any

    • Parameters

      • text: string
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]

      Returns void | Promise<void>

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

      Parameters

      • output: any
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]

      Returns any

    • Called if a Tool run encounters an error

      Parameters

      • err: any
      • runId: string
      • OptionalparentRunId: string
      • Optionaltags: string[]

      Returns any

    • 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: Record<string, unknown>
      • OptionalrunName: string

      Returns any

    • 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