trustformers 0.1.1

TrustformeRS - Rust port of Hugging Face Transformers
Documentation
1
2
3
4
5
6
7
8
9
//! Cache module for TrustformeRS.
//!
//! Provides versioned, TTL-aware caching for model weights and inference results.

pub mod versioned_cache;

pub use versioned_cache::{
    CacheError, CacheEvictionPolicy, VersionedCache, VersionedCacheConfig, VersionedCacheStats,
};