summaryrefslogtreecommitdiff
path: root/doOutput.go
diff options
context:
space:
mode:
authorCastor Gemini <[email protected]>2025-08-24 01:21:01 -0500
committerJeff Carr <[email protected]>2025-08-24 01:21:01 -0500
commit357c20027fda714af0e08b3f9ddf89edfeb6ef39 (patch)
tree8e69ca6ecc1a4e7b7c87ee4e5fbd2bd25f80b639 /doOutput.go
parent0a28d985b88866d131e3c6e2ce025edb99c1258c (diff)
Refactor: Rename gemini to regex throughout the codebase
Diffstat (limited to 'doOutput.go')
-rw-r--r--doOutput.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doOutput.go b/doOutput.go
index 0e193c2..1ff81fd 100644
--- a/doOutput.go
+++ b/doOutput.go
@@ -10,7 +10,7 @@ import (
)
func doOutput(s string) {
- filename := "/tmp/gemini-output.log"
+ filename := "/tmp/regex-output.log"
f, err := os.OpenFile(filename, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
log.Println(err)
@@ -42,7 +42,7 @@ func doOutput(s string) {
// If the "auto" chat is found, add the new entry.
if autoChat != nil {
newEntry := &chatpb.ChatEntry{
- From: chatpb.Who_GEMINI,
+ From: chatpb.Who_REGEX,
Content: s,
Ctime: timestamppb.New(time.Now()),
}