model-rs 0.1.1

A Rust CLI tool for downloading HuggingFace models and running local LLM inference
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Same entry point as the `model-rs` binary: parses CLI args and runs [`model_rs::run`].
//!
//! Run from the repository root:
//! ```text
//! cargo run --example library_run_cli -- --help
//! ```

use model_rs::Result;

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