Skip to main content

Embedder

Trait Embedder 

Source
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§

Source

fn embed(&self, text: &str) -> impl Future<Output = Vec<f32>> + Send

Embed the given text into a dense float vector.

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.

Implementors§