-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Version 2.1 #441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 2.1 #441
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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.81 gunicorn markdown | ||
| RUN pip install flask praisonai==2.1.0 gunicorn markdown | ||
| EXPOSE 8080 | ||
| CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"] | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -110,7 +110,7 @@ <h2 id="raises">Raises</h2> | |||||
| 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.81 gunicorn markdown\n") | ||||||
| file.write("RUN pip install flask praisonai==2.1.0 gunicorn markdown\n") | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider adding a comment here to explain why the praisonai version is being updated.
Suggested change
|
||||||
| file.write("EXPOSE 8080\n") | ||||||
| file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n') | ||||||
|
|
||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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.81.tar.gz" | ||
| url "https://github.com/MervinPraison/PraisonAI/archive/refs/tags/2.1.0.tar.gz" | ||
| sha256 "1828fb9227d10f991522c3f24f061943a254b667196b40b1a3e4a54a8d30ce32" # Replace with actual SHA256 checksum | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| license "MIT" | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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.81 gunicorn markdown\n") | ||
| file.write("RUN pip install flask praisonai==2.1.0 gunicorn markdown\n") | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| file.write("EXPOSE 8080\n") | ||
| file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n') | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| [project] | ||
| name = "PraisonAI" | ||
| version = "2.0.81" | ||
| version = "2.1.0" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| description = "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." | ||
| readme = "README.md" | ||
| license = "" | ||
|
|
@@ -12,7 +12,7 @@ dependencies = [ | |
| "rich>=13.7", | ||
| "markdown>=3.5", | ||
| "pyparsing>=3.0.0", | ||
| "praisonaiagents>=0.0.67", | ||
| "praisonaiagents>=0.0.70", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "python-dotenv>=0.19.0", | ||
| "instructor>=1.3.3", | ||
| "PyYAML>=6.0", | ||
|
|
@@ -85,7 +85,7 @@ autogen = ["pyautogen>=0.2.19", "praisonai-tools>=0.0.7", "crewai"] | |
|
|
||
| [tool.poetry] | ||
| name = "PraisonAI" | ||
| version = "2.0.81" | ||
| version = "2.1.0" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| description = "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." | ||
| authors = ["Mervin Praison"] | ||
| license = "" | ||
|
|
@@ -103,7 +103,7 @@ python = ">=3.10,<3.13" | |
| rich = ">=13.7" | ||
| markdown = ">=3.5" | ||
| pyparsing = ">=3.0.0" | ||
| praisonaiagents = ">=0.0.67" | ||
| praisonaiagents = ">=0.0.70" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| python-dotenv = ">=0.19.0" | ||
| instructor = ">=1.3.3" | ||
| PyYAML = ">=6.0" | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider adding a comment here to explain why the praisonai version is being updated.