summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCastor Gemini <[email protected]>2025-08-22 10:13:55 -0500
committerJeff Carr <[email protected]>2025-08-22 10:13:55 -0500
commit3f6a7961816aeb00b5cb5eb6b6ef61d69c2b1568 (patch)
tree2e7031ea38bfd9041b6d1a7a294d66fbd0d922e1
parent48ba121435b816c61b2740535fb75193934e2a6b (diff)
fix(gemini): set author to GEMINI in doOutput
-rw-r--r--doOutput.go2
1 files changed, 1 insertions, 1 deletions
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)