Getting Started
Core Concepts
Workflows
Features
- CLI
- AutoAgents
- Image Generation
- Self Reflection Agents
- RAG Agents
- Reasoning Extract Agents
- Reasoning Agents
- Multimodal Agents
- LangChain Agents
- Async Agents
- Mini AI Agents
- Generate Reasoning Data
- Code Agent
- Math Agent
- Structured AI Agents
- Stateful Agents
- Callbacks Agent
- Chat with PDF
- Camera Integration
- Advanced Memory System
- Knowledge Base
- Sessions & Remote Agents
- Approval System
- Guardrails
- Agent Handoffs
Models
Developers
Getting Started (No Code)
Getting Started (No Code)
TL;DR
Quick start guide for PraisonAI with CrewAI, AG2 (Formerly AutoGen), and UI setup instructions
Quick Start with PraisonAI Agents
Copy
# Install with CrewAI support
pip install praisonai
# Set your API key
export OPENAI_API_KEY="Enter your API key"
# Initialize and run
praisonai --init "create a movie script about dog in moon"
praisonai
Quick Start with CrewAI
Copy
# Install with CrewAI support
pip install "praisonai[crewai]"
# Set your API key
export OPENAI_API_KEY="Enter your API key"
# Initialize and run
praisonai --framework crewai --init "create a movie script about dog in moon"
praisonai --framework crewai
Quick Start with AG2
Copy
# Install with AG2 support
pip install "praisonai[autogen]"
# Set your API key
export OPENAI_API_KEY="Enter your API key"
# Initialize and run
praisonai --framework autogen --init "create a movie script about dog in moon"
praisonai --framework autogen
User Interface
Copy
# Install UI support
pip install "praisonai[ui]"
# Set up environment
export OPENAI_API_KEY="Enter your API key"
chainlit create-secret
export CHAINLIT_AUTH_SECRET=xxxxxxxx
# Run UI
praisonai ui
Assistant
Responses are generated using AI and may contain mistakes.