langgraph/reference/checkpoints/ #564
Replies: 5 comments 8 replies
-
Love this doc and the concept of checkpointing -- when will support for more reliable persistence methods be added? ie. updates to langchain-postgres re: https://github.com/langchain-ai/langgraph/blob/main/examples/persistence_postgres.ipynb |
Beta Was this translation helpful? Give feedback.
-
@mathlover777 I have a LangServe API deployed on Koyeb but currently without LangGraph - just an AgentExecutor. Then in NextJS i am using RemoteRunnable pointed to mentioned backend. With RemoteRunnable you can use the same methods as on Runnable, e.g. streamEvents() |
Beta Was this translation helpful? Give feedback.
-
Hi, thanks for your great work User starts with an initial prompt and then agents will work one after another (plan -> tool_execution-> tool_execution_route) and for some reason it will break at |
Beta Was this translation helpful? Give feedback.
-
I there any way to limit the number of used checkpoints in a graph (e.g. only use the last 3) when using BaseCheckpointSaver / MemorySaver? Trying to follow the tutorials here but want to limit the used checkpoints in the memory: Example: tools = [basic, internal] agent = create_react_agent(llm.with_config( |
Beta Was this translation helpful? Give feedback.
-
I'm trying to use basic sync SqliteSaver by providing the connection object created by sqlite3 lib as argument to SqliteSaver class. It's throwing this error. |
Beta Was this translation helpful? Give feedback.
-
langgraph/reference/checkpoints/
Build language agents as graphs
https://langchain-ai.github.io/langgraph/reference/checkpoints/
Beta Was this translation helpful? Give feedback.
All reactions