syntaxmatrix 2.6.4.4__tar.gz → 3.0.1__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.
Files changed (113) hide show
  1. syntaxmatrix-3.0.1/MANIFEST.in +14 -0
  2. syntaxmatrix-3.0.1/PKG-INFO +219 -0
  3. syntaxmatrix-3.0.1/README.md +165 -0
  4. syntaxmatrix-3.0.1/SyntaxMatrix.egg-info/PKG-INFO +219 -0
  5. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/SyntaxMatrix.egg-info/SOURCES.txt +10 -4
  6. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/setup.py +11 -8
  7. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/__init__.py +6 -4
  8. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/agentic/agents.py +206 -26
  9. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/agentic/agents_orchestrer.py +16 -10
  10. syntaxmatrix-3.0.1/syntaxmatrix/client_docs.py +237 -0
  11. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/commentary.py +96 -25
  12. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/core.py +142 -56
  13. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/dataset_preprocessing.py +2 -2
  14. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/db.py +0 -17
  15. syntaxmatrix-3.0.1/syntaxmatrix/kernel_manager.py +307 -0
  16. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/page_builder_generation.py +656 -63
  17. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/page_layout_contract.py +25 -3
  18. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/page_patch_publish.py +368 -15
  19. syntaxmatrix-3.0.1/syntaxmatrix/premium/__init__.py +18 -0
  20. syntaxmatrix-3.0.1/syntaxmatrix/premium/catalogue/__init__.py +121 -0
  21. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/premium/gate.py +15 -3
  22. syntaxmatrix-3.0.1/syntaxmatrix/premium/state.py +507 -0
  23. syntaxmatrix-3.0.1/syntaxmatrix/premium/verify.py +222 -0
  24. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/profiles.py +1 -1
  25. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/routes.py +9847 -8004
  26. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/settings/model_map.py +50 -65
  27. syntaxmatrix-3.0.1/syntaxmatrix/settings/prompts.py +1258 -0
  28. syntaxmatrix-3.0.1/syntaxmatrix/settings/string_navbar.py +5 -0
  29. syntaxmatrix-3.0.1/syntaxmatrix/static/icons/favicon.png +0 -0
  30. syntaxmatrix-3.0.1/syntaxmatrix/templates/admin_billing.html +408 -0
  31. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/admin_branding.html +65 -2
  32. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/admin_features.html +54 -0
  33. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/dashboard.html +285 -8
  34. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/edit_page.html +199 -18
  35. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/themes.py +17 -17
  36. syntaxmatrix-3.0.1/syntaxmatrix/vectordb/adapters/pgvector_adapter.py +0 -0
  37. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/workspace_db.py +0 -23
  38. syntaxmatrix-2.6.4.4/LICENSE.txt +0 -21
  39. syntaxmatrix-2.6.4.4/PKG-INFO +0 -539
  40. syntaxmatrix-2.6.4.4/README.md +0 -483
  41. syntaxmatrix-2.6.4.4/SyntaxMatrix.egg-info/PKG-INFO +0 -539
  42. syntaxmatrix-2.6.4.4/syntaxmatrix/kernel_manager.py +0 -283
  43. syntaxmatrix-2.6.4.4/syntaxmatrix/premium/__init__.py +0 -10
  44. syntaxmatrix-2.6.4.4/syntaxmatrix/settings/default.yaml +0 -13
  45. syntaxmatrix-2.6.4.4/syntaxmatrix/settings/prompts.py +0 -486
  46. syntaxmatrix-2.6.4.4/syntaxmatrix/settings/string_navbar.py +0 -5
  47. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/SyntaxMatrix.egg-info/dependency_links.txt +0 -0
  48. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/SyntaxMatrix.egg-info/requires.txt +0 -0
  49. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/SyntaxMatrix.egg-info/top_level.txt +0 -0
  50. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/pyproject.toml +0 -0
  51. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/setup.cfg +0 -0
  52. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/agentic/__init__.py +0 -0
  53. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/agentic/agent_tools.py +0 -0
  54. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/agentic/code_tools_registry.py +0 -0
  55. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/agentic/model_templates.py +0 -0
  56. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/auth.py +0 -0
  57. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/bootstrap.py +0 -0
  58. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/db_backends/__init__.py +0 -0
  59. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/db_backends/postgres_backend.py +0 -0
  60. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/db_backends/sqlite_backend.py +0 -0
  61. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/db_contract.py +0 -0
  62. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/display_html.py +0 -0
  63. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/emailer.py +0 -0
  64. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/file_processor.py +0 -0
  65. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/gpt_models_latest.py +0 -0
  66. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/history_store.py +0 -0
  67. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/llm_store.py +0 -0
  68. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/media/__init__.py +0 -0
  69. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/media/media_pixabay.py +0 -0
  70. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/models.py +0 -0
  71. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/page_builder_defaults.py +0 -0
  72. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/plottings.py +0 -0
  73. {syntaxmatrix-2.6.4.4/syntaxmatrix/settings → syntaxmatrix-3.0.1/syntaxmatrix/plugins}/__init__.py +0 -0
  74. {syntaxmatrix-2.6.4.4/syntaxmatrix → syntaxmatrix-3.0.1/syntaxmatrix/plugins}/plugin_manager.py +0 -0
  75. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/preface.py +0 -0
  76. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/project_root.py +0 -0
  77. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/selftest_page_templates.py +0 -0
  78. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/session.py +0 -0
  79. {syntaxmatrix-2.6.4.4/syntaxmatrix/vectordb/adapters → syntaxmatrix-3.0.1/syntaxmatrix/settings}/__init__.py +0 -0
  80. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/settings/client_items.py +0 -0
  81. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/settings/logging.py +0 -0
  82. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/smiv.py +0 -0
  83. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/smpv.py +0 -0
  84. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/assets/hero-default.svg +0 -0
  85. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/css/style.css +0 -0
  86. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/docs.md +0 -0
  87. /syntaxmatrix-2.6.4.4/syntaxmatrix/static/icons/favicon.png → /syntaxmatrix-3.0.1/syntaxmatrix/static/icons/bot_icon.png +0 -0
  88. /syntaxmatrix-2.6.4.4/syntaxmatrix/static/icons/bot_icon.png → /syntaxmatrix-3.0.1/syntaxmatrix/static/icons/bot_icon2.png +0 -0
  89. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/icons/logo.png +0 -0
  90. /syntaxmatrix-2.6.4.4/syntaxmatrix/static/icons/logo3.png → /syntaxmatrix-3.0.1/syntaxmatrix/static/icons/logo2.png +0 -0
  91. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/icons/svg_497526.svg +0 -0
  92. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/icons/svg_497528.svg +0 -0
  93. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/js/chat.js +0 -0
  94. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/js/sidebar.js +0 -0
  95. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/static/js/widgets.js +0 -0
  96. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/admin_secretes.html +0 -0
  97. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/change_password.html +0 -0
  98. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/code_cell.html +0 -0
  99. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/dataset_resize.html +0 -0
  100. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/docs.html +0 -0
  101. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/error.html +0 -0
  102. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/login.html +0 -0
  103. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/templates/register.html +0 -0
  104. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/ui_modes.py +0 -0
  105. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/utils.py +0 -0
  106. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/vector_db.py +0 -0
  107. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/vectordb/__init__.py +0 -0
  108. /syntaxmatrix-2.6.4.4/syntaxmatrix/vectordb/adapters/milvus_adapter.py → /syntaxmatrix-3.0.1/syntaxmatrix/vectordb/adapters/__init__.py +0 -0
  109. /syntaxmatrix-2.6.4.4/syntaxmatrix/vectordb/adapters/pgvector_adapter.py → /syntaxmatrix-3.0.1/syntaxmatrix/vectordb/adapters/milvus_adapter.py +0 -0
  110. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/vectordb/adapters/sqlite_adapter.py +0 -0
  111. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/vectordb/base.py +0 -0
  112. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/vectordb/registry.py +0 -0
  113. {syntaxmatrix-2.6.4.4 → syntaxmatrix-3.0.1}/syntaxmatrix/vectorizer.py +0 -0
@@ -0,0 +1,14 @@
1
+ prune admin_tools
2
+ prune tools
3
+ prune build
4
+ prune dist
5
+
6
+ global-exclude *.py[cod]
7
+ global-exclude __pycache__
8
+ global-exclude .DS_Store
9
+
10
+
11
+ prune admin_tools
12
+ prune tools
13
+ prune build
14
+ prune dist
@@ -0,0 +1,219 @@
1
+ Metadata-Version: 2.4
2
+ Name: syntaxmatrix
3
+ Version: 3.0.1
4
+ Summary: SyntaxMatrix: A Framework for building owned AI Platform.
5
+ Author: Bob Nti
6
+ Author-email: bob.nti@syntaxmatrix.net
7
+ License: MIT
8
+ Classifier: Programming Language :: Python :: 3.9
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: Flask>=3.0.3
13
+ Requires-Dist: requests>=2.32.3
14
+ Requires-Dist: pytz<2026,>=2025.2
15
+ Requires-Dist: pywin32>=311; sys_platform == "win32"
16
+ Requires-Dist: Markdown>=3.7
17
+ Requires-Dist: pypdf>=5.4.0
18
+ Requires-Dist: PyPDF2==3.0.1
19
+ Requires-Dist: nest-asyncio>=1.6.0
20
+ Requires-Dist: python-dotenv>=1.1.0
21
+ Requires-Dist: openai>=1.84.0
22
+ Requires-Dist: google-genai>=1.19.0
23
+ Requires-Dist: anthropic>=0.67.0
24
+ Requires-Dist: reportlab>=4.4.3
25
+ Requires-Dist: lxml>=6.0.2
26
+ Requires-Dist: flask-login>=0.6.3
27
+ Requires-Dist: pandas>=2.2.3
28
+ Requires-Dist: numpy>=2.0.2
29
+ Requires-Dist: matplotlib>=3.9.4
30
+ Requires-Dist: plotly>=6.3.0
31
+ Requires-Dist: seaborn>=0.13.2
32
+ Requires-Dist: scikit-learn>=1.6.1
33
+ Requires-Dist: jupyter_client>=8.6.3
34
+ Requires-Dist: ipykernel>=6.29.5
35
+ Requires-Dist: ipython
36
+ Requires-Dist: statsmodels
37
+ Requires-Dist: sqlalchemy>=2.0.42
38
+ Requires-Dist: cryptography>=45.0.6
39
+ Requires-Dist: regex>=2025.11.3
40
+ Requires-Dist: tiktoken>=0.12.0
41
+ Requires-Dist: xgboost>=2.1.4
42
+ Requires-Dist: beautifulsoup4>=4.12.2
43
+ Requires-Dist: html5lib>=1.1
44
+ Requires-Dist: shap>=0.42.0
45
+ Dynamic: author
46
+ Dynamic: author-email
47
+ Dynamic: classifier
48
+ Dynamic: description
49
+ Dynamic: description-content-type
50
+ Dynamic: license
51
+ Dynamic: requires-dist
52
+ Dynamic: requires-python
53
+ Dynamic: summary
54
+
55
+ SyntaxMatrix Platform Provisioner (SPP)
56
+
57
+ SyntaxMatrix Platform Provisioner (SPP) is a self-hosted AI platform framework for building, deploying, and operating production-grade AI applications with licensing, governance, and modular extensibility built in.
58
+
59
+ SPP is designed for developers, educators, research teams, and enterprises who need full control over their AI systems while retaining a clear upgrade path to commercial capabilities.
60
+
61
+ What is SyntaxMatrix Platform Provisioner?
62
+
63
+ SPP is an open-core platform provisioner that enables organisations to:
64
+
65
+ Deploy AI-powered web applications
66
+
67
+ Provision AI assistants, ML tooling, and admin panels
68
+
69
+ Enforce feature access via licensing
70
+
71
+ Maintain full data ownership and self-hosting control
72
+
73
+ Each client runs their own independent instance.
74
+ SyntaxMatrix does not host or operate client environments.
75
+
76
+ Key Capabilities
77
+
78
+ Self-Hosted AI Platform
79
+ Deploy on your own infrastructure (cloud or on-prem).
80
+
81
+ Modular Architecture
82
+ Enable or disable platform capabilities via entitlements.
83
+
84
+ Licensing & Entitlements
85
+ Commercial features are controlled through a secure licence system.
86
+
87
+ Admin Panel & Governance
88
+ Manage users, content, data ingestion, and configuration.
89
+
90
+ AI & ML Tooling
91
+ Built-in support for AI assistants, retrieval, analytics, and experimentation.
92
+
93
+ Production-Ready
94
+ Designed for real deployments, not demos.
95
+
96
+ Open-Core Model
97
+
98
+ SyntaxMatrix Platform Provisioner follows an open-core approach:
99
+
100
+ Core framework → MIT Licence
101
+
102
+ Premium features → Commercial Licence
103
+
104
+ This allows you to:
105
+
106
+ Start freely
107
+
108
+ Self-host fully
109
+
110
+ Upgrade only when advanced capabilities are required
111
+
112
+ Licensing Overview
113
+ Open-Source Components (MIT)
114
+
115
+ The core platform is released under the MIT Licence, allowing:
116
+
117
+ Commercial use
118
+
119
+ Modification
120
+
121
+ Redistribution
122
+
123
+ Commercial Licence (Required for Premium Features)
124
+
125
+ Certain features require a paid subscription, including (but not limited to):
126
+
127
+ Advanced AI modules
128
+
129
+ Enterprise-grade limits
130
+
131
+ Premium admin capabilities
132
+
133
+ Commercial support tooling
134
+
135
+ Licence enforcement features
136
+
137
+ Commercial features are governed by the SyntaxMatrix Commercial Licence Agreement.
138
+
139
+ Using Premium Features without a valid licence is not permitted.
140
+
141
+ Subscription & Billing
142
+
143
+ Subscriptions are managed via Stripe
144
+
145
+ Licences are validated remotely
146
+
147
+ Paid plans take effect immediately
148
+
149
+ Cancellation applies at the end of the billing period
150
+
151
+ Grace periods may apply for payment issues
152
+
153
+ All enforcement is automated and transparent.
154
+
155
+ Self-Hosting Philosophy
156
+
157
+ SyntaxMatrix is built on a client-owned infrastructure model:
158
+
159
+ You deploy your own instance
160
+
161
+ You own your data
162
+
163
+ You control your environment
164
+
165
+ You choose when (and if) to upgrade
166
+
167
+ This architecture is intentional and central to the product’s design.
168
+
169
+ Typical Use Cases
170
+
171
+ AI education platforms
172
+
173
+ Internal enterprise AI tools
174
+
175
+ Research environments
176
+
177
+ AI-powered dashboards
178
+
179
+ Multi-tenant AI services
180
+
181
+ Regulated or privacy-sensitive deployments
182
+
183
+ Installation
184
+
185
+ SPP is distributed via PyPI.
186
+
187
+ Installation details are intentionally minimal here to avoid coupling the README to internal APIs.
188
+ Full setup instructions are provided in the official documentation.
189
+
190
+ Documentation
191
+
192
+ Comprehensive documentation covers:
193
+
194
+ Architecture & design
195
+
196
+ Licensing model
197
+
198
+ Deployment workflows
199
+
200
+ Client-side integration
201
+
202
+ Security considerations
203
+
204
+ Documentation is provided separately and kept version-aligned with releases.
205
+
206
+ Support & Contact
207
+
208
+ Website: https://syntaxmatrix.com
209
+
210
+ Licensing: licence@syntaxmatrix.com
211
+
212
+ Commercial enquiries: info@syntaxmatrix.com
213
+
214
+ Legal
215
+
216
+ © SyntaxMatrix Limited
217
+ All rights reserved.
218
+
219
+ Use of Premium Features requires a valid commercial subscription.
@@ -0,0 +1,165 @@
1
+ SyntaxMatrix Platform Provisioner (SPP)
2
+
3
+ SyntaxMatrix Platform Provisioner (SPP) is a self-hosted AI platform framework for building, deploying, and operating production-grade AI applications with licensing, governance, and modular extensibility built in.
4
+
5
+ SPP is designed for developers, educators, research teams, and enterprises who need full control over their AI systems while retaining a clear upgrade path to commercial capabilities.
6
+
7
+ What is SyntaxMatrix Platform Provisioner?
8
+
9
+ SPP is an open-core platform provisioner that enables organisations to:
10
+
11
+ Deploy AI-powered web applications
12
+
13
+ Provision AI assistants, ML tooling, and admin panels
14
+
15
+ Enforce feature access via licensing
16
+
17
+ Maintain full data ownership and self-hosting control
18
+
19
+ Each client runs their own independent instance.
20
+ SyntaxMatrix does not host or operate client environments.
21
+
22
+ Key Capabilities
23
+
24
+ Self-Hosted AI Platform
25
+ Deploy on your own infrastructure (cloud or on-prem).
26
+
27
+ Modular Architecture
28
+ Enable or disable platform capabilities via entitlements.
29
+
30
+ Licensing & Entitlements
31
+ Commercial features are controlled through a secure licence system.
32
+
33
+ Admin Panel & Governance
34
+ Manage users, content, data ingestion, and configuration.
35
+
36
+ AI & ML Tooling
37
+ Built-in support for AI assistants, retrieval, analytics, and experimentation.
38
+
39
+ Production-Ready
40
+ Designed for real deployments, not demos.
41
+
42
+ Open-Core Model
43
+
44
+ SyntaxMatrix Platform Provisioner follows an open-core approach:
45
+
46
+ Core framework → MIT Licence
47
+
48
+ Premium features → Commercial Licence
49
+
50
+ This allows you to:
51
+
52
+ Start freely
53
+
54
+ Self-host fully
55
+
56
+ Upgrade only when advanced capabilities are required
57
+
58
+ Licensing Overview
59
+ Open-Source Components (MIT)
60
+
61
+ The core platform is released under the MIT Licence, allowing:
62
+
63
+ Commercial use
64
+
65
+ Modification
66
+
67
+ Redistribution
68
+
69
+ Commercial Licence (Required for Premium Features)
70
+
71
+ Certain features require a paid subscription, including (but not limited to):
72
+
73
+ Advanced AI modules
74
+
75
+ Enterprise-grade limits
76
+
77
+ Premium admin capabilities
78
+
79
+ Commercial support tooling
80
+
81
+ Licence enforcement features
82
+
83
+ Commercial features are governed by the SyntaxMatrix Commercial Licence Agreement.
84
+
85
+ Using Premium Features without a valid licence is not permitted.
86
+
87
+ Subscription & Billing
88
+
89
+ Subscriptions are managed via Stripe
90
+
91
+ Licences are validated remotely
92
+
93
+ Paid plans take effect immediately
94
+
95
+ Cancellation applies at the end of the billing period
96
+
97
+ Grace periods may apply for payment issues
98
+
99
+ All enforcement is automated and transparent.
100
+
101
+ Self-Hosting Philosophy
102
+
103
+ SyntaxMatrix is built on a client-owned infrastructure model:
104
+
105
+ You deploy your own instance
106
+
107
+ You own your data
108
+
109
+ You control your environment
110
+
111
+ You choose when (and if) to upgrade
112
+
113
+ This architecture is intentional and central to the product’s design.
114
+
115
+ Typical Use Cases
116
+
117
+ AI education platforms
118
+
119
+ Internal enterprise AI tools
120
+
121
+ Research environments
122
+
123
+ AI-powered dashboards
124
+
125
+ Multi-tenant AI services
126
+
127
+ Regulated or privacy-sensitive deployments
128
+
129
+ Installation
130
+
131
+ SPP is distributed via PyPI.
132
+
133
+ Installation details are intentionally minimal here to avoid coupling the README to internal APIs.
134
+ Full setup instructions are provided in the official documentation.
135
+
136
+ Documentation
137
+
138
+ Comprehensive documentation covers:
139
+
140
+ Architecture & design
141
+
142
+ Licensing model
143
+
144
+ Deployment workflows
145
+
146
+ Client-side integration
147
+
148
+ Security considerations
149
+
150
+ Documentation is provided separately and kept version-aligned with releases.
151
+
152
+ Support & Contact
153
+
154
+ Website: https://syntaxmatrix.com
155
+
156
+ Licensing: licence@syntaxmatrix.com
157
+
158
+ Commercial enquiries: info@syntaxmatrix.com
159
+
160
+ Legal
161
+
162
+ © SyntaxMatrix Limited
163
+ All rights reserved.
164
+
165
+ Use of Premium Features requires a valid commercial subscription.
@@ -0,0 +1,219 @@
1
+ Metadata-Version: 2.4
2
+ Name: syntaxmatrix
3
+ Version: 3.0.1
4
+ Summary: SyntaxMatrix: A Framework for building owned AI Platform.
5
+ Author: Bob Nti
6
+ Author-email: bob.nti@syntaxmatrix.net
7
+ License: MIT
8
+ Classifier: Programming Language :: Python :: 3.9
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: Flask>=3.0.3
13
+ Requires-Dist: requests>=2.32.3
14
+ Requires-Dist: pytz<2026,>=2025.2
15
+ Requires-Dist: pywin32>=311; sys_platform == "win32"
16
+ Requires-Dist: Markdown>=3.7
17
+ Requires-Dist: pypdf>=5.4.0
18
+ Requires-Dist: PyPDF2==3.0.1
19
+ Requires-Dist: nest-asyncio>=1.6.0
20
+ Requires-Dist: python-dotenv>=1.1.0
21
+ Requires-Dist: openai>=1.84.0
22
+ Requires-Dist: google-genai>=1.19.0
23
+ Requires-Dist: anthropic>=0.67.0
24
+ Requires-Dist: reportlab>=4.4.3
25
+ Requires-Dist: lxml>=6.0.2
26
+ Requires-Dist: flask-login>=0.6.3
27
+ Requires-Dist: pandas>=2.2.3
28
+ Requires-Dist: numpy>=2.0.2
29
+ Requires-Dist: matplotlib>=3.9.4
30
+ Requires-Dist: plotly>=6.3.0
31
+ Requires-Dist: seaborn>=0.13.2
32
+ Requires-Dist: scikit-learn>=1.6.1
33
+ Requires-Dist: jupyter_client>=8.6.3
34
+ Requires-Dist: ipykernel>=6.29.5
35
+ Requires-Dist: ipython
36
+ Requires-Dist: statsmodels
37
+ Requires-Dist: sqlalchemy>=2.0.42
38
+ Requires-Dist: cryptography>=45.0.6
39
+ Requires-Dist: regex>=2025.11.3
40
+ Requires-Dist: tiktoken>=0.12.0
41
+ Requires-Dist: xgboost>=2.1.4
42
+ Requires-Dist: beautifulsoup4>=4.12.2
43
+ Requires-Dist: html5lib>=1.1
44
+ Requires-Dist: shap>=0.42.0
45
+ Dynamic: author
46
+ Dynamic: author-email
47
+ Dynamic: classifier
48
+ Dynamic: description
49
+ Dynamic: description-content-type
50
+ Dynamic: license
51
+ Dynamic: requires-dist
52
+ Dynamic: requires-python
53
+ Dynamic: summary
54
+
55
+ SyntaxMatrix Platform Provisioner (SPP)
56
+
57
+ SyntaxMatrix Platform Provisioner (SPP) is a self-hosted AI platform framework for building, deploying, and operating production-grade AI applications with licensing, governance, and modular extensibility built in.
58
+
59
+ SPP is designed for developers, educators, research teams, and enterprises who need full control over their AI systems while retaining a clear upgrade path to commercial capabilities.
60
+
61
+ What is SyntaxMatrix Platform Provisioner?
62
+
63
+ SPP is an open-core platform provisioner that enables organisations to:
64
+
65
+ Deploy AI-powered web applications
66
+
67
+ Provision AI assistants, ML tooling, and admin panels
68
+
69
+ Enforce feature access via licensing
70
+
71
+ Maintain full data ownership and self-hosting control
72
+
73
+ Each client runs their own independent instance.
74
+ SyntaxMatrix does not host or operate client environments.
75
+
76
+ Key Capabilities
77
+
78
+ Self-Hosted AI Platform
79
+ Deploy on your own infrastructure (cloud or on-prem).
80
+
81
+ Modular Architecture
82
+ Enable or disable platform capabilities via entitlements.
83
+
84
+ Licensing & Entitlements
85
+ Commercial features are controlled through a secure licence system.
86
+
87
+ Admin Panel & Governance
88
+ Manage users, content, data ingestion, and configuration.
89
+
90
+ AI & ML Tooling
91
+ Built-in support for AI assistants, retrieval, analytics, and experimentation.
92
+
93
+ Production-Ready
94
+ Designed for real deployments, not demos.
95
+
96
+ Open-Core Model
97
+
98
+ SyntaxMatrix Platform Provisioner follows an open-core approach:
99
+
100
+ Core framework → MIT Licence
101
+
102
+ Premium features → Commercial Licence
103
+
104
+ This allows you to:
105
+
106
+ Start freely
107
+
108
+ Self-host fully
109
+
110
+ Upgrade only when advanced capabilities are required
111
+
112
+ Licensing Overview
113
+ Open-Source Components (MIT)
114
+
115
+ The core platform is released under the MIT Licence, allowing:
116
+
117
+ Commercial use
118
+
119
+ Modification
120
+
121
+ Redistribution
122
+
123
+ Commercial Licence (Required for Premium Features)
124
+
125
+ Certain features require a paid subscription, including (but not limited to):
126
+
127
+ Advanced AI modules
128
+
129
+ Enterprise-grade limits
130
+
131
+ Premium admin capabilities
132
+
133
+ Commercial support tooling
134
+
135
+ Licence enforcement features
136
+
137
+ Commercial features are governed by the SyntaxMatrix Commercial Licence Agreement.
138
+
139
+ Using Premium Features without a valid licence is not permitted.
140
+
141
+ Subscription & Billing
142
+
143
+ Subscriptions are managed via Stripe
144
+
145
+ Licences are validated remotely
146
+
147
+ Paid plans take effect immediately
148
+
149
+ Cancellation applies at the end of the billing period
150
+
151
+ Grace periods may apply for payment issues
152
+
153
+ All enforcement is automated and transparent.
154
+
155
+ Self-Hosting Philosophy
156
+
157
+ SyntaxMatrix is built on a client-owned infrastructure model:
158
+
159
+ You deploy your own instance
160
+
161
+ You own your data
162
+
163
+ You control your environment
164
+
165
+ You choose when (and if) to upgrade
166
+
167
+ This architecture is intentional and central to the product’s design.
168
+
169
+ Typical Use Cases
170
+
171
+ AI education platforms
172
+
173
+ Internal enterprise AI tools
174
+
175
+ Research environments
176
+
177
+ AI-powered dashboards
178
+
179
+ Multi-tenant AI services
180
+
181
+ Regulated or privacy-sensitive deployments
182
+
183
+ Installation
184
+
185
+ SPP is distributed via PyPI.
186
+
187
+ Installation details are intentionally minimal here to avoid coupling the README to internal APIs.
188
+ Full setup instructions are provided in the official documentation.
189
+
190
+ Documentation
191
+
192
+ Comprehensive documentation covers:
193
+
194
+ Architecture & design
195
+
196
+ Licensing model
197
+
198
+ Deployment workflows
199
+
200
+ Client-side integration
201
+
202
+ Security considerations
203
+
204
+ Documentation is provided separately and kept version-aligned with releases.
205
+
206
+ Support & Contact
207
+
208
+ Website: https://syntaxmatrix.com
209
+
210
+ Licensing: licence@syntaxmatrix.com
211
+
212
+ Commercial enquiries: info@syntaxmatrix.com
213
+
214
+ Legal
215
+
216
+ © SyntaxMatrix Limited
217
+ All rights reserved.
218
+
219
+ Use of Premium Features requires a valid commercial subscription.
@@ -1,4 +1,4 @@
1
- LICENSE.txt
1
+ MANIFEST.in
2
2
  README.md
3
3
  pyproject.toml
4
4
  setup.py
@@ -10,6 +10,7 @@ SyntaxMatrix.egg-info/top_level.txt
10
10
  syntaxmatrix/__init__.py
11
11
  syntaxmatrix/auth.py
12
12
  syntaxmatrix/bootstrap.py
13
+ syntaxmatrix/client_docs.py
13
14
  syntaxmatrix/commentary.py
14
15
  syntaxmatrix/core.py
15
16
  syntaxmatrix/dataset_preprocessing.py
@@ -28,7 +29,6 @@ syntaxmatrix/page_builder_generation.py
28
29
  syntaxmatrix/page_layout_contract.py
29
30
  syntaxmatrix/page_patch_publish.py
30
31
  syntaxmatrix/plottings.py
31
- syntaxmatrix/plugin_manager.py
32
32
  syntaxmatrix/preface.py
33
33
  syntaxmatrix/profiles.py
34
34
  syntaxmatrix/project_root.py
@@ -59,11 +59,15 @@ syntaxmatrix/db_backends/postgres_backend.py
59
59
  syntaxmatrix/db_backends/sqlite_backend.py
60
60
  syntaxmatrix/media/__init__.py
61
61
  syntaxmatrix/media/media_pixabay.py
62
+ syntaxmatrix/plugins/__init__.py
63
+ syntaxmatrix/plugins/plugin_manager.py
62
64
  syntaxmatrix/premium/__init__.py
