运行状态#

class langchain_core.tracers.log_stream.RunState[源代码]#

运行状态。

id: str#

运行的ID。

streamed_output: list[Any]#

由Runnable.stream()流式传输的输出块列表

final_output: Any | None#

运行的最终输出,通常是聚合(+)流输出的结果。当Runnable支持时,在整个运行过程中更新。

name: str#

正在运行的对象的名称。

type: str#

正在运行的对象的类型,例如:prompt、chain、llm等。

logs: dict[str, LogEntry]#

运行名称到子运行的映射。如果提供了过滤器,此列表将仅包含与过滤器匹配的运行。