PraisonAI is a powerful Multi-Agent Framework for building and deploying AI agents that can understand, reason, and execute complex tasks autonomously.
Welcome to PraisonAI
Build powerful autonomous agents that understand, decide, and execute with unprecedented capability.
Generate your OpenAI API key from OpenAI.
Use other LLM providers like Ollama, Anthropic, Groq, Google, etc. Please refer to the Models for more information.
3
Create Agents
Create app.py:
Copy
from praisonaiagents import Agent, PraisonAIAgents# Create a simple agentsummarise_agent = Agent(instructions="Summarise Photosynthesis")# Run the agentagents = PraisonAIAgents(agents=[summarise_agent])agents.start()
4
Run Agents
Execute your script:
Copy
python app.py
You’ll see:
Agent initialization
Task execution progress
Final results
You have successfully CreatedAI Agents and made them work for you!