// This module re-exports key embedding components for convenient access throughout the crate.
// It provides the main API types and structures for working with embeddings.
// Embedding logic and API client
pub use ;
// Embedding model definition, including supported and custom models
pub use EmbeddingModel;
// Embedding request structure, used to send data to the embedding API
pub use EmbeddingRequest;
// Input struct for embedding, representing a single message or text to embed
pub use EmbeddingInput;
// Embedding response structure, representing the result returned by the embedding API
pub use EmbeddingResponse;
pub use EmbeddingData;
pub use EmbeddingUsage;