//! Real-BPE token count of the files passed as arguments. Zero assumptions: it
//! counts the exact bytes of each file with the real cl100k + o200k tiktoken
//! (when built `--features real-tokens`), so token figures are tied to the same
//! source that was compiled and executed elsewhere — not a paraphrased snippet.
//!
//! cargo run -p agentic-eval --example tokens_of --features real-tokens -- FILE...
use Model;
use fs;