PraisonAI 0.0.59rc2__cp312-cp312-manylinux_2_35_x86_64.whl → 0.0.59rc3__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.

Potentially problematic release.


This version of PraisonAI might be problematic. Click here for more details.

praisonai/cli.py CHANGED
@@ -98,12 +98,15 @@ class PraisonAI:
98
98
  if getattr(args, 'code', False):
99
99
  self.create_code_interface()
100
100
  return
101
-
101
+
102
102
  if args.agent_file == 'train':
103
+ if 'init' in sys.argv:
104
+ from setup.setup_conda_env import main as setup_conda_main
105
+ setup_conda_main()
103
106
  from .train import main as train_main
104
- train_args = sys.argv[2:] # Get all arguments after 'train'
105
- train_main(train_args) # Pass the arguments to train.py's main function
106
- return
107
+ train_args = sys.argv[2:] # Get all arguments after 'train'
108
+ train_main()
109
+ return
107
110
 
108
111
  invocation_cmd = "praisonai"
109
112
  version_string = f"PraisonAI version {__version__}"
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.0.59rc2 gunicorn markdown\n")
59
+ file.write("RUN pip install flask praisonai==0.0.59rc3 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.0.59rc2
3
+ Version: 0.0.59rc3
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
@@ -3,8 +3,8 @@ praisonai/__main__.py,sha256=MVgsjMThjBexHt4nhd760JCqvP4x0IQcwo8kULOK4FQ,144
3
3
  praisonai/agents_generator.py,sha256=8d1WRbubvEkBrW1HZ7_xnGyqgJi0yxmXa3MgTIqef1c,19127
4
4
  praisonai/auto.py,sha256=9spTXqj47Hmmqv5QHRYE_RzSVHH_KoPbaZjskUj2UcE,7895
5
5
  praisonai/chainlit_ui.py,sha256=bNR7s509lp0I9JlJNvwCZRUZosC64qdvlFCt8NmFamQ,12216
6
- praisonai/cli.py,sha256=64ubHQr9j8O0pXnjbXWEpvnHbviDO-R4YYFWOLE_RSU,14772
7
- praisonai/deploy.py,sha256=J83zRX4P4TOxL_0kLrD9DAHI8E4e9nNqrICDIM0N6Wc,6031
6
+ praisonai/cli.py,sha256=i79pISe6XzvOxsKTaAbJTLFJBcR7iwoaogslKE4gpG8,14865
7
+ praisonai/deploy.py,sha256=M6RmUMjWqM6iNq89kmd8-c6C-UO8136TvDHnyBCKj5k,6031
8
8
  praisonai/inbuilt_tools/__init__.py,sha256=mUKnbL6Gram9c9f2m8wJwEzURBLmPEOcHzwySBH89YA,74
9
9
  praisonai/inbuilt_tools/autogen_tools.py,sha256=svYkM2N7DVFvbiwgoAS7U_MqTOD8rHf8VD3BaFUV5_Y,14907
10
10
  praisonai/inc/__init__.py,sha256=sPDlYBBwdk0VlWzaaM_lG0_LD07lS2HRGvPdxXJFiYg,62
@@ -34,8 +34,8 @@ praisonai/ui/public/movie.svg,sha256=aJ2EQ8vXZusVsF2SeuAVxP4RFJzQ14T26ejrGYdBgzk
34
34
  praisonai/ui/public/thriller.svg,sha256=2dYY72EcgbEyTxS4QzjAm37Y4srtPWEW4vCMFki98ZI,3163
35
35
  praisonai/ui/sql_alchemy.py,sha256=HsyeRq-G9qbQobHWpTJHHKQiT4FvYw_7iuv-2PNh0IU,27419
36
36
  praisonai/version.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
37
- praisonai-0.0.59rc2.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
38
- praisonai-0.0.59rc2.dist-info/METADATA,sha256=WBOruz17emj1t6_j4lWvjZ3ef1AfKaSWskp36wjpJkA,11151
39
- praisonai-0.0.59rc2.dist-info/WHEEL,sha256=HBsDV7Hj4OTiS1GX6ua7iQXUQTB9UHftbBxr7Q8Xm9c,110
40
- praisonai-0.0.59rc2.dist-info/entry_points.txt,sha256=jB078LEGLY3Ky_indhclomRIVVpXrPSksHjJ-tcBZ-o,133
41
- praisonai-0.0.59rc2.dist-info/RECORD,,
37
+ praisonai-0.0.59rc3.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
38
+ praisonai-0.0.59rc3.dist-info/METADATA,sha256=Tra_xHE_52Nb8rFrpdIubryFhaIE2gEBkF2ZFnnVIRQ,11151
39
+ praisonai-0.0.59rc3.dist-info/WHEEL,sha256=HBsDV7Hj4OTiS1GX6ua7iQXUQTB9UHftbBxr7Q8Xm9c,110
40
+ praisonai-0.0.59rc3.dist-info/entry_points.txt,sha256=jB078LEGLY3Ky_indhclomRIVVpXrPSksHjJ-tcBZ-o,133
41
+ praisonai-0.0.59rc3.dist-info/RECORD,,