- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2024 11:57 PM
Hi,
I am trying to create a simple langgraph agent in Databricks, the agent also uses lanngraph memory checkpoint which enables to store the state of the graph. This is working fine when I am trying it in Databricks notebook, but when I tried to log this as Mlfow model, I couldn't find any documentation on where to pass the memory checkpoint
I want to know if there is way we can pass memory checkpoint when logging langgraph agent in Mlflow
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2024 11:32 AM
I saw that you can compile the model without checkpointer, register it in MLflow, and then, after loading, assign it after compilation.
```
import mlflow
```
It's not elegant or future-proof, but it might do the trick while we wait for a better solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2024 11:04 AM
Facing the same issue here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2024 11:32 AM
I saw that you can compile the model without checkpointer, register it in MLflow, and then, after loading, assign it after compilation.
```
import mlflow
```
It's not elegant or future-proof, but it might do the trick while we wait for a better solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2025 12:05 AM
@morenoj11 The solution which you have mentioned, Have you tried to deploy the same in Databricks model serving ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2025 12:25 PM
Hi all. I have the same issue, could you deploy the graph with the MemorySaver?

