siumai 0.10.3

A unified LLM interface library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Comprehensive streaming tests for the siumai library
//
// This module includes all streaming-related tests to ensure the multi-event
// emission architecture works correctly across all providers.

// Include all streaming test modules
mod streaming {
    pub mod complete_stream_events_test;
    pub mod first_event_content_preservation_test;
    pub mod stream_start_event_test;
    pub mod streaming_integration_test;
    pub mod tool_call_streaming_integration_test;
}

// Re-export all tests for easy access
pub use streaming::*;