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
10
//! Model-specific conversion logic.
//!
//! Per `project_model_class_split.md`: all arch-specific code lives here,
//! never in generic infrastructure (ir.rs, backends/, etc.).
//!
//! ADR-012: Qwen3.5-family conversion module (P2).
//! ADR-013: inference-side models live in src/inference/models/ — do NOT mix.

/// ADR-012 P10: pure-Rust mmproj vision-tower emitter.
pub mod vit;