From 243cfe5227adb2407069eaa7b58a9557b1cc8079 Mon Sep 17 00:00:00 2001 From: Hunter Bown Date: Sun, 24 May 2026 03:44:45 -0500 Subject: [PATCH] fix(tui): reference codewhale doctor in SSE timeout error message --- crates/tui/src/client/chat.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/tui/src/client/chat.rs b/crates/tui/src/client/chat.rs index 52ded3b6..1b691110 100644 --- a/crates/tui/src/client/chat.rs +++ b/crates/tui/src/client/chat.rs @@ -120,8 +120,8 @@ impl DeepSeekClient { Err(_elapsed) => { anyhow::bail!( "SSE stream request did not receive response headers after {}s. \ - `deepseek doctor` can still pass when non-streaming requests work; \ - on Windows or proxy networks, try `DEEPSEEK_FORCE_HTTP1=1` and rerun `deepseek`.", + `codewhale doctor` can still pass when non-streaming requests work; \ + on Windows or proxy networks, try `DEEPSEEK_FORCE_HTTP1=1` and rerun `codewhale`.", open_timeout.as_secs() ); }