Skip to content

Commit c971fa8

Browse files
committed
chore: bump PraisonAI to 2.2.54 and update Gemini workflows
1 parent 6ac3d78 commit c971fa8

File tree

14 files changed

+2650
-2643
lines changed

14 files changed

+2650
-2643
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@ jobs:
4040
uses: docker/build-push-action@v2
4141
with:
4242
context: .
43+
file: ./docker/Dockerfile
4344
push: true
4445
tags: ghcr.io/mervinpraison/praisonai:latest

.github/workflows/gemini-issue-automated-triage.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
name: Gemini Automated Issue Triage
22

33
on:
4-
issues:
5-
types: [opened, reopened]
4+
issue_comment:
5+
types: [created]
66

77
jobs:
88
triage-issue:
9+
if: >
10+
github.event_name == 'issue_comment' &&
11+
!github.event.issue.pull_request &&
12+
contains(github.event.comment.body, '@gemini triage') &&
13+
(github.event.comment.author_association == 'OWNER' ||
14+
github.event.comment.author_association == 'MEMBER' ||
15+
github.event.comment.author_association == 'COLLABORATOR')
916
timeout-minutes: 5
1017
permissions:
1118
issues: write

.github/workflows/gemini-issue-review.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Gemini Issue Review
22

33
on:
44
workflow_dispatch:
5-
issues:
6-
types: [opened, edited]
75
issue_comment:
86
types: [created]
97

@@ -16,10 +14,9 @@ jobs:
1614
review-issue:
1715
if: >
1816
github.event_name == 'workflow_dispatch' ||
19-
github.event_name == 'issues' ||
2017
(github.event_name == 'issue_comment' &&
2118
!github.event.issue.pull_request &&
22-
contains(github.event.comment.body, '@gemini') &&
19+
contains(github.event.comment.body, '@gemini review') &&
2320
(github.event.comment.author_association == 'OWNER' ||
2421
github.event.comment.author_association == 'MEMBER' ||
2522
github.event.comment.author_association == 'COLLABORATOR'))

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN mkdir -p /root/.praison
1616
# Install Python packages (using latest versions)
1717
RUN pip install --no-cache-dir \
1818
flask \
19-
"praisonai>=2.2.53" \
19+
"praisonai>=2.2.54" \
2020
"praisonai[api]" \
2121
gunicorn \
2222
markdown

docker/Dockerfile.chat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN mkdir -p /root/.praison
1616
# Install Python packages (using latest versions)
1717
RUN pip install --no-cache-dir \
1818
praisonai_tools \
19-
"praisonai>=2.2.53" \
19+
"praisonai>=2.2.54" \
2020
"praisonai[chat]" \
2121
"embedchain[github,youtube]"
2222

docker/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN mkdir -p /root/.praison
2020
# Install Python packages (using latest versions)
2121
RUN pip install --no-cache-dir \
2222
praisonai_tools \
23-
"praisonai>=2.2.53" \
23+
"praisonai>=2.2.54" \
2424
"praisonai[ui]" \
2525
"praisonai[chat]" \
2626
"praisonai[realtime]" \

docker/Dockerfile.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN mkdir -p /root/.praison
1616
# Install Python packages (using latest versions)
1717
RUN pip install --no-cache-dir \
1818
praisonai_tools \
19-
"praisonai>=2.2.53" \
19+
"praisonai>=2.2.54" \
2020
"praisonai[ui]" \
2121
"praisonai[crewai]"
2222

docker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ healthcheck:
121121
## 📦 Package Versions
122122
123123
All Docker images use consistent, up-to-date versions:
124-
- PraisonAI: `>=2.2.53`
124+
- PraisonAI: `>=2.2.54`
125125
- PraisonAI Agents: `>=0.0.92`
126126
- Python: `3.11-slim`
127127

@@ -218,7 +218,7 @@ docker-compose up -d
218218
### Version Pinning
219219
To use specific versions, update the Dockerfile:
220220
```dockerfile
221-
RUN pip install "praisonai==2.2.53" "praisonaiagents==0.0.92"
221+
RUN pip install "praisonai==2.2.54" "praisonaiagents==0.0.92"
222222
```
223223

224224
## 🌐 Production Deployment

src/praisonai-agents/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "praisonaiagents"
7-
version = "0.0.127"
7+
version = "0.0.128"
88
description = "Praison AI agents for completing complex tasks with Self Reflection Agents"
99
requires-python = ">=3.10"
1010
authors = [

src/praisonai-agents/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)