model-rs 0.1.0

A Rust CLI tool for downloading HuggingFace models and running local LLM inference
1
2
3
4
5
6
use model_rs::Result;

#[tokio::main]
async fn main() -> Result<()> {
    model_rs::run().await
}