63
65
  syntaxmatrix/premium/gate.py
66
+ syntaxmatrix/premium/state.py
67
+ syntaxmatrix/premium/verify.py
68
+ syntaxmatrix/premium/catalogue/__init__.py
64
69
  syntaxmatrix/settings/__init__.py
65
70
  syntaxmatrix/settings/client_items.py
66
- syntaxmatrix/settings/default.yaml
67
71
  syntaxmatrix/settings/logging.py
68
72
  syntaxmatrix/settings/model_map.py
69
73
  syntaxmatrix/settings/prompts.py
@@ -72,14 +76,16 @@ syntaxmatrix/static/docs.md
72
76
  syntaxmatrix/static/assets/hero-default.svg
73
77
  syntaxmatrix/static/css/style.css
74
78
  syntaxmatrix/static/icons/bot_icon.png
79
+ syntaxmatrix/static/icons/bot_icon2.png
75
80
  syntaxmatrix/static/icons/favicon.png
76
81
  syntaxmatrix/static/icons/logo.png
77
- syntaxmatrix/static/icons/logo3.png
82
+ syntaxmatrix/static/icons/logo2.png
78
83
  syntaxmatrix/static/icons/svg_497526.svg
79
84
  syntaxmatrix/static/icons/svg_497528.svg
