oxirs_embed/cloud_integration/mod.rs
1//! Cloud provider integration for embedding services
2//!
3//! This module provides comprehensive integration with major cloud providers
4//! including AWS SageMaker, Azure ML, and Google Cloud AI Platform for
5//! scalable embedding deployment and inference.
6
7pub mod awssagemakerservice_traits;
8pub mod azuremlservice_traits;
9pub mod cloudintegrationconfig_traits;
10pub mod functions;
11pub mod types;
12
13// Re-export all public types from types module
14pub use types::*;