-
Notifications
You must be signed in to change notification settings - Fork 15.4k
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
Add self query translator for weaviate vectorstore #4804
Conversation
amazing! if you have time it'd be great to add an example notebook (like the ones for chroma and pinecone). if not i can take a stab later today |
no problem I'll put together an example based on the same content as the others |
Done. Largely copied from the Chroma example but has been tested with weaviate. |
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.
largely lgtm!
@@ -0,0 +1,60 @@ | |||
"""Logic for converting internal query language to a valid Chroma query.""" |
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.
nit: docstring
Add self query translator for weaviate vectorstore
Adds support for the EQ comparator and the AND/OR operators.
@dev2049