crewlyze 3.1.0

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.
Files changed (48) hide show
  1. package/.dockerignore +12 -0
  2. package/.gitattributes +2 -0
  3. package/CHANGELOG.md +86 -0
  4. package/Dockerfile +21 -0
  5. package/LICENSE +21 -0
  6. package/README.md +139 -0
  7. package/USAGE.md +106 -0
  8. package/agents/__init__.py +0 -0
  9. package/agents/cleaner.py +38 -0
  10. package/agents/insights.py +44 -0
  11. package/agents/relation.py +36 -0
  12. package/agents/visualizer.py +41 -0
  13. package/assets/badge_crewai.svg +4 -0
  14. package/assets/badge_matplotlib.svg +4 -0
  15. package/assets/badge_ollama.svg +4 -0
  16. package/assets/badge_pandas.svg +4 -0
  17. package/assets/badge_seaborn.svg +4 -0
  18. package/assets/branding_image.png +0 -0
  19. package/assets/complete_workflow.svg +216 -0
  20. package/assets/favicon.png +0 -0
  21. package/assets/logo.png +0 -0
  22. package/assets/stars.svg +12 -0
  23. package/bin/crewlyze.js +79 -0
  24. package/config/README.md +129 -0
  25. package/config/__init__.py +1 -0
  26. package/config/context.py +16 -0
  27. package/config/llm_config.py +300 -0
  28. package/config/metrics_tracker.py +70 -0
  29. package/crew.py +870 -0
  30. package/crewlyze-3.1.0.tgz +0 -0
  31. package/fix_syntax.py +54 -0
  32. package/main.py +1279 -0
  33. package/package.json +22 -0
  34. package/pyproject.toml +32 -0
  35. package/requirements.txt +33 -0
  36. package/tools/__init__.py +0 -0
  37. package/tools/dataset_tools.py +803 -0
  38. package/ui/__init__.py +3 -0
  39. package/ui/copilot.py +200 -0
  40. package/ui/export.py +800 -0
  41. package/update_appjs.py +54 -0
  42. package/update_llm.py +21 -0
  43. package/update_main.py +20 -0
  44. package/web/app.js +3142 -0
  45. package/web/index.html +1105 -0
  46. package/web/style.css +2561 -0
  47. package/workflows/__init__.py +0 -0
  48. package/workflows/pipeline.py +254 -0
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "crewlyze",
3
+ "version": "3.1.0",
4
+ "description": "Autonomous Multi-Agent Business Intelligence and Data Engineering Platform",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "crewlyze": "./bin/crewlyze.js"
8
+ },
9
+ "scripts": {
10
+ "start": "node ./bin/crewlyze.js"
11
+ },
12
+ "keywords": [
13
+ "ai",
14
+ "data-analysis",
15
+ "crewai",
16
+ "fastapi",
17
+ "python"
18
+ ],
19
+ "author": "Sowmiyan S",
20
+ "license": "MIT",
21
+ "dependencies": {}
22
+ }
package/pyproject.toml ADDED
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=42", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "crewlyze"
7
+ version = "3.1.0"
8
+ description = "Autonomous Multi-Agent Business Intelligence and Data Engineering Platform"
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "Sowmiyan S" }
14
+ ]
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ ]
20
+ dependencies = [
21
+ "crewai",
22
+ "fastapi",
23
+ "uvicorn",
24
+ "pandas",
25
+ "reportlab",
26
+ "plotly",
27
+ "python-dotenv",
28
+ "requests"
29
+ ]
30
+
31
+ [project.scripts]
32
+ crewlyze = "uvicorn main:app --host 127.0.0.1 --port 8000"
@@ -0,0 +1,33 @@
1
+ # Crewlyze
2
+ # Web Platform — FastAPI + Pure Web UI (no Streamlit)
3
+ # Install: pip install -r requirements.txt
4
+
5
+ # ── Core framework ────────────────────────────────────────────────────────────
6
+ crewai>=0.5.0
7
+ litellm>=1.0.0
8
+
9
+ # ── Web server ────────────────────────────────────────────────────────────────
10
+ fastapi
11
+ uvicorn[standard]
12
+ python-multipart
13
+
14
+ # ── Data / ML ────────────────────────────────────────────────────────────────
15
+ pandas>=1.5
16
+ matplotlib>=3.6
17
+ seaborn>=0.12
18
+ plotly>=5.0
19
+
20
+ # ── Utilities ────────────────────────────────────────────────────────────────
21
+ requests
22
+ huggingface_hub
23
+ python-dotenv
24
+ Pillow
25
+ reportlab
26
+
27
+ # ── Pinned for Windows compatibility ─────────────────────────────────────────
28
+ # regex has pre-built Windows wheels for Python 3.13
29
+ regex
30
+
31
+ # NOTE: streamlit has been removed — the app now runs on FastAPI + vanilla web UI
32
+ # NOTE: tiktoken removed — requires Rust; not needed
33
+ # NOTE: grpcio NOT listed — install only if needed: pip install grpcio --only-binary=:all:
File without changes