| commit | 4d54493fe3808ecd0c6a9a4d0bbcc7786e97b094 | [log] [tgz] |
|---|---|---|
| author | Josh Bleecher Snyder <josharian@gmail.com> | Wed May 07 13:33:53 2025 +0000 |
| committer | Autoformatter <bot@sketch.dev> | Thu May 08 19:25:30 2025 +0000 |
| tree | 9877409fc95aaa32aed882426ea15464b8036e34 | |
| parent | a4ad8af8b08a54326bbbd99d57110a42c459c54e [diff] [blame] |
all: support hiding subconvo output Some of it is systematically noisy.
diff --git a/termui/termui.go b/termui/termui.go index 1ffe655..7e4def9 100644 --- a/termui/termui.go +++ b/termui/termui.go
@@ -150,6 +150,9 @@ if resp == nil { return } + if resp.HideOutput { + continue + } // Typically a user message will start the thinking and a (top-level // conversation) end of turn will stop it. thinking := !(resp.EndOfTurn && resp.ParentConversationID == nil)