umf 0.2.6

Universal Message Format (UMF) - Provider-agnostic message representation for LLM interactions with ChatML formatting, internal hub model, and MCP support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Streaming response accumulation for LLM providers.
//!
//! This module provides utilities for accumulating streaming responses from LLM providers,
//! handling both text deltas and tool call deltas with sparse index support.

mod accumulator;
mod types;

pub use accumulator::StreamingAccumulator;
pub use types::{StreamChunk, AccumulatedResponse};

#[cfg(test)]
mod tests;