-
Notifications
You must be signed in to change notification settings - Fork 15.8k
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
Added SingleStoreDB Vector Store #5619
Added SingleStoreDB Vector Store #5619
Conversation
@leo-gan, @hwchase17, could you please check it again? Thank you! |
@@ -347,6 +358,11 @@ class VectorStoreRetriever(BaseRetriever, BaseModel): | |||
vectorstore: VectorStore | |||
search_type: str = "similarity" | |||
search_kwargs: dict = Field(default_factory=dict) | |||
allowed_search_types: ClassVar[Collection[str]] = ( |
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.
id prefer not to do this in this pr - if we do this, should be a separate pr
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.
actually i think probably fine
- Added `SingleStoreDB` vector store, which is a wrapper over the SingleStore DB database, that can be used as a vector storage and has an efficient similarity search. - Added integration tests for the vector store - Added jupyter notebook with the example @dev2049 --------- Co-authored-by: Volodymyr Tkachuk <vtkachuk-ua@singlestore.com> Co-authored-by: Dev 2049 <dev.dev2049@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
SingleStoreDB
vector store, which is a wrapper over the SingleStore DB database, that can be used as a vector storage and has an efficient similarity search.@dev2049