Getting Started (No Code)
TL;DR
Getting Started
Workflows
Features
Models
Monitoring
Developers
Getting Started (No Code)
Getting Started (No Code)
TL;DR
Quick start guide for PraisonAI with CrewAI, AutoGen, and UI setup instructions
Quick Start with PraisonAI Agents
# 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
# 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 AutoGen
# Install with AutoGen 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
# 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
Was this page helpful?