diff --git a/langgraph/checkpoint/sqlite.py b/langgraph/checkpoint/sqlite.py index f73ebd840..6c8b75411 100644 --- a/langgraph/checkpoint/sqlite.py +++ b/langgraph/checkpoint/sqlite.py @@ -119,14 +119,14 @@ class SqliteSaver(BaseCheckpointSaver, AbstractContextManager): } async def aget_tuple(self, config: RunnableConfig) -> Optional[CheckpointTuple]: - raise NotImplementedError + raise NotImplementedError("Use AsyncSqliteSaver instead") async def alist( self, config: RunnableConfig ) -> AsyncIterator[tuple[RunnableConfig, Checkpoint]]: - raise NotImplementedError + raise NotImplementedError("Use AsyncSqliteSaver instead") async def aput( self, config: RunnableConfig, checkpoint: Checkpoint ) -> RunnableConfig: - raise NotImplementedError + raise NotImplementedError("Use AsyncSqliteSaver instead")