From b6e802c12e37aeaf19bd449cf2877df5ae04d389 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sun, 8 Mar 2026 11:38:56 +0300 Subject: Enha (rag): bigger default batch --- rag/rag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rag/rag.go') diff --git a/rag/rag.go b/rag/rag.go index e47e3d6..ef85e7f 100644 --- a/rag/rag.go +++ b/rag/rag.go @@ -156,7 +156,7 @@ func createChunks(sentences []string, wordLimit, overlapWords uint32) []string { func sanitizeFTSQuery(query string) string { // Remove double quotes and other problematic characters for FTS5 - query = strings.ReplaceAll(query, "\"", " ") + // query = strings.ReplaceAll(query, "\"", " ") query = strings.ReplaceAll(query, "'", " ") query = strings.ReplaceAll(query, ";", " ") query = strings.ReplaceAll(query, "\\", " ") -- cgit v1.2.3