PraisonAI 2.2.86__cp313-cp313-manylinux_2_39_x86_64.whl → 2.2.88__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/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.86 gunicorn markdown\n")
60
+ file.write("RUN pip install flask praisonai==2.2.88 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
 
praisonai/inc/models.py CHANGED
@@ -138,11 +138,15 @@ class PraisonAIModel:
138
138
  "Please install with 'pip install langchain-anthropic'"
139
139
  )
140
140
  elif OPENAI_AVAILABLE:
141
- return ChatOpenAI(
142
- model=self.model_name,
143
- api_key=self.api_key,
144
- base_url=self.base_url,
145
- )
141
+ chat_kwargs = {
142
+ "model": self.model_name,
143
+ "api_key": self.api_key,
144
+ "base_url": self.base_url,
145
+ }
146
+ # Certain OpenAI models (e.g., gpt-5-* family) only allow temperature=1
147
+ if isinstance(self.model_name, str) and self.model_name.startswith("gpt-5"):
148
+ chat_kwargs["temperature"] = 1
149
+ return ChatOpenAI(**chat_kwargs)
146
150
  else:
147
151
  raise ImportError(
148
152
  "Required Langchain Integration 'langchain-openai' not found. "
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: PraisonAI
3
- Version: 2.2.86
3
+ Version: 2.2.88
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
@@ -40,7 +40,7 @@ Requires-Dist: chainlit (==2.5.5) ; extra == "ui"
40
40
  Requires-Dist: crawl4ai (>=0.7.0) ; extra == "chat"
41
41
  Requires-Dist: crawl4ai (>=0.7.0) ; extra == "code"
42
42
  Requires-Dist: crawl4ai (>=0.7.0) ; extra == "realtime"
43
- Requires-Dist: crewai (>=0.148.0) ; extra == "crewai"
43
+ Requires-Dist: crewai (>=0.157.0) ; extra == "crewai"
44
44
  Requires-Dist: crewai ; extra == "autogen"
45
45
  Requires-Dist: crewai ; extra == "autogen-v4"
46
46
  Requires-Dist: duckduckgo_search (>=6.3.0) ; extra == "realtime"
@@ -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.160)
73
+ Requires-Dist: praisonaiagents (>=0.0.161)
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"
@@ -6,12 +6,12 @@ praisonai/api/call.py,sha256=-dV9DKNDi4w9vN6K63TUh15_PC0M5KzYOmBqHbuJqq0,11079
6
6
  praisonai/auto.py,sha256=SIEN5AVbSYAOPHxE0Z4lveYQ5C6eQVJIS5HVSTSIP04,12892
7
7
  praisonai/chainlit_ui.py,sha256=pDnTxBPuaIda4D59HrhgUXwCLa6OUlKo7A8OF4lck14,12240
8
8
  praisonai/cli.py,sha256=LiicFzddfIZj_XbwFZlQHcmisL_FeXMkseQ_J9SfeII,41448
9
- praisonai/deploy.py,sha256=SNDBufXwPnot-v5LIgQVQd8r8pf2aaen0xoXqqjx9iI,8267
9
+ praisonai/deploy.py,sha256=vMqp4-Lfc2pJouIi4ymWpB-u4ef5iZY-kKUH0b_dBvo,8267
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
13
13
  praisonai/inc/config.py,sha256=up2-841ruK7MCUUT3xkWBA5S6WsY0sFODNfcT6Q4Wms,3333
14
- praisonai/inc/models.py,sha256=2sayOznb_FZv1yDgH7AhsLJ-1tqoGX6Pb4rSbj6ZDgQ,6560
14
+ praisonai/inc/models.py,sha256=JUiVIRV5LZBWPY_8JnsIjdq3NCamNONpTeMK_cf53wg,6831
15
15
  praisonai/public/android-chrome-192x192.png,sha256=ENJEqhDE3XEQViRhKNDezQKRiOiuHOUj5nzRN43fz50,6535
16
16
  praisonai/public/android-chrome-512x512.png,sha256=4txEwB0cJkxFVarRdvFGJZR1DtWJ2h-L_2cUEjBXHAc,15244
17
17
  praisonai/public/apple-touch-icon.png,sha256=YLlEhlenm24QY_yv-5wb_mxDxJ8H22H_S8Khlvz-zVA,6001
@@ -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.86.dist-info/METADATA,sha256=tiegAgw2bPlwZ13Z9siMlkjvhCEBaK44DVELvlLO9DU,5100
78
- praisonai-2.2.86.dist-info/WHEEL,sha256=dCzwOzx-VmbmLA5u8QpkARaxx3rsePBxa1nmZphhNQk,110
79
- praisonai-2.2.86.dist-info/entry_points.txt,sha256=QSSfuXjZMhf16FZ201I_oSoX_s1nWYbi_4_UXPE3S-o,145
80
- praisonai-2.2.86.dist-info/RECORD,,
77
+ praisonai-2.2.88.dist-info/METADATA,sha256=9GNYUDzuYSriIGQl2_W2DqDfuYvNIP9XSGh94Waextk,5100
78
+ praisonai-2.2.88.dist-info/WHEEL,sha256=dCzwOzx-VmbmLA5u8QpkARaxx3rsePBxa1nmZphhNQk,110
79
+ praisonai-2.2.88.dist-info/entry_points.txt,sha256=QSSfuXjZMhf16FZ201I_oSoX_s1nWYbi_4_UXPE3S-o,145
80
+ praisonai-2.2.88.dist-info/RECORD,,