pub trait Encoder: Send + Sync { // Required methods fn encode(&self, texts: &[String]) -> Array2<f32>; fn dim(&self) -> usize; }