You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue: 'First party database integration' #134 talks about the desire too support the ability for users too implement their own database. I really like this project and would love too use and contribute too it. Being able (or seeing how) too substitute a different DB is what would help me tremendously.
Implement Suggestion
more use of documented traits for the document store vector store etc.
I was planning on using tantivy but maybe I can implement it somewhere here under an optional feature against a trait.
make Surrealdb more optional. (I currently chose against using it because it did not support binary storage)
other
Let me know if your planning on supporting something like this and how I would be able too help on implementation/documentation.
The text was updated successfully, but these errors were encountered:
A guide in the docs or tantivy integration for full text search would both be great additions. You can use VectorDB to do vector search on top of your database. First you need to get an embedding for your text. You can do that with Bert::embed. Every vector you insert into the vector index with add_embedding gets a unique id. You need to provide a mapping between that id and the doc id in your database then you can do vector search with get_closest, get the doc id with your mapping and use that doc id to get the final document
Specific
DemandrequestIssue: 'First party database integration' #134 talks about the desire too support the ability for users too implement their own database. I really like this project and would love too use and contribute too it. Being able (or seeing how) too substitute a different DB is what would help me tremendously.
Implement Suggestion
other
Let me know if your planning on supporting something like this and how I would be able too help on implementation/documentation.
The text was updated successfully, but these errors were encountered: