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.

Embed agents directly into your applications.

Quick Start

1

Embed in Application

use praisonai::Agent;

// Create agent as part of your application
let agent = Agent::new()
    .name("Assistant")
    .build()?;

// Use in your app logic
async fn handle_user_query(query: &str) -> String {
    agent.chat(query).await.unwrap()
}

Embedding Options

PlatformMethod
Rust appsDirect library
Web appsWebAssembly
CLI toolsBinary inclusion

Installation

Setup guide

Agent

Agent config