diff options
| author | Grail Finder <wohilas@gmail.com> | 2026-03-08 11:38:56 +0300 |
|---|---|---|
| committer | Grail Finder <wohilas@gmail.com> | 2026-03-08 11:38:56 +0300 |
| commit | b6e802c12e37aeaf19bd449cf2877df5ae04d389 (patch) | |
| tree | a6b55eafa37099f07a5e55facfddb12c36f4a432 /rag/rag.go | |
| parent | c0d5db29a581b6a21f2d009189649d4e98ab55dc (diff) | |
Enha (rag): bigger default batch
Diffstat (limited to 'rag/rag.go')
| -rw-r--r-- | rag/rag.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, "\\", " ") |
