ArizeCallbackHandler#

class langchain_community.callbacks.arize_callback.ArizeCallbackHandler(model_id: str | None = None, model_version: str | None = None, SPACE_KEY: str | None = None, API_KEY: str | None = None)[source]#

Callback Handler that logs to Arize.

Initialize callback handler.

Attributes

ignore_agent

Whether to ignore agent callbacks.

ignore_chain

Whether to ignore chain callbacks.

ignore_chat_model

Whether to ignore chat model callbacks.

ignore_custom_event

Ignore custom event.

ignore_llm

Whether to ignore LLM callbacks.

ignore_retriever

Whether to ignore retriever callbacks.

ignore_retry

Whether to ignore retry callbacks.

raise_error

Whether to raise an error if an exception occurs.

run_inline

Whether to run the callback inline.

Methods

__init__([model_id,Β model_version,Β ...])

Initialize callback handler.

on_agent_action(action,Β **kwargs)

Do nothing.

on_agent_finish(finish,Β **kwargs)

Run on the agent end.

on_chain_end(outputs,Β **kwargs)

Do nothing.

on_chain_error(error,Β **kwargs)

Do nothing.

on_chain_start(serialized,Β inputs,Β **kwargs)

Run when a chain starts running.

on_chat_model_start(serialized,Β messages,Β *,Β ...)

Run when a chat model starts running.

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

Override to define a handler for a custom event.

on_llm_end(response,Β **kwargs)

Run when LLM ends running.

on_llm_error(error,Β **kwargs)

Do nothing.

on_llm_new_token(token,Β **kwargs)

Do nothing.

on_llm_start(serialized,Β prompts,Β **kwargs)

Run when LLM starts running.

on_retriever_end(documents,Β *,Β run_id[,Β ...])

Run when Retriever ends running.

on_retriever_error(error,Β *,Β run_id[,Β ...])

Run when Retriever errors.

on_retriever_start(serialized,Β query,Β *,Β run_id)

Run when the Retriever starts running.

on_retry(retry_state,Β *,Β run_id[,Β parent_run_id])

Run on a retry event.

on_text(text,Β **kwargs)

Run on an arbitrary text.

on_tool_end(output[,Β observation_prefix,Β ...])

Run when the tool ends running.

on_tool_error(error,Β **kwargs)

Run when tool errors.

on_tool_start(serialized,Β input_str,Β **kwargs)

Run when the tool starts running.

Parameters:
  • model_id (str | None) –

  • model_version (str | None) –

  • SPACE_KEY (str | None) –

  • API_KEY (str | None) –

__init__(model_id: str | None = None, model_version: str | None = None, SPACE_KEY: str | None = None, API_KEY: str | None = None) β†’ None[source]#

Initialize callback handler.

Parameters:
  • model_id (str | None) –

  • model_version (str | None) –

  • SPACE_KEY (str | None) –

  • API_KEY (str | None) –

Return type:

None

on_agent_action(action: AgentAction, **kwargs: Any) β†’ Any[source]#

Do nothing.

Parameters:
Return type:

Any

on_agent_finish(finish: AgentFinish, **kwargs: Any) β†’ None[source]#

Run on the agent end.

Parameters:
  • finish (AgentFinish) – The agent finish.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • kwargs (Any) – Additional keyword arguments.

Return type:

None

on_chain_end(outputs: Dict[str, Any], **kwargs: Any) β†’ None[source]#

Do nothing.

Parameters:
  • outputs (Dict[str, Any]) –

  • kwargs (Any) –

Return type:

None

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

Do nothing.

Parameters:
  • error (BaseException) –

  • kwargs (Any) –

Return type:

None

on_chain_start(serialized: Dict[str, Any], inputs: Dict[str, Any], **kwargs: Any) β†’ None[source]#

Run when a chain starts running.

Parameters:
  • serialized (Dict[str, Any]) – The serialized chain.

  • inputs (Dict[str, Any]) – The inputs.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • tags (Optional[List[str]]) – The tags.

  • metadata (Optional[Dict[str, Any]]) – The metadata.

  • kwargs (Any) – Additional keyword arguments.

Return type:

None

on_chat_model_start(serialized: Dict[str, Any], messages: List[List[BaseMessage]], *, run_id: UUID, parent_run_id: UUID | None = None, tags: List[str] | None = None, metadata: Dict[str, Any] | None = None, **kwargs: Any) β†’ Any#

Run when a chat model starts running.

ATTENTION: This method is called for chat models. If you’re implementing

a handler for a non-chat model, you should use on_llm_start instead.

