ferrum-cli 0.8.3

CLI for Ferrum — a Rust-native LLM inference engine
Documentation
//! # Ferrum CLI Library
//!
//! Ollama-style command-line interface for the Ferrum LLM inference framework.
//!
//! ## Commands
//!
//! - `run`: Run a model and start interactive chat
//! - `serve`: Start the HTTP inference server
//! - `stop`: Stop the running server
//! - `pull`: Download a model from HuggingFace
//! - `list`: List downloaded models

pub mod commands;
pub mod config;
pub mod gpu_devices;
pub mod gpu_mem_autosize;
pub mod layer_split_pipeline;
pub mod memory_profile;
pub mod observability_product;
pub mod observability_vertical_slice;
pub mod runtime_env;
pub mod source_resolver;
pub mod utils;

// Re-exports
pub use config::CliConfig;