PraisonAI 2.2.10__cp313-cp313-manylinux_2_39_x86_64.whl → 2.2.12__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/agents_generator.py +9 -3
- praisonai/deploy.py +1 -1
- {praisonai-2.2.10.dist-info → praisonai-2.2.12.dist-info}/METADATA +1 -1
- {praisonai-2.2.10.dist-info → praisonai-2.2.12.dist-info}/RECORD +7 -7
- {praisonai-2.2.10.dist-info → praisonai-2.2.12.dist-info}/LICENSE +0 -0
- {praisonai-2.2.10.dist-info → praisonai-2.2.12.dist-info}/WHEEL +0 -0
- {praisonai-2.2.10.dist-info → praisonai-2.2.12.dist-info}/entry_points.txt +0 -0
praisonai/agents_generator.py
CHANGED
|
@@ -438,19 +438,25 @@ class AgentsGenerator:
|
|
|
438
438
|
if llm_model:
|
|
439
439
|
llm = PraisonAIModel(
|
|
440
440
|
model=llm_model.get("model") or os.environ.get("MODEL_NAME") or "openai/gpt-4o",
|
|
441
|
+
base_url=self.config_list[0].get('base_url') if self.config_list else None
|
|
441
442
|
).get_model()
|
|
442
443
|
else:
|
|
443
|
-
llm = PraisonAIModel(
|
|
444
|
+
llm = PraisonAIModel(
|
|
445
|
+
base_url=self.config_list[0].get('base_url') if self.config_list else None
|
|
446
|
+
).get_model()
|
|
444
447
|
|
|
445
448
|
# Configure function calling LLM
|
|
446
449
|
function_calling_llm_model = details.get('function_calling_llm')
|
|
447
450
|
if function_calling_llm_model:
|
|
448
451
|
function_calling_llm = PraisonAIModel(
|
|
449
452
|
model=function_calling_llm_model.get("model") or os.environ.get("MODEL_NAME") or "openai/gpt-4o",
|
|
453
|
+
base_url=self.config_list[0].get('base_url') if self.config_list else None
|
|
450
454
|
).get_model()
|
|
451
455
|
else:
|
|
452
|
-
function_calling_llm = PraisonAIModel(
|
|
453
|
-
|
|
456
|
+
function_calling_llm = PraisonAIModel(
|
|
457
|
+
base_url=self.config_list[0].get('base_url') if self.config_list else None
|
|
458
|
+
).get_model()
|
|
459
|
+
|
|
454
460
|
# Create CrewAI agent
|
|
455
461
|
agent = Agent(
|
|
456
462
|
role=role_filled,
|
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.2.
|
|
59
|
+
file.write("RUN pip install flask praisonai==2.2.12 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.3
|
|
2
2
|
Name: PraisonAI
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.12
|
|
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,<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=
|
|
3
|
+
praisonai/agents_generator.py,sha256=K8J0O_BKs1GkjzaA_GIg6610W5bYTiSc1ObSl4AJckM,28977
|
|
4
4
|
praisonai/api/call.py,sha256=krOfTCZM_bdbsNuWQ1PijzCHECkDvEi9jIvvZaDQUUU,11035
|
|
5
5
|
praisonai/auto.py,sha256=g9k1X94mx4tYxprEAtgzu-FPRffBM7cq2MZ0C3Po364,8683
|
|
6
6
|
praisonai/chainlit_ui.py,sha256=bNR7s509lp0I9JlJNvwCZRUZosC64qdvlFCt8NmFamQ,12216
|
|
7
7
|
praisonai/cli.py,sha256=mKTDudn9N-xW1Kzak90Ay7a6JO1sq2G3GRNisBzMClw,27180
|
|
8
|
-
praisonai/deploy.py,sha256=
|
|
8
|
+
praisonai/deploy.py,sha256=iPUrFmUaXwaQT4dbn-Ho4FVWrWOwfr1yaJikpeDgV4s,6028
|
|
9
9
|
praisonai/inbuilt_tools/__init__.py,sha256=mZOEximj3zCyJHq9Lz0bGXhQpBsa_QR-R-yA9UKC3zI,565
|
|
10
10
|
praisonai/inbuilt_tools/autogen_tools.py,sha256=kJdEv61BTYvdHOaURNEpBcWq8Rs-oC03loNFTIjT-ak,4687
|
|
11
11
|
praisonai/inc/__init__.py,sha256=sPDlYBBwdk0VlWzaaM_lG0_LD07lS2HRGvPdxXJFiYg,62
|
|
@@ -84,8 +84,8 @@ praisonai/ui/sql_alchemy.py,sha256=fPLPBJlrgV1_sRugirbNDCunqxqFB-CjV9TvCThU4nU,2
|
|
|
84
84
|
praisonai/ui/tools.md,sha256=Ad3YH_ZCLMWlz3mDXllQnQ_S5l55LWqLdcZSh-EXrHI,3956
|
|
85
85
|
praisonai/upload_vision.py,sha256=lMpFn993UiYVJxRNZQTmcbPbEajQ5TFKCNGK1Icn_hg,5253
|
|
86
86
|
praisonai/version.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
|
|
87
|
-
praisonai-2.2.
|
|
88
|
-
praisonai-2.2.
|
|
89
|
-
praisonai-2.2.
|
|
90
|
-
praisonai-2.2.
|
|
91
|
-
praisonai-2.2.
|
|
87
|
+
praisonai-2.2.12.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
|
|
88
|
+
praisonai-2.2.12.dist-info/METADATA,sha256=ap9_v-3u0-2BnxTbNUcoOSsZM9U8PXn1jJXxwe9RMXs,22119
|
|
89
|
+
praisonai-2.2.12.dist-info/WHEEL,sha256=dCzwOzx-VmbmLA5u8QpkARaxx3rsePBxa1nmZphhNQk,110
|
|
90
|
+
praisonai-2.2.12.dist-info/entry_points.txt,sha256=I_xc6a6MNTTfLxYmAxe0rgey0G-_hbY07oFW-ZDnkw4,135
|
|
91
|
+
praisonai-2.2.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|