Skip to content

Commit 55142e3

Browse files
authored
fix: use "thinking" instead of "codex reasoning" as the label for reasoning events in the TUI (#905)
1 parent 115fb0b commit 55142e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codex-rs/tui/src/history_cell.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ impl HistoryCell {
139139

140140
pub(crate) fn new_agent_reasoning(text: String) -> Self {
141141
let mut lines: Vec<Line<'static>> = Vec::new();
142-
lines.push(Line::from("codex reasoning".magenta().italic()));
142+
lines.push(Line::from("thinking".magenta().italic()));
143143
append_markdown(&text, &mut lines);
144144
lines.push(Line::from(""));
145145

0 commit comments

Comments
 (0)