wordchipper 0.9.2

HPC Rust LLM Tokenizer Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # Decoder Implementation Utilities

#[cfg(test)]
pub mod testing;

mod byte_decoder;
mod pair_decoder;

#[doc(inline)]
pub use byte_decoder::ByteDecoder;
#[doc(inline)]
pub use pair_decoder::PairExpansionDecoder;