//! Embedding generation module
//!
//! This module provides traits and implementations for generating text embeddings.
use Result;
use async_trait;
pub use FastEmbedder;
pub use ;
/// Trait for embedding generation
///
/// Implementors of this trait can provide custom embedding logic.