cllient 0.2.1

A comprehensive Rust client for LLM APIs with unified interface and model management
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core SSE processing functionality
//!
//! This module provides the fundamental types and processing logic
//! for Server-Sent Events streams.

pub mod types;
pub mod processor;

// Re-export core types for convenience
pub use types::{TokenExtractor, TokenExtractionResult};
pub use processor::SSEStreamProcessor;