From 3b64baf9ebf468e5f28f8eb2295ecba16a820f99 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Mon, 24 Nov 2025 10:44:12 +0300 Subject: Enha: migrations with different emb tables --- rag/rag.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'rag/rag.go') diff --git a/rag/rag.go b/rag/rag.go index 7fbbe98..f50a913 100644 --- a/rag/rag.go +++ b/rag/rag.go @@ -43,10 +43,7 @@ func New(l *slog.Logger, s storage.FullRepo, cfg *config.Config) *RAG { storage: NewVectorStorage(l, s), } - // Create the necessary tables - if err := rag.storage.CreateTables(); err != nil { - l.Error("failed to create vector tables", "error", err) - } + // Note: Vector tables are created via database migrations, not at runtime return rag } -- cgit v1.2.3