PraisonAI 2.0.46__cp312-cp312-manylinux_2_39_x86_64.whl → 2.0.51__cp312-cp312-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 +1 -1
- praisonai/ui/realtime.py +4 -4
- {praisonai-2.0.46.dist-info → praisonai-2.0.51.dist-info}/METADATA +7 -7
- {praisonai-2.0.46.dist-info → praisonai-2.0.51.dist-info}/RECORD +7 -7
- {praisonai-2.0.46.dist-info → praisonai-2.0.51.dist-info}/LICENSE +0 -0
- {praisonai-2.0.46.dist-info → praisonai-2.0.51.dist-info}/WHEEL +0 -0
- {praisonai-2.0.46.dist-info → praisonai-2.0.51.dist-info}/entry_points.txt +0 -0
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==2.0.
|
|
59
|
+
file.write("RUN pip install flask praisonai==2.0.51 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
|
|
praisonai/ui/realtime.py
CHANGED
|
@@ -229,7 +229,7 @@ except Exception as e:
|
|
|
229
229
|
@cl.on_chat_start
|
|
230
230
|
async def start():
|
|
231
231
|
initialize_db()
|
|
232
|
-
model_name = load_setting("model_name") or os.getenv("MODEL_NAME", "gpt-4o-mini")
|
|
232
|
+
model_name = load_setting("model_name") or os.getenv("MODEL_NAME", "gpt-4o-mini-realtime-preview")
|
|
233
233
|
cl.user_session.set("model_name", model_name)
|
|
234
234
|
cl.user_session.set("message_history", []) # Initialize message history
|
|
235
235
|
logger.debug(f"Model name: {model_name}")
|
|
@@ -238,7 +238,7 @@ async def start():
|
|
|
238
238
|
# TextInput(
|
|
239
239
|
# id="model_name",
|
|
240
240
|
# label="Enter the Model Name",
|
|
241
|
-
# placeholder="e.g., gpt-4o-mini",
|
|
241
|
+
# placeholder="e.g., gpt-4o-mini-realtime-preview",
|
|
242
242
|
# initial=model_name
|
|
243
243
|
# )
|
|
244
244
|
# ]
|
|
@@ -423,14 +423,14 @@ def auth_callback(username: str, password: str):
|
|
|
423
423
|
@cl.on_chat_resume
|
|
424
424
|
async def on_chat_resume(thread: ThreadDict):
|
|
425
425
|
logger.info(f"Resuming chat: {thread['id']}")
|
|
426
|
-
model_name = load_setting("model_name") or os.getenv("MODEL_NAME") or "gpt-4o-mini"
|
|
426
|
+
model_name = load_setting("model_name") or os.getenv("MODEL_NAME") or "gpt-4o-mini-realtime-preview"
|
|
427
427
|
logger.debug(f"Model name: {model_name}")
|
|
428
428
|
settings = cl.ChatSettings(
|
|
429
429
|
[
|
|
430
430
|
TextInput(
|
|
431
431
|
id="model_name",
|
|
432
432
|
label="Enter the Model Name",
|
|
433
|
-
placeholder="e.g., gpt-4o-mini",
|
|
433
|
+
placeholder="e.g., gpt-4o-mini-realtime-preview",
|
|
434
434
|
initial=model_name
|
|
435
435
|
)
|
|
436
436
|
]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: PraisonAI
|
|
3
|
-
Version: 2.0.
|
|
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
|
|
3
|
+
Version: 2.0.51
|
|
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,<3.13
|
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -28,10 +28,10 @@ Requires-Dist: aiosqlite (>=0.20.0) ; extra == "chat"
|
|
|
28
28
|
Requires-Dist: aiosqlite (>=0.20.0) ; extra == "code"
|
|
29
29
|
Requires-Dist: aiosqlite (>=0.20.0) ; extra == "realtime"
|
|
30
30
|
Requires-Dist: aiosqlite (>=0.20.0) ; extra == "ui"
|
|
31
|
-
Requires-Dist: chainlit (==2.0.
|
|
32
|
-
Requires-Dist: chainlit (==2.0.
|
|
33
|
-
Requires-Dist: chainlit (==2.0.
|
|
34
|
-
Requires-Dist: chainlit (==2.0.
|
|
31
|
+
Requires-Dist: chainlit (==2.0.3) ; extra == "chat"
|
|
32
|
+
Requires-Dist: chainlit (==2.0.3) ; extra == "code"
|
|
33
|
+
Requires-Dist: chainlit (==2.0.3) ; extra == "realtime"
|
|
34
|
+
Requires-Dist: chainlit (==2.0.3) ; extra == "ui"
|
|
35
35
|
Requires-Dist: crawl4ai (==0.3.4) ; extra == "chat"
|
|
36
36
|
Requires-Dist: crawl4ai (==0.3.4) ; extra == "code"
|
|
37
37
|
Requires-Dist: crawl4ai (==0.3.4) ; extra == "realtime"
|
|
@@ -61,7 +61,7 @@ Requires-Dist: playwright (>=1.47.0) ; extra == "code"
|
|
|
61
61
|
Requires-Dist: plotly (>=5.24.0) ; extra == "realtime"
|
|
62
62
|
Requires-Dist: praisonai-tools (>=0.0.7) ; extra == "autogen"
|
|
63
63
|
Requires-Dist: praisonai-tools (>=0.0.7) ; extra == "crewai"
|
|
64
|
-
Requires-Dist: praisonaiagents (>=0.0.
|
|
64
|
+
Requires-Dist: praisonaiagents (>=0.0.42)
|
|
65
65
|
Requires-Dist: pyautogen (>=0.2.19) ; extra == "autogen"
|
|
66
66
|
Requires-Dist: pydantic (<=2.10.1) ; extra == "chat"
|
|
67
67
|
Requires-Dist: pydantic (<=2.10.1) ; extra == "code"
|
|
@@ -5,7 +5,7 @@ praisonai/api/call.py,sha256=krOfTCZM_bdbsNuWQ1PijzCHECkDvEi9jIvvZaDQUUU,11035
|
|
|
5
5
|
praisonai/auto.py,sha256=uLDm8CU3L_3amZsd55yzf9RdBF1uW-BGSx7nl9ctNZ4,8680
|
|
6
6
|
praisonai/chainlit_ui.py,sha256=bNR7s509lp0I9JlJNvwCZRUZosC64qdvlFCt8NmFamQ,12216
|
|
7
7
|
praisonai/cli.py,sha256=U5ZPbJGcpZfZPNwwE99NoGOerH55ZmcbePMUU6lUoqE,21566
|
|
8
|
-
praisonai/deploy.py,sha256=
|
|
8
|
+
praisonai/deploy.py,sha256=8t-RKIBsIjxiRV_D_LHT-AyWr1vb4xxXrotMIWp-l0A,6028
|
|
9
9
|
praisonai/inbuilt_tools/__init__.py,sha256=fai4ZJIKz7-iOnGZv5jJX0wmT77PKa4x2jqyaJddKFA,569
|
|
10
10
|
praisonai/inbuilt_tools/autogen_tools.py,sha256=kJdEv61BTYvdHOaURNEpBcWq8Rs-oC03loNFTIjT-ak,4687
|
|
11
11
|
praisonai/inc/__init__.py,sha256=sPDlYBBwdk0VlWzaaM_lG0_LD07lS2HRGvPdxXJFiYg,62
|
|
@@ -75,15 +75,15 @@ praisonai/ui/public/logo_light.png,sha256=8cQRti_Ysa30O3_7C3ku2w40LnVUUlUok47H-3
|
|
|
75
75
|
praisonai/ui/public/movie.svg,sha256=aJ2EQ8vXZusVsF2SeuAVxP4RFJzQ14T26ejrGYdBgzk,1289
|
|
76
76
|
praisonai/ui/public/praison.css,sha256=fBYbJn4Uuv2AH6ThWkMmdAy_uBbw9a9ZeW0hIGsqotA,75
|
|
77
77
|
praisonai/ui/public/thriller.svg,sha256=2dYY72EcgbEyTxS4QzjAm37Y4srtPWEW4vCMFki98ZI,3163
|
|
78
|
-
praisonai/ui/realtime.py,sha256=
|
|
78
|
+
praisonai/ui/realtime.py,sha256=aVK-lbA57J9KHo3Lrknk4aaO1V1tRkiKXr_01zWrl30,17845
|
|
79
79
|
praisonai/ui/realtimeclient/__init__.py,sha256=zA2xa7rBUSw77wFkndJMQNNPqdH6ywQ3uf4WSYHjNfs,27513
|
|
80
80
|
praisonai/ui/realtimeclient/realtimedocs.txt,sha256=hmgd8Uwy2SkjSndyyF_-ZOaNxiyHwGaQLGc67DvV-sI,26395
|
|
81
81
|
praisonai/ui/realtimeclient/tools.py,sha256=IJOYwVOBW5Ocn5_iV9pFkmSKR3WU3YpX3kwF0I3jikQ,7855
|
|
82
82
|
praisonai/ui/sql_alchemy.py,sha256=oekZOXlRGMJ2SuC-lmgMMIzAmvbMg2DWeGTSpOzbVBM,29674
|
|
83
83
|
praisonai/ui/tools.md,sha256=Ad3YH_ZCLMWlz3mDXllQnQ_S5l55LWqLdcZSh-EXrHI,3956
|
|
84
84
|
praisonai/version.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
|
|
85
|
-
praisonai-2.0.
|
|
86
|
-
praisonai-2.0.
|
|
87
|
-
praisonai-2.0.
|
|
88
|
-
praisonai-2.0.
|
|
89
|
-
praisonai-2.0.
|
|
85
|
+
praisonai-2.0.51.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
|
|
86
|
+
praisonai-2.0.51.dist-info/METADATA,sha256=xglfOvmkjxvflKwY0AC62MpNdaQgtlSNU1YKFb4ax8I,21772
|
|
87
|
+
praisonai-2.0.51.dist-info/WHEEL,sha256=XNotAM5R5VZo294qRITsGPsggFO0DBsFtBddMnokcjo,110
|
|
88
|
+
praisonai-2.0.51.dist-info/entry_points.txt,sha256=I_xc6a6MNTTfLxYmAxe0rgey0G-_hbY07oFW-ZDnkw4,135
|
|
89
|
+
praisonai-2.0.51.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|