feat(gui): option to hide/collapse live thinking steps while running (#611) - #640
Open
cagdasyurekli wants to merge 1 commit into
Open
feat(gui): option to hide/collapse live thinking steps while running (#611)#640cagdasyurekli wants to merge 1 commit into
cagdasyurekli wants to merge 1 commit into
Conversation
…ndrewyng#611) - Add hide_live_thinking preference in SessionManager and REST endpoint POST /v1/settings/hide-live-thinking - Expose setHideLiveThinking and hide_live_thinking in GUI API - Add LiveThinkingCard toggle switch in SettingsView under General tab - Update ThinkingBlock in Transcript to support hidden mode with quiet indicator and inline show/hide buttons - Wire hideLiveThinking preference in App.tsx to suppress streaming reasoning trace while running - Preserve complete reasoning trace on finished turns - Add automated unit tests for manager preference and REST endpoint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #611
Summary
This PR adds the option to hide/collapse live thinking (reasoning) steps while a task is running as requested in #611:
hide_live_thinkingsetting toSessionManagerand endpointPOST /v1/settings/hide-live-thinking, persisted across application restarts.LiveThinkingCardwith a toggle switch under Settings ▸ General ("Hide live thinking steps while a task is running").tests/test_hide_live_thinking.pycovering default state, preference updating, persistence across session managers, and REST endpoints.