Search, chat and research over parliamentary speeches and documents
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
ALTER TABLE talks ADD COLUMN IF NOT EXISTS summary_embedding vector(384); |
|
|
|
CREATE INDEX IF NOT EXISTS talks_summary_embedding_idx |
|
ON talks USING hnsw (summary_embedding vector_cosine_ops) |
|
WITH (m = 16, ef_construction = 64);
|
|
|