Configure the callback manager.
configure(
cls,
inheritable_callbacks: Callbacks = None,
local_callbacks: Callbacks = None,
verbose: bool = False,
inheritable_tags: list[str] | None = None,
local_tags: list[str] | None = None,
inheritable_metadata: dict[str, Any] | None = None,
local_metadata: dict[str, Any] | None = None
) -> CallbackManager| Name | Type | Description |
|---|---|---|
inheritable_callbacks | Callbacks | Default: NoneThe inheritable callbacks. |
local_callbacks | Callbacks | Default: NoneThe local callbacks. |
verbose | bool | Default: FalseWhether to enable verbose mode. |
inheritable_tags | list[str] | None | Default: NoneThe inheritable tags. |
local_tags | list[str] | None | Default: NoneThe local tags. |
inheritable_metadata | dict[str, Any] | None | Default: NoneThe inheritable metadata. |
local_metadata | dict[str, Any] | None | Default: NoneThe local metadata. |