-
Notifications
You must be signed in to change notification settings - Fork 5.4k
restyle thinking outputs #3755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
restyle thinking outputs #3755
Conversation
nornagon-openai
commented
Sep 16, 2025

codex-rs/tui/src/history_cell.rs
Outdated
let lines = cells[1].display_lines(80); | ||
assert_eq!( | ||
lines, | ||
vec![vec!["> ".into(), "Detailed reasoning goes here.".dim().italic()].into()] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we could use a different character to ">" here to create separation between thinking and assistant message? Perhaps a bullet like the other tools or an empty bullet i.e. "○"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
switched to •.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aside from comment stylistically looks much better. might be worth checking with others on rust implementation though in case changes are complex
) | ||
} | ||
|
||
fn transcript_lines(&self) -> Vec<Line<'static>> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we want to push header in transcript?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i left it off because we don't show it in the main view... let's try it without and see how we feel.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we show them in bottom panel (e.g. header/shimmer).