-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
langgraph: more checkpointer tests #1263
Conversation
}, | ||
"pending_sends": [], | ||
"current_tasks": {}, | ||
assert saved.checkpoint["channel_values"] == { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why does this need to change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i removed because of the different version types/formats across different checkpointers, but i can also make something like AnyVersion
that will just ignore those fields / customize memory saver for tests to return strings and use AnyStr
. wdyt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yea I think that's better
I think there's still a bunch of tests where we test a single checkpointer. The end goal here should be to remove the imports of MemorySaver and SqliteSaver from test_pregel and test_pregel_async |
No description provided.