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

This commit is contained in:
Michael Bolin
2025-05-12 15:14:11 -07:00
parent a1f51bf91b
commit d64cbbf167

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(""));