-
Introducing sqlite-lembed: A SQLite extension for generating text embeddings locally | Alex Garcia's Blog
Notes
sqlite-lembed is a SQLite extension for generating text embeddings, meant to work alongside sqlite-vec. With a single embeddings model file provided in the .gguf format, you can generate embeddings using regular SQL functions, and store them directly inside your SQLite database. No extra server, process, or configuration needed!
Unfurl
-
KNN queries | sqlite-vec
Notes
The most common use-case for vectors in databases is for K-nearest-neighbors (KNN) queries. You'll have a table of vectors, and you'll want to find the K closest
Unfurl