summaryrefslogtreecommitdiff
path: root/rag
diff options
context:
space:
mode:
Diffstat (limited to 'rag')
-rw-r--r--rag/rag.go2
1 files changed, 1 insertions, 1 deletions
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, "\\", " ")