Parameters:
  • serialized (Dict[str, Any]) – The serialized chat model.

  • messages (List[List[BaseMessage]]) – The messages.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • tags (Optional[List[str]]) – The tags.

  • metadata (Optional[Dict[str, Any]]) – The metadata.

  • kwargs (Any) – Additional keyword arguments.

Return type:

Any

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 (List[str] | None) – The tags associated with the custom event (includes inherited tags).

  • metadata (Dict[str, Any] | None) – The metadata associated with the custom event (includes inherited metadata).

  • kwargs (Any) –

Return type:

Any

New in version 0.2.15.

on_llm_end(response: LLMResult, **kwargs: Any) β†’ None[source]#

Run when LLM ends running.

Parameters:
  • response (LLMResult) – The response which was generated.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • kwargs (Any) – Additional keyword arguments.

Return type:

None

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

Do nothing.

Parameters:
  • error (BaseException) –

  • kwargs (Any) –

Return type:

None

on_llm_new_token(token: str, **kwargs: Any) β†’ None[source]#

Do nothing.

Parameters:
  • token (str) –

  • kwargs (Any) –

Return type:

None

on_llm_start(serialized: Dict[str, Any], prompts: List[str], **kwargs: Any) β†’ None[source]#

Run when LLM starts running.

ATTENTION: This method is called for non-chat models (regular LLMs). If

you’re implementing a handler for a chat model, you should use on_chat_model_start instead.

Parameters:
  • serialized (Dict[str, Any]) – The serialized LLM.

  • prompts (List[str]) – The prompts.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • tags (Optional[List[str]]) – The tags.

  • metadata (Optional[Dict[str, Any]]) – The metadata.

  • kwargs (Any) – Additional keyword arguments.

Return type:

None

on_retriever_end(documents: Sequence[Document], *, run_id: UUID, parent_run_id: UUID | None = None, **kwargs: Any) β†’ Any#

Run when Retriever ends running.

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

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • kwargs (Any) – Additional keyword arguments.

Return type:

Any

on_retriever_error(error: BaseException, *, run_id: UUID, parent_run_id: UUID | None = None, **kwargs: Any) β†’ Any#

Run when Retriever errors.

Parameters:
  • error (BaseException) – The error that occurred.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • kwargs (Any) – Additional keyword arguments.

Return type:

Any

on_retriever_start(serialized: Dict[str, Any], query: str, *, run_id: UUID, parent_run_id: UUID | None = None, tags: List[str] | None = None, metadata: Dict[str, Any] | None = None, **kwargs: Any) β†’ Any#

Run when the Retriever starts running.

Parameters:
  • serialized (Dict[str, Any]) – The serialized Retriever.

  • query (str) – The query.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • tags (Optional[List[str]]) – The tags.

  • metadata (Optional[Dict[str, Any]]) – The metadata.

  • kwargs (Any) – Additional keyword arguments.

Return type:

Any

on_retry(retry_state: RetryCallState, *, run_id: UUID, parent_run_id: UUID | None = None, **kwargs: Any) β†’ Any#

Run on a retry event.

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

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • kwargs (Any) – Additional keyword arguments.

Return type:

Any

on_text(text: str, **kwargs: Any) β†’ None[source]#

Run on an arbitrary text.

Parameters:
  • text (str) – The text.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • kwargs (Any) – Additional keyword arguments.

Return type:

None

on_tool_end(output: Any, observation_prefix: str | None = None, llm_prefix: str | None = None, **kwargs: Any) β†’ None[source]#

Run when the tool ends running.

Parameters:
  • output (Any) – The output of the tool.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • kwargs (Any) – Additional keyword arguments.

  • observation_prefix (str | None) –

  • llm_prefix (str | None) –

Return type:

None

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

Run when tool errors.

Parameters:
  • error (BaseException) – The error that occurred.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • kwargs (Any) – Additional keyword arguments.

Return type:

None

on_tool_start(serialized: Dict[str, Any], input_str: str, **kwargs: Any) β†’ None[source]#

Run when the tool starts running.

Parameters:
  • serialized (Dict[str, Any]) – The serialized tool.

  • input_str (str) – The input string.

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

  • parent_run_id (UUID) – The parent run ID. This is the ID of the parent run.

  • tags (Optional[List[str]]) – The tags.

  • metadata (Optional[Dict[str, Any]]) – The metadata.

  • inputs (Optional[Dict[str, Any]]) – The inputs.

  • kwargs (Any) – Additional keyword arguments.

Return type:

None