Skip to content

Commit 923cbd1

Browse files
Merge branch 'main' into add-qwen-chatbot-agent
2 parents 99b1f92 + f25d9e1 commit 923cbd1

File tree

79 files changed

+15018
-5849
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+15018
-5849
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ jobs:
6565
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
6666
- name: Test with pytest
6767
run: |
68-
cd src/praisonai && python -m pytest
68+
cd src/praisonai && python tests/test_runner.py --pattern fast

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,5 @@ agents/praisonaiagents/praisonaiagents.egg-info
7474
.praison
7575
# Local Netlify folder
7676
.netlify
77-
.qodo
77+
.qodo
78+
CopilotKit*

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.26" \
19+
"praisonai>=2.2.31" \
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.26" \
19+
"praisonai>=2.2.31" \
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.26" \
23+
"praisonai>=2.2.31" \
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.26" \
19+
"praisonai>=2.2.31" \
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.26`
124+
- PraisonAI: `>=2.2.31`
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.26" "praisonaiagents==0.0.92"
221+
RUN pip install "praisonai==2.2.31" "praisonaiagents==0.0.92"
222222
```
223223

224224
## 🌐 Production Deployment

examples/cookbooks/Code_Analysis_Agent.ipynb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414
{
1515
"cell_type": "markdown",
1616
"source": [
17+
1718
"[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/DhivyaBharathy-web/PraisonAI/blob/main/examples/cookbooks/Code_Analysis_Agent.ipynb)\n"
19+
=======
20+
"[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/DhivyaBharathy-web/PraisonAI/blob/main/examples/cookbooks/code_analysis_agent.ipynb)\n"
21+
1822
],
1923
"metadata": {
2024
"id": "P3X8PXPyojnL"
@@ -456,4 +460,8 @@
456460
},
457461
"nbformat": 4,
458462
"nbformat_minor": 5
463+
459464
}
465+
=======
466+
}
467+

0 commit comments

Comments
 (0)