chroma / chromadb /migrations /metadb /00003-full-text-tokenize.sqlite.sql
badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
236 Bytes
CREATE VIRTUAL TABLE embedding_fulltext_search USING fts5(string_value, tokenize='trigram');
INSERT INTO embedding_fulltext_search (rowid, string_value) SELECT rowid, string_value FROM embedding_metadata;
DROP TABLE embedding_fulltext;