InfinoCallbackHandler#
- class langchain_community.callbacks.infino_callback.InfinoCallbackHandler(model_id: str | None = None, model_version: str | None = None, verbose: bool = False)[source]#
Callback Handler that logs to Infino.
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,Β verbose])on_agent_action
(action,Β **kwargs)Do nothing when agent takes a specific action.
on_agent_finish
(finish,Β **kwargs)Do nothing.
on_chain_end
(outputs,Β **kwargs)Do nothing when LLM chain ends.
on_chain_error
(error,Β **kwargs)Need to log the error.
on_chain_start
(serialized,Β inputs,Β **kwargs)Do nothing when LLM chain starts.
on_chat_model_start
(serialized,Β messages,Β ...)Run when LLM starts running.
on_custom_event
(name,Β data,Β *,Β run_id[,Β ...])Override to define a handler for a custom event.
on_llm_end
(response,Β **kwargs)Log the latency, error, token usage, and response to Infino.
on_llm_error
(error,Β **kwargs)Set the error flag.
on_llm_new_token
(token,Β **kwargs)Do nothing when a new token is generated.
on_llm_start
(serialized,Β prompts,Β **kwargs)Log the prompts to Infino, and set start time and error flag.
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)Do nothing.
on_tool_end
(output[,Β observation_prefix,Β ...])Do nothing when tool ends.
on_tool_error
(error,Β **kwargs)Do nothing when tool outputs an error.
on_tool_start
(serialized,Β input_str,Β **kwargs)Do nothing when tool starts.
- Parameters:
model_id (str | None) β
model_version (str | None) β
verbose (bool) β
- __init__(model_id: str | None = None, model_version: str | None = None, verbose: bool = False) None [source]#
- Parameters:
model_id (str | None) β
model_version (str | None) β
verbose (bool) β
- Return type:
None
- on_agent_action(action: AgentAction, **kwargs: Any) Any [source]#
Do nothing when agent takes a specific action.
- Parameters:
action (AgentAction) β
kwargs (Any) β
- Return type:
Any
- on_agent_finish(finish: AgentFinish, **kwargs: Any) None [source]#
Do nothing.
- Parameters:
finish (AgentFinish) β
kwargs (Any) β
- Return type:
None
- on_chain_end(outputs: Dict[str, Any], **kwargs: Any) None [source]#
Do nothing when LLM chain ends.
- Parameters:
outputs (Dict[str, Any]) β
kwargs (Any) β
- Return type:
None
- on_chain_error(error: BaseException, **kwargs: Any) None [source]#
Need to log the error.
- Parameters:
error (BaseException) β
kwargs (Any) β
- Return type:
None
- on_chain_start(serialized: Dict[str, Any], inputs: Dict[str, Any], **kwargs: Any) None [source]#
Do nothing when LLM chain starts.
- Parameters:
serialized (Dict[str, Any]) β
inputs (Dict[str, Any]) β
kwargs (Any) β
- Return type:
None
- on_chat_model_start(serialized: Dict[str, Any], messages: List[List[BaseMessage]], **kwargs: Any) None [source]#
Run when LLM starts running.
- Parameters:
serialized (Dict[str, Any]) β
messages (List[List[BaseMessage]]) β
kwargs (Any) β
- Return type:
None
- 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]#
Log the latency, error, token usage, and response to Infino.
- Parameters:
response (LLMResult) β
kwargs (Any) β
- Return type:
None
- on_llm_error(error: BaseException, **kwargs: Any) None [source]#
Set the error flag.
- Parameters:
error (BaseException) β
kwargs (Any) β
- Return type:
None
- on_llm_new_token(token: str, **kwargs: Any) None [source]#
Do nothing when a new token is generated.
- Parameters:
token (str) β
kwargs (Any) β
- Return type:
None
- on_llm_start(serialized: Dict[str, Any], prompts: List[str], **kwargs: Any) None [source]#
Log the prompts to Infino, and set start time and error flag.
- Parameters:
serialized (Dict[str, Any]) β
prompts (List[str]) β
kwargs (Any) β
- 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]#
Do nothing.
- Parameters:
text (str) β
kwargs (Any) β
- Return type:
None
- on_tool_end(output: str, observation_prefix: str | None = None, llm_prefix: str | None = None, **kwargs: Any) None [source]#
Do nothing when tool ends.
- Parameters:
output (str) β
observation_prefix (str | None) β
llm_prefix (str | None) β
kwargs (Any) β
- Return type:
None
Examples using InfinoCallbackHandler