pub trait Embedder: Send + Sync {
// Required method
fn embed(&self, text: &str) -> impl Future<Output = Vec<f32>> + Send;
}Expand description
Converts text into a dense vector embedding.
Implementations may call external APIs (OpenAI, local models, etc.). Uses RPITIT for async without boxing.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.