vectordb-cli 1.3.2-stable

A CLI tool for semantic code search.
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() -> Result<()> {
    // ... setup ...

    // Load config using default path
    let mut config = config::load_config(None).context("Failed to load configuration")?;

    // ... rest of main ...

    // No top-level save needed here as commands save themselves
    // config::save_config(&config, None).context("Failed to save configuration")?

    Ok(())
}