langchain_core.runnables.graph
.node_data_json¶
- langchain_core.runnables.graph.node_data_json(node: Node, *, with_schemas: bool = False) Dict[str, Union[str, Dict[str, Any]]][source]¶
将节点数据转换为可JSON序列化的格式。
- 参数
node (节点) – 要转换的节点。
with_schemas (布尔值) – 如果是 Pydantic 模型,是否包含数据的模式。默认为 False。
- 返回
包含数据类型和数据本身的字典。
- 返回类型
Dict[str, Union[str, Dict[str, Any]]]