rag_template / db /init /02_indexes.sql
Guilherme Favaron
Initial commit of local project
f5eb34f
CREATE INDEX IF NOT EXISTS idx_documents_embedding_cosine
ON documents USING ivfflat (embedding vector_cosine_ops)
WITH (lists = 100);
ANALYZE documents;