-
-
Notifications
You must be signed in to change notification settings - Fork 744
Update PraisonAI and dependencies to version 2.2.33 #643
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,8 +3,8 @@ 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/v2.2.32.tar.gz" | ||
| sha256 `curl -sL https://github.com/MervinPraison/PraisonAI/archive/refs/tags/v2.2.32.tar.gz | shasum -a 256`.split.first | ||
| url "https://github.com/MervinPraison/PraisonAI/archive/refs/tags/v2.2.33.tar.gz" | ||
| sha256 `curl -sL https://github.com/MervinPraison/PraisonAI/archive/refs/tags/v2.2.33.tar.gz | shasum -a 256`.split.first | ||
|
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. Dynamically calculating the SHA256 hash at runtime using It's recommended to calculate the SHA256 sum for the sha256 "PASTE_STATIC_SHA256_HASH_FOR_v2.2.33_HERE" # Calculate and replace with the actual hash |
||
| license "MIT" | ||
|
|
||
| depends_on "python@3.11" | ||
|
|
||
| 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.2.32 gunicorn markdown\n") | ||
| file.write("RUN pip install flask praisonai==2.2.33 gunicorn markdown\n") | ||
|
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. The PraisonAI version If this
This would help ensure that the Dockerfile generated by the |
||
| file.write("EXPOSE 8080\n") | ||
| file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n') | ||
|
|
||
|
|
||
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.
The
praisonaiagentsversion is specified as0.0.92in this example for version pinning. However, this pull request updatespraisonaiagentsto version0.0.106inpyproject.tomland other dependency files. To ensure consistency and provide users with accurate information, this example should also reflect the new version ofpraisonaiagents.