-
Notifications
You must be signed in to change notification settings - Fork 226
fix: Store vectors as binary for FT index compatibility ValkeyStore #774
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
Conversation
style(valkey): Fix formatting and remove duplicate imports - Use double quotes consistently for f-strings - Remove duplicate asyncio and struct imports - Format multi-line function calls on single line per ruff
libs/langgraph-checkpoint-aws/tests/unit_tests/store/valkey/test_valkey_index_config_unit.py
Outdated
Show resolved
Hide resolved
libs/langgraph-checkpoint-aws/langgraph_checkpoint_aws/store/valkey/search_strategies.py
Outdated
Show resolved
Hide resolved
libs/langgraph-checkpoint-aws/langgraph_checkpoint_aws/store/valkey/search_strategies.py
Outdated
Show resolved
Hide resolved
libs/langgraph-checkpoint-aws/langgraph_checkpoint_aws/store/valkey/async_store.py
Outdated
Show resolved
Hide resolved
3coins
left a comment
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.
@seaofawareness
Thanks for making all the updates. Approving to move this forward as there are no API changes, but feel that the adapter approach is an overkill for handling combination of embeddings and store with async/sync methods in sync/async contexts. It is unusual for users to have these misconfigured, and a simpler approach would be preferred.
Store vectors as binary for FT index compatibility ValkeyStore