//! VIL Tokenizer Engine
//!
//! Native Rust BPE (Byte-Pair Encoding) tokenizer for:
//! - Token counting (how many tokens in this text?)
//! - Text truncation (cut to N tokens without breaking words)
//! - Encoding/decoding (text <-> token IDs)
//!
//! Compatible with OpenAI tiktoken and Llama sentencepiece vocabularies.
pub use BpeTokenizer;
pub use ;
pub use TokenCounter;
pub use ;
pub use TokenizerPlugin;
pub use ;