daimon 0.19.0

A Rust-native AI agent framework
1
2
3
4
5
6
7
//! A byte-accurate line buffer for chunked HTTP streams (SSE and NDJSON).
//!
//! The implementation lives in [`daimon_core::stream_util`] so the built-in
//! providers and the external provider crates share a single copy. This module
//! re-exports it under the historical path the built-in providers use.

pub(crate) use daimon_core::stream_util::LineBuffer;