Creates a new instance of the RunCollectorCallbackHandler class.
The ID of the example.
Optional exampleThe name of the callback handler.
An array of traced runs.
Optional exampleThe ID of the example.
Protected runA 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.
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.
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.
Called when an agent is about to execute an action, with the action and the run ID.
Called when an agent finishes execution, before it exits. with the final output and the run ID.
Called at the end of a Chain run, with the outputs and the run ID.
Optional _parentRunId: stringOptional _tags: string[]Optional kwargs: { Optional inputs?: Record<string, unknown>Called if a Chain run encounters an error
Optional _parentRunId: stringOptional _tags: string[]Optional kwargs: { Optional 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: KVMapOptional runType: stringOptional name: stringCalled at the start of a Chat Model run, with the prompt(s) and the run ID.
Optional parentRunId: stringOptional extraParams: KVMapOptional tags: string[]Optional metadata: KVMapOptional name: stringCalled 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: HandleLLMNewTokenCallbackFieldsCalled at the start of an LLM or Chat Model run, with the prompt(s) and the run ID.
Optional parentRunId: stringOptional extraParams: KVMapOptional tags: string[]Optional metadata: KVMapOptional name: stringOptional parentRunId: stringOptional tags: string[]Optional metadata: KVMapOptional name: 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: KVMapOptional name: stringOptional onOptional onOptional onOptional onOptional onOptional onLLMEndOptional onLLMErrorOptional onLLMNewOptional onLLMStartOptional onOptional onOptional onOptional onOptional onOptional onOptional onOptional onOptional onStatic fromStatic lc_Protected _addProtected _endProtected _getProtected _startProtected persistGenerated using TypeDoc
A callback handler that collects traced runs and makes it easy to fetch the traced run object from calls through any langchain object. For instance, it makes it easy to fetch the run ID and then do things with that, such as log feedback.