From b217182998253de32df632a4868a4ae18bf68a33 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Thu, 21 May 2026 21:46:57 -0400 Subject: [PATCH] Update rate limit spend cap copy --- codex-rs/tui/src/chatwidget/turn_runtime.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/codex-rs/tui/src/chatwidget/turn_runtime.rs b/codex-rs/tui/src/chatwidget/turn_runtime.rs index 9f7503fad7..f13c979100 100644 --- a/codex-rs/tui/src/chatwidget/turn_runtime.rs +++ b/codex-rs/tui/src/chatwidget/turn_runtime.rs @@ -389,7 +389,7 @@ impl ChatWidget { } Some(RateLimitReachedType::WorkspaceOwnerUsageLimitReached) => { self.on_error( - "Usage limit reached. You've reached your usage limit. Increase your limits to continue using codex." + "You have hit your spend cap in your workspace. Increase your spend cap to continue." .to_string(), ); } @@ -399,7 +399,8 @@ impl ChatWidget { } Some(RateLimitReachedType::WorkspaceMemberUsageLimitReached) => { self.on_error( - "Request a limit increase from your owner to continue using codex.".to_string(), + "You have hit your spend cap in your workspace. Ask an owner to increase your spend cap to continue." + .to_string(), ); self.open_workspace_owner_nudge_prompt(AddCreditsNudgeCreditType::UsageLimit); }