fix(cli): keep thought summary when loading phrases are off#20497
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a regression that caused thought summaries to be unintentionally hidden when the Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request addresses a regression where disabling loading phrases also incorrectly hid the model's thought summaries. The changes in Composer.tsx correctly separate the logic for displaying thoughts from the loading phrases setting, ensuring thought summaries remain visible as intended. The fix is applied consistently to both instances of the LoadingIndicator. The test updates in Composer.test.tsx are also appropriate, confirming the corrected behavior.
|
Size Change: -96 B (0%) Total Size: 25.7 MB ℹ️ View Unchanged
|
…emini#20497) Co-authored-by: Jacob Richman <jacob314@gmail.com>
…emini#20497) Co-authored-by: Jacob Richman <jacob314@gmail.com>
…emini#20497) Co-authored-by: Jacob Richman <jacob314@gmail.com>
Co-authored-by: Jacob Richman <jacob314@gmail.com>

Summary
Fixes a regression where setting
ui.loadingPhrases=offalso hid model thought summaries in the loading row.Problem
Composersuppressedthoughtwhenever loading phrases were off, which incorrectly removed thinking summaries during normalRespondingstate.Changes
LoadingIndicatorcall sites inComposerto suppressthoughtonly forStreamingState.WaitingForConfirmation.currentLoadingPhrasesuppression forui.loadingPhrases=offunchanged.Composertest coverage to assert thought text remains visible when loading phrases are off.Validation
npm test -w @google/gemini-cli -- src/ui/components/Composer.test.tsx src/ui/components/LoadingIndicator.test.tsx src/ui/hooks/useGeminiStream.test.tsx src/ui/hooks/useLoadingIndicator.test.tsxnpm run lint --workspace=@google/gemini-clinpm run typecheck --workspace=@google/gemini-cliFixes #20496