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.
- package/.dockerignore +12 -0
- package/.gitattributes +2 -0
- package/CHANGELOG.md +86 -0
- package/Dockerfile +21 -0
- package/LICENSE +21 -0
- package/README.md +139 -0
- package/USAGE.md +106 -0
- package/agents/__init__.py +0 -0
- package/agents/cleaner.py +38 -0
- package/agents/insights.py +44 -0
- package/agents/relation.py +36 -0
- package/agents/visualizer.py +41 -0
- package/assets/badge_crewai.svg +4 -0
- package/assets/badge_matplotlib.svg +4 -0
- package/assets/badge_ollama.svg +4 -0
- package/assets/badge_pandas.svg +4 -0
- package/assets/badge_seaborn.svg +4 -0
- package/assets/branding_image.png +0 -0
- package/assets/complete_workflow.svg +216 -0
- package/assets/favicon.png +0 -0
- package/assets/logo.png +0 -0
- package/assets/stars.svg +12 -0
- package/bin/crewlyze.js +79 -0
- package/config/README.md +129 -0
- package/config/__init__.py +1 -0
- package/config/context.py +16 -0
- package/config/llm_config.py +300 -0
- package/config/metrics_tracker.py +70 -0
- package/crew.py +870 -0
- package/crewlyze-3.1.0.tgz +0 -0
- package/fix_syntax.py +54 -0
- package/main.py +1279 -0
- package/package.json +22 -0
- package/pyproject.toml +32 -0
- package/requirements.txt +33 -0
- package/tools/__init__.py +0 -0
- package/tools/dataset_tools.py +803 -0
- package/ui/__init__.py +3 -0
- package/ui/copilot.py +200 -0
- package/ui/export.py +800 -0
- package/update_appjs.py +54 -0
- package/update_llm.py +21 -0
- package/update_main.py +20 -0
- package/web/app.js +3142 -0
- package/web/index.html +1105 -0
- package/web/style.css +2561 -0
- package/workflows/__init__.py +0 -0
- 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"
|
package/requirements.txt
ADDED
|
@@ -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
|