Building a Single Agent
This guide walks you through creating your first AI agent with PraisonAI.Prerequisites
Basic Agent
Agent with Custom Role
Agent with Tools
Agent with Memory
Agent Configuration Options
| Parameter | Type | Description |
|---|---|---|
name | str | Agent name |
role | str | Agent’s role description |
goal | str | What the agent aims to achieve |
backstory | str | Background context for the agent |
instructions | str | System instructions |
model | str | LLM model to use (default: gpt-4o-mini) |
tools | list | List of tools available to the agent |
memory | Memory | Memory instance for persistence |
verbose | bool | Enable verbose logging |
Using Different Models
Chat Mode
Next Steps
- Multi-Agent Systems - Build systems with multiple agents
- Adding Tools - Extend agent capabilities
- Agent Module Reference - Full API reference

