entrenar 0.7.13

Training & Optimization library with autograd, LoRA, quantization, and model merging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Offline Model Registry (ENT-017)
//!
//! Provides local model storage and verification for air-gapped deployments.

mod manifest;
mod offline;
mod types;

#[cfg(test)]
mod tests;

// Re-export all public types to preserve the public API
pub use manifest::RegistryManifest;
pub use offline::OfflineModelRegistry;
pub use types::{ModelEntry, ModelSource};