paladin-ai 0.4.1

Enterprise AI orchestration framework with multi-agent coordination patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Herald output formatter adapters
//!
//! This module contains concrete implementations of the Herald trait for
//! various output formats (JSON, Markdown, Table).

pub mod json_herald;
pub mod markdown_herald;
pub mod table_herald;

pub use json_herald::JsonHerald;
pub use markdown_herald::MarkdownHerald;
pub use table_herald::TableHerald;