BaseTracer_StreamingCallbackHandlerRun on retry.
Whether to raise an error if an exception occurs.
Whether to run the callback inline.
Whether to ignore LLM callbacks.
Whether to ignore retry callbacks.
Whether to ignore chain callbacks.
Whether to ignore agent callbacks.
Whether to ignore retriever callbacks.
Whether to ignore chat model callbacks.
Ignore custom event.
| Name | Type | Description |
|---|---|---|
auto_close | bool | Default: TrueWhether to close the stream when the root run finishes. |
include_names | Sequence[str] | None | Default: NoneOnly include runs from |
include_types | Sequence[str] | None | Default: None |
include_tags | Sequence[str] | None | Default: None |
exclude_names | Sequence[str] | None | Default: None |
exclude_types | Sequence[str] | None | Default: None |
exclude_tags | Sequence[str] | None | Default: None |
_schema_format | Literal['original', 'streaming_events'] | Default: 'streaming_events' |
Tracer that streams run logs to a stream.
Only include runs from Runnable objects with matching
types.
Only include runs from Runnable objects with matching tags.
Exclude runs from Runnable objects with matching names.
Exclude runs from Runnable objects with matching types.
Exclude runs from Runnable objects with matching tags.
Primarily changes how the inputs and outputs are handled.
For internal use only. This API will change.
'original' is the format used by all current tracers. This format is
slightly inconsistent with respect to inputs and outputs.