//! Output parsers for extracting and transforming LLM response text.
//!
//! This module provides parser implementations that convert raw LLM output
//! into structured formats. Each parser implements the `Runnable` trait
//! for composability with other LCEL components.
pub use ;
pub use StrOutputParser;
pub use CommaSeparatedListOutputParser;
pub use JsonOutputParser;
pub use ;