Interface for the input parameters of the BaseCallbackHandler class. It allows to specify which types of events should be ignored by the callback handler.

Hierarchy

Implements

Constructors

Properties

awaitHandlers: boolean = ...
ignoreAgent: boolean = false
ignoreChain: boolean = false
ignoreLLM: boolean = false
ignoreRetriever: boolean = false
monitor: LLMonitor
name: string = "llmonitor_handler"

Methods

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

    Parameters

    Returns Promise<void>

  • Called if a Chain run encounters an error

    Parameters

    • error: Error
    • runId: string

    Returns Promise<void>

  • 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
    • Optional parentRunId: string
    • Optional tags: string[]
    • Optional metadata: KVMap

    Returns Promise<void>

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

    Parameters

    • llm: Serialized
    • messages: BaseMessage[][]
    • runId: string
    • Optional parentRunId: string
    • Optional extraParams: KVMap
    • Optional tags: string[]
    • Optional metadata: KVMap

    Returns Promise<void>

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

    Parameters

    Returns Promise<void>

  • Called if an LLM/ChatModel run encounters an error

    Parameters

    • error: Error
    • runId: string

    Returns Promise<void>

  • 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
    • Optional parentRunId: string
    • Optional extraParams: KVMap
    • Optional tags: string[]
    • Optional metadata: KVMap

    Returns Promise<void>

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

    Parameters

    • output: string
    • runId: string

    Returns Promise<void>

  • Called if a Tool run encounters an error

    Parameters

    • error: Error
    • runId: string

    Returns Promise<void>

  • 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
    • Optional parentRunId: string
    • Optional tags: string[]
    • Optional metadata: KVMap

    Returns Promise<void>

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

    Parameters

    • action: AgentAction
    • runId: string
    • Optional parentRunId: string
    • Optional tags: 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
    • Optional parentRunId: string
    • Optional tags: string[]

    Returns void | Promise<void>

  • 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[]
    • Optional fields: HandleLLMNewTokenCallbackFields

    Returns any

  • Parameters

    • documents: Document<Record<string, any>>[]
    • runId: string
    • Optional parentRunId: string
    • Optional tags: string[]

    Returns any

  • Parameters

    • err: any
    • runId: string
    • Optional parentRunId: string
    • Optional tags: string[]

    Returns any

  • Parameters

    • retriever: Serialized
    • query: string
    • runId: string
    • Optional parentRunId: string
    • Optional tags: string[]
    • Optional metadata: Record<string, unknown>
    • Optional name: string

    Returns any

  • Parameters

    • text: string
    • runId: string
    • Optional parentRunId: string
    • Optional tags: string[]

    Returns void | Promise<void>

  • Parameters

    • methods: BaseCallbackHandlerMethodsClass

    Returns Handler

Generated using TypeDoc