syntaxmatrix 2.3.2__tar.gz → 2.6.4.2__tar.gz
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.
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/PKG-INFO +20 -17
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/SyntaxMatrix.egg-info/PKG-INFO +20 -17
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/SyntaxMatrix.egg-info/SOURCES.txt +26 -4
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/SyntaxMatrix.egg-info/requires.txt +12 -10
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/setup.py +35 -21
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/__init__.py +3 -3
- syntaxmatrix-2.6.4.2/syntaxmatrix/agentic/agent_tools.py +24 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/agentic/agents.py +1849 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/agentic/agents_orchestrer.py +326 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/agentic/code_tools_registry.py +32 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/agentic/model_templates.py +1790 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/auth.py +144 -8
- syntaxmatrix-2.6.4.2/syntaxmatrix/commentary.py +328 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/core.py +606 -355
- syntaxmatrix-2.6.4.2/syntaxmatrix/dataset_preprocessing.py +218 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/db.py +626 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/display_html.py +102 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/gpt_models_latest.py +5 -4
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/history_store.py +1 -1
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/llm_store.py +1 -1
- syntaxmatrix-2.6.4.2/syntaxmatrix/media/media_pixabay.py +277 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/models.py +1 -1
- syntaxmatrix-2.6.4.2/syntaxmatrix/page_builder_defaults.py +183 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/page_builder_generation.py +1112 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/page_layout_contract.py +644 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/page_patch_publish.py +1482 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/preface.py +670 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/profiles.py +41 -8
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/project_root.py +1 -63
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/routes.py +2933 -759
- syntaxmatrix-2.6.4.2/syntaxmatrix/selftest_page_templates.py +360 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/settings/client_items.py +28 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/settings/model_map.py +1182 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/settings/prompts.py +328 -130
- syntaxmatrix-2.6.4.2/syntaxmatrix/static/assets/hero-default.svg +22 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/static/icons/favicon.png +0 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/static/icons/logo.png +0 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/templates/admin_branding.html +152 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/templates/admin_features.html +63 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/templates/admin_secretes.html +108 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/templates/change_password.html +124 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/templates/dashboard.html +1016 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/templates/dataset_resize.html +535 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/templates/docs.html +71 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/templates/edit_page.html +2535 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/utils.py +3056 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/vectordb/adapters/milvus_adapter.py +0 -0
- syntaxmatrix-2.6.4.2/syntaxmatrix/vectordb/adapters/pgvector_adapter.py +0 -0
- syntaxmatrix-2.3.2/syntaxmatrix/commentary.py +0 -306
- syntaxmatrix-2.3.2/syntaxmatrix/db.py +0 -154
- syntaxmatrix-2.3.2/syntaxmatrix/display.py +0 -54
- syntaxmatrix-2.3.2/syntaxmatrix/generate_page.py +0 -634
- syntaxmatrix-2.3.2/syntaxmatrix/model_templates.py +0 -29
- syntaxmatrix-2.3.2/syntaxmatrix/settings/model_map.py +0 -305
- syntaxmatrix-2.3.2/syntaxmatrix/static/icons/hero_bg.jpg +0 -0
- syntaxmatrix-2.3.2/syntaxmatrix/templates/dashboard.html +0 -658
- syntaxmatrix-2.3.2/syntaxmatrix/templates/docs.html +0 -72
- syntaxmatrix-2.3.2/syntaxmatrix/utils.py +0 -993
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/LICENSE.txt +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/README.md +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/SyntaxMatrix.egg-info/dependency_links.txt +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/SyntaxMatrix.egg-info/top_level.txt +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/pyproject.toml +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/setup.cfg +0 -0
- {syntaxmatrix-2.3.2/syntaxmatrix/settings → syntaxmatrix-2.6.4.2/syntaxmatrix/agentic}/__init__.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/bootstrap.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/emailer.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/file_processor.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/kernel_manager.py +0 -0
- {syntaxmatrix-2.3.2/syntaxmatrix/vectordb/adapters → syntaxmatrix-2.6.4.2/syntaxmatrix/media}/__init__.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/plottings.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/session.py +0 -0
- /syntaxmatrix-2.3.2/syntaxmatrix/static/js/chat.js → /syntaxmatrix-2.6.4.2/syntaxmatrix/settings/__init__.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/settings/default.yaml +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/settings/logging.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/settings/string_navbar.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/smiv.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/smpv.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/static/css/style.css +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/static/docs.md +0 -0
- /syntaxmatrix-2.3.2/syntaxmatrix/static/icons/favicon.png → /syntaxmatrix-2.6.4.2/syntaxmatrix/static/icons/bot_icon.png +0 -0
- /syntaxmatrix-2.3.2/syntaxmatrix/static/icons/logo.png → /syntaxmatrix-2.6.4.2/syntaxmatrix/static/icons/logo3.png +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/static/icons/svg_497526.svg +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/static/icons/svg_497528.svg +0 -0
- /syntaxmatrix-2.3.2/syntaxmatrix/static/js/widgets.js → /syntaxmatrix-2.6.4.2/syntaxmatrix/static/js/chat.js +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/static/js/sidebar.js +0 -0
- /syntaxmatrix-2.3.2/syntaxmatrix/vectordb/adapters/milvus_adapter.py → /syntaxmatrix-2.6.4.2/syntaxmatrix/static/js/widgets.js +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/templates/code_cell.html +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/templates/error.html +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/templates/login.html +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/templates/register.html +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/themes.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/ui_modes.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/vector_db.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/vectordb/__init__.py +0 -0
- /syntaxmatrix-2.3.2/syntaxmatrix/vectordb/adapters/pgvector_adapter.py → /syntaxmatrix-2.6.4.2/syntaxmatrix/vectordb/adapters/__init__.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/vectordb/adapters/sqlite_adapter.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/vectordb/base.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/vectordb/registry.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/vectorizer.py +0 -0
- {syntaxmatrix-2.3.2 → syntaxmatrix-2.6.4.2}/syntaxmatrix/workspace_db.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: syntaxmatrix
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.6.4.2
|
|
4
4
|
Summary: SyntaxMUI: A customizable framework for Python AI Assistant Projects.
|
|
5
5
|
Author: Bob Nti
|
|
6
|
-
Author-email: bob.nti@syntaxmatrix.
|
|
6
|
+
Author-email: bob.nti@syntaxmatrix.net
|
|
7
7
|
Classifier: Programming Language :: Python :: 3.9
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
@@ -25,27 +25,30 @@ Requires-Dist: anthropic>=0.67.0
|
|
|
25
25
|
Requires-Dist: reportlab>=4.4.3
|
|
26
26
|
Requires-Dist: lxml>=6.0.2
|
|
27
27
|
Requires-Dist: flask-login>=0.6.3
|
|
28
|
-
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist: statsmodels
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
28
|
+
Requires-Dist: pandas>=2.2.3
|
|
29
|
+
Requires-Dist: numpy>=2.0.2
|
|
30
|
+
Requires-Dist: matplotlib>=3.9.4
|
|
31
|
+
Requires-Dist: plotly>=6.3.0
|
|
32
|
+
Requires-Dist: seaborn>=0.13.2
|
|
33
|
+
Requires-Dist: scikit-learn>=1.6.1
|
|
34
|
+
Requires-Dist: jupyter_client>=8.6.3
|
|
35
|
+
Requires-Dist: ipykernel>=6.29.5
|
|
36
|
+
Requires-Dist: ipython
|
|
37
|
+
Requires-Dist: statsmodels
|
|
38
|
+
Requires-Dist: sqlalchemy>=2.0.42
|
|
39
|
+
Requires-Dist: cryptography>=45.0.6
|
|
40
|
+
Requires-Dist: regex>=2025.11.3
|
|
41
|
+
Requires-Dist: tiktoken>=0.12.0
|
|
42
|
+
Requires-Dist: xgboost>=2.1.4
|
|
43
|
+
Requires-Dist: beautifulsoup4>=4.12.2
|
|
44
|
+
Requires-Dist: html5lib>=1.1
|
|
45
|
+
Requires-Dist: shap>=0.42.0
|
|
42
46
|
Dynamic: author
|
|
43
47
|
Dynamic: author-email
|
|
44
48
|
Dynamic: classifier
|
|
45
49
|
Dynamic: description
|
|
46
50
|
Dynamic: description-content-type
|
|
47
51
|
Dynamic: license-file
|
|
48
|
-
Dynamic: provides-extra
|
|
49
52
|
Dynamic: requires-dist
|
|
50
53
|
Dynamic: requires-python
|
|
51
54
|
Dynamic: summary
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: syntaxmatrix
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.6.4.2
|
|
4
4
|
Summary: SyntaxMUI: A customizable framework for Python AI Assistant Projects.
|
|
5
5
|
Author: Bob Nti
|
|
6
|
-
Author-email: bob.nti@syntaxmatrix.
|
|
6
|
+
Author-email: bob.nti@syntaxmatrix.net
|
|
7
7
|
Classifier: Programming Language :: Python :: 3.9
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
@@ -25,27 +25,30 @@ Requires-Dist: anthropic>=0.67.0
|
|
|
25
25
|
Requires-Dist: reportlab>=4.4.3
|
|
26
26
|
Requires-Dist: lxml>=6.0.2
|
|
27
27
|
Requires-Dist: flask-login>=0.6.3
|
|
28
|
-
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist: statsmodels
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
28
|
+
Requires-Dist: pandas>=2.2.3
|
|
29
|
+
Requires-Dist: numpy>=2.0.2
|
|
30
|
+
Requires-Dist: matplotlib>=3.9.4
|
|
31
|
+
Requires-Dist: plotly>=6.3.0
|
|
32
|
+
Requires-Dist: seaborn>=0.13.2
|
|
33
|
+
Requires-Dist: scikit-learn>=1.6.1
|
|
34
|
+
Requires-Dist: jupyter_client>=8.6.3
|
|
35
|
+
Requires-Dist: ipykernel>=6.29.5
|
|
36
|
+
Requires-Dist: ipython
|
|
37
|
+
Requires-Dist: statsmodels
|
|
38
|
+
Requires-Dist: sqlalchemy>=2.0.42
|
|
39
|
+
Requires-Dist: cryptography>=45.0.6
|
|
40
|
+
Requires-Dist: regex>=2025.11.3
|
|
41
|
+
Requires-Dist: tiktoken>=0.12.0
|
|
42
|
+
Requires-Dist: xgboost>=2.1.4
|
|
43
|
+
Requires-Dist: beautifulsoup4>=4.12.2
|
|
44
|
+
Requires-Dist: html5lib>=1.1
|
|
45
|
+
Requires-Dist: shap>=0.42.0
|
|
42
46
|
Dynamic: author
|
|
43
47
|
Dynamic: author-email
|
|
44
48
|
Dynamic: classifier
|
|
45
49
|
Dynamic: description
|
|
46
50
|
Dynamic: description-content-type
|
|
47
51
|
Dynamic: license-file
|
|
48
|
-
Dynamic: provides-extra
|
|
49
52
|
Dynamic: requires-dist
|
|
50
53
|
Dynamic: requires-python
|
|
51
54
|
Dynamic: summary
|
|
@@ -12,21 +12,26 @@ syntaxmatrix/auth.py
|
|
|
12
12
|
syntaxmatrix/bootstrap.py
|
|
13
13
|
syntaxmatrix/commentary.py
|
|
14
14
|
syntaxmatrix/core.py
|
|
15
|
+
syntaxmatrix/dataset_preprocessing.py
|
|
15
16
|
syntaxmatrix/db.py
|
|
16
|
-
syntaxmatrix/
|
|
17
|
+
syntaxmatrix/display_html.py
|
|
17
18
|
syntaxmatrix/emailer.py
|
|
18
19
|
syntaxmatrix/file_processor.py
|
|
19
|
-
syntaxmatrix/generate_page.py
|
|
20
20
|
syntaxmatrix/gpt_models_latest.py
|
|
21
21
|
syntaxmatrix/history_store.py
|
|
22
22
|
syntaxmatrix/kernel_manager.py
|
|
23
23
|
syntaxmatrix/llm_store.py
|
|
24
|
-
syntaxmatrix/model_templates.py
|
|
25
24
|
syntaxmatrix/models.py
|
|
25
|
+
syntaxmatrix/page_builder_defaults.py
|
|
26
|
+
syntaxmatrix/page_builder_generation.py
|
|
27
|
+
syntaxmatrix/page_layout_contract.py
|
|
28
|
+
syntaxmatrix/page_patch_publish.py
|
|
26
29
|
syntaxmatrix/plottings.py
|
|
30
|
+
syntaxmatrix/preface.py
|
|
27
31
|
syntaxmatrix/profiles.py
|
|
28
32
|
syntaxmatrix/project_root.py
|
|
29
33
|
syntaxmatrix/routes.py
|
|
34
|
+
syntaxmatrix/selftest_page_templates.py
|
|
30
35
|
syntaxmatrix/session.py
|
|
31
36
|
syntaxmatrix/smiv.py
|
|
32
37
|
syntaxmatrix/smpv.py
|
|
@@ -41,25 +46,42 @@ syntaxmatrix.egg-info/SOURCES.txt
|
|
|
41
46
|
syntaxmatrix.egg-info/dependency_links.txt
|
|
42
47
|
syntaxmatrix.egg-info/requires.txt
|
|
43
48
|
syntaxmatrix.egg-info/top_level.txt
|
|
49
|
+
syntaxmatrix/agentic/__init__.py
|
|
50
|
+
syntaxmatrix/agentic/agent_tools.py
|
|
51
|
+
syntaxmatrix/agentic/agents.py
|
|
52
|
+
syntaxmatrix/agentic/agents_orchestrer.py
|
|
53
|
+
syntaxmatrix/agentic/code_tools_registry.py
|
|
54
|
+
syntaxmatrix/agentic/model_templates.py
|
|
55
|
+
syntaxmatrix/media/__init__.py
|
|
56
|
+
syntaxmatrix/media/media_pixabay.py
|
|
44
57
|
syntaxmatrix/settings/__init__.py
|
|
58
|
+
syntaxmatrix/settings/client_items.py
|
|
45
59
|
syntaxmatrix/settings/default.yaml
|
|
46
60
|
syntaxmatrix/settings/logging.py
|
|
47
61
|
syntaxmatrix/settings/model_map.py
|
|
48
62
|
syntaxmatrix/settings/prompts.py
|
|
49
63
|
syntaxmatrix/settings/string_navbar.py
|
|
50
64
|
syntaxmatrix/static/docs.md
|
|
65
|
+
syntaxmatrix/static/assets/hero-default.svg
|
|
51
66
|
syntaxmatrix/static/css/style.css
|
|
67
|
+
syntaxmatrix/static/icons/bot_icon.png
|
|
52
68
|
syntaxmatrix/static/icons/favicon.png
|
|
53
|
-
syntaxmatrix/static/icons/hero_bg.jpg
|
|
54
69
|
syntaxmatrix/static/icons/logo.png
|
|
70
|
+
syntaxmatrix/static/icons/logo3.png
|
|
55
71
|
syntaxmatrix/static/icons/svg_497526.svg
|
|
56
72
|
syntaxmatrix/static/icons/svg_497528.svg
|
|
57
73
|
syntaxmatrix/static/js/chat.js
|
|
58
74
|
syntaxmatrix/static/js/sidebar.js
|
|
59
75
|
syntaxmatrix/static/js/widgets.js
|
|
76
|
+
syntaxmatrix/templates/admin_branding.html
|
|
77
|
+
syntaxmatrix/templates/admin_features.html
|
|
78
|
+
syntaxmatrix/templates/admin_secretes.html
|
|
79
|
+
syntaxmatrix/templates/change_password.html
|
|
60
80
|
syntaxmatrix/templates/code_cell.html
|
|
61
81
|
syntaxmatrix/templates/dashboard.html
|
|
82
|
+
syntaxmatrix/templates/dataset_resize.html
|
|
62
83
|
syntaxmatrix/templates/docs.html
|
|
84
|
+
syntaxmatrix/templates/edit_page.html
|
|
63
85
|
syntaxmatrix/templates/error.html
|
|
64
86
|
syntaxmatrix/templates/login.html
|
|
65
87
|
syntaxmatrix/templates/register.html
|
|
@@ -12,15 +12,6 @@ anthropic>=0.67.0
|
|
|
12
12
|
reportlab>=4.4.3
|
|
13
13
|
lxml>=6.0.2
|
|
14
14
|
flask-login>=0.6.3
|
|
15
|
-
|
|
16
|
-
[:sys_platform == "win32"]
|
|
17
|
-
pywin32>=311
|
|
18
|
-
|
|
19
|
-
[auth]
|
|
20
|
-
sqlalchemy>=2.0.42
|
|
21
|
-
cryptography>=45.0.6
|
|
22
|
-
|
|
23
|
-
[mlearning]
|
|
24
15
|
pandas>=2.2.3
|
|
25
16
|
numpy>=2.0.2
|
|
26
17
|
matplotlib>=3.9.4
|
|
@@ -29,5 +20,16 @@ seaborn>=0.13.2
|
|
|
29
20
|
scikit-learn>=1.6.1
|
|
30
21
|
jupyter_client>=8.6.3
|
|
31
22
|
ipykernel>=6.29.5
|
|
32
|
-
statsmodels
|
|
33
23
|
ipython
|
|
24
|
+
statsmodels
|
|
25
|
+
sqlalchemy>=2.0.42
|
|
26
|
+
cryptography>=45.0.6
|
|
27
|
+
regex>=2025.11.3
|
|
28
|
+
tiktoken>=0.12.0
|
|
29
|
+
xgboost>=2.1.4
|
|
30
|
+
beautifulsoup4>=4.12.2
|
|
31
|
+
html5lib>=1.1
|
|
32
|
+
shap>=0.42.0
|
|
33
|
+
|
|
34
|
+
[:sys_platform == "win32"]
|
|
35
|
+
pywin32>=311
|
|
@@ -8,9 +8,9 @@ with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="syntaxmatrix",
|
|
11
|
-
version="2.
|
|
11
|
+
version="2.6.4.2",
|
|
12
12
|
author="Bob Nti",
|
|
13
|
-
author_email="bob.nti@syntaxmatrix.
|
|
13
|
+
author_email="bob.nti@syntaxmatrix.net",
|
|
14
14
|
description="SyntaxMUI: A customizable framework for Python AI Assistant Projects.",
|
|
15
15
|
long_description=long_description,
|
|
16
16
|
long_description_content_type="text/markdown",
|
|
@@ -20,7 +20,9 @@ setup(
|
|
|
20
20
|
"syntaxmatrix": [
|
|
21
21
|
"static/**/*",
|
|
22
22
|
"settings/*",
|
|
23
|
-
"templates/*",
|
|
23
|
+
"templates/*",
|
|
24
|
+
"agentic/*",
|
|
25
|
+
"media/*",
|
|
24
26
|
]
|
|
25
27
|
},
|
|
26
28
|
install_requires=[
|
|
@@ -39,25 +41,37 @@ setup(
|
|
|
39
41
|
"reportlab>=4.4.3",
|
|
40
42
|
"lxml>=6.0.2",
|
|
41
43
|
"flask-login>=0.6.3",
|
|
44
|
+
"pandas>=2.2.3",
|
|
45
|
+
"numpy>=2.0.2",
|
|
46
|
+
"matplotlib>=3.9.4",
|
|
47
|
+
"plotly>=6.3.0",
|
|
48
|
+
"seaborn>=0.13.2",
|
|
49
|
+
"scikit-learn>=1.6.1",
|
|
50
|
+
"jupyter_client>=8.6.3",
|
|
51
|
+
"ipykernel>=6.29.5",
|
|
52
|
+
"ipython",
|
|
53
|
+
"statsmodels",
|
|
54
|
+
"sqlalchemy>=2.0.42",
|
|
55
|
+
"cryptography>=45.0.6",
|
|
56
|
+
"regex>=2025.11.3",
|
|
57
|
+
"tiktoken>=0.12.0",
|
|
58
|
+
"xgboost>=2.1.4",
|
|
59
|
+
"beautifulsoup4>=4.12.2",
|
|
60
|
+
"html5lib>=1.1",
|
|
61
|
+
"shap>=0.42.0",
|
|
62
|
+
|
|
42
63
|
],
|
|
43
|
-
extras_require={
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"ipython",
|
|
55
|
-
],
|
|
56
|
-
"auth": [
|
|
57
|
-
"sqlalchemy>=2.0.42",
|
|
58
|
-
"cryptography>=45.0.6",
|
|
59
|
-
]
|
|
60
|
-
},
|
|
64
|
+
# extras_require={
|
|
65
|
+
# "mlearning": [
|
|
66
|
+
# "pandas>=2.2.3",
|
|
67
|
+
# "numpy>=2.0.2",
|
|
68
|
+
# "matplotlib>=3.9.4",
|
|
69
|
+
# ],
|
|
70
|
+
# "auth": [
|
|
71
|
+
# "sqlalchemy>=2.0.42",
|
|
72
|
+
# "cryptography>=45.0.6",
|
|
73
|
+
# ],
|
|
74
|
+
# },
|
|
61
75
|
classifiers=[
|
|
62
76
|
"Programming Language :: Python :: 3.9",
|
|
63
77
|
"License :: OSI Approved :: MIT License",
|
|
@@ -26,7 +26,6 @@ warning = _app_instance.warning
|
|
|
26
26
|
set_user_icon = _app_instance.set_user_icon
|
|
27
27
|
set_bot_icon = _app_instance.set_bot_icon
|
|
28
28
|
set_favicon = _app_instance.set_favicon
|
|
29
|
-
get_favicon = _app_instance.get_favicon
|
|
30
29
|
set_project_name = _app_instance.set_project_name
|
|
31
30
|
set_site_title = _app_instance.set_site_title
|
|
32
31
|
set_site_logo = _app_instance.set_site_logo
|
|
@@ -45,8 +44,8 @@ get_widget_value = _app_instance.get_widget_value
|
|
|
45
44
|
save_embed_model = _app_instance.save_embed_model
|
|
46
45
|
load_embed_model = _app_instance.load_embed_model
|
|
47
46
|
delete_embed_key = _app_instance.delete_embed_key
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
set_smxai_identity = _app_instance.set_smxai_identity
|
|
48
|
+
set_smxai_instructions = _app_instance.set_smxai_instructions
|
|
50
49
|
set_website_description = _app_instance.set_website_description
|
|
51
50
|
smiv_index = _app_instance.smiv_index
|
|
52
51
|
smpv_search = _app_instance.smpv_search
|
|
@@ -55,6 +54,7 @@ process_query_stream = _app_instance.process_query_stream
|
|
|
55
54
|
process_query = _app_instance.process_query
|
|
56
55
|
embed_query = _app_instance.embed_query
|
|
57
56
|
enable_user_files = _app_instance.enable_user_files
|
|
57
|
+
enable_registration = _app_instance.enable_registration
|
|
58
58
|
stream_write = _app_instance.stream_write
|
|
59
59
|
enable_stream = _app_instance.enable_stream
|
|
60
60
|
stream = _app_instance.stream
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# syntaxmatrix/agent_tools.py
|
|
2
|
+
from dataclasses import dataclass
|
|
3
|
+
from typing import Callable, Optional, Dict, Any, List, Literal
|
|
4
|
+
|
|
5
|
+
Phase = Literal["sanitize_early", "domain_patches", "syntax_fixes", "final_repair"]
|
|
6
|
+
|
|
7
|
+
@dataclass
|
|
8
|
+
class CodeTool:
|
|
9
|
+
name: str
|
|
10
|
+
phase: Phase
|
|
11
|
+
fn: Callable[[str, Dict[str, Any]], str]
|
|
12
|
+
when: Optional[Callable[[str, Dict[str, Any]], bool]] = None
|
|
13
|
+
priority: int = 100 # lower runs earlier within the phase
|
|
14
|
+
|
|
15
|
+
class ToolRunner:
|
|
16
|
+
def __init__(self, tools: List[CodeTool]):
|
|
17
|
+
# stable order: phase → priority → name
|
|
18
|
+
self.tools = sorted(tools, key=lambda t: (t.phase, t.priority, t.name))
|
|
19
|
+
|
|
20
|
+
def run(self, code: str, ctx: Dict[str, Any]) -> str:
|
|
21
|
+
for t in self.tools:
|
|
22
|
+
if t.when is None or t.when(code, ctx):
|
|
23
|
+
code = t.fn(code, ctx)
|
|
24
|
+
return code
|