synwire-core 0.1.0

Core traits and types for the Synwire AI framework
Documentation
//! Output parser traits and implementations.
//!
//! Output parsers transform raw text from language models into structured data.
//! The [`OutputParser`] trait defines the core interface, with concrete
//! implementations for common formats.

mod json;
pub mod output_mode;
mod string;
mod structured;
mod tools;
mod traits;

pub use json::JsonOutputParser;
pub use output_mode::OutputMode;
pub use string::StrOutputParser;
pub use structured::StructuredOutputParser;
pub use tools::ToolsOutputParser;
pub use traits::OutputParser;