entrenar/hf_pipeline/fetcher/mod.rs
1//! HuggingFace Model Fetcher
2//!
3//! Downloads models from HuggingFace Hub with authentication and caching.
4
5mod hf_fetcher;
6mod options;
7mod types;
8
9#[cfg(test)]
10#[path = "tests/mod.rs"]
11mod tests;
12
13// Re-export all public types for API compatibility
14pub use hf_fetcher::HfModelFetcher;
15pub use options::FetchOptions;
16pub use types::{Architecture, ModelArtifact, WeightFormat};