80
85
  syntaxmatrix/static/js/chat.js
81
86
  syntaxmatrix/static/js/sidebar.js
82
87
  syntaxmatrix/static/js/widgets.js
88
+ syntaxmatrix/templates/admin_billing.html
83
89
  syntaxmatrix/templates/admin_branding.html
84
90
  syntaxmatrix/templates/admin_features.html
85
91
  syntaxmatrix/templates/admin_secretes.html
@@ -8,7 +8,7 @@ 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.6.4.4",
11
+ version="3.0.1",
12
12
  license="MIT",
13
13
  classifiers=[
14
14
  "Programming Language :: Python :: 3.9",
@@ -16,19 +16,22 @@ setup(
16
16
  ],
17
17
  author="Bob Nti",
18
18
  author_email="bob.nti@syntaxmatrix.net",
19
- description="SyntaxMUI: A customizable framework for Python AI Assistant Projects.",
19
+ description="SyntaxMatrix: A Framework for building owned AI Platform.",
20
20
  long_description=long_description,
21
21
  long_description_content_type="text/markdown",
22
- packages=find_packages(),
23
- include_package_data=True,
24
22
  python_requires='>=3.9',
23
+ packages=find_packages(
24
+ exclude=[
25
+ "admin_tools", "admin_tools.*",
26
+ "tools", "tools.*",
27
+ ],
28
+ ),
29
+
30
+ include_package_data=True,
25
31
  package_data={
26
32
  "syntaxmatrix": [
27
33
  "static/**/*",
28
- "settings/*",
29
- "templates/*",
30
- "agentic/*",
31
- "media/*",
34
+ "templates/*",
32
35
  ]
33
36
  },
34
37
  install_requires=[