use async_trait::async_trait;
use clap::Command;
use std::collections::HashMap;
use liboxen::error::OxenError;
use crate::cmd::RunCmd;
pub const NAME: &str = "embeddings";
pub mod index;
pub use index::EmbeddingsIndexCmd;
pub mod query;
pub use query::EmbeddingsQueryCmd;
pub struct EmbeddingsCmd;
#[async_trait]
impl RunCmd for EmbeddingsCmd {
fn name(&self) -> &str {
NAME
}
fn args(&self) -> Command {
let mut command = Command::new(NAME).about("Index and query embeddings from a data frame.");
let sub_commands = self.get_subcommands();
for cmd in sub_commands.values() {
command = command.subcommand(cmd.args());
}
command
}
async fn run(&self, args: &clap::ArgMatches) -> Result<(), OxenError> {
let sub_commands = self.get_subcommands();
if let Some((name, sub_matches)) = args.subcommand() {
let Some(cmd) = sub_commands.get(name) else {
return Err(OxenError::unknown_subcommand("embeddings", name));
};
tokio::task::block_in_place(|| {
tokio::runtime::Handle::current().block_on(cmd.run(sub_matches))
})?;
}
Ok(())
}
}
impl EmbeddingsCmd {
fn get_subcommands(&self) -> HashMap<String, Box<dyn RunCmd>> {
let commands: Vec<Box<dyn RunCmd>> =
vec![Box::new(EmbeddingsIndexCmd), Box::new(EmbeddingsQueryCmd)];
let mut runners: HashMap<String, Box<dyn RunCmd>> = HashMap::new();
for cmd in commands {
runners.insert(cmd.name().to_string(), cmd);
}
runners
}
}