-
Notifications
You must be signed in to change notification settings - Fork 55
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
fastest way to create and store embeddings for data in a SQLite table #189
Comments
Is there a way to use transactions when inserting a lot of embeddings in a libSQL db? Right now I am using a pattern like so, and it is really slow (I have about a million documents for which I need to insert embeddings). I'd like to insert them in transactions of 5000 at a time
|
This issue is stale because it has been open for 14 days with no activity. |
This issue was closed because it has been inactive for 30 days since being marked as stale. |
This issue is stale because it has been open for 14 days with no activity. |
This issue was closed because it has been inactive for 30 days since being marked as stale. |
I have a SQLite table like so (simplified schema below) with ~950K rows
What is the quickest and easiest way to generate embeddings and store them in a
vectors
table? I am using Ollama with llama 3.2 running locally using thenomic-embed-text
embeddings model. I would like to do this once and then create a web interface to query the data. Additionally, as new rows get added to the tablet
, I would like toTRIGGER
embeddings for them as well. Is that possible? If yes, any hint would be very welcome.The text was updated successfully, but these errors were encountered: