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.
Build user interfaces for agents
Web UI
use praisonai::{Agent, WebUI}; let agent = Agent::new() .name("Assistant") .build()?; // Start web interface WebUI::new(agent) .port(8080) .start() .await?; // Access at http://localhost:8080