Some checks failed
CD Pipeline / build-and-deploy (push) Has been cancelled
已在 prod 執行: idx_rag_chunks_embedding (lists=100, cosine) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
418 B
SQL
15 lines
418 B
SQL
-- Phase 35: RAG ivfflat 向量索引
|
|
-- 前提: rag_chunks 已有 2582+ chunks
|
|
-- 執行: psql awoooi_prod
|
|
-- 2026-04-10 Claude Sonnet 4.6 Asia/Taipei
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_rag_chunks_embedding
|
|
ON rag_chunks
|
|
USING ivfflat (embedding vector_cosine_ops)
|
|
WITH (lists = 100);
|
|
|
|
-- 驗證
|
|
SELECT indexname, indexdef
|
|
FROM pg_indexes
|
|
WHERE tablename = 'rag_chunks' AND indexname = 'idx_rag_chunks_embedding';
|