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.
Enable agent thinking and reasoning
Enable Thinking
use praisonai::Agent; let agent = Agent::new() .name("Thinker") .thinking(true) .build()?; agent.chat("Solve this logic puzzle").await?; // Shows step-by-step thinking