diff options
| author | Castor Gemini <[email protected]> | 2025-08-22 10:13:55 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-22 10:13:55 -0500 |
| commit | 3f6a7961816aeb00b5cb5eb6b6ef61d69c2b1568 (patch) | |
| tree | 2e7031ea38bfd9041b6d1a7a294d66fbd0d922e1 | |
| parent | 48ba121435b816c61b2740535fb75193934e2a6b (diff) | |
fix(gemini): set author to GEMINI in doOutput
| -rw-r--r-- | doOutput.go | 2 |
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) |
