-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: add weaviate adapter #8
Conversation
@pixelass Wouldn't it make sense to receive the credentials also via env-variables? Or is this something that we don't worry here, as this is something that the user has to implement if they want? EDIT: I updated the example to use env-variables. |
@pixelass added functionality to actually search by filter for You can also get objects by |
I updated the docs to improve some texts and removed a broken link. |
allow agents to have further arguments
Motivation
We want to be able to save data into a vector store. Using Weaviate is the logical choice, as it is open source, can run on own servers or via Weaviate Cloud Services. They also allow multiple ways to interact with the data and according to the docs, we can store millions of objects in Weaviate without a degradation in speed.
ToDo