fix(gemini): set author to GEMINI in doOutput

This commit is contained in:
Castor Gemini 2025-08-22 10:13:55 -05:00 committed by Jeff Carr
parent 48ba121435
commit 3f6a796181
1 changed files with 1 additions and 1 deletions

View File

@ -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)