Skip to content

Commit

Permalink
Merge pull request #215 from MervinPraison/develop
Browse files Browse the repository at this point in the history
Adding Depends 10
  • Loading branch information
MervinPraison authored Dec 24, 2024
2 parents af7a6a4 + dd606e7 commit 4735eea
Show file tree
Hide file tree
Showing 8 changed files with 100 additions and 105 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install flask praisonai==2.0.10 gunicorn markdown
RUN pip install flask praisonai==2.0.13 gunicorn markdown
EXPOSE 8080
CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]
26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@

</div>

Praison AI, leveraging both AutoGen and CrewAI or any other agent framework, represents a low-code, centralised framework designed to simplify the creation and orchestration of multi-agent systems for various LLM applications, emphasizing ease of use, customization, and human-agent interaction.
PraisonAI is an AI Agents Framework with Self Reflection. PraisonAI application combines PraisonAI Agents, AutoGen, and CrewAI into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customisation, and efficient human–agent collaboration.

## Key Features

- 🤖 Automated AI Agents Creation
- 🔄 Use CrewAI or AutoGen Framework
- 💯 100+ LLM Support
- 💻 Chat with ENTIRE Codebase
- 🖥️ Interactive UIs
- 📄 YAML-based Configuration
- 🛠️ Custom Tool Integration
- 🔍 Internet Search Capability (using Crawl4AI and Tavily)
- 👁️ Vision Language Model (VLM) Support
- 🎙️ Real-time Voice Interaction

<div align="center">
<picture>
Expand Down Expand Up @@ -130,18 +143,7 @@ When installing with `pip install "praisonai[autogen]"`, you get:
- Multi-agent conversation capabilities
- Code execution environment

## Key Features

- 🤖 Automated AI Agents Creation
- 🔄 Use CrewAI or AutoGen Framework
- 💯 100+ LLM Support
- 💻 Chat with ENTIRE Codebase
- 🖥️ Interactive UIs
- 📄 YAML-based Configuration
- 🛠️ Custom Tool Integration
- 🔍 Internet Search Capability (using Crawl4AI and Tavily)
- 👁️ Vision Language Model (VLM) Support
- 🎙️ Real-time Voice Interaction

## TL;DR Multi Agents

Expand Down
2 changes: 1 addition & 1 deletion docs/api/praisonai/deploy.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ <h2 id="raises">Raises</h2>
file.write(&#34;FROM python:3.11-slim\n&#34;)
file.write(&#34;WORKDIR /app\n&#34;)
file.write(&#34;COPY . .\n&#34;)
file.write(&#34;RUN pip install flask praisonai==2.0.10 gunicorn markdown\n&#34;)
file.write(&#34;RUN pip install flask praisonai==2.0.13 gunicorn markdown\n&#34;)
file.write(&#34;EXPOSE 8080\n&#34;)
file.write(&#39;CMD [&#34;gunicorn&#34;, &#34;-b&#34;, &#34;0.0.0.0:8080&#34;, &#34;api:app&#34;]\n&#39;)

Expand Down
137 changes: 73 additions & 64 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion praisonai.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class Praisonai < Formula

desc "AI tools for various AI applications"
homepage "https://github.com/MervinPraison/PraisonAI"
url "https://github.com/MervinPraison/PraisonAI/archive/refs/tags/2.0.10.tar.gz"
url "https://github.com/MervinPraison/PraisonAI/archive/refs/tags/2.0.13.tar.gz"
sha256 "1828fb9227d10f991522c3f24f061943a254b667196b40b1a3e4a54a8d30ce32" # Replace with actual SHA256 checksum
license "MIT"

Expand Down
2 changes: 1 addition & 1 deletion praisonai/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def create_dockerfile(self):
file.write("FROM python:3.11-slim\n")
file.write("WORKDIR /app\n")
file.write("COPY . .\n")
file.write("RUN pip install flask praisonai==2.0.10 gunicorn markdown\n")
file.write("RUN pip install flask praisonai==2.0.13 gunicorn markdown\n")
file.write("EXPOSE 8080\n")
file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n')

Expand Down
22 changes: 8 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "PraisonAI"
version = "2.0.10"
version = "2.0.13"
description = "PraisonAI application combines AutoGen and CrewAI or similar frameworks into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration."
readme = "README.md"
license = ""
Expand All @@ -15,7 +15,7 @@ dependencies = [
"praisonaiagents>=0.0.4",
"python-dotenv>=0.19.0",
"instructor>=1.3.3",
"PyYAML>=6.0"
"PyYAML>=6.0",
]

[project.optional-dependencies]
Expand All @@ -37,7 +37,6 @@ chat = [
"sqlalchemy>=2.0.36",
"playwright>=1.47.0",
"rich",
"instructor",
"pydantic<=2.10.1"
]
code = [
Expand Down Expand Up @@ -69,19 +68,17 @@ call = [
"fastapi>=0.95.0",
"uvicorn>=0.20.0",
"websockets>=12.0",
"python-dotenv>=0.19.0",
"flaml[automl]>=2.3.1",
"pyngrok>=1.4.0",
"rich",
"openai>=1.54.0",
"instructor"
]
crewai = ["crewai>=0.32.0", "praisonai-tools>=0.0.7", "instructor"]
autogen = ["pyautogen>=0.2.19", "praisonai-tools>=0.0.7", "instructor", "crewai"]
crewai = ["crewai>=0.32.0", "praisonai-tools>=0.0.7"]
autogen = ["pyautogen>=0.2.19", "praisonai-tools>=0.0.7", "crewai"]

[tool.poetry]
name = "PraisonAI"
version = "2.0.10"
version = "2.0.13"
description = "PraisonAI application combines AutoGen and CrewAI or similar frameworks into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration."
authors = ["Mervin Praison"]
license = ""
Expand Down Expand Up @@ -214,7 +211,6 @@ chat = [
"sqlalchemy",
"playwright",
"rich",
"instructor",
"pydantic"
]
code = [
Expand Down Expand Up @@ -246,16 +242,14 @@ call = [
"twilio",
"fastapi",
"uvicorn",
"websockets",
"python-dotenv",
"websockets",
"flaml",
"pyngrok",
"rich",
"openai",
"instructor"
]
crewai = ["crewai", "praisonai-tools", "instructor"]
autogen = ["pyautogen", "praisonai-tools", "instructor", "crewai"]
crewai = ["crewai", "praisonai-tools"]
autogen = ["pyautogen", "praisonai-tools", "crewai"]

[tool.poetry-dynamic-versioning]
enable = true
Expand Down
12 changes: 1 addition & 11 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4735eea

Please sign in to comment.