Trait langchain_rust::agent::AgentOutputParser  
source · pub trait AgentOutputParser: Send + Sync {
    // Required methods
    fn parse(&self, text: &str) -> Result<AgentEvent, Box<dyn Error>>;
    fn get_format_instructions(&self) -> &str;
}