This commit is contained in:
Nuno Campos
2024-05-20 16:26:10 -07:00
parent de71709fdc
commit c13741f9da
+2 -2
View File
@@ -27,9 +27,9 @@ class StateSnapshot(NamedTuple):
"""Nodes to execute in the next step, if any"""
config: RunnableConfig
"""Config used to fetch this snapshot"""
metadata: CheckpointMetadata
metadata: Optional[CheckpointMetadata]
"""Metadata associated with this snapshot"""
created_at: str
created_at: Optional[str]
"""Timestamp of snapshot creation"""
parent_config: Optional[RunnableConfig] = None
"""Config used to fetch the parent snapshot, if any"""