I want to add support for embeddings to my open source LLM module (AIKit). This would make it easier for Xojo programmers to use RAG (retrieval augmented generation) with LLMs.
To do this, I need a database that supports vector searching. For maximum simplicity of use, it would be awesome if I could use SQLite.
From my research, it looks like SQLite doesn’t natively support vector search but there are many extensions to SQLite that do, for example:
Is there a way to enable third party extensions to SQLite?
3 posts - 3 participants