Conversation
…d update related logic for rendering messages
…ailing "thinking..." indicator in the chat component
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 602797a374
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| const streamIsInGraph = | ||
| isLatestOpenRun && streamingReplyText == null && hasAnyStreamContent; | ||
| const suppressThinking = streamIsInGraph; |
There was a problem hiding this comment.
Keep trailing thinking visible when stream has no live step
streamIsInGraph is derived from hasAnyStreamContent, which is true even when streamingTools only contains completed entries. After a tool_result final event, streamingMessage is cleared but completed tool statuses are retained, so this condition suppresses the trailing "Thinking..." row while the run is still active (sending/pendingFinal). In that gap there is no live in-graph step, so hiding the indicator regresses liveness feedback and makes the execution graph look idle mid-run.
Useful? React with 👍 / 👎.
… dedupe (ValueCell-ai#821 ValueCell-ai#845 ValueCell-ai#870 ValueCell-ai#873 ValueCell-ai#875 ValueCell-ai#878 ValueCell-ai#880 ValueCell-ai#885 ValueCell-ai#886 ValueCell-ai#887 ValueCell-ai#891 ValueCell-ai#903) Overhaul execution graph card (collapse/expand, narration steps, web_fetch links), separate thinking messages, render LaTeX math, dedupe optimistic messages, hide recoverable gateway timeouts, add startup history recovery.
refactor(chat): remove thinking section from ChatMessage component an…
feat(chat): add suppressThinking flag to control visibility of the tr…
Type of Change
Validation
Checklist