diff --git a/Dockerfile b/Dockerfile
index 441f9452..038963cb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
FROM python:3.11-slim
WORKDIR /app
COPY . .
-RUN pip install flask praisonai==2.0.4 gunicorn markdown
+RUN pip install flask praisonai==2.0.5 gunicorn markdown
EXPOSE 8080
CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]
diff --git a/docs/api/praisonai/deploy.html b/docs/api/praisonai/deploy.html
index af447b68..1caaded4 100644
--- a/docs/api/praisonai/deploy.html
+++ b/docs/api/praisonai/deploy.html
@@ -110,7 +110,7 @@
Raises
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.4 gunicorn markdown\n")
+ file.write("RUN pip install flask praisonai==2.0.5 gunicorn markdown\n")
file.write("EXPOSE 8080\n")
file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n')
diff --git a/praisonai.rb b/praisonai.rb
index 7316cad8..77e2324f 100644
--- a/praisonai.rb
+++ b/praisonai.rb
@@ -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.4.tar.gz"
+ url "https://github.com/MervinPraison/PraisonAI/archive/refs/tags/2.0.5.tar.gz"
sha256 "1828fb9227d10f991522c3f24f061943a254b667196b40b1a3e4a54a8d30ce32" # Replace with actual SHA256 checksum
license "MIT"
diff --git a/praisonai/deploy.py b/praisonai/deploy.py
index 70075a4c..1fef4c7c 100644
--- a/praisonai/deploy.py
+++ b/praisonai/deploy.py
@@ -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.4 gunicorn markdown\n")
+ file.write("RUN pip install flask praisonai==2.0.5 gunicorn markdown\n")
file.write("EXPOSE 8080\n")
file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n')
diff --git a/pyproject.toml b/pyproject.toml
index c108d263..ecb29a7d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,17 +1,6 @@
-[build-system]
-requires = [
- "poetry-core>=1.0.0",
- "setuptools>=42",
- "wheel>=0.37.0",
- "instructor>=0.4.8",
- "python-dotenv>=1.0.1",
- "PyYAML>=6.0"
-]
-build-backend = "poetry.core.masonry.api"
-
[project]
name = "PraisonAI"
-version = "2.0.4"
+version = "2.0.5"
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 = ""
@@ -106,7 +95,7 @@ call = [
[tool.poetry]
name = "PraisonAI"
-version = "2.0.4"
+version = "2.0.5"
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 = ""
@@ -207,8 +196,17 @@ litellm = ">=1.41.8"
aiosqlite = ">=0.20.0"
greenlet = ">=3.0.3"
+
+
[build-system]
-requires = ["poetry-core", "setuptools>=42"]
+requires = [
+ "poetry-core",
+ "setuptools>=42",
+ "wheel>=0.37.0",
+ "instructor>=0.4.8",
+ "python-dotenv>=1.0.1",
+ "PyYAML>=6.0"
+]
build-backend = "poetry.core.masonry.api"
diff --git a/uv.lock b/uv.lock
index 1cda6145..6d34338c 100644
--- a/uv.lock
+++ b/uv.lock
@@ -3067,7 +3067,7 @@ wheels = [
[[package]]
name = "praisonai"
-version = "2.0.4"
+version = "2.0.5"
source = { editable = "." }
dependencies = [
{ name = "instructor" },