syntaxmatrix 2.3.5__py3-none-any.whl → 2.5.5.4__py3-none-any.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.
- syntaxmatrix/agentic/__init__.py +0 -0
- syntaxmatrix/agentic/agent_tools.py +24 -0
- syntaxmatrix/agentic/agents.py +810 -0
- syntaxmatrix/agentic/code_tools_registry.py +37 -0
- syntaxmatrix/agentic/model_templates.py +1790 -0
- syntaxmatrix/commentary.py +134 -112
- syntaxmatrix/core.py +385 -245
- syntaxmatrix/dataset_preprocessing.py +218 -0
- syntaxmatrix/display.py +89 -37
- syntaxmatrix/gpt_models_latest.py +5 -4
- syntaxmatrix/profiles.py +19 -4
- syntaxmatrix/routes.py +947 -141
- syntaxmatrix/settings/model_map.py +38 -30
- syntaxmatrix/static/icons/hero_bg.jpg +0 -0
- syntaxmatrix/templates/dashboard.html +248 -54
- syntaxmatrix/utils.py +2254 -84
- {syntaxmatrix-2.3.5.dist-info → syntaxmatrix-2.5.5.4.dist-info}/METADATA +16 -17
- {syntaxmatrix-2.3.5.dist-info → syntaxmatrix-2.5.5.4.dist-info}/RECORD +21 -15
- syntaxmatrix/model_templates.py +0 -29
- {syntaxmatrix-2.3.5.dist-info → syntaxmatrix-2.5.5.4.dist-info}/WHEEL +0 -0
- {syntaxmatrix-2.3.5.dist-info → syntaxmatrix-2.5.5.4.dist-info}/licenses/LICENSE.txt +0 -0
- {syntaxmatrix-2.3.5.dist-info → syntaxmatrix-2.5.5.4.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: syntaxmatrix
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.5.5.4
|
|
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,26 @@ 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:
|
|
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: statsmodels
|
|
37
|
+
Requires-Dist: ipython
|
|
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
42
|
Dynamic: author
|
|
43
43
|
Dynamic: author-email
|
|
44
44
|
Dynamic: classifier
|
|
45
45
|
Dynamic: description
|
|
46
46
|
Dynamic: description-content-type
|
|
47
47
|
Dynamic: license-file
|
|
48
|
-
Dynamic: provides-extra
|
|
49
48
|
Dynamic: requires-dist
|
|
50
49
|
Dynamic: requires-python
|
|
51
50
|
Dynamic: summary
|
|
@@ -1,41 +1,47 @@
|
|
|
1
1
|
syntaxmatrix/__init__.py,sha256=I-yEq6LRdUuER2Ja3yhiL3498MSvWbhQX7T9fj1XtyQ,2518
|
|
2
2
|
syntaxmatrix/auth.py,sha256=CONhp08pCEWd_ZDBs6oAeukUsRTQnDXsUk3S4-2nhUU,14152
|
|
3
3
|
syntaxmatrix/bootstrap.py,sha256=Y7ZNg-Z3ecrr1iYem5EMzPmGstXnEKmO9kqKVoOoljo,817
|
|
4
|
-
syntaxmatrix/commentary.py,sha256=
|
|
5
|
-
syntaxmatrix/core.py,sha256=
|
|
4
|
+
syntaxmatrix/commentary.py,sha256=3uSlbaQ1zl-gYtEtEpFbv2M-IH-HSdFdMvhxa7UCNHk,12025
|
|
5
|
+
syntaxmatrix/core.py,sha256=B3EA2a_JP7FAU1qDTEIj104BskQ0K8mTwZI_hxcSDHA,60041
|
|
6
|
+
syntaxmatrix/dataset_preprocessing.py,sha256=wtV4MWzkyfOsBHTsS0H1gqHho77ZQHGDI9skJryyZWA,8732
|
|
6
7
|
syntaxmatrix/db.py,sha256=xkCpyhFxnAwrnZCTd13NkJsahVze0i4egjMcbB7kPfs,5000
|
|
7
|
-
syntaxmatrix/display.py,sha256=
|
|
8
|
+
syntaxmatrix/display.py,sha256=TgMrE5WW80VlLcL_XvEz936mekFccJgLTfzbCIozSc8,3728
|
|
8
9
|
syntaxmatrix/emailer.py,sha256=KazaSY0ieE5kC5nTVmh-O2N3gjfeG_oBnl4pl_UHEws,949
|
|
9
10
|
syntaxmatrix/file_processor.py,sha256=9-TT20qfhZ7Q0eWCJpdxDA54jWM9g56A6VJNFme2azY,2863
|
|
10
11
|
syntaxmatrix/generate_page.py,sha256=IBMed-Pv0jDQID76htaBxIUhsemqNwJgA8FEva6Spig,32205
|
|
11
|
-
syntaxmatrix/gpt_models_latest.py,sha256=
|
|
12
|
+
syntaxmatrix/gpt_models_latest.py,sha256=UQSRPx-cTZF8vOZy6JIC402Y2LUQaKXJRklmoySkg0Y,1582
|
|
12
13
|
syntaxmatrix/history_store.py,sha256=PG09joPmgnmP6sfa-EoRkt0a6yumfiJvYh7ypx7QsDA,6921
|
|
13
14
|
syntaxmatrix/kernel_manager.py,sha256=sE9zwuqEZq10Q4ySpGn0ilx-ui7cmZw-LEK8GxK-HhE,10631
|
|
14
15
|
syntaxmatrix/llm_store.py,sha256=c22-ahR_PmZVWB5OAKPVr01YI9rWPWDd_aSEMujhAic,7500
|
|
15
|
-
syntaxmatrix/model_templates.py,sha256=gFva87cjBG5bq3gPHJ2zIsUreF4pVtNJgwzG3023kvk,1062
|
|
16
16
|
syntaxmatrix/models.py,sha256=-yGj4fALYqyQqxIiB0Eh6xWSlr9GfwuoDlzAWUikye8,533
|
|
17
17
|
syntaxmatrix/plottings.py,sha256=MjHQ9T1_oC5oyr4_wkM2GJDrpjp0sbvudbs2lGaMyzk,6103
|
|
18
|
-
syntaxmatrix/profiles.py,sha256=
|
|
18
|
+
syntaxmatrix/profiles.py,sha256=0-lky7Wj-WQlP5CbvTyw1tI2M0FiqhhTkLZYLRhD5AU,2251
|
|
19
19
|
syntaxmatrix/project_root.py,sha256=1ckvbFVV1szHtHsfSCoGcImHkRwbfszmPG1kGh9ZZlE,2227
|
|
20
|
-
syntaxmatrix/routes.py,sha256=
|
|
20
|
+
syntaxmatrix/routes.py,sha256=3V8fXt6KiMqpv-aYNGONMpfs2jZidWu6SnebXB_RLQg,300432
|
|
21
21
|
syntaxmatrix/session.py,sha256=v0qgxnVM_LEaNvZQJSa-13Q2eiwc3RDnjd2SahNnHQk,599
|
|
22
22
|
syntaxmatrix/smiv.py,sha256=1lSN3UYpXvYoVNd6VrkY5iZuF_nDxD6xxvLnTn9wcbQ,1405
|
|
23
23
|
syntaxmatrix/smpv.py,sha256=rrCgYqfjBaK2n5qzfQyXK3bHFMvgNcCIqPaXquOLtDM,3600
|
|
24
24
|
syntaxmatrix/themes.py,sha256=qa90vPZTuNNKB37loZhChQfu5QqkaJG4JxgI_4QgCxw,3576
|
|
25
25
|
syntaxmatrix/ui_modes.py,sha256=5lfKK3AKAB-JQCWfi1GRYp4sQqg4Z0fC3RJ8G3VGCMw,152
|
|
26
|
-
syntaxmatrix/utils.py,sha256=
|
|
26
|
+
syntaxmatrix/utils.py,sha256=GmopxCRcipI7vo1aTzGxTJB5FkRl2Zb5ZGvx9L0FrZE,131780
|
|
27
27
|
syntaxmatrix/vector_db.py,sha256=ozvOcMHt52xFAvcp-vAqT69kECPq9BwL8Rzgq3AJaMs,5824
|
|
28
28
|
syntaxmatrix/vectorizer.py,sha256=5w_UQiUIirm_W-Q9TcaEI8LTcTYIuDBdKfz79T1aZ8g,1366
|
|
29
29
|
syntaxmatrix/workspace_db.py,sha256=Xu9OlW8wo3iaH5Y88ZMdLOf-fiZxF1NBb5rAw3KcbfY,4715
|
|
30
|
+
syntaxmatrix/agentic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
syntaxmatrix/agentic/agent_tools.py,sha256=yQwavONP23ziMxNQf3j2Y4TVo_LxEsiAWecKuBK8WDg,866
|
|
32
|
+
syntaxmatrix/agentic/agents.py,sha256=gy3XDzydAQdpp-GQyRL8TjIhAAO_ruPnmo4tvJQyARE,30588
|
|
33
|
+
syntaxmatrix/agentic/code_tools_registry.py,sha256=Wp4-KHtp0BUVciqSbmionBsQMVFOnvJPruBJeNiuwkk,1564
|
|
34
|
+
syntaxmatrix/agentic/model_templates.py,sha256=A3ROE3BHkvnU9cxqSGjlCBIw9U15zRaTKgK-WxcZtUI,76033
|
|
30
35
|
syntaxmatrix/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
36
|
syntaxmatrix/settings/default.yaml,sha256=BznvF1D06VMPbT6UX3MQ4zUkXxTXLnAA53aUu8G4O38,569
|
|
32
37
|
syntaxmatrix/settings/logging.py,sha256=U8iTDFv0H1ECdIzH9He2CtOVlK1x5KHCk126Zn5Vi7M,1362
|
|
33
|
-
syntaxmatrix/settings/model_map.py,sha256=
|
|
38
|
+
syntaxmatrix/settings/model_map.py,sha256=of49J294XnPRXYXUtdApg1t9VRajwZoZplVD9mBDSIc,11990
|
|
34
39
|
syntaxmatrix/settings/prompts.py,sha256=dLNijnw9UHlAg5qxcSaLPhTmR7SdDDyOFcMKhlCA4eQ,21695
|
|
35
40
|
syntaxmatrix/settings/string_navbar.py,sha256=NqgTzo3J9rRI4c278VG6kpoViFfmi2FKmL6sO0R-bus,83
|
|
36
41
|
syntaxmatrix/static/docs.md,sha256=rWlKjNcpS2cs5DElGNYuaA-XXdGZnRGMXx62nACvDwE,11105
|
|
37
42
|
syntaxmatrix/static/css/style.css,sha256=20QHPm9qlHhFh5lE_epMw1ehgmZL3lDv7bZhcorf5JI,686
|
|
38
43
|
syntaxmatrix/static/icons/favicon.png,sha256=ttOEMukAeFPhmHPAhvscaV8AiYFqn_YJ0it850bR454,2811
|
|
44
|
+
syntaxmatrix/static/icons/hero_bg.jpg,sha256=8_8xXMi7qUYZ7GGPe2LHrWnTpcEdKaoK7RWzAGZ_fos,188528
|
|
39
45
|
syntaxmatrix/static/icons/logo.png,sha256=l_9Px0P1uJOFKpKC8kISdwcpKafZF2GXCmCXQV-Zw6c,12467
|
|
40
46
|
syntaxmatrix/static/icons/svg_497526.svg,sha256=q1psnT8mW1nItUPLrqkWkwQmAvKaMoz4OSUlGVjeD4Q,672
|
|
41
47
|
syntaxmatrix/static/icons/svg_497528.svg,sha256=tr6h370kTqDUfyCrByGjrjNBh2iKwBUOQUnh2unqZZA,670
|
|
@@ -43,7 +49,7 @@ syntaxmatrix/static/js/chat.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
43
49
|
syntaxmatrix/static/js/sidebar.js,sha256=zHp4skKLY2Dlqx7aLPQ8_cR0iTRT17W0SC2TR38Yl64,7609
|
|
44
50
|
syntaxmatrix/static/js/widgets.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
51
|
syntaxmatrix/templates/code_cell.html,sha256=LOr9VjvNQcOGKKJ1ecpcZh3C3qsUxBHueg2iQtpdxl8,638
|
|
46
|
-
syntaxmatrix/templates/dashboard.html,sha256=
|
|
52
|
+
syntaxmatrix/templates/dashboard.html,sha256=qv6vqTY5R2yjVJEb2_LASaMxzdMFWLFpxqWi4Cye_9s,30979
|
|
47
53
|
syntaxmatrix/templates/docs.html,sha256=KVi5JrZD3gwOduiZhAz7hQrKY9SrQ_bsHOODj0Nj09s,3552
|
|
48
54
|
syntaxmatrix/templates/error.html,sha256=Iu5ykHnhw8jrxVBNn6B95e90W5u9I2hySCiLtaoOJMs,3290
|
|
49
55
|
syntaxmatrix/templates/login.html,sha256=V_bWHozS1xCeHPsvAAfaGG-_2lAE7K8d05IarQN1PS8,2677
|
|
@@ -55,8 +61,8 @@ syntaxmatrix/vectordb/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
55
61
|
syntaxmatrix/vectordb/adapters/milvus_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
62
|
syntaxmatrix/vectordb/adapters/pgvector_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
63
|
syntaxmatrix/vectordb/adapters/sqlite_adapter.py,sha256=L8M2qHfwZRAFVxWeurUVdHaJXz6F5xTUSWh3uy6TSUs,6035
|
|
58
|
-
syntaxmatrix-2.
|
|
59
|
-
syntaxmatrix-2.
|
|
60
|
-
syntaxmatrix-2.
|
|
61
|
-
syntaxmatrix-2.
|
|
62
|
-
syntaxmatrix-2.
|
|
64
|
+
syntaxmatrix-2.5.5.4.dist-info/licenses/LICENSE.txt,sha256=j1P8naTdy1JMxTC80XYQjbyAQnuOlpDusCUhncrvpy8,1083
|
|
65
|
+
syntaxmatrix-2.5.5.4.dist-info/METADATA,sha256=om6Krgfooz19B01dn4rinTHGPM4sW4j6I_ZePo8EtAM,18092
|
|
66
|
+
syntaxmatrix-2.5.5.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
67
|
+
syntaxmatrix-2.5.5.4.dist-info/top_level.txt,sha256=HKP_zkl4V_nt7osC15DlacoBZktHrbZYOqf_pPkF3T8,13
|
|
68
|
+
syntaxmatrix-2.5.5.4.dist-info/RECORD,,
|
syntaxmatrix/model_templates.py
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# syntaxmatrix/model_templates.py
|
|
2
|
-
from textwrap import dedent
|
|
3
|
-
|
|
4
|
-
def classification(df, target):
|
|
5
|
-
return dedent(f"""
|
|
6
|
-
# ── Auto-generated Random-Forest classifier ───────────────
|
|
7
|
-
from sklearn.model_selection import train_test_split
|
|
8
|
-
from sklearn.ensemble import RandomForestClassifier
|
|
9
|
-
from sklearn.metrics import accuracy_score
|
|
10
|
-
import matplotlib.pyplot as plt
|
|
11
|
-
import pandas as pd
|
|
12
|
-
|
|
13
|
-
X = df.drop(columns=['{target}'])
|
|
14
|
-
y = df['{target}']
|
|
15
|
-
|
|
16
|
-
X_train, X_test, y_train, y_test = train_test_split(
|
|
17
|
-
X, y, test_size=0.2, stratify=y, random_state=42
|
|
18
|
-
)
|
|
19
|
-
|
|
20
|
-
clf = RandomForestClassifier(n_estimators=300, random_state=42)
|
|
21
|
-
clf.fit(X_train, y_train)
|
|
22
|
-
|
|
23
|
-
acc = accuracy_score(y_test, clf.predict(X_test))
|
|
24
|
-
print(f"Accuracy: {{acc:.2%}}")
|
|
25
|
-
|
|
26
|
-
imp = pd.Series(clf.feature_importances_, index=X.columns).nlargest(10)[::-1]
|
|
27
|
-
imp.plot(kind='barh', title='Top 10 Feature Importances')
|
|
28
|
-
""")
|
|
29
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|