1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! WebSocket streaming implementation for Gemini API integration.
//!
//! This module provides optimized WebSocket streaming functionality that integrates with
//! the Gemini API endpoints for real-time bidirectional communication. It builds upon
//! the models in `websocket_streaming.rs` to provide complete WebSocket integration
//! with advanced optimizations including:
//!
//! - Connection pooling and intelligent reuse strategies
//! - High-performance message serialization with multiple format options
//! - Advanced metrics collection and performance monitoring
//! - Sophisticated error handling and automatic recovery mechanisms
//! - Resource-efficient connection management with auto-scaling
//! - Comprehensive configuration options for fine-tuning performance
pub use
;
pub use
;
pub use
;