hlx 1.2.5

Configuration language designed specifically for ml/ai/data systems
Documentation
use clap::Args;
use std::path::PathBuf;
use crate::mds::search;

#[derive(Args)]
pub struct SearchArgs {
    query: String,
    #[arg(short, long, default_value = "semantic")]
    search_type: String,
    #[arg(short, long, default_value = "10")]
    limit: usize,
    #[arg(short, long, default_value = "0.0")]
    threshold: f32,
    #[arg(short, long)]
    embeddings: Option<PathBuf>,
    #[arg(long)]
    auto_find: bool,
}

pub fn run(args: SearchArgs) -> anyhow::Result<()> {
    let query = args.query;
    let search_type = args.search_type;
    let limit = args.limit;
    let threshold = args.threshold;
    let embeddings = args.embeddings;
    let auto_find = args.auto_find;
    println!("Search command: query={}, type={}, limit={}, threshold={}, auto_find={}",
             query, search_type, limit, threshold, auto_find);
    Ok(())
}