langchain_community.callbacks.aim_callback
.BaseMetadataCallbackHandler¶
- class langchain_community.callbacks.aim_callback.BaseMetadataCallbackHandler[源代码]¶
回调处理程序,用于元数据和关联的函数状态。
- step¶
当前步骤。
- 类型
int
- starts¶
start方法被调用的次数。
- 类型
int
- ends¶
end方法被调用的次数。
- 类型
int
- errors¶
error方法被调用的次数。
- 类型
int
- text_ctr¶
text方法被调用的次数。
- 类型
int
- ignore_llm_¶
是否忽略llm回调。
- 类型
bool
- ignore_chain_¶
是否忽略链式回调。
- 类型
bool
- ignore_agent_¶
是否忽略代理回调。
- 类型
bool
- ignore_retriever_¶
是否忽略检索器回调。
- 类型
bool
- always_verbose_¶
是否始终详细。
- 类型
bool
- chain_starts¶
chain start方法被调用的次数。
- 类型
int
- chain_ends¶
chain end方法被调用的次数。
- 类型
int
- llm_starts¶
llm start方法被调用的次数。
- 类型
int
- llm_ends¶
llm end方法被调用的次数。
- 类型
int
- llm_streams¶
text方法被调用的次数。
- 类型
int
- tool_starts¶
tool start方法被调用的次数。
- 类型
int
- tool_ends¶
tool end方法被调用的次数。
- 类型
int
- agent_ends¶
代理终止方法被调用的次数。
- 类型
int
属性
always_verbose
即使 verbose 为 False,是否也调用详细格式的回调。
ignore_agent
是否忽略代理回调。
ignore_chain
是否忽略链式回调。
ignore_llm
是否忽略 LLM 回调。
ignore_retriever
是否忽略检索器回调。
方法
__init__
()重置回调元数据。