ruthril 0.1.2

A powerful AI/ML framework is under development
Documentation
use clap::{Parser, Subcommand};

#[derive(Parser)]
#[command(name = "ruthril")]
#[command(about = "CLI for creating and managing AI projects with Ruthril", long_about = None)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Commands,
}

#[derive(Subcommand)]
pub enum Commands {
    /// Creates a new project
    NewProject {
        /// Project name
        name: String,
    }/* ,
    /// Creates a new model within the project
    NewModel {
        /// Model name
        name: String,
    },
    /// Trains a model
    Train {
        /// Name of the model to train
        model: String,
    },
    /// Builds an application binary
    Build {
        /// Name of the model/app to compile
        model: String,
    },
    /// Executes a prediction
    Predict {
        /// Model to use
        #[arg(long)]
        model: String,
        /// Data to send
        #[arg(long)]
        data: String,
    },*/
}