Skip to content

Commit aba4c47

Browse files
committed
bb
1 parent 8051420 commit aba4c47

File tree

1 file changed

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

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ const WELCOME_TEXT: &str = color_print::cstr! {"<cyan!>
419419
const SMALL_SCREEN_WELCOME_TEXT: &str = color_print::cstr! {"<em>Welcome to <cyan!>Amazon Q</cyan!>!</em>"};
420420
const RESUME_TEXT: &str = color_print::cstr! {"<em>Picking up where we left off...</em>"};
421421

422-
const ROTATING_TIPS: [&str; 14] = [
422+
const ROTATING_TIPS: [&str; 15] = [
423423
color_print::cstr! {"You can resume the last conversation from your current directory by launching with <green!>q chat --resume</green!>"},
424424
color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run <green!>q settings chat.enableNotifications true</green!>"},
425425
color_print::cstr! {"You can use <green!>/editor</green!> to edit your prompt with a vim-like experience"},
@@ -433,7 +433,8 @@ const ROTATING_TIPS: [&str; 14] = [
433433
color_print::cstr! {"You can enable custom tools with <green!>MCP servers</green!>. Learn more with /help"},
434434
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."},
435435
color_print::cstr! {"You can see the server load status as well as any warnings or errors associated with <green!>/mcp</green!>"},
436-
color_print::cstr! {"Customize your current chat session by choosing a model with <green!>/model</green!>"},
436+
color_print::cstr! {"Use <green!>/model</green!> to select the model to use for this conversation"},
437+
color_print::cstr! {"Set a default model by running <green!>q settings chat.defaultModel MODEL</green!>"},
437438
];
438439

439440
pub const MODEL_OPTIONS: [(&str, &str); 3] = [

0 commit comments

Comments
 (0)