fix: use "thinking" instead of "codex reasoning" as the label for reasoning events in the TUI (#905)

This commit is contained in:
Michael Bolin
2025-05-12 15:19:45 -07:00
committed by GitHub
parent 115fb0b95d
commit 55142e3e6c

View File

@@ -139,7 +139,7 @@ impl HistoryCell {
pub(crate) fn new_agent_reasoning(text: String) -> Self {
let mut lines: Vec<Line<'static>> = 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(""));