PraisonAI 0.0.33__tar.gz → 0.0.35__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PraisonAI
3
- Version: 0.0.33
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.30.4)
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.4)
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:8000/v1"
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
@@ -274,22 +274,22 @@ gcloud run deploy praisonai-service \
274
274
  ## Other Models
275
275
 
276
276
  ```bash
277
- Ollama
277
+ # Ollama
278
278
  OPENAI_API_BASE='http://localhost:11434/v1'
279
279
  OPENAI_MODEL_NAME='mistral'
280
280
  OPENAI_API_KEY='NA'
281
281
 
282
- FastChat
282
+ # FastChat
283
283
  OPENAI_API_BASE="http://localhost:8001/v1"
284
284
  OPENAI_MODEL_NAME='oh-2.5m7b-q51'
285
285
  OPENAI_API_KEY=NA
286
286
 
287
- LM Studio
288
- OPENAI_API_BASE="http://localhost:8000/v1"
287
+ # LM Studio
288
+ OPENAI_API_BASE="http://localhost:1234/v1"
289
289
  OPENAI_MODEL_NAME=NA
290
290
  OPENAI_API_KEY=NA
291
291
 
292
- Mistral API
292
+ # Mistral API
293
293
  OPENAI_API_BASE=https://api.mistral.ai/v1
294
294
  OPENAI_MODEL_NAME="mistral-small"
295
295
  OPENAI_API_KEY=your-mistral-api-key
@@ -0,0 +1,6 @@
1
+ # Disable OpenTelemetry SDK
2
+ import os
3
+ os.environ["OTEL_SDK_DISABLED"] = "true"
4
+ os.environ["EC_TELEMETRY"] = "false"
5
+ from .cli import PraisonAI
6
+ from .version import __version__
@@ -11,7 +11,7 @@ load_dotenv()
11
11
  import autogen
12
12
  import argparse
13
13
  from .auto import AutoGenerator
14
- from crewai_tools import (
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,
@@ -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.33 gunicorn markdown\n")
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 crewai_tools import (
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
  [tool.poetry]
2
2
  name = "PraisonAI"
3
- version = "0.0.33"
3
+ version = "0.0.35"
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 = ""
@@ -17,10 +17,10 @@ packages = ["PraisonAI"]
17
17
  python = ">=3.10,<3.13"
18
18
  rich = ">=13.7"
19
19
  pyautogen = ">=0.2.19"
20
- crewai = ">=0.30.4"
20
+ crewai = ">=0.32.0"
21
21
  markdown = ">=3.5"
22
- crewai-tools = "^0.2.6"
23
- praisonai-tools = ">=0.0.4"
22
+ praisonai-tools = ">=0.0.7"
23
+ pyparsing = ">=3.0.0"
24
24
  chainlit = {version = "^1.1.301", optional = true}
25
25
  gradio = {version = ">=4.26.0", optional = true}
26
26
  flask = {version = ">=3.0.0", optional = true}
@@ -1,2 +0,0 @@
1
- from .cli import PraisonAI
2
- from .version import __version__
File without changes
File without changes
File without changes
File without changes