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.

Auto-generate agent configurations from descriptions.

Quick Start

1

Generate from Description

use praisonai::AutoAgent;

let agent = AutoAgent::generate(
    "A customer support agent that can look up orders and process refunds"
).await?;

// Agent is ready with appropriate tools and instructions
agent.chat("I need to check my order status").await?;

What Gets Generated

ComponentGenerated From
InstructionsTask description
ToolsInferred capabilities
GuardrailsSafety requirements

Agent

Manual configuration

Tools

Add tools