PraisonAI 0.1.7__cp312-cp312-manylinux_2_35_x86_64.whl → 0.1.8__cp312-cp312-manylinux_2_35_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.
- praisonai/agents_generator.py +1 -1
- praisonai/api/call.py +1 -1
- praisonai/deploy.py +1 -1
- {praisonai-0.1.7.dist-info → praisonai-0.1.8.dist-info}/METADATA +1 -1
- {praisonai-0.1.7.dist-info → praisonai-0.1.8.dist-info}/RECORD +8 -8
- {praisonai-0.1.7.dist-info → praisonai-0.1.8.dist-info}/LICENSE +0 -0
- {praisonai-0.1.7.dist-info → praisonai-0.1.8.dist-info}/WHEEL +0 -0
- {praisonai-0.1.7.dist-info → praisonai-0.1.8.dist-info}/entry_points.txt +0 -0
praisonai/agents_generator.py
CHANGED
|
@@ -288,7 +288,7 @@ class AgentsGenerator:
|
|
|
288
288
|
backstory_filled = details['backstory'].format(topic=topic)
|
|
289
289
|
|
|
290
290
|
# Adding tools to the agent if exists
|
|
291
|
-
agent_tools = [tools_dict
|
|
291
|
+
agent_tools = [tools_dict.get(tool) for tool in details.get('tools', [])]
|
|
292
292
|
|
|
293
293
|
llm_model = details.get('llm') # Get the llm configuration
|
|
294
294
|
if llm_model:
|
praisonai/api/call.py
CHANGED
|
@@ -270,7 +270,7 @@ def run_server(port: int, use_public: bool = False):
|
|
|
270
270
|
setup_public_url(port)
|
|
271
271
|
else:
|
|
272
272
|
print(f"Starting Praison AI Call Server on http://localhost:{port}")
|
|
273
|
-
uvicorn.run(app, host="0.0.0.0", port=port, log_level="
|
|
273
|
+
uvicorn.run(app, host="0.0.0.0", port=port, log_level="warning")
|
|
274
274
|
|
|
275
275
|
def main(args=None):
|
|
276
276
|
"""Run the Praison AI Call Server."""
|
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.1.
|
|
59
|
+
file.write("RUN pip install flask praisonai==0.1.8 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
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PraisonAI
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.8
|
|
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
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
praisonai/__init__.py,sha256=JrgyPlzZfLlozoW7SHZ1nVJ63rLPR3ki2k5ZPywYrnI,175
|
|
2
2
|
praisonai/__main__.py,sha256=MVgsjMThjBexHt4nhd760JCqvP4x0IQcwo8kULOK4FQ,144
|
|
3
|
-
praisonai/agents_generator.py,sha256=
|
|
4
|
-
praisonai/api/call.py,sha256=
|
|
3
|
+
praisonai/agents_generator.py,sha256=SltYtjFrADEkYkbzNrWHT6tIxpyjAMBbwH2czZOGPhg,19109
|
|
4
|
+
praisonai/api/call.py,sha256=iHdAlgIH_oTsEbjaGGu1Jjo6DTfMR-SfFdtSxnOLCeY,11032
|
|
5
5
|
praisonai/auto.py,sha256=9spTXqj47Hmmqv5QHRYE_RzSVHH_KoPbaZjskUj2UcE,7895
|
|
6
6
|
praisonai/chainlit_ui.py,sha256=bNR7s509lp0I9JlJNvwCZRUZosC64qdvlFCt8NmFamQ,12216
|
|
7
7
|
praisonai/cli.py,sha256=8q8nfvc9ztKW3AQ0NpFnby739MCcvaqF3Y14BrpuCXo,20768
|
|
8
|
-
praisonai/deploy.py,sha256=
|
|
8
|
+
praisonai/deploy.py,sha256=MY4PCgp8iSA-T1ovph00zZ8dTjIL7gZ7sjNENOOZ5sg,6027
|
|
9
9
|
praisonai/inbuilt_tools/__init__.py,sha256=mUKnbL6Gram9c9f2m8wJwEzURBLmPEOcHzwySBH89YA,74
|
|
10
10
|
praisonai/inbuilt_tools/autogen_tools.py,sha256=svYkM2N7DVFvbiwgoAS7U_MqTOD8rHf8VD3BaFUV5_Y,14907
|
|
11
11
|
praisonai/inc/__init__.py,sha256=sPDlYBBwdk0VlWzaaM_lG0_LD07lS2HRGvPdxXJFiYg,62
|
|
@@ -46,8 +46,8 @@ praisonai/ui/realtimeclient/realtimedocs.txt,sha256=hmgd8Uwy2SkjSndyyF_-ZOaNxiyH
|
|
|
46
46
|
praisonai/ui/realtimeclient/tools.py,sha256=IJOYwVOBW5Ocn5_iV9pFkmSKR3WU3YpX3kwF0I3jikQ,7855
|
|
47
47
|
praisonai/ui/sql_alchemy.py,sha256=kf025P_37C505YDDJZ-dPSmN_d62J2DCrkxbDAzXyrM,29884
|
|
48
48
|
praisonai/version.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
|
|
49
|
-
praisonai-0.1.
|
|
50
|
-
praisonai-0.1.
|
|
51
|
-
praisonai-0.1.
|
|
52
|
-
praisonai-0.1.
|
|
53
|
-
praisonai-0.1.
|
|
49
|
+
praisonai-0.1.8.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
|
|
50
|
+
praisonai-0.1.8.dist-info/METADATA,sha256=C2u3l914yI9enMAZLYuaaAY72fRXXwZ8e--VkGn3KdQ,13291
|
|
51
|
+
praisonai-0.1.8.dist-info/WHEEL,sha256=Ie8mbC-etDUh6aDhzdvvvp_A-4mQQX7whlOFBnSJhcE,110
|
|
52
|
+
praisonai-0.1.8.dist-info/entry_points.txt,sha256=LT8Ie95dy4JkUlpgS0YyvD4Tf9zTstjaXISJnijDxoM,172
|
|
53
|
+
praisonai-0.1.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|