PraisonAI 0.0.33__py3-none-any.whl → 0.0.35__py3-none-any.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 +4 -0
- praisonai/agents_generator.py +1 -1
- praisonai/deploy.py +1 -1
- praisonai/inbuilt_tools/autogen_tools.py +1 -1
- {praisonai-0.0.33.dist-info → praisonai-0.0.35.dist-info}/METADATA +9 -9
- {praisonai-0.0.33.dist-info → praisonai-0.0.35.dist-info}/RECORD +9 -9
- {praisonai-0.0.33.dist-info → praisonai-0.0.35.dist-info}/LICENSE +0 -0
- {praisonai-0.0.33.dist-info → praisonai-0.0.35.dist-info}/WHEEL +0 -0
- {praisonai-0.0.33.dist-info → praisonai-0.0.35.dist-info}/entry_points.txt +0 -0
praisonai/__init__.py
CHANGED
praisonai/agents_generator.py
CHANGED
|
@@ -11,7 +11,7 @@ load_dotenv()
|
|
|
11
11
|
import autogen
|
|
12
12
|
import argparse
|
|
13
13
|
from .auto import AutoGenerator
|
|
14
|
-
from
|
|
14
|
+
from praisonai_tools import (
|
|
15
15
|
CodeDocsSearchTool, CSVSearchTool, DirectorySearchTool, DOCXSearchTool, DirectoryReadTool,
|
|
16
16
|
FileReadTool, TXTSearchTool, JSONSearchTool, MDXSearchTool, PDFSearchTool, RagTool,
|
|
17
17
|
ScrapeElementFromWebsiteTool, ScrapeWebsiteTool, WebsiteSearchTool, XMLSearchTool, YoutubeChannelSearchTool,
|
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==0.0.
|
|
59
|
+
file.write("RUN pip install flask praisonai==0.0.35 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
|
# praisonai/inbuilt_tools/autogen_tools.py
|
|
2
2
|
|
|
3
|
-
from
|
|
3
|
+
from praisonai_tools import (
|
|
4
4
|
CodeDocsSearchTool, CSVSearchTool, DirectorySearchTool, DOCXSearchTool, DirectoryReadTool,
|
|
5
5
|
FileReadTool, TXTSearchTool, JSONSearchTool, MDXSearchTool, PDFSearchTool, RagTool,
|
|
6
6
|
ScrapeElementFromWebsiteTool, ScrapeWebsiteTool, WebsiteSearchTool, XMLSearchTool, YoutubeChannelSearchTool,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PraisonAI
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.35
|
|
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
|
|
@@ -12,13 +12,13 @@ Provides-Extra: api
|
|
|
12
12
|
Provides-Extra: gradio
|
|
13
13
|
Provides-Extra: ui
|
|
14
14
|
Requires-Dist: chainlit (>=1.1.301,<2.0.0) ; extra == "ui"
|
|
15
|
-
Requires-Dist: crewai (>=0.
|
|
16
|
-
Requires-Dist: crewai-tools (>=0.2.6,<0.3.0)
|
|
15
|
+
Requires-Dist: crewai (>=0.32.0)
|
|
17
16
|
Requires-Dist: flask (>=3.0.0) ; extra == "api"
|
|
18
17
|
Requires-Dist: gradio (>=4.26.0) ; extra == "gradio"
|
|
19
18
|
Requires-Dist: markdown (>=3.5)
|
|
20
|
-
Requires-Dist: praisonai-tools (>=0.0.
|
|
19
|
+
Requires-Dist: praisonai-tools (>=0.0.7)
|
|
21
20
|
Requires-Dist: pyautogen (>=0.2.19)
|
|
21
|
+
Requires-Dist: pyparsing (>=3.0.0)
|
|
22
22
|
Requires-Dist: rich (>=13.7)
|
|
23
23
|
Project-URL: Homepage, https://docs.praison.ai
|
|
24
24
|
Project-URL: Repository, https://github.com/mervinpraison/PraisonAI
|
|
@@ -300,22 +300,22 @@ gcloud run deploy praisonai-service \
|
|
|
300
300
|
## Other Models
|
|
301
301
|
|
|
302
302
|
```bash
|
|
303
|
-
Ollama
|
|
303
|
+
# Ollama
|
|
304
304
|
OPENAI_API_BASE='http://localhost:11434/v1'
|
|
305
305
|
OPENAI_MODEL_NAME='mistral'
|
|
306
306
|
OPENAI_API_KEY='NA'
|
|
307
307
|
|
|
308
|
-
FastChat
|
|
308
|
+
# FastChat
|
|
309
309
|
OPENAI_API_BASE="http://localhost:8001/v1"
|
|
310
310
|
OPENAI_MODEL_NAME='oh-2.5m7b-q51'
|
|
311
311
|
OPENAI_API_KEY=NA
|
|
312
312
|
|
|
313
|
-
LM Studio
|
|
314
|
-
OPENAI_API_BASE="http://localhost:
|
|
313
|
+
# LM Studio
|
|
314
|
+
OPENAI_API_BASE="http://localhost:1234/v1"
|
|
315
315
|
OPENAI_MODEL_NAME=NA
|
|
316
316
|
OPENAI_API_KEY=NA
|
|
317
317
|
|
|
318
|
-
Mistral API
|
|
318
|
+
# Mistral API
|
|
319
319
|
OPENAI_API_BASE=https://api.mistral.ai/v1
|
|
320
320
|
OPENAI_MODEL_NAME="mistral-small"
|
|
321
321
|
OPENAI_API_KEY=your-mistral-api-key
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
praisonai/__init__.py,sha256=
|
|
1
|
+
praisonai/__init__.py,sha256=JrgyPlzZfLlozoW7SHZ1nVJ63rLPR3ki2k5ZPywYrnI,175
|
|
2
2
|
praisonai/__main__.py,sha256=MVgsjMThjBexHt4nhd760JCqvP4x0IQcwo8kULOK4FQ,144
|
|
3
|
-
praisonai/agents_generator.py,sha256=
|
|
3
|
+
praisonai/agents_generator.py,sha256=RWjA9COp9TLRW70uA-7PTDYQJal2_2FbVBqzNLzrHtw,12790
|
|
4
4
|
praisonai/auto.py,sha256=CpE9zUbdCP1wR0aLZWKVLxiLU9JOQprRNBK9WKDZVQo,7758
|
|
5
5
|
praisonai/chainlit_ui.py,sha256=qJ40aN7oxaI_8IpwPJhf4YPGM2-mBVcy_8bwtR0aCJU,10243
|
|
6
6
|
praisonai/cli.py,sha256=W_PL7bWnEEuFYBT24mh8171f7TiE_LdxVfrM16fp7Pc,10868
|
|
7
|
-
praisonai/deploy.py,sha256=
|
|
7
|
+
praisonai/deploy.py,sha256=Xz5C_pf9iDcP1LNhBfanrV15ye479bs1CbgbtrpVii4,6031
|
|
8
8
|
praisonai/inbuilt_tools/__init__.py,sha256=mUKnbL6Gram9c9f2m8wJwEzURBLmPEOcHzwySBH89YA,74
|
|
9
|
-
praisonai/inbuilt_tools/autogen_tools.py,sha256=
|
|
9
|
+
praisonai/inbuilt_tools/autogen_tools.py,sha256=XZoQHIZMjgXvVwoQ5-Hds3TFneeqd5mMSou2bEvgAuc,14764
|
|
10
10
|
praisonai/public/fantasy.svg,sha256=4Gs3kIOux-pjGtw6ogI_rv5_viVJxnE5gRwGilsSg0o,1553
|
|
11
11
|
praisonai/public/game.svg,sha256=y2QMaA01m8XzuDjTOBWzupOC3-TpnUl9ah89mIhviUw,2406
|
|
12
12
|
praisonai/public/movie.svg,sha256=aJ2EQ8vXZusVsF2SeuAVxP4RFJzQ14T26ejrGYdBgzk,1289
|
|
13
13
|
praisonai/public/thriller.svg,sha256=2dYY72EcgbEyTxS4QzjAm37Y4srtPWEW4vCMFki98ZI,3163
|
|
14
14
|
praisonai/test.py,sha256=RZKq3UEFb6AnFFiHER3zBXfNmlteSLBlrTmOvnpnZLo,4092
|
|
15
15
|
praisonai/version.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
|
|
16
|
-
praisonai-0.0.
|
|
17
|
-
praisonai-0.0.
|
|
18
|
-
praisonai-0.0.
|
|
19
|
-
praisonai-0.0.
|
|
20
|
-
praisonai-0.0.
|
|
16
|
+
praisonai-0.0.35.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
|
|
17
|
+
praisonai-0.0.35.dist-info/METADATA,sha256=ttszmWEJm4ywwgN8ZR42xEfSHM56NbKt3MGl6eWkHHw,9764
|
|
18
|
+
praisonai-0.0.35.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
19
|
+
praisonai-0.0.35.dist-info/entry_points.txt,sha256=Qg41eW3A1-dvdV5tF7LqChfYof8Rihk2rN1fiEE3vnk,53
|
|
20
|
+
praisonai-0.0.35.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|