Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Define behavior policies for agents
Add Policy
use praisonai::{Agent, Policy}; let agent = Agent::new() .name("Safe Bot") .policy(Policy::no_harmful_content()) .policy(Policy::no_pii()) .build()?;
no_harmful_content
no_pii
factual_only
professional_tone