hf2q 0.1.10

Pure Rust CLI for converting HuggingFace models to hardware-optimized formats and serving them over an OpenAI-compatible API on Apple Silicon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Reachable installation ownership, update, and uninstall behavior.

pub(crate) mod commands;
pub(crate) mod installation;
pub(crate) mod purge;
pub(crate) mod standalone;

#[cfg(test)]
#[path = "installation_tests.rs"]
mod installation_tests;

#[cfg(test)]
#[path = "purge_tests.rs"]
mod purge_tests;