Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Visual workflow builder for agents
Define Flow
use praisonai::AgentFlow; let flow = AgentFlow::new() .start(intake_agent) .then(router_agent) .branch(|result| { if result.contains("technical") { tech_agent } else { general_agent } }) .end(); flow.run("Help me with something").await?;
start(agent)
then(agent)
branch(fn)
parallel([agents])
loop(agent)