Optional
handleCalled when an agent is about to execute an action, with the action and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Optional
handleCalled when an agent finishes execution, before it exits. with the final output and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Optional
handleCalled at the end of a Chain run, with the outputs and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Optional
kwargs: { inputs?: Record<string, unknown> }Optional
handleCalled if a Chain run encounters an error
Optional
parentRunId: stringOptional
tags: string[]Optional
kwargs: { inputs?: Record<string, unknown> }Optional
handleCalled at the start of a Chain run, with the chain name and inputs and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Optional
metadata: Record<string, unknown>Optional
runType: stringOptional
runName: stringOptional
handleCalled at the start of a Chat Model run, with the prompt(s) and the run ID.
Optional
parentRunId: stringOptional
extraParams: Record<string, unknown>Optional
tags: string[]Optional
metadata: Record<string, unknown>Optional
runName: stringOptional
handleOptional
handleCalled at the end of an LLM/ChatModel run, with the output and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Optional
extraParams: Record<string, unknown>Optional
handleCalled if an LLM/ChatModel run encounters an error
Optional
parentRunId: stringOptional
tags: string[]Optional
extraParams: Record<string, unknown>Optional
handleCalled when an LLM/ChatModel in streaming
mode produces a new token
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)
Optional
parentRunId: stringOptional
tags: string[]Optional
fields: HandleLLMNewTokenCallbackFieldsOptional
handleCalled at the start of an LLM or Chat Model run, with the prompt(s) and the run ID.
Optional
parentRunId: stringOptional
extraParams: Record<string, unknown>Optional
tags: string[]Optional
metadata: Record<string, unknown>Optional
runName: stringOptional
handleOptional
parentRunId: stringOptional
tags: string[]Optional
handleOptional
parentRunId: stringOptional
tags: string[]Optional
handleOptional
parentRunId: stringOptional
tags: string[]Optional
metadata: Record<string, unknown>Optional
name: stringOptional
handleOptional
handleCalled at the end of a Tool run, with the tool output and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Optional
handleCalled if a Tool run encounters an error
Optional
parentRunId: stringOptional
tags: string[]Optional
handleCalled at the start of a Tool run, with the tool name and input and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Optional
metadata: Record<string, unknown>Optional
runName: string
Base interface for callbacks. All methods are optional. If a method is not implemented, it will be ignored. If a method is implemented, it will be called at the appropriate time. All methods are called with the run ID of the LLM/ChatModel/Chain that is running, which is generated by the CallbackManager.