Skip to content

Commit 0808038

Browse files
committed
adds tip for background loading and init timeout
1 parent af0235e commit 0808038

File tree

1 file changed

+2
-1
lines changed
  • crates/chat-cli/src/cli/chat

1 file changed

+2
-1
lines changed

crates/chat-cli/src/cli/chat/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ const SMALL_SCREEN_WECLOME_TEXT: &str = color_print::cstr! {"
210210
<em>Welcome to <cyan!>Amazon Q</cyan!>!</em>
211211
"};
212212

213-
const ROTATING_TIPS: [&str; 9] = [
213+
const ROTATING_TIPS: [&str; 10] = [
214214
color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run <green!>q settings chat.enableNotifications true</green!>"},
215215
color_print::cstr! {"You can use <green!>/editor</green!> to edit your prompt with a vim-like experience"},
216216
color_print::cstr! {"You can execute bash commands by typing <green!>!</green!> followed by the command"},
@@ -220,6 +220,7 @@ const ROTATING_TIPS: [&str; 9] = [
220220
color_print::cstr! {"<green!>/usage</green!> shows you a visual breakdown of your current context window usage"},
221221
color_print::cstr! {"If you want to file an issue to the Q CLI team, just tell me, or run <green!>q issue</green!>"},
222222
color_print::cstr! {"You can enable custom tools with <green!>MCP servers</green!>. Learn more with /help"},
223+
color_print::cstr! {"You can specify wait time (in ms) for mcp server loading with <green!>q settings mcp.initTimeout {timeout in int}</green!>. Servers that takes longer than the specified time will continue to load in the background. Use /tools to see pending servers."},
223224
];
224225

225226
const GREETING_BREAK_POINT: usize = 67;

0 commit comments

Comments
 (0)