Library with a MongoDB implementation of LangGraph checkpoint saver.
Project description
LangGraph Checkpoint MongoDB
Implementation of LangGraph CheckpointSaver that uses MongoDB.
Usage
from langgraph.checkpoint.mongodb import MongoDBSaver
write_config = {"configurable": {"thread_id": "1", "checkpoint_ns": ""}}
read_config = {"configurable": {"thread_id": "1"}}
MONGODB_URI = "mongodb://localhost:27017"
DB_NAME = "checkpoint_example"
with MongoDBSaver.from_conn_string(MONGODB_URI, DB_NAME) as checkpointer:
checkpoint = {
"v": 1,
"ts": "2024-07-31T20:14:19.804150+00:00",
"id": "1ef4f797-8335-6428-8001-8a1503f9b875",
"channel_values": {
"my_key": "meow",
"node": "node"
},
"channel_versions": {
"__start__": 2,
"my_key": 3,
"start:node": 3,
"node": 3
},
"versions_seen": {
"__input__": {},
"__start__": {
"__start__": 1
},
"node": {
"start:node": 2
}
},
"pending_sends": [],
}
# store checkpoint
checkpointer.put(write_config, checkpoint, {}, {})
# load checkpoint
checkpointer.get(read_config)
# list checkpoints
list(checkpointer.list(read_config))
Async
from langgraph.checkpoint.mongodb import MongoDBSaver
write_config = {"configurable": {"thread_id": "1", "checkpoint_ns": ""}}
read_config = {"configurable": {"thread_id": "1"}}
MONGODB_URI = "mongodb://localhost:27017"
DB_NAME = "checkpoint_example"
with MongoDBSaver.from_conn_string(MONGODB_URI, DB_NAME) as checkpointer:
checkpoint = {
"v": 1,
"ts": "2024-07-31T20:14:19.804150+00:00",
"id": "1ef4f797-8335-6428-8001-8a1503f9b875",
"channel_values": {
"my_key": "meow",
"node": "node"
},
"channel_versions": {
"__start__": 2,
"my_key": 3,
"start:node": 3,
"node": 3
},
"versions_seen": {
"__input__": {},
"__start__": {
"__start__": 1
},
"node": {
"start:node": 2
}
},
"pending_sends": [],
}
# store checkpoint
await checkpointer.aput(write_config, checkpoint, {}, {})
# load checkpoint
await checkpointer.aget(read_config)
# list checkpoints
[c async for c in checkpointer.alist(read_config)]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langgraph_checkpoint_mongodb-0.3.1.tar.gz.
File metadata
- Download URL: langgraph_checkpoint_mongodb-0.3.1.tar.gz
- Upload date:
- Size: 142.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea174e652a13dd7172a0cd925f3023b796b01586533d2dc52f05873e4c34141b
|
|
| MD5 |
465c867fefbf184e2855abb64cbedbe7
|
|
| BLAKE2b-256 |
ef932113dcf9f30270050c41bb08c8568c900528ad9e0ad3a5fabb23f55c6679
|
File details
Details for the file langgraph_checkpoint_mongodb-0.3.1-py3-none-any.whl.
File metadata
- Download URL: langgraph_checkpoint_mongodb-0.3.1-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c17fc1f3ff89fd93abdcae9b69d9050bca7b2f2b965207b303d3b174f82dae98
|
|
| MD5 |
b0ccec67e76404e8cc117c52c08917b6
|
|
| BLAKE2b-256 |
dfa7d989dde4f5007d69aeaf3a41faf2b868f0f3b9f834b7d557349068642635
|