From eabdc604e4aef6244e77f2b13d2b5f234a24bd81 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Sun, 12 May 2024 15:02:21 -0400 Subject: fixes #1, fixes #2, this should take care of it --- main.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'main.go') diff --git a/main.go b/main.go index 0ee63e0..a3fd8e9 100644 --- a/main.go +++ b/main.go @@ -13,6 +13,7 @@ import ( "net/url" "os" "reflect" + "regexp" "strconv" "strings" "time" @@ -120,9 +121,38 @@ func returnGeminiResponse(resp *genai.GenerateContentResponse) string { return result } +func extractLast256ColorEscapeCode(str string) (string, error) { + pattern := `\033\[38;5;(\d+)m` + + r, err := regexp.Compile(pattern) + if err != nil { + return "", fmt.Errorf("failed to compile regular expression: %v", err) + } + + matches := r.FindAllStringSubmatch(str, -1) + if len(matches) == 0 { + return "", nil // No 256-color escape codes found + } + + lastMatch := matches[len(matches)-1] + + return lastMatch[1], nil +} + func chunker(inputString string) []string { chunks := strings.Split(inputString, "\n") + for count, chunk := range chunks { + lastColorCode, err := extractLast256ColorEscapeCode(chunk) + if err != nil { + continue + } + + if count <= len(chunks)-2 { + chunks[count+1] = fmt.Sprintf("\033[38;5;%sm", lastColorCode) + chunks[count+1] + } + } + return chunks } -- cgit v1.2.3