From 3f6a7961816aeb00b5cb5eb6b6ef61d69c2b1568 Mon Sep 17 00:00:00 2001 From: Castor Gemini Date: Fri, 22 Aug 2025 10:13:55 -0500 Subject: [PATCH] fix(gemini): set author to GEMINI in doOutput --- doOutput.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doOutput.go b/doOutput.go index 9bd5169..b175999 100644 --- a/doOutput.go +++ b/doOutput.go @@ -40,7 +40,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, // Or USER, depending on context + From: chatpb.Who_GEMINI, Content: s, } autoChat.Entries = append(autoChat.Entries, newEntry)