Skip to content

Conversation

@MervinPraison
Copy link

Adding PraisonAI

PraisonAI is a production-ready Multi-AI Agents framework with self-reflection.

Key Features:

  • Fastest agent instantiation (3.77μs) - benchmarked against CrewAI, LangGraph, PydanticAI
  • 100+ LLM support via LiteLLM (OpenAI, Anthropic, Gemini, Ollama, Groq, etc.)
  • MCP Protocol support for seamless tool integration
  • Agentic workflows with route(), parallel(), loop(), repeat() patterns
  • Built-in memory (short-term, long-term, entity, episodic)
  • Self-reflection for improved agent responses
  • Both Python & JavaScript SDKs

Simple Example:

from praisonaiagents import Agent
agent = Agent(instructions="You are a helpful AI assistant")
agent.start("Write a haiku about AI")

Multi-Agent Example:

from praisonaiagents import Agent, Agents
research_agent = Agent(instructions="Research about AI")
summarise_agent = Agent(instructions="Summarise findings")
agents = Agents(agents=[research_agent, summarise_agent])
agents.start()

Thank you for considering this addition!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant