1 2 3 4 5 6 7 8
//! OpenAI embedding provider module. //! //! Contains the `OpenAIEmbeddingProvider` struct and its implementation. pub mod client; #[cfg(feature = "openai")] pub use client::OpenAIEmbeddingProvider;