stowken 0.7.0

Compressed storage and retrieval of LLM token sequences
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Storage backend trait and implementations.

pub mod backend;
pub mod filesystem;
pub mod memory;

#[cfg(feature = "s3")]
pub mod s3;

pub use backend::{StorageBackend, StorageError, StorageResult};
pub use filesystem::FilesystemBackend;
pub use memory::MemoryBackend;

#[cfg(feature = "s3")]
pub use s3::S3Backend;