hf2q 0.1.1

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
//! GGUF backend — seek-back writer for the convert-v2 pipeline.
//!
//! Post-ADR-033 P6: this subdir is the surviving GGUF writer surface.
//! The legacy two-pass `backends/gguf.rs` (and the `OutputBackend`
//! trait implementation it carried) was retired alongside the rest
//! of the legacy convert pipeline.

pub mod types;
pub mod writer;