/// Estimates token counts for text content.
////// Implementations may range from simple heuristics (chars / 4) to
/// model-specific tokenizers. The kernel uses this trait for budget
/// enforcement during context rendering.
pubtraitTokenEstimator: Send + Sync {fnestimate_tokens(&self, text:&str)->u32;fnname(&self)->&str;}