From af2684664725f3e5da79d1d53e714b48e430e6fb Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sat, 27 Dec 2025 11:10:03 +0300 Subject: Enha: summary agent --- tui.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tui.go') diff --git a/tui.go b/tui.go index e6be85b..31e0f25 100644 --- a/tui.go +++ b/tui.go @@ -831,7 +831,7 @@ func init() { // there is no case where user msg is regenerated // lastRole := chatBody.Messages[len(chatBody.Messages)-1].Role textView.SetText(chatToText(cfg.ShowSys)) - go chatRound("", cfg.UserRole, textView, true, false, false) + go chatRound("", cfg.UserRole, textView, true, false) return nil } if event.Key() == tcell.KeyF3 && !botRespMode { @@ -1134,7 +1134,7 @@ func init() { // INFO: continue bot/text message // without new role lastRole := chatBody.Messages[len(chatBody.Messages)-1].Role - go chatRound("", lastRole, textView, false, true, false) + go chatRound("", lastRole, textView, false, true) return nil } if event.Key() == tcell.KeyCtrlQ { @@ -1294,7 +1294,7 @@ func init() { textView.ScrollToEnd() colorText() } - go chatRound(msgText, persona, textView, false, false, false) + go chatRound(msgText, persona, textView, false, false) // Also clear any image attachment after sending the message go func() { // Wait a short moment for the message to be processed, then clear the image attachment -- cgit v1.2.3