From bc0df16fb50aaf6aaca07146a4f67e8959dfc02a Mon Sep 17 00:00:00 2001 From: Sunil Yadav Date: Mon, 29 Sep 2025 10:01:42 +0100 Subject: [PATCH] feat: langgraph dynamodb placeholder --- libs/langgraph-dynamodb/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 libs/langgraph-dynamodb/README.md diff --git a/libs/langgraph-dynamodb/README.md b/libs/langgraph-dynamodb/README.md new file mode 100644 index 00000000..dc0d1cd4 --- /dev/null +++ b/libs/langgraph-dynamodb/README.md @@ -0,0 +1,21 @@ +# LangGraph DynamoDB Checkpointer + +This package provides a DynamoDB-based checkpointer for LangGraph applications. + +## Overview + +The DynamoDBSaver implements the LangGraph BaseCheckpointSaver interface, enabling persistent state management for LangGraph workflows using Amazon DynamoDB as the storage backend. + +## Features + +- Implements LangGraph BaseCheckpointSaver +- Persistent checkpoint storage in DynamoDB +- Compatible with LangGraph persistence patterns + +## Documentation + +For more information on LangGraph checkpointers and persistence, see the [LangGraph Checkpointer documentation](https://langchain-ai.github.io/langgraph/concepts/persistence/#checkpoints). + +## Status + +🚧 **Work in Progress** - This integration is currently under development.