CallbackManagerForRetrieverRun#

class langchain_core.callbacks.manager.CallbackManagerForRetrieverRun(
*,
run_id: UUID,
handlers: list[BaseCallbackHandler],
inheritable_handlers: list[BaseCallbackHandler],
parent_run_id: UUID | None = None,
tags: list[str] | None = None,
inheritable_tags: list[str] | None = None,
metadata: dict[str, Any] | None = None,
inheritable_metadata: dict[str, Any] | None = None,
)[source]#

Callback manager for retriever run.

Initialize the run manager.

Parameters:
  • 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, optional) – The ID of the parent run. Defaults to None.

  • tags (Optional[list[str]]) – The list of tags. Defaults to None.

  • inheritable_tags (Optional[list[str]]) – The list of inheritable tags. Defaults to None.

  • metadata (Optional[dict[str, Any]]) – The metadata. Defaults to None.

  • inheritable_metadata (Optional[dict[str, Any]]) – The inheritable metadata. Defaults to None.

Methods

__init__(*, run_id, handlers, ...[, ...])

Initialize the run manager.

get_child([tag])

Get a child callback manager.

get_noop_manager()

Return a manager that doesn't perform any operations.

on_custom_event(name, data, *, run_id[, ...])

Override to define a handler for a custom event.

on_retriever_end(documents, **kwargs)

Run when retriever ends running.

on_retriever_error(error, **kwargs)

Run when retriever errors.

on_retry(retry_state, **kwargs)

Run when a retry is received.

on_text(text, **kwargs)

Run when a text is received.

__init__(
*,
run_id: UUID,
handlers: list[BaseCallbackHandler],
inheritable_handlers: list[BaseCallbackHandler],
parent_run_id: UUID | None = None,
tags: list[str] | None = None,
inheritable_tags: list[str] | None = None,
metadata: dict[str, Any] | None = None,
inheritable_metadata: dict[str, Any] | None = None,
) β†’ None#

Initialize the run manager.

Parameters:
  • 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, optional) – The ID of the parent run. Defaults to None.

  • tags (Optional[list[str]]) – The list of tags. Defaults to None.

  • inheritable_tags (Optional[list[str]]) – The list of inheritable tags. Defaults to None.

  • metadata (Optional[dict[str, Any]]) – The metadata. Defaults to None.

  • inheritable_metadata (Optional[dict[str, Any]]) – The inheritable metadata. Defaults to None.

Return type:

None

get_child(
tag: str | None = None,
) β†’ CallbackManager#

Get a child callback manager.

Parameters:

tag (str, optional) – The tag for the child callback manager. Defaults to None.

Returns:

The child callback manager.

Return type:

CallbackManager

classmethod get_noop_manager() β†’ Self#

Return a manager that doesn’t perform any operations.

Returns:

The noop manager.

Return type:

BaseRunManager

on_custom_event(
name: str,
data: Any,
*,
run_id: UUID,
tags: list[str] | None = None,
metadata: dict[str, Any] | None = None,
**kwargs: Any,
) β†’ Any#

Override to define a handler for a custom event.

Parameters:
  • name (str) – The name of the custom event.

  • data (Any) – The data for the custom event. Format will match the format specified by the user.

  • run_id (UUID) – The ID of the run.

  • tags (Optional[list[str]]) – The tags associated with the custom event (includes inherited tags).

  • metadata (Optional[dict[str, Any]]) – The metadata associated with the custom event (includes inherited metadata).

  • kwargs (Any)

Return type:

Any

Added in version 0.2.15.

on_retriever_end(
documents: Sequence[Document],
**kwargs: Any,
) β†’ None[source]#

Run when retriever ends running.

Parameters:
  • documents (Sequence[Document]) – The retrieved documents.

  • **kwargs (Any) – Additional keyword arguments.

Return type:

None

on_retriever_error(
error: BaseException,
**kwargs: Any,
) β†’ None[source]#

Run when retriever errors.

Parameters:
  • error (BaseException) – The error.

  • **kwargs (Any) – Additional keyword arguments.

Return type:

None

on_retry(
retry_state: RetryCallState,
**kwargs: Any,
) β†’ None#

Run when a retry is received.

Parameters:
  • retry_state (RetryCallState) – The retry state.

  • **kwargs (Any) – Additional keyword arguments.

Return type:

None

on_text(
text: str,
**kwargs: Any,
) β†’ Any#

Run when a text is received.

Parameters:
  • text (str) – The received text.

  • **kwargs (Any) – Additional keyword arguments.

Returns:

The result of the callback.

Return type:

Any

Examples using CallbackManagerForRetrieverRun