BaseRunManager(
self,
*,
run_id: UUID,
handlers: list[BaseCallbackHandler],
| Name | Type | Description |
|---|---|---|
run_id* | UUID | The ID of the run. |
handlers* | list[BaseCallbackHandler] | The list of handlers. |
inheritable_handlers* | list[BaseCallbackHandler] | The list of inheritable handlers. |
parent_run_id | UUID | None | Default: None |
tags | list[str] | None | Default: None |
inheritable_tags | list[str] | None | Default: None |
metadata | dict[str, Any] | None | Default: None |
inheritable_metadata | dict[str, Any] | None | Default: None |
Base class for run manager (a bound callback manager).
The ID of the parent run.
The list of tags.
The list of inheritable tags.
The metadata.
The inheritable metadata.