ruvllm-cli 2.2.0

CLI for RuvLLM model management and inference on Apple Silicon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! CLI command implementations for RuvLLM
//!
//! This module contains all the subcommand implementations:
//! - `download` - Download models from HuggingFace Hub
//! - `list` - List available and downloaded models
//! - `info` - Show detailed model information
//! - `serve` - Start an OpenAI-compatible inference server
//! - `chat` - Interactive chat mode
//! - `benchmark` - Run performance benchmarks
//! - `quantize` - Quantize models to GGUF format

pub mod benchmark;
pub mod chat;
pub mod download;
pub mod info;
pub mod list;
pub mod quantize;
pub mod serve;