PraisonAI 2.0.9__cp312-cp312-manylinux_2_39_x86_64.whl → 2.0.13__cp312-cp312-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of PraisonAI might be problematic. Click here for more details.
- praisonai/deploy.py +1 -1
- {praisonai-2.0.9.dist-info → praisonai-2.0.13.dist-info}/METADATA +17 -15
- {praisonai-2.0.9.dist-info → praisonai-2.0.13.dist-info}/RECORD +6 -6
- {praisonai-2.0.9.dist-info → praisonai-2.0.13.dist-info}/LICENSE +0 -0
- {praisonai-2.0.9.dist-info → praisonai-2.0.13.dist-info}/WHEEL +0 -0
- {praisonai-2.0.9.dist-info → praisonai-2.0.13.dist-info}/entry_points.txt +0 -0
praisonai/deploy.py
CHANGED
|
@@ -56,7 +56,7 @@ class CloudDeployer:
|
|
|
56
56
|
file.write("FROM python:3.11-slim\n")
|
|
57
57
|
file.write("WORKDIR /app\n")
|
|
58
58
|
file.write("COPY . .\n")
|
|
59
|
-
file.write("RUN pip install flask praisonai==2.0.
|
|
59
|
+
file.write("RUN pip install flask praisonai==2.0.13 gunicorn markdown\n")
|
|
60
60
|
file.write("EXPOSE 8080\n")
|
|
61
61
|
file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n')
|
|
62
62
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PraisonAI
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.13
|
|
4
4
|
Summary: 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.
|
|
5
5
|
Author: Mervin Praison
|
|
6
6
|
Requires-Python: >=3.10,<3.13
|
|
@@ -35,7 +35,7 @@ Requires-Dist: flaml[automl] (>=2.3.1) ; extra == "call"
|
|
|
35
35
|
Requires-Dist: flask (>=3.0.0) ; extra == "api"
|
|
36
36
|
Requires-Dist: gradio (>=4.26.0) ; extra == "gradio"
|
|
37
37
|
Requires-Dist: greenlet (>=3.0.3) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
38
|
-
Requires-Dist: instructor (>=
|
|
38
|
+
Requires-Dist: instructor (>=1.3.3)
|
|
39
39
|
Requires-Dist: langchain-anthropic (>=0.1.13) ; extra == "anthropic"
|
|
40
40
|
Requires-Dist: langchain-cohere (>=0.1.4) ; extra == "cohere"
|
|
41
41
|
Requires-Dist: langchain-google-genai (>=1.0.4) ; extra == "google"
|
|
@@ -51,7 +51,7 @@ Requires-Dist: pyautogen (>=0.2.19) ; extra == "autogen"
|
|
|
51
51
|
Requires-Dist: pydantic (<=2.10.1) ; extra == "chat" or extra == "code"
|
|
52
52
|
Requires-Dist: pyngrok (>=1.4.0) ; extra == "call"
|
|
53
53
|
Requires-Dist: pyparsing (>=3.0.0)
|
|
54
|
-
Requires-Dist: python-dotenv (>=
|
|
54
|
+
Requires-Dist: python-dotenv (>=0.19.0)
|
|
55
55
|
Requires-Dist: rich (>=13.7) ; extra == "chat" or extra == "call"
|
|
56
56
|
Requires-Dist: sqlalchemy (>=2.0.36) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
57
57
|
Requires-Dist: tavily-python (==0.5.0) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
@@ -85,7 +85,20 @@ Description-Content-Type: text/markdown
|
|
|
85
85
|
|
|
86
86
|
</div>
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
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.
|
|
89
|
+
|
|
90
|
+
## Key Features
|
|
91
|
+
|
|
92
|
+
- 🤖 Automated AI Agents Creation
|
|
93
|
+
- 🔄 Use CrewAI or AutoGen Framework
|
|
94
|
+
- 💯 100+ LLM Support
|
|
95
|
+
- 💻 Chat with ENTIRE Codebase
|
|
96
|
+
- 🖥️ Interactive UIs
|
|
97
|
+
- 📄 YAML-based Configuration
|
|
98
|
+
- 🛠️ Custom Tool Integration
|
|
99
|
+
- 🔍 Internet Search Capability (using Crawl4AI and Tavily)
|
|
100
|
+
- 👁️ Vision Language Model (VLM) Support
|
|
101
|
+
- 🎙️ Real-time Voice Interaction
|
|
89
102
|
|
|
90
103
|
<div align="center">
|
|
91
104
|
<picture>
|
|
@@ -195,18 +208,7 @@ When installing with `pip install "praisonai[autogen]"`, you get:
|
|
|
195
208
|
- Multi-agent conversation capabilities
|
|
196
209
|
- Code execution environment
|
|
197
210
|
|
|
198
|
-
## Key Features
|
|
199
211
|
|
|
200
|
-
- 🤖 Automated AI Agents Creation
|
|
201
|
-
- 🔄 Use CrewAI or AutoGen Framework
|
|
202
|
-
- 💯 100+ LLM Support
|
|
203
|
-
- 💻 Chat with ENTIRE Codebase
|
|
204
|
-
- 🖥️ Interactive UIs
|
|
205
|
-
- 📄 YAML-based Configuration
|
|
206
|
-
- 🛠️ Custom Tool Integration
|
|
207
|
-
- 🔍 Internet Search Capability (using Crawl4AI and Tavily)
|
|
208
|
-
- 👁️ Vision Language Model (VLM) Support
|
|
209
|
-
- 🎙️ Real-time Voice Interaction
|
|
210
212
|
|
|
211
213
|
## TL;DR Multi Agents
|
|
212
214
|
|
|
@@ -5,7 +5,7 @@ praisonai/api/call.py,sha256=iHdAlgIH_oTsEbjaGGu1Jjo6DTfMR-SfFdtSxnOLCeY,11032
|
|
|
5
5
|
praisonai/auto.py,sha256=uLDm8CU3L_3amZsd55yzf9RdBF1uW-BGSx7nl9ctNZ4,8680
|
|
6
6
|
praisonai/chainlit_ui.py,sha256=bNR7s509lp0I9JlJNvwCZRUZosC64qdvlFCt8NmFamQ,12216
|
|
7
7
|
praisonai/cli.py,sha256=O7abKND2MP_yDdD_OclPoiZG1JRoGc4u9KowbRzuQuQ,21209
|
|
8
|
-
praisonai/deploy.py,sha256=
|
|
8
|
+
praisonai/deploy.py,sha256=RMxkqUx8H86M0SxU4Q8FRRegI8IOZJyDl1w7n908AOk,6028
|
|
9
9
|
praisonai/inbuilt_tools/__init__.py,sha256=fai4ZJIKz7-iOnGZv5jJX0wmT77PKa4x2jqyaJddKFA,569
|
|
10
10
|
praisonai/inbuilt_tools/autogen_tools.py,sha256=kJdEv61BTYvdHOaURNEpBcWq8Rs-oC03loNFTIjT-ak,4687
|
|
11
11
|
praisonai/inc/__init__.py,sha256=sPDlYBBwdk0VlWzaaM_lG0_LD07lS2HRGvPdxXJFiYg,62
|
|
@@ -75,8 +75,8 @@ praisonai/ui/realtimeclient/realtimedocs.txt,sha256=hmgd8Uwy2SkjSndyyF_-ZOaNxiyH
|
|
|
75
75
|
praisonai/ui/realtimeclient/tools.py,sha256=IJOYwVOBW5Ocn5_iV9pFkmSKR3WU3YpX3kwF0I3jikQ,7855
|
|
76
76
|
praisonai/ui/sql_alchemy.py,sha256=cfyL9uFfuizKFvW0aZfUBlJWPQYI-YBi1v4vxlkb1BQ,29615
|
|
77
77
|
praisonai/version.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
|
|
78
|
-
praisonai-2.0.
|
|
79
|
-
praisonai-2.0.
|
|
80
|
-
praisonai-2.0.
|
|
81
|
-
praisonai-2.0.
|
|
82
|
-
praisonai-2.0.
|
|
78
|
+
praisonai-2.0.13.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
|
|
79
|
+
praisonai-2.0.13.dist-info/METADATA,sha256=zNLpkGzUiK7tIr2BBBnZxJMmYiVrI4DjJEvCF78nrFs,17337
|
|
80
|
+
praisonai-2.0.13.dist-info/WHEEL,sha256=x1HiyTP_r-PIOu3STHzjukjf5kVLXzgVftSXf5bl8AU,110
|
|
81
|
+
praisonai-2.0.13.dist-info/entry_points.txt,sha256=I_xc6a6MNTTfLxYmAxe0rgey0G-_hbY07oFW-ZDnkw4,135
|
|
82
|
+
praisonai-2.0.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|