From 55142e3e6caddd1e613b71bcb89385ce5cc708bf Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Mon, 12 May 2025 15:19:45 -0700 Subject: [PATCH] fix: use "thinking" instead of "codex reasoning" as the label for reasoning events in the TUI (#905) --- codex-rs/tui/src/history_cell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/tui/src/history_cell.rs b/codex-rs/tui/src/history_cell.rs index c3003b2ba..4f4259aaa 100644 --- a/codex-rs/tui/src/history_cell.rs +++ b/codex-rs/tui/src/history_cell.rs @@ -139,7 +139,7 @@ impl HistoryCell { pub(crate) fn new_agent_reasoning(text: String) -> Self { let mut lines: Vec> = Vec::new(); - lines.push(Line::from("codex reasoning".magenta().italic())); + lines.push(Line::from("thinking".magenta().italic())); append_markdown(&text, &mut lines); lines.push(Line::from(""));