vault backup: 2026-02-26 21:10:47
This commit is contained in:
@@ -5,7 +5,7 @@ CREATE TABLE IF NOT EXISTS memory_primary (
|
||||
source TEXT NOT NULL,
|
||||
content TEXT NOT NULL,
|
||||
content_hash TEXT NOT NULL,
|
||||
embedding VECTOR(1536) NOT NULL,
|
||||
embedding VECTOR(4096) NOT NULL,
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
||||
);
|
||||
|
||||
@@ -17,4 +17,4 @@ CREATE TABLE IF NOT EXISTS memory_secure_audit (
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS memory_primary_embedding_idx
|
||||
ON memory_primary USING ivfflat (embedding vector_cosine_ops) WITH (lists = 100);
|
||||
ON memory_primary USING hnsw (embedding vector_cosine_ops);
|
||||
|
||||
Reference in New Issue
Block a user