Optional
params: ConstructorParamsA 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.
The final serialized identifier for the module.
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.
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.
A manual list of keys that should be serialized. If not overridden, all fields passed into the constructor will be serialized.
Called when an agent is about to execute an action, with the action and the run ID.
Optional
parentRunId: stringOptional
handleCalled when an agent finishes execution, before it exits. with the final output and the run ID.
Optional
parentRunId: stringCalled at the end of a Chain run, with the outputs and the run ID.
Optional
parentRunId: stringCalled if a Chain run encounters an error
Optional
parentRunId: stringCalled 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
name: stringCalled 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
name: stringOptional
handleOptional
parentRunId: stringOptional
extraParams: Record<string, unknown>Optional
tags: string[]Optional
metadata: Record<string, unknown>Optional
name: stringCalled at the end of an LLM/ChatModel run, with the output and the run ID.
Optional
parentRunId: stringCalled if an LLM/ChatModel run encounters an error
Optional
parentRunId: stringCalled when an LLM/ChatModel in streaming
mode produces a new token
Optional
_parentRunId: stringOptional
_tags: string[]Optional
_fields: anyCalled 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
name: stringOptional
parentRunId: stringOptional
parentRunId: stringOptional
tags: string[]Optional
metadata: Record<string, unknown>Optional
name: stringOptional
handleCalled at the end of a Tool run, with the tool output and the run ID.
Optional
parentRunId: stringCalled if a Tool run encounters an error
Optional
parentRunId: stringCalled 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
name: stringStatic
fromReadonly
lc_aliases: undefined | { [key: string]: string }Readonly
lc_attributes: undefined | { [key: string]: string }Readonly
lc_id: string[]The final serialized identifier for the module.
Readonly
lc_namespace: ["langchain_core", "callbacks", string]Readonly
lc_secrets: undefined | { [key: string]: string }Readonly
lc_serializable_keys: undefined | string[]Called when an agent is about to execute an action, with the action and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Called when an agent finishes execution, before it exits. with the final output and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Called 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> }Called if a Chain run encounters an error
Optional
parentRunId: stringOptional
tags: string[]Optional
kwargs: { inputs?: Record<string, unknown> }Called 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: stringCalled 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
tags: string[]Optional
metadata: Record<string, any>Called 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>Called if an LLM/ChatModel run encounters an error
Optional
parentRunId: stringOptional
tags: string[]Optional
extraParams: Record<string, unknown>Called when an LLM/ChatModel in streaming
mode produces a new token
Optional
parentRunId: stringOptional
tags: string[]Optional
fields: HandleLLMNewTokenCallbackFieldsCalled 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
parentRunId: stringOptional
tags: string[]Optional
parentRunId: stringOptional
tags: string[]Optional
parentRunId: stringOptional
tags: string[]Optional
metadata: Record<string, unknown>Optional
name: stringOptional
parentRunId: stringOptional
tags: string[]Called at the end of a Tool run, with the tool output and the run ID.
Optional
parentRunId: stringOptional
tags: string[]Called if a Tool run encounters an error
Optional
parentRunId: stringOptional
tags: string[]Called 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: stringStatic
lc_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.
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.