Is it possible to use the sqlite as a vector database with this ? #91
-
I am new to go and sqlite, and I want to build a small project that uses LLMs, embeddings and so on. I would be very happy if I would not have to run a real vector db because that's an overkill for my use case. Can I use https://github.com/asg017/sqlite-vss and this library in combination ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not directly, sadly, since this library does not support dynamic loading C extensions. You might be able to use
Again, I'm not aware of an ability to do that directly right now. According to the sqlc docs, the codegen only supports |
Beta Was this translation helpful? Give feedback.
Not directly, sadly, since this library does not support dynamic loading C extensions. You might be able to use
modernc.org/ccgo/v4
to translate the extension into Go and then hook it up with the virtual table API.Again, I'm not aware of an ability to do that directly right now. According to the sqlc docs, the co…