From 12d29c277942b75285347b7a214895f9177aeec0 Mon Sep 17 00:00:00 2001 From: ae Date: Thu, 7 Aug 2025 04:10:13 -0700 Subject: [PATCH] feat: add tip to upgrade to ChatGPT plan (#1938) --- codex-rs/tui/src/history_cell.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codex-rs/tui/src/history_cell.rs b/codex-rs/tui/src/history_cell.rs index 5d2ea35c..61ab01e9 100644 --- a/codex-rs/tui/src/history_cell.rs +++ b/codex-rs/tui/src/history_cell.rs @@ -543,7 +543,9 @@ impl HistoryCell { match auth.openai_api_key.as_deref() { Some(key) if !key.is_empty() => { - lines.push(Line::from(" • Using API key")); + lines.push(Line::from( + " • Using API key. Run codex login to use ChatGPT plan", + )); } _ => { let plan_text = info