From 21ce5757396d4e11cac22fa4e9126dd84527f75a Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Thu, 4 Apr 2024 15:01:03 -0400 Subject: [PATCH] x --- langgraph/checkpoint/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/langgraph/checkpoint/base.py b/langgraph/checkpoint/base.py index 125adca03..e63a00201 100644 --- a/langgraph/checkpoint/base.py +++ b/langgraph/checkpoint/base.py @@ -14,6 +14,7 @@ from langgraph.utils import StrEnum class Checkpoint(TypedDict): """State snapshot at a given point in time.""" + v: int """The version of the checkpoint format. Currently 1.""" ts: str