Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Rich output formatting for agents
Markdown Output
use praisonai::Agent; let agent = Agent::new() .name("Writer") .instructions("Format responses in markdown") .build()?;
Custom Formatting
let agent = Agent::new() .name("Assistant") .on_message(|msg| { // Custom display logic render_markdown(&msg); }) .build()?;