//! Core types for BPE tokenization
/// Token identifier - corresponds to position in vocabulary
pub type TokenId = u32;
/// Represents the two tokens that were merged to form a token.
/// For base tokens (single bytes), both values point to the token itself.