From 6908f7530a98710cc93d3e94047cc3b207750db1 Mon Sep 17 00:00:00 2001 From: kasun Date: Tue, 30 Jun 2026 22:27:55 +0200 Subject: [PATCH] changed id type of vector store from uuid to text to make use of deterministic ids --- backend/src/main/resources/application.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/main/resources/application.yaml b/backend/src/main/resources/application.yaml index 5053f2a..6366950 100644 --- a/backend/src/main/resources/application.yaml +++ b/backend/src/main/resources/application.yaml @@ -23,6 +23,7 @@ spring: model: gpt-4o-mini vectorstore: pgvector: + id-type: text dimensions: 1536 distance-type: COSINE_DISTANCE index-type: HNSW