PraisonAI 2.0.2__cp311-cp311-macosx_15_0_arm64.whl → 2.0.8__cp311-cp311-macosx_15_0_arm64.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/ui/config/.chainlit/config.toml +1 -1
- {praisonai-2.0.2.dist-info → praisonai-2.0.8.dist-info}/METADATA +48 -33
- {praisonai-2.0.2.dist-info → praisonai-2.0.8.dist-info}/RECORD +7 -6
- praisonai-2.0.8.dist-info/entry_points.txt +5 -0
- {praisonai-2.0.2.dist-info → praisonai-2.0.8.dist-info}/LICENSE +0 -0
- {praisonai-2.0.2.dist-info → praisonai-2.0.8.dist-info}/WHEEL +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.7 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
|
|
|
@@ -69,7 +69,7 @@ cot = "full"
|
|
|
69
69
|
|
|
70
70
|
# Specify a CSS file that can be used to customize the user interface.
|
|
71
71
|
# The CSS file can be served from the public directory or via an external link.
|
|
72
|
-
custom_css = "https://cdn.jsdelivr.net/gh/MervinPraison/PraisonAI@2.0.
|
|
72
|
+
custom_css = "https://cdn.jsdelivr.net/gh/MervinPraison/PraisonAI@2.0.0/praisonai/ui/public/praison.css"
|
|
73
73
|
|
|
74
74
|
# Specify a Javascript file that can be used to customize the user interface.
|
|
75
75
|
# The Javascript file can be served from the public directory.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PraisonAI
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
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
|
|
@@ -8,42 +8,57 @@ Classifier: Programming Language :: Python :: 3
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3.10
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Provides-Extra: agentops
|
|
12
|
+
Provides-Extra: anthropic
|
|
13
|
+
Provides-Extra: api
|
|
14
|
+
Provides-Extra: autogen
|
|
15
|
+
Provides-Extra: call
|
|
16
|
+
Provides-Extra: chat
|
|
17
|
+
Provides-Extra: code
|
|
18
|
+
Provides-Extra: cohere
|
|
19
|
+
Provides-Extra: crewai
|
|
20
|
+
Provides-Extra: google
|
|
21
|
+
Provides-Extra: gradio
|
|
22
|
+
Provides-Extra: openai
|
|
23
|
+
Provides-Extra: realtime
|
|
24
|
+
Provides-Extra: train
|
|
25
|
+
Provides-Extra: ui
|
|
11
26
|
Requires-Dist: PyYAML (>=6.0)
|
|
12
|
-
Requires-Dist: agentops (>=0.3.12)
|
|
13
|
-
Requires-Dist: aiosqlite (>=0.20.0)
|
|
14
|
-
Requires-Dist: chainlit (==2.0rc1)
|
|
15
|
-
Requires-Dist: crawl4ai (==0.3.4)
|
|
16
|
-
Requires-Dist: crewai (>=0.32.0)
|
|
17
|
-
Requires-Dist: duckduckgo_search (>=6.3.0)
|
|
18
|
-
Requires-Dist: fastapi (>=0.95.0)
|
|
19
|
-
Requires-Dist: flaml[automl] (>=2.3.1)
|
|
20
|
-
Requires-Dist: flask (>=3.0.0)
|
|
21
|
-
Requires-Dist: gradio (>=4.26.0)
|
|
22
|
-
Requires-Dist: greenlet (>=3.0.3)
|
|
23
|
-
Requires-Dist: instructor (>=0.4.8)
|
|
24
|
-
Requires-Dist: langchain-anthropic (>=0.1.13)
|
|
25
|
-
Requires-Dist: langchain-cohere (>=0.1.4)
|
|
26
|
-
Requires-Dist: langchain-google-genai (>=1.0.4)
|
|
27
|
-
Requires-Dist: langchain-openai (>=0.1.7)
|
|
28
|
-
Requires-Dist: litellm (>=1.41.8)
|
|
27
|
+
Requires-Dist: agentops (>=0.3.12) ; extra == "agentops"
|
|
28
|
+
Requires-Dist: aiosqlite (>=0.20.0) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
29
|
+
Requires-Dist: chainlit (==2.0rc1) ; extra == "ui" or extra == "chat" or extra == "code" or extra == "realtime"
|
|
30
|
+
Requires-Dist: crawl4ai (==0.3.4) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
31
|
+
Requires-Dist: crewai (>=0.32.0) ; extra == "crewai" or extra == "autogen"
|
|
32
|
+
Requires-Dist: duckduckgo_search (>=6.3.0) ; extra == "realtime"
|
|
33
|
+
Requires-Dist: fastapi (>=0.95.0) ; extra == "call"
|
|
34
|
+
Requires-Dist: flaml[automl] (>=2.3.1) ; extra == "call"
|
|
35
|
+
Requires-Dist: flask (>=3.0.0) ; extra == "api"
|
|
36
|
+
Requires-Dist: gradio (>=4.26.0) ; extra == "gradio"
|
|
37
|
+
Requires-Dist: greenlet (>=3.0.3) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
38
|
+
Requires-Dist: instructor (>=0.4.8) ; extra == "chat" or extra == "call" or extra == "crewai" or extra == "autogen"
|
|
39
|
+
Requires-Dist: langchain-anthropic (>=0.1.13) ; extra == "anthropic"
|
|
40
|
+
Requires-Dist: langchain-cohere (>=0.1.4) ; extra == "cohere"
|
|
41
|
+
Requires-Dist: langchain-google-genai (>=1.0.4) ; extra == "google"
|
|
42
|
+
Requires-Dist: langchain-openai (>=0.1.7) ; extra == "openai"
|
|
43
|
+
Requires-Dist: litellm (>=1.41.8) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
29
44
|
Requires-Dist: markdown (>=3.5)
|
|
30
|
-
Requires-Dist: openai (>=1.54.0)
|
|
31
|
-
Requires-Dist: playwright (>=1.47.0)
|
|
32
|
-
Requires-Dist: plotly (>=5.24.0)
|
|
33
|
-
Requires-Dist: praisonai-tools (>=0.0.7)
|
|
45
|
+
Requires-Dist: openai (>=1.54.0) ; extra == "call"
|
|
46
|
+
Requires-Dist: playwright (>=1.47.0) ; extra == "chat" or extra == "code"
|
|
47
|
+
Requires-Dist: plotly (>=5.24.0) ; extra == "realtime"
|
|
48
|
+
Requires-Dist: praisonai-tools (>=0.0.7) ; extra == "crewai" or extra == "autogen"
|
|
34
49
|
Requires-Dist: praisonaiagents (>=0.0.4)
|
|
35
|
-
Requires-Dist: pyautogen (>=0.2.19)
|
|
36
|
-
Requires-Dist: pydantic (<=2.10.1)
|
|
37
|
-
Requires-Dist: pyngrok (>=1.4.0)
|
|
50
|
+
Requires-Dist: pyautogen (>=0.2.19) ; extra == "autogen"
|
|
51
|
+
Requires-Dist: pydantic (<=2.10.1) ; extra == "chat" or extra == "code"
|
|
52
|
+
Requires-Dist: pyngrok (>=1.4.0) ; extra == "call"
|
|
38
53
|
Requires-Dist: pyparsing (>=3.0.0)
|
|
39
|
-
Requires-Dist: python-dotenv (>=1.0.1)
|
|
40
|
-
Requires-Dist: rich (>=13.7)
|
|
41
|
-
Requires-Dist: sqlalchemy (>=2.0.36)
|
|
42
|
-
Requires-Dist: tavily-python (==0.5.0)
|
|
43
|
-
Requires-Dist: twilio (>=7.0.0)
|
|
44
|
-
Requires-Dist: uvicorn (>=0.20.0)
|
|
45
|
-
Requires-Dist: websockets (>=12.0)
|
|
46
|
-
Requires-Dist: yfinance (>=0.2.44)
|
|
54
|
+
Requires-Dist: python-dotenv (>=1.0.1) ; extra == "call"
|
|
55
|
+
Requires-Dist: rich (>=13.7) ; extra == "chat" or extra == "call"
|
|
56
|
+
Requires-Dist: sqlalchemy (>=2.0.36) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
57
|
+
Requires-Dist: tavily-python (==0.5.0) ; extra == "chat" or extra == "code" or extra == "realtime"
|
|
58
|
+
Requires-Dist: twilio (>=7.0.0) ; extra == "call"
|
|
59
|
+
Requires-Dist: uvicorn (>=0.20.0) ; extra == "call"
|
|
60
|
+
Requires-Dist: websockets (>=12.0) ; extra == "realtime" or extra == "call"
|
|
61
|
+
Requires-Dist: yfinance (>=0.2.44) ; extra == "realtime"
|
|
47
62
|
Project-URL: Homepage, https://docs.praison.ai
|
|
48
63
|
Project-URL: Repository, https://github.com/mervinpraison/PraisonAI
|
|
49
64
|
Description-Content-Type: text/markdown
|
|
@@ -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=F1LheX0FEjNyl6bYuW_5iiG-e5JIMKm-vGiyN_67rdU,6027
|
|
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
|
|
@@ -36,7 +36,7 @@ praisonai/ui/README.md,sha256=QG9yucvBieVjCjWFzu6hL9xNtYllkoqyJ_q1b0YYAco,1124
|
|
|
36
36
|
praisonai/ui/chat.py,sha256=rlYwhTd3giBuvtK4Yc9kf6N9jfVT0VrZ-mLIzhANGiQ,13565
|
|
37
37
|
praisonai/ui/code.py,sha256=GD_xQTo7qzpOM98tu4MOPsviJdXU__Ta3JIfsjoRe6U,15797
|
|
38
38
|
praisonai/ui/components/aicoder.py,sha256=Xh95RSEJCel5mEGic4vdtzyNpHNULF3ymft9nbwglXY,11155
|
|
39
|
-
praisonai/ui/config/.chainlit/config.toml,sha256=
|
|
39
|
+
praisonai/ui/config/.chainlit/config.toml,sha256=kxb2APgVauLtfxlcEMlv8GHse6p8AbNTsJhIfZF38bg,3824
|
|
40
40
|
praisonai/ui/config/.chainlit/translations/bn.json,sha256=m2TAaGMS-18_siW5dw4sbosh0Wn8ENWWzdGYkHaBrXw,22679
|
|
41
41
|
praisonai/ui/config/.chainlit/translations/en-US.json,sha256=QoQAg8P5Q5gbGASc-HAHcfhufk71-Uc1u_ewIBfHuLc,9821
|
|
42
42
|
praisonai/ui/config/.chainlit/translations/gu.json,sha256=9wE-NsHf7j5VUFzfE-cCpESTyHtzVHRcZXAwC3ACMl0,21660
|
|
@@ -75,7 +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.
|
|
78
|
+
praisonai-2.0.8.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
|
|
79
|
+
praisonai-2.0.8.dist-info/METADATA,sha256=gAM8HAbDH1SsIra7S3MXgzEqNifqpmdKiYd2teVuUDo,17442
|
|
80
|
+
praisonai-2.0.8.dist-info/WHEEL,sha256=fmH-GaHMjP7_7QRgxgY6NpqU0nbYISt-cx_c84Y5gdY,106
|
|
81
|
+
praisonai-2.0.8.dist-info/entry_points.txt,sha256=I_xc6a6MNTTfLxYmAxe0rgey0G-_hbY07oFW-ZDnkw4,135
|
|
82
|
+
praisonai-2.0.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|