You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constSMALL_SCREEN_WELCOME_TEXT:&str = color_print::cstr! {"<em>Welcome to <cyan!>Amazon Q</cyan!>!</em>"};
406
406
constRESUME_TEXT:&str = color_print::cstr! {"<em>Picking up where we left off...</em>"};
407
407
408
-
constROTATING_TIPS:[&str;15] = [
409
-
color_print::cstr! {"You can resume the last conversation from your current directory by launching with <green!>q chat --resume</green!>"},
410
-
color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run <green!>q settings chat.enableNotifications true</green!>"},
411
-
color_print::cstr! {"You can use <green!>/editor</green!> to edit your prompt with a vim-like experience"},
412
-
color_print::cstr! {"<green!>/usage</green!> shows you a visual breakdown of your current context window usage"},
413
-
color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run <green!>q settings chat.enableNotifications true</green!>"},
414
-
color_print::cstr! {"You can execute bash commands by typing <green!>!</green!> followed by the command"},
415
-
color_print::cstr! {"Q can use tools without asking for confirmation every time. Give <green!>/tools trust</green!> a try"},
416
-
color_print::cstr! {"You can programmatically inject context to your prompts by using hooks. Check out <green!>/context hooks help</green!>"},
417
-
color_print::cstr! {"You can use <green!>/compact</green!> to replace the conversation history with its summary to free up the context space"},
418
-
color_print::cstr! {"If you want to file an issue to the Q CLI team, just tell me, or run <green!>q issue</green!>"},
419
-
color_print::cstr! {"You can enable custom tools with <green!>MCP servers</green!>. Learn more with /help"},
420
-
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."},
421
-
color_print::cstr! {"You can see the server load status as well as any warnings or errors associated with <green!>/mcp</green!>"},
422
-
color_print::cstr! {"Use <green!>/model</green!> to select the model to use for this conversation"},
408
+
// Only show the model-related tip for now to make users aware of this feature.
409
+
constROTATING_TIPS:[&str;1] = [
410
+
// color_print::cstr! {"You can resume the last conversation from your current directory by launching with
0 commit comments