Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.praison.ai/llms.txt

Use this file to discover all available pages before exploring further.

Thinking mode shows transparent reasoning process.

Quick Start

1

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

When to Use

TaskUse Thinking?
Complex problems✅ Yes
Math calculations✅ Yes
Simple questions❌ No

Reasoning

Reasoning mode

Planning

Planning mode