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.
Load and manage external resources for Agents.
Simple Usage
import { Agent } from 'praisonai'; const agent = new Agent({ name: 'Assistant', instructions: 'Be helpful.' }); await agent.chat('Hello');
With Configuration
// ``` ## API Reference ## Related <CardGroup cols={2}> <Card title="Agent" icon="robot" href="/docs/js/agent"> Agent basics </Card> <Card title="Tools" icon="wrench" href="/docs/js/tools"> Agent tools </Card> </CardGroup>