1 2 3 4 5 6 7 8 9
//! OpenAI-specific embedding configuration and types pub use config::{EncodingFormat, OpenAIConfig, OpenAIModel}; pub use types::{ OpenAIEmbeddingData, OpenAIEmbeddingInput, OpenAIEmbeddingRequest, OpenAIEmbeddingResponse, }; mod config; mod types;