From 125b7ee2f6aee37231f9ae3ed5cc6e122f588385 Mon Sep 17 00:00:00 2001 From: balex Date: Thu, 19 Feb 2026 20:44:29 +0100 Subject: [PATCH] fix: enable Hibernate auto DDL for rag-service tables creation --- rag-service/src/main/resources/application.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/rag-service/src/main/resources/application.properties b/rag-service/src/main/resources/application.properties index 6a10acf..1d4a467 100644 --- a/rag-service/src/main/resources/application.properties +++ b/rag-service/src/main/resources/application.properties @@ -4,6 +4,7 @@ spring.application.name=rag-service spring.ai.openai.base-url=${SPRING_AI_OPENAI_BASE_URL:https://api.groq.com/openai/v1} spring.ai.openai.api-key=${SPRING_AI_OPENAI_API_KEY:} spring.ai.openai.chat.model=${SPRING_AI_OPENAI_CHAT_MODEL:llama-3.3-70b-versatile} +spring.jpa.hibernate.ddl-auto=update # --- Embedding model: local ONNX (Groq has no embedding API) --- spring.ai.openai.embedding.enabled=false