PraisonAI 2.2.65__cp313-cp313-manylinux_2_39_x86_64.whl → 2.2.66__cp313-cp313-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/__init__.py +25 -0
- praisonai/deploy.py +1 -1
- {praisonai-2.2.65.dist-info → praisonai-2.2.66.dist-info}/METADATA +2 -2
- {praisonai-2.2.65.dist-info → praisonai-2.2.66.dist-info}/RECORD +6 -6
- {praisonai-2.2.65.dist-info → praisonai-2.2.66.dist-info}/WHEEL +0 -0
- {praisonai-2.2.65.dist-info → praisonai-2.2.66.dist-info}/entry_points.txt +0 -0
praisonai/__init__.py
CHANGED
|
@@ -4,3 +4,28 @@ os.environ["OTEL_SDK_DISABLED"] = "true"
|
|
|
4
4
|
os.environ["EC_TELEMETRY"] = "false"
|
|
5
5
|
from .cli import PraisonAI
|
|
6
6
|
from .version import __version__
|
|
7
|
+
|
|
8
|
+
# Re-export all classes from praisonaiagents to enable:
|
|
9
|
+
# from praisonai import Agent, Task, PraisonAIAgents
|
|
10
|
+
try:
|
|
11
|
+
import praisonaiagents
|
|
12
|
+
# Import all symbols from praisonaiagents using * import
|
|
13
|
+
from praisonaiagents import *
|
|
14
|
+
except ImportError:
|
|
15
|
+
# If praisonaiagents is not available, these imports will fail gracefully
|
|
16
|
+
pass
|
|
17
|
+
|
|
18
|
+
# Define __all__ to include both PraisonAI core classes and praisonaiagents exports
|
|
19
|
+
__all__ = [
|
|
20
|
+
# Core PraisonAI classes
|
|
21
|
+
'PraisonAI',
|
|
22
|
+
'__version__',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
# Dynamically extend __all__ with praisonaiagents exports
|
|
26
|
+
try:
|
|
27
|
+
import praisonaiagents
|
|
28
|
+
__all__.extend(praisonaiagents.__all__)
|
|
29
|
+
except (ImportError, AttributeError):
|
|
30
|
+
# If praisonaiagents is not available or doesn't have __all__, fail gracefully
|
|
31
|
+
pass
|
praisonai/deploy.py
CHANGED
|
@@ -57,7 +57,7 @@ class CloudDeployer:
|
|
|
57
57
|
file.write("FROM python:3.11-slim\n")
|
|
58
58
|
file.write("WORKDIR /app\n")
|
|
59
59
|
file.write("COPY . .\n")
|
|
60
|
-
file.write("RUN pip install flask praisonai==2.2.
|
|
60
|
+
file.write("RUN pip install flask praisonai==2.2.66 gunicorn markdown\n")
|
|
61
61
|
file.write("EXPOSE 8080\n")
|
|
62
62
|
file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n')
|
|
63
63
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: PraisonAI
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.66
|
|
4
4
|
Summary: 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.
|
|
5
5
|
Author: Mervin Praison
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -70,7 +70,7 @@ Requires-Dist: plotly (>=5.24.0) ; extra == "realtime"
|
|
|
70
70
|
Requires-Dist: praisonai-tools (>=0.0.22) ; extra == "autogen"
|
|
71
71
|
Requires-Dist: praisonai-tools (>=0.0.22) ; extra == "autogen-v4"
|
|
72
72
|
Requires-Dist: praisonai-tools (>=0.0.22) ; extra == "crewai"
|
|
73
|
-
Requires-Dist: praisonaiagents (>=0.0.
|
|
73
|
+
Requires-Dist: praisonaiagents (>=0.0.137)
|
|
74
74
|
Requires-Dist: pyautogen (==0.2.29) ; extra == "autogen"
|
|
75
75
|
Requires-Dist: pydantic (<=2.10.1) ; extra == "chat"
|
|
76
76
|
Requires-Dist: pydantic (<=2.10.1) ; extra == "code"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
praisonai/README.md,sha256=dXaEAByiWlJPE8_k-13lsNIEuvHdzmzJzJ8IVa84thM,195
|
|
2
|
-
praisonai/__init__.py,sha256=
|
|
2
|
+
praisonai/__init__.py,sha256=dxyNWN5Z_BRZHkk7c72nn_0b0IqiMolCN0aeF3_0FNo,949
|
|
3
3
|
praisonai/__main__.py,sha256=MVgsjMThjBexHt4nhd760JCqvP4x0IQcwo8kULOK4FQ,144
|
|
4
4
|
praisonai/agents_generator.py,sha256=2xd2jPhmmQYOTHCbMNHI14wpkj271nFDcCSdJHcPzvU,37378
|
|
5
5
|
praisonai/api/call.py,sha256=-dV9DKNDi4w9vN6K63TUh15_PC0M5KzYOmBqHbuJqq0,11079
|
|
6
6
|
praisonai/auto.py,sha256=mSMx6WI9RBnwi3XkYklKCGRYBwiWd20qnp4jQkElDeE,12893
|
|
7
7
|
praisonai/chainlit_ui.py,sha256=pMp1z7VV1IATgZvctAX4b42ajg948Qwu8cdLKIwcG0g,12241
|
|
8
8
|
praisonai/cli.py,sha256=KGQ6wsAGuniHU1v0lKBnb0OcuPFHRVYuodHWA2oScBQ,38265
|
|
9
|
-
praisonai/deploy.py,sha256=
|
|
9
|
+
praisonai/deploy.py,sha256=suX0Kx_oDJnqcgns_ybtzIIFcbTgRVMUlgrzTilv_oU,8265
|
|
10
10
|
praisonai/inbuilt_tools/__init__.py,sha256=mZOEximj3zCyJHq9Lz0bGXhQpBsa_QR-R-yA9UKC3zI,565
|
|
11
11
|
praisonai/inbuilt_tools/autogen_tools.py,sha256=kJdEv61BTYvdHOaURNEpBcWq8Rs-oC03loNFTIjT-ak,4687
|
|
12
12
|
praisonai/inc/__init__.py,sha256=sPDlYBBwdk0VlWzaaM_lG0_LD07lS2HRGvPdxXJFiYg,62
|
|
@@ -74,7 +74,7 @@ praisonai/ui/sql_alchemy.py,sha256=ilWAWicUGja7ADbXW9_OgIYeyKNuAQ1ZI_RMqjmMI9k,2
|
|
|
74
74
|
praisonai/ui/tools.md,sha256=Ad3YH_ZCLMWlz3mDXllQnQ_S5l55LWqLdcZSh-EXrHI,3956
|
|
75
75
|
praisonai/upload_vision.py,sha256=lMpFn993UiYVJxRNZQTmcbPbEajQ5TFKCNGK1Icn_hg,5253
|
|
76
76
|
praisonai/version.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
|
|
77
|
-
praisonai-2.2.
|
|
78
|
-
praisonai-2.2.
|
|
79
|
-
praisonai-2.2.
|
|
80
|
-
praisonai-2.2.
|
|
77
|
+
praisonai-2.2.66.dist-info/METADATA,sha256=DUaxHoX7x9SX7RryK17oAJO4gWYr4V19IreqDYDTQEY,5099
|
|
78
|
+
praisonai-2.2.66.dist-info/WHEEL,sha256=dCzwOzx-VmbmLA5u8QpkARaxx3rsePBxa1nmZphhNQk,110
|
|
79
|
+
praisonai-2.2.66.dist-info/entry_points.txt,sha256=QSSfuXjZMhf16FZ201I_oSoX_s1nWYbi_4_UXPE3S-o,145
|
|
80
|
+
praisonai-2.2.66.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|