mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-31 04:09:49 +02:00
Add AsyncSqliteSaver
This commit is contained in:
@@ -79,3 +79,9 @@ class SqliteSaver(BaseCheckpointSaver):
|
||||
pickle.dumps(checkpoint),
|
||||
),
|
||||
)
|
||||
|
||||
async def aget(self, config: RunnableConfig) -> Optional[Checkpoint]:
|
||||
raise NotImplementedError
|
||||
|
||||
async def aput(self, config: RunnableConfig, checkpoint: Checkpoint) -> None:
|
||||
raise NotImplementedError
|
||||
|
||||
Reference in New Issue
Block a user