ambi 0.3.6

A flexible, multi-backend, customizable AI agent framework, entirely based on Rust.
Documentation
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};