diff --git a/libs/checkpoint/langgraph/checkpoint/memory/__init__.py b/libs/checkpoint/langgraph/checkpoint/memory/__init__.py index f73b5c746..b4b263239 100644 --- a/libs/checkpoint/langgraph/checkpoint/memory/__init__.py +++ b/libs/checkpoint/langgraph/checkpoint/memory/__init__.py @@ -93,6 +93,7 @@ class InMemorySaver( if factory is not defaultdict: self.stack.enter_context(self.storage) # type: ignore[arg-type] self.stack.enter_context(self.writes) # type: ignore[arg-type] + self.stack.enter_context(self.blobs) # type: ignore[arg-type] def __enter__(self) -> "InMemorySaver": return self.stack.__enter__() diff --git a/libs/checkpoint/pyproject.toml b/libs/checkpoint/pyproject.toml index 049596e72..746054b40 100644 --- a/libs/checkpoint/pyproject.toml +++ b/libs/checkpoint/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langgraph-checkpoint" -version = "2.0.24" +version = "2.0.25" description = "Library with base interfaces for LangGraph checkpoint savers." authors = [] license = "MIT"