1 2 3 4 5 6 7 8
// src/agent/processor.rs //! Output streaming post-processors and formatters. /// Formatters for real-time manipulation of LLM output streams. pub mod formatter; pub use self::formatter::{PassThroughFormatter, StandardStreamFormatter};