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.
Web browsing and interaction
Enable Web Browsing
use praisonai::{Agent, WebConfig}; let config = WebConfig::new() .browsing(true); let agent = Agent::new() .name("Web Bot") .web(config) .build()?; agent.chat("Go to example.com and extract the title").await?;