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.

Plugins extend agent functionality with new capabilities.

Quick Start

1

Add Plugin

use praisonai::{Agent, Plugin};

let agent = Agent::new()
    .name("Assistant")
    .plugin(MyPlugin::new())
    .build()?;

Plugin Types

TypePurpose
Tool pluginsAdd new tools
Hook pluginsIntercept lifecycle
LLM pluginsAdd providers

Tools

Custom tools

Hooks

Lifecycle hooks