rlx-llama32 0.2.1

LLaMA 3.2 for RLX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use rlx_llama32::cli;
use std::process::ExitCode;

fn main() -> ExitCode {
    let args: Vec<String> = std::env::args().skip(1).collect();
    match cli::run(&args) {
        Ok(()) => ExitCode::SUCCESS,
        Err(e) => {
            eprintln!("rlx-llama32: {e:#}");
            ExitCode::FAILURE
        }
    }
}