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.
Isolated execution environment
Enable Sandbox
use praisonai::{Agent, SandboxConfig}; let config = SandboxConfig::new() .timeout_secs(30) .memory_limit_mb(256); let agent = Agent::new() .name("Coder") .code_execution(true) .sandbox(config) .build()?;
timeout_secs
memory_limit_mb
allow_network
allow_fs