MCPcopy Create free account
hub / github.com/LightInn/deepsearch / Cli

Class Cli

src/cli.rs:6–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#[derive(Parser, Debug)]
5#[command(author, version, about, long_about = None)]
6pub struct Cli {
7 /// The main question/topic to research
8 pub question: Option<String>,
9
10 /// Maximum number of iterations
11 #[arg(short = 'i', long, default_value_t = 3)]
12 pub max_iterations: u8,
13
14 /// Enable verbose output
15 #[arg(short, long, default_value_t = false)]
16 pub verbose: bool,
17}
18

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected