节点数据JSON#

langchain_core.runnables.graph.node_data_json(node: Node, *, with_schemas: bool = False) dict[str, str | dict[str, Any]][source]#

将节点的数据转换为可JSON序列化的格式。

Parameters:
  • node (Node) – 要转换的节点。

  • with_schemas (bool) – 如果数据是Pydantic模型,是否包含数据的模式。默认为False。

Returns:

一个包含数据类型和数据本身的字典。

Return type:

字典[str, str | 字典[str, 任意]]