We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6814aeb commit 2227772Copy full SHA for 2227772
libs/langgraph-checkpoint-aws/langgraph_checkpoint_aws/store/dynamodb/base.py
@@ -53,7 +53,7 @@ class DynamoDBStore(BaseStore):
53
Examples:
54
Basic usage:
55
```python
56
- from langgraph_checkpoint_aws.store.dynamodb import DynamoDBStore
+ from langgraph_checkpoint_aws import DynamoDBStore
57
58
store = DynamoDBStore(table_name="my-store-table")
59
store.setup() # Create table if it doesn't exist
@@ -66,7 +66,7 @@ class DynamoDBStore(BaseStore):
66
67
Using context manager:
68
69
70
71
with DynamoDBStore.from_conn_string("my-store-table") as store:
72
store.setup()
0 commit comments