PraisonAI 0.0.24__tar.gz → 0.0.25__tar.gz
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-0.0.24 → praisonai-0.0.25}/PKG-INFO +1 -2
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/agents_generator.py +0 -1
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/cli.py +5 -4
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/deploy.py +1 -1
- {praisonai-0.0.24 → praisonai-0.0.25}/pyproject.toml +1 -2
- {praisonai-0.0.24 → praisonai-0.0.25}/LICENSE +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/README.md +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/__init__.py +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/__main__.py +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/auto.py +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/chainlit_ui.py +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/inbuilt_tools/__init__.py +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/inbuilt_tools/autogen_tools.py +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/test.py +0 -0
- {praisonai-0.0.24 → praisonai-0.0.25}/praisonai/version.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PraisonAI
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.25
|
|
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,7 +8,6 @@ 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: chainlit
|
|
12
11
|
Provides-Extra: gradio
|
|
13
12
|
Provides-Extra: ui
|
|
14
13
|
Requires-Dist: Flask (>=3.0.0)
|
|
@@ -8,7 +8,6 @@ from dotenv import load_dotenv
|
|
|
8
8
|
from crewai import Agent, Task, Crew
|
|
9
9
|
load_dotenv()
|
|
10
10
|
import autogen
|
|
11
|
-
import gradio as gr
|
|
12
11
|
import argparse
|
|
13
12
|
from .auto import AutoGenerator
|
|
14
13
|
from .agents_generator import AgentsGenerator
|
|
@@ -211,7 +210,7 @@ class PraisonAI:
|
|
|
211
210
|
theme="default"
|
|
212
211
|
).launch()
|
|
213
212
|
else:
|
|
214
|
-
print("ERROR: Gradio is not installed. Please install it with 'pip install
|
|
213
|
+
print("ERROR: Gradio is not installed. Please install it with 'pip install gradio' to use this feature.")
|
|
215
214
|
|
|
216
215
|
def create_chainlit_interface(self):
|
|
217
216
|
"""
|
|
@@ -226,9 +225,11 @@ class PraisonAI:
|
|
|
226
225
|
"""
|
|
227
226
|
if CHAINLIT_AVAILABLE:
|
|
228
227
|
os.environ["CHAINLIT_PORT"] = "8082"
|
|
229
|
-
|
|
228
|
+
import praisonai
|
|
229
|
+
chainlit_ui_path = os.path.join(os.path.dirname(praisonai.__file__), 'chainlit_ui.py')
|
|
230
|
+
chainlit_run([chainlit_ui_path])
|
|
230
231
|
else:
|
|
231
|
-
print("ERROR: Chainlit is not installed. Please install it with 'pip install
|
|
232
|
+
print("ERROR: Chainlit is not installed. Please install it with 'pip install chainlit' to use the UI.")
|
|
232
233
|
|
|
233
234
|
if __name__ == "__main__":
|
|
234
235
|
praison_ai = PraisonAI()
|
|
@@ -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==0.0.
|
|
59
|
+
file.write("RUN pip install flask praisonai==0.0.25 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
|
[tool.poetry]
|
|
2
2
|
name = "PraisonAI"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.25"
|
|
4
4
|
description = "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
|
authors = ["Mervin Praison"]
|
|
6
6
|
license = ""
|
|
@@ -36,5 +36,4 @@ praisonai = "praisonai.__main__:main"
|
|
|
36
36
|
|
|
37
37
|
[tool.poetry.extras]
|
|
38
38
|
ui = ["chainlit"]
|
|
39
|
-
chainlit = ["chainlit"]
|
|
40
39
|
gradio = ["gradio"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|