feat: increase max dialog rounds, web search summary, and bug fixes#583
Merged
limityan merged 4 commits intoGCWing:mainfrom Apr 29, 2026
Merged
feat: increase max dialog rounds, web search summary, and bug fixes#583limityan merged 4 commits intoGCWing:mainfrom
limityan merged 4 commits intoGCWing:mainfrom
Conversation
- Add summary rendering in WebSearchCard when results are empty - Add i18n keys for summary availability in en-US, zh-CN, zh-TW - Refactor expandable logic to include summary-only state
- Increase default max_rounds from 50 to 200 in ExecutionEngineConfig - Add max_rounds field to AIConfig (user-configurable) - Read max_rounds from config in all execution entry points (desktop, server, core system) - Frontend: add 'Continue' button when max_rounds is reached - Add continueDialogTurn to FlowChatManager - Update i18n strings for en-US, zh-CN, zh-TW Generated with BitFun Co-Authored-By: BitFun
When model passes args like '-- file1 file2' (no leading space before --), the previous parser failed to find ' -- ' separator and treated all file paths as a single commit ref, causing 'unknown revision' error. Add an explicit branch to handle this case by detecting '-- ' prefix directly.
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.
Summary
This PR includes 4 commits that add new features and fix several bugs across the agent runtime, web search UI, and frontend styling.
Changes
Features
Increase max dialog rounds to 200 with soft limit continuation
max_roundsfrom 50 to 200 inExecutionEngineConfigmax_roundsfield toAIConfig(user-configurable)max_roundsfrom config in all execution entry points (desktop, server, core system)continueDialogTurntoFlowChatManagerWeb search: support displaying summary when no search results
WebSearchCardwhen results are emptyBug Fixes
Handle git diff args starting with
--separator-- file1 file2(no leading space before--), the previous parser failed to find the--separator and treated all file paths as a single commit ref, causing "unknown revision" error--prefix directlyFix inline-code color overriding link color in light theme
<code>elements no longer override link colors in light themeFiles Changed (27 files, +277 / -43)
execution_engine.rs,system.rs,git_tool.rs,config/types.rsdesktop/src/lib.rs,server/src/bootstrap.rsWebSearchCard.tsx,ModernFlowChatContainer.tsx,VirtualItemRenderer.tsx,FlowChatManager.ts,SessionConfig.tsxMarkdown.scss,FlowTextBlock.scss,VirtualItemRenderer.scss,ModelThinkingDisplay.scssen-US,zh-CN,zh-TWlocale files for errors, flow-chat, and session-config