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.
Security best practices for agents
Apply Security
use praisonai::{Agent, SecurityConfig}; let config = SecurityConfig::new() .allow_network(false) .allow_fs(false) .data_encryption(true); let agent = Agent::new() .name("Secure Bot") .security(config) .build()?;
[!CAUTION] Always validate user input and restrict agent permissions in production.