From 10484c16330a297b8127405212dae45dabfb1708 Mon Sep 17 00:00:00 2001 From: Nick Savage Date: Thu, 21 Nov 2024 22:14:57 -0500 Subject: [PATCH] remove failing code --- go-backend/llms/chunking.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-backend/llms/chunking.go b/go-backend/llms/chunking.go index e357eff..9560d73 100644 --- a/go-backend/llms/chunking.go +++ b/go-backend/llms/chunking.go @@ -31,7 +31,7 @@ func GenerateChunks(input string) []string { if sentence == "" || strings.TrimSpace(sentence) == "" { continue } - current += sentence + ". " + current += sentence if len(current) >= 300 { results = append(results, current+".") current = ""