//! Token estimation backed by tiktoken's cl100k_base BPE.
//!
//! cl100k_base is what GPT-4 uses. It's not identical to the tokenizer Claude
//! uses, but it's within 10-15% on typical code/English content and is good
//! enough for context budgeting. Initialization is amortized across calls
//! via a one-time load.
use Lazy;
use CoreBPE;
static BPE: =
new;