//! HuggingFace Dataset Fetcher and Collator
//!
//! Provides dataset loading and batching for distillation training.
//!
//! # Features
//!
//! - Streaming support for large datasets
//! - Parquet file loading
//! - Dynamic padding and batching
//! - Teacher output caching
// Re-export all public types for API compatibility
pub use Batch;
pub use ;
pub use DistillationCollator;
pub use Dataset;
pub use Example;
pub use HfDatasetFetcher;
pub use DatasetOptions;
pub use Split;