hf-xet 1.5.0

Client library and tooling for the Hugging Face Xet data storage system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Client library for the Hugging Face Xet data storage system.
//!
//! Provides the high-level [`xet_session::XetSession`] API for uploading
//! and downloading files with chunk-based deduplication, tying together
//! the lower-level [`xet_runtime`], [`xet_core_structures`],
//! [`xet_client`], and [`xet_data`] crates.

pub mod error;
pub use error::XetError;
#[cfg(feature = "python")]
pub use error::{XetAuthenticationError, XetObjectNotFoundError, register_exceptions};

pub mod legacy;
pub mod xet_session;