FinalStreamingStdOutCallbackHandler#
- class langchain.callbacks.streaming_stdout_final_only.FinalStreamingStdOutCallbackHandler(*, answer_prefix_tokens: List[str] | None = None, strip_tokens: bool = True, stream_prefix: bool = False)[source]#
Callback handler for streaming in agents. Only works with agents using LLMs that support streaming.
Only the final output of the agent will be streamed.
Instantiate FinalStreamingStdOutCallbackHandler.
- Parameters:
answer_prefix_tokens (List[str] | None) – Token sequence that prefixes the answer. Default is [“Final”, “Answer”, “:”]
strip_tokens (bool) – Ignore white spaces and new lines when comparing answer_prefix_tokens to last tokens? (to determine if answer has been reached)
stream_prefix (bool) – Should answer prefix itself also be streamed?
Attributes
ignore_agentWhether to ignore agent callbacks.
ignore_chainWhether to ignore chain callbacks.
ignore_chat_modelWhether to ignore chat model callbacks.
ignore_custom_eventIgnore custom event.
ignore_llmWhether to ignore LLM callbacks.
ignore_retrieverWhether to ignore retriever callbacks.
ignore_retryWhether to ignore retry callbacks.
raise_errorWhether to raise an error if an exception occurs.
run_inlineWhether to run the callback inline.
Methods
__init__(*[, answer_prefix_tokens, ...])Instantiate FinalStreamingStdOutCallbackHandler.
append_to_last_tokens(token)on_agent_action(action, **kwargs)Run on agent action.
on_agent_finish(finish, **kwargs)Run on the agent end.
on_chain_end(outputs, **kwargs)Run when a chain ends running.
on_chain_error(error, **kwargs)Run when chain errors.
on_chain_start(serialized, inputs, **kwargs)Run when a chain starts running.
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)Run when LLM ends running.
on_llm_error(error, **kwargs)Run when LLM errors.
on_llm_new_token(token, **kwargs)Run on new LLM token.
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, **kwargs)Run when 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.
- __init__(*, answer_prefix_tokens: List[str] | None = None, strip_tokens: bool = True, stream_prefix: bool = False) None[source]#
Instantiate FinalStreamingStdOutCallbackHandler.
- Parameters:
answer_prefix_tokens (List[str] | None) – Token sequence that prefixes the answer. Default is [“Final”, “Answer”, “:”]
strip_tokens (bool) – Ignore white spaces and new lines when comparing answer_prefix_tokens to last tokens? (to determine if answer has been reached)
stream_prefix (bool) – Should answer prefix itself also be streamed?
- Return type:
None
- on_agent_action(action: AgentAction, **kwargs: Any) Any#
Run on agent action.
- Parameters:
action (AgentAction) – The agent action.
**kwargs (Any) – Additional keyword arguments.
- Return type:
Any
- on_agent_finish(finish: AgentFinish, **kwargs: Any) None#
Run on the agent end.
- Parameters:
finish (AgentFinish) – The agent finish.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_chain_end(outputs: Dict[str, Any], **kwargs: Any) None#
Run when a chain ends running.
- Parameters:
outputs (Dict[str, Any]) – The outputs of the chain.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_chain_error(error: BaseException, **kwargs: Any) None#
Run when chain errors.
- Parameters:
error (BaseException) – The error that occurred.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_chain_start(serialized: Dict[str, Any], inputs: Dict[str, Any], **kwargs: Any) None#
Run when a chain starts running.
- Parameters:
serialized (Dict[str, Any]) – The serialized chain.
inputs (Dict[str, Any]) – The inputs to the chain.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_chat_model_start(serialized: Dict[str, Any], messages: List[List[BaseMessage]], **kwargs: Any) None#
Run when LLM starts running.
- Parameters:
serialized (Dict[str, Any]) – The serialized LLM.
messages (List[List[BaseMessage]]) – The messages to run.
**kwargs (Any) – Additional keyword arguments.
- 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
Added in version 0.2.15.
- on_llm_end(response: LLMResult, **kwargs: Any) None#
Run when LLM ends running.
- Parameters:
response (LLMResult) – The response from the LLM.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_llm_error(error: BaseException, **kwargs: Any) None#
Run when LLM errors.
- Parameters:
error (BaseException) – The error that occurred.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_llm_new_token(token: str, **kwargs: Any) None[source]#
Run on new LLM token. Only available when streaming is enabled.
- 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.
- 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#
Run on an arbitrary text.
- Parameters:
text (str) – The text to print.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_tool_end(output: Any, **kwargs: Any) None#
Run when tool ends running.
- Parameters:
output (Any) – The output of the tool.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_tool_error(error: BaseException, **kwargs: Any) None#
Run when tool errors.
- Parameters:
error (BaseException) – The error that occurred.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None
- on_tool_start(serialized: Dict[str, Any], input_str: str, **kwargs: Any) None#
Run when the tool starts running.
- Parameters:
serialized (Dict[str, Any]) – The serialized tool.
input_str (str) – The input string.
**kwargs (Any) – Additional keyword arguments.
- Return type:
None