We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 456398d commit bbe59ebCopy full SHA for bbe59eb
crates/q_cli/src/cli/mod.rs
@@ -353,11 +353,10 @@ impl Cli {
353
CliRootCommands::Version { changelog } => Self::print_version(changelog),
354
CliRootCommands::Dashboard => launch_dashboard(false).await,
355
CliRootCommands::Chat { args } => Self::execute_chat("chat", Some(args), true).await,
356
- CliRootCommands::Mcp {args } => {
+ CliRootCommands::Mcp { args } => {
357
if args.iter().any(|arg| ["--help", "-h"].contains(&arg.as_str())) {
358
return Self::execute_chat("mcp", Some(vec!["--help".to_owned()]), false).await;
359
}
360
-
361
Self::execute_chat("mcp", Some(args), true).await
362
},
363
CliRootCommands::Inline(subcommand) => subcommand.execute(&cli_context).await,
0 commit comments