AsyncBaseTracer#
- class langchain_core.tracers.base.AsyncBaseTracer(*, _schema_format: Literal['original', 'streaming_events', 'original+chat'] = 'original', **kwargs: Any)[source]#
用于追踪器的异步基础接口。
初始化追踪器。
- Parameters:
_schema_format (Literal['original', 'streaming_events', 'original+chat']) –
主要改变输入和输出的处理方式。仅供内部使用。此API将会更改。
’original’ 是所有当前追踪器使用的格式。这种格式在输入和输出方面稍微有些不一致。
’streaming_events’ 用于支持流式事件,供内部使用。它可能会在未来更改,或者完全被弃用,转而使用专门的异步追踪器来处理流式事件。
’original+chat’ 是一种与 ‘original’ 相同的格式,只是它不会在_chat_model_start上引发属性错误。
kwargs (Any) – 将传递给超类的额外关键字参数。
属性
ignore_agent
是否忽略代理回调。
ignore_chain
是否忽略链式回调。
ignore_chat_model
是否忽略聊天模型回调。
ignore_custom_event
忽略自定义事件。
ignore_llm
是否忽略LLM回调。
ignore_retriever
是否忽略检索器回调。
ignore_retry
是否忽略重试回调。
log_missing_parent
raise_error
如果发生异常,是否引发错误。
run_inline
是否内联运行回调。
方法
__init__
(*[, _schema_format])初始化追踪器。
on_agent_action
(action, *, run_id[, ...])在代理操作时运行。
on_agent_finish
(finish, *, run_id[, ...])在代理结束时运行。
on_chain_end
(outputs, *, run_id[, inputs])当链结束时运行。
on_chain_error
(error, *[, inputs])当链发生错误时运行。
on_chain_start
(serialized, inputs, *, run_id)当链开始运行时执行。
on_chat_model_start
(serialized, messages, *, ...)当聊天模型开始运行时执行。
on_custom_event
(name, data, *, run_id[, ...])重写以定义自定义事件的处理程序。
on_llm_end
(response, *, run_id[, ...])当LLM运行结束时执行。
on_llm_error
(error, *, run_id[, ...])当LLM出错时运行。
on_llm_new_token
(token, *[, chunk, ...])在新的LLM令牌上运行。
on_llm_start
(serialized, prompts, *, run_id)当LLM开始运行时执行。
on_retriever_end
(documents, *, run_id[, ...])在检索器结束时运行。
on_retriever_error
(error, *, run_id[, ...])在检索器错误时运行。
on_retriever_start
(serialized, query, *, run_id)在检索器启动时运行。
on_retry
(retry_state, *, run_id, **kwargs)在重试事件上运行。
on_text
(text, *, run_id[, parent_run_id, tags])在任意文本上运行。
on_tool_end
(output, *, run_id, **kwargs)当工具结束运行时执行。
on_tool_error
(error, *, run_id[, ...])当工具出错时运行。
on_tool_start
(serialized, input_str, *, run_id)当工具开始运行时执行。
- __init__(*, _schema_format: Literal['original', 'streaming_events', 'original+chat'] = 'original', **kwargs: Any) None #
初始化追踪器。
- Parameters:
_schema_format (Literal['original', 'streaming_events', 'original+chat']) –
主要改变输入和输出的处理方式。仅供内部使用。此API将会更改。
’original’ 是所有当前追踪器使用的格式。这种格式在输入和输出方面稍微有些不一致。
’streaming_events’ 用于支持流式事件,供内部使用。它可能会在未来更改,或者完全被弃用,转而使用专门的异步追踪器来处理流式事件。
’original+chat’ 是一种与 ‘original’ 相同的格式,只是它不会在_chat_model_start上引发属性错误。
kwargs (Any) – 将传递给超类的额外关键字参数。
- Return type:
无
- async on_agent_action(action: AgentAction, *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, **kwargs: Any) None #
在代理操作上运行。
- Parameters:
action (AgentAction) – 代理动作。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_agent_finish(finish: AgentFinish, *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, **kwargs: Any) None #
在代理端运行。
- Parameters:
finish (AgentFinish) – 代理完成。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_chain_end(outputs: dict[str, Any], *, run_id: UUID, inputs: dict[str, Any] | None = None, **kwargs: Any) None [source]#
当链结束运行时执行。
- Parameters:
outputs (Dict[str, Any]) – 链的输出。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
inputs (dict[str, Any] | None)
- Return type:
无
- async on_chain_error(error: BaseException, *, inputs: dict[str, Any] | None = None, run_id: UUID, **kwargs: Any) None [source]#
当链发生错误时运行。
- Parameters:
error (BaseException) – 发生的错误。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
inputs (dict[str, Any] | None)
- Return type:
无
- async on_chain_start(serialized: dict[str, Any], inputs: dict[str, Any], *, run_id: UUID, tags: list[str] | None = None, parent_run_id: UUID | None = None, metadata: dict[str, Any] | None = None, run_type: str | None = None, name: str | None = None, **kwargs: Any) None [source]#
当链开始运行时运行。
- Parameters:
serialized (Dict[str, Any]) – 序列化的链。
inputs (Dict[str, Any]) – 输入。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
metadata (可选[字典[字符串, 任意类型]]) – 元数据。
kwargs (Any) – 额外的关键字参数。
run_type (str | None)
名称 (字符串 | 无)
- Return type:
无
- async 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, name: str | None = None, **kwargs: Any) Any [source]#
当聊天模型开始运行时执行。
- ATTENTION: This method is called for chat models. If you’re implementing
对于非聊天模型的处理程序,您应该使用 on_llm_start 代替。
- Parameters:
serialized (Dict[str, Any]) – 序列化的聊天模型。
messages (List[List[BaseMessage]]) – 消息列表。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
metadata (可选[字典[字符串, 任意类型]]) – 元数据。
kwargs (Any) – 额外的关键字参数。
名称 (字符串 | 无)
- Return type:
任何
- async on_custom_event(name: str, data: Any, *, run_id: UUID, tags: list[str] | None = None, metadata: dict[str, Any] | None = None, **kwargs: Any) None #
重写以定义自定义事件的处理程序。
- Parameters:
name (str) – 自定义事件的名称。
data (Any) – 自定义事件的数据。格式将与用户指定的格式匹配。
run_id (UUID) – 运行的ID。
tags (list[str] | None) – 与自定义事件关联的标签(包括继承的标签)。
metadata (dict[str, Any] | None) – 与自定义事件关联的元数据 (包括继承的元数据)。
kwargs (Any)
- Return type:
无
在版本0.2.15中添加。
- async on_llm_end(response: LLMResult, *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, **kwargs: Any) None [source]#
当LLM结束运行时执行。
- Parameters:
response (LLMResult) – 生成的响应。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_llm_error(error: BaseException, *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, **kwargs: Any) None [source]#
当LLM出错时运行。
- Parameters:
error (BaseException) – 发生的错误。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID | None) – 父运行ID。这是父运行的ID。
tags (list[str] | None) – 标签。
kwargs (Any) –
额外的关键字参数。 - response (LLMResult): 在错误发生之前生成的响应
错误发生之前。
- Return type:
无
- async on_llm_new_token(token: str, *, chunk: GenerationChunk | ChatGenerationChunk | None = None, run_id: UUID, parent_run_id: UUID | None = None, **kwargs: Any) None [source]#
在新的LLM令牌上运行。仅在启用流式传输时可用。
- Parameters:
token (str) – 新的token。
chunk (GenerationChunk | ChatGenerationChunk) – 新生成的块,包含内容和其他信息。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_llm_start(serialized: dict[str, Any], prompts: list[str], *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, metadata: dict[str, Any] | None = None, **kwargs: Any) None [source]#
当LLM开始运行时执行。
- ATTENTION: This method is called for non-chat models (regular LLMs). If
你正在为聊天模型实现一个处理程序,你应该使用on_chat_model_start来代替。
- Parameters:
serialized (Dict[str, Any]) – 序列化的LLM。
prompts (List[str]) – 提示词。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
metadata (可选[字典[字符串, 任意类型]]) – 元数据。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_retriever_end(documents: Sequence[Document], *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, **kwargs: Any) None [source]#
在检索器端运行。
- Parameters:
documents (Sequence[Document]) – 检索到的文档。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_retriever_error(error: BaseException, *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, **kwargs: Any) None [source]#
在检索器错误时运行。
- Parameters:
error (BaseException) – 发生的错误。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async 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, name: str | None = None, **kwargs: Any) None [source]#
在检索器启动时运行。
- Parameters:
serialized (Dict[str, Any]) – 序列化的检索器。
query (str) – 查询。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
metadata (可选[字典[字符串, 任意类型]]) – 元数据。
kwargs (Any) – 额外的关键字参数。
名称 (字符串 | 无)
- Return type:
无
- async on_retry(retry_state: RetryCallState, *, run_id: UUID, **kwargs: Any) None [source]#
在重试事件上运行。
- Parameters:
retry_state (RetryCallState) – 重试状态。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_text(text: str, *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, **kwargs: Any) None #
在任意文本上运行。
- Parameters:
文本 (str) – 文本内容。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_tool_end(output: Any, *, run_id: UUID, **kwargs: Any) None [source]#
当工具结束运行时执行。
- Parameters:
output (Any) – 工具的输出。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_tool_error(error: BaseException, *, run_id: UUID, parent_run_id: UUID | None = None, tags: list[str] | None = None, **kwargs: Any) None [source]#
当工具出错时运行。
- Parameters:
error (BaseException) – 发生的错误。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
kwargs (Any) – 额外的关键字参数。
- Return type:
无
- async on_tool_start(serialized: dict[str, Any], input_str: str, *, run_id: UUID, tags: list[str] | None = None, parent_run_id: UUID | None = None, metadata: dict[str, Any] | None = None, name: str | None = None, inputs: dict[str, Any] | None = None, **kwargs: Any) None [source]#
当工具开始运行时执行。
- Parameters:
serialized (Dict[str, Any]) – 序列化的工具。
input_str (str) – 输入字符串。
run_id (UUID) – 运行ID。这是当前运行的ID。
parent_run_id (UUID) – 父运行ID。这是父运行的ID。
tags (可选[列表[字符串]]) – 标签。
metadata (可选[字典[字符串, 任意类型]]) – 元数据。
inputs (可选[Dict[str, Any]]) – 输入。
kwargs (Any) – 额外的关键字参数。
名称 (字符串 | 无)
- Return type:
无