gglib_core/ports/huggingface/mod.rs
1//! `HuggingFace` client port definitions.
2//!
3//! This module defines the port trait and DTOs for `HuggingFace` Hub interaction.
4//! The actual implementation lives in `gglib-hf`.
5
6mod client;
7mod error;
8mod types;
9
10pub use client::HfClientPort;
11pub use error::{HfPortError, HfPortResult};
12pub use types::{HfFileInfo, HfQuantInfo, HfRepoInfo, HfSearchOptions, HfSearchResult};