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
//! Utility modules for siumai
//!
//! This module contains various utility functions and types used throughout the library.

pub mod error_handling;
pub mod http_headers;
pub mod sse_stream;
pub mod streaming;
pub mod url;
pub mod utf8_decoder;

pub use sse_stream::{SseStream, SseStreamExt};
pub use streaming::*;
pub use url::*;
pub use utf8_decoder::Utf8StreamDecoder;