syntaxmatrix 2.6.4.4__py3-none-any.whl → 3.0.1__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/__init__.py +6 -4
- syntaxmatrix/agentic/agents.py +206 -26
- syntaxmatrix/agentic/agents_orchestrer.py +16 -10
- syntaxmatrix/client_docs.py +237 -0
- syntaxmatrix/commentary.py +96 -25
- syntaxmatrix/core.py +142 -56
- syntaxmatrix/dataset_preprocessing.py +2 -2
- syntaxmatrix/db.py +0 -17
- syntaxmatrix/kernel_manager.py +174 -150
- syntaxmatrix/page_builder_generation.py +656 -63
- syntaxmatrix/page_layout_contract.py +25 -3
- syntaxmatrix/page_patch_publish.py +368 -15
- syntaxmatrix/plugins/__init__.py +0 -0
- syntaxmatrix/premium/__init__.py +10 -2
- syntaxmatrix/premium/catalogue/__init__.py +121 -0
- syntaxmatrix/premium/gate.py +15 -3
- syntaxmatrix/premium/state.py +507 -0
- syntaxmatrix/premium/verify.py +222 -0
- syntaxmatrix/profiles.py +1 -1
- syntaxmatrix/routes.py +9847 -8004
- syntaxmatrix/settings/model_map.py +50 -65
- syntaxmatrix/settings/prompts.py +1186 -414
- syntaxmatrix/settings/string_navbar.py +4 -4
- syntaxmatrix/static/icons/bot_icon.png +0 -0
- syntaxmatrix/static/icons/bot_icon2.png +0 -0
- syntaxmatrix/templates/admin_billing.html +408 -0
- syntaxmatrix/templates/admin_branding.html +65 -2
- syntaxmatrix/templates/admin_features.html +54 -0
- syntaxmatrix/templates/dashboard.html +285 -8
- syntaxmatrix/templates/edit_page.html +199 -18
- syntaxmatrix/themes.py +17 -17
- syntaxmatrix/workspace_db.py +0 -23
- syntaxmatrix-3.0.1.dist-info/METADATA +219 -0
- {syntaxmatrix-2.6.4.4.dist-info → syntaxmatrix-3.0.1.dist-info}/RECORD +38 -33
- {syntaxmatrix-2.6.4.4.dist-info → syntaxmatrix-3.0.1.dist-info}/WHEEL +1 -1
- syntaxmatrix/settings/default.yaml +0 -13
- syntaxmatrix-2.6.4.4.dist-info/METADATA +0 -539
- syntaxmatrix-2.6.4.4.dist-info/licenses/LICENSE.txt +0 -21
- /syntaxmatrix/{plugin_manager.py → plugins/plugin_manager.py} +0 -0
- /syntaxmatrix/static/icons/{logo3.png → logo2.png} +0 -0
- {syntaxmatrix-2.6.4.4.dist-info → syntaxmatrix-3.0.1.dist-info}/top_level.txt +0 -0
syntaxmatrix/themes.py
CHANGED
|
@@ -15,15 +15,15 @@ DEFAULT_THEMES = {
|
|
|
15
15
|
},
|
|
16
16
|
"dark": { #2
|
|
17
17
|
"background": "#1e1e1e",
|
|
18
|
-
"text_color": "
|
|
19
|
-
"nav_background": "#
|
|
18
|
+
"text_color": "#fdf6e3",
|
|
19
|
+
"nav_background": "#1e1e1e",
|
|
20
20
|
"nav_text": "#fff",
|
|
21
|
-
"chat_background": "#
|
|
21
|
+
"chat_background": "#eef2f7",
|
|
22
22
|
"chat_border": "#555",
|
|
23
23
|
"widget_background": "#444",
|
|
24
|
-
"widget_border": "#
|
|
25
|
-
"sidebar_background": "#
|
|
26
|
-
"sidebar_text": "#
|
|
24
|
+
"widget_border": "#689ec3",
|
|
25
|
+
"sidebar_background": "#1e1e1e",
|
|
26
|
+
"sidebar_text": "#333"
|
|
27
27
|
},
|
|
28
28
|
"chark": { #3
|
|
29
29
|
"background": "#f4f7f9",
|
|
@@ -34,11 +34,11 @@ DEFAULT_THEMES = {
|
|
|
34
34
|
"sidebar_background": "#eeeeee",
|
|
35
35
|
"widget_background": "#dddddd",
|
|
36
36
|
"widget_border": "#123456",
|
|
37
|
-
"text_color": "#
|
|
37
|
+
"text_color": "#010101",
|
|
38
38
|
},
|
|
39
39
|
"github": { #4
|
|
40
40
|
"background": "#197dc0",
|
|
41
|
-
"text_color": "#
|
|
41
|
+
"text_color": "#010101",
|
|
42
42
|
"nav_background": "#594192",
|
|
43
43
|
"nav_text": "#ffffff",
|
|
44
44
|
"chat_background": "#9ad3e8",
|
|
@@ -62,15 +62,15 @@ DEFAULT_THEMES = {
|
|
|
62
62
|
},
|
|
63
63
|
"solarized-dark": { #6
|
|
64
64
|
"background": "#002b36",
|
|
65
|
-
"text_color": "#
|
|
65
|
+
"text_color": "#fdf6e3",
|
|
66
66
|
"nav_background": "#268bd2",
|
|
67
67
|
"nav_text": "#fdf6e3",
|
|
68
68
|
"chat_background": "#073642",
|
|
69
69
|
"chat_border": "#586e75",
|
|
70
70
|
"widget_background": "#073642",
|
|
71
71
|
"widget_border": "#268bd2",
|
|
72
|
-
"sidebar_background": "#
|
|
73
|
-
"sidebar_text": "#
|
|
72
|
+
"sidebar_background": "#67929D",
|
|
73
|
+
"sidebar_text": "#fdf6e3"
|
|
74
74
|
},
|
|
75
75
|
"oceanic-next": { #7
|
|
76
76
|
"background": "#012940",
|
|
@@ -82,11 +82,11 @@ DEFAULT_THEMES = {
|
|
|
82
82
|
"widget_background": "#2A303C",
|
|
83
83
|
"widget_border": "#4F5B66",
|
|
84
84
|
"sidebar_background": "#1C1F24",
|
|
85
|
-
"sidebar_text": "#
|
|
85
|
+
"sidebar_text": "#070707"
|
|
86
86
|
},
|
|
87
87
|
"ayu-mirage": { #8
|
|
88
88
|
"background": "#785876",
|
|
89
|
-
"text_color": "#
|
|
89
|
+
"text_color": "#0F0F0F",
|
|
90
90
|
"nav_background": "#1F2430",
|
|
91
91
|
"nav_text": "#A6ACCD",
|
|
92
92
|
"chat_background": "#1F2430",
|
|
@@ -94,19 +94,19 @@ DEFAULT_THEMES = {
|
|
|
94
94
|
"widget_background": "#1F2430",
|
|
95
95
|
"widget_border": "#4B5263",
|
|
96
96
|
"sidebar_background": "#1F2430",
|
|
97
|
-
"sidebar_text": "#
|
|
97
|
+
"sidebar_text": "#141414"
|
|
98
98
|
},
|
|
99
99
|
"one-dark": { #9
|
|
100
100
|
"background": "#03740c",
|
|
101
|
-
"text_color": "#
|
|
101
|
+
"text_color": "#1A1A1A",
|
|
102
102
|
"nav_background": "#049cad",
|
|
103
103
|
"nav_text": "#dbdce0",
|
|
104
|
-
"chat_background": "#
|
|
104
|
+
"chat_background": "#70F7EE",
|
|
105
105
|
"chat_border": "#6f97ef",
|
|
106
106
|
"widget_background": "#21252b",
|
|
107
107
|
"widget_border": "#3e4451",
|
|
108
108
|
"sidebar_background": "#21252b",
|
|
109
|
-
"sidebar_text": "#
|
|
109
|
+
"sidebar_text": "#252525"
|
|
110
110
|
},
|
|
111
111
|
|
|
112
112
|
}
|
syntaxmatrix/workspace_db.py
CHANGED
|
@@ -74,27 +74,4 @@ class LLMModel(Base):
|
|
|
74
74
|
)
|
|
75
75
|
|
|
76
76
|
|
|
77
|
-
# ─────────────────────────────────────────────────────────────
|
|
78
|
-
|
|
79
|
-
# class LLMService(Base):
|
|
80
|
-
# """
|
|
81
|
-
# Per-workspace LLM “services” (primary, embedding, classification, etc.).
|
|
82
|
-
# One row per (workspace_id, service_type).
|
|
83
|
-
# """
|
|
84
|
-
# __tablename__ = "llm_services"
|
|
85
|
-
|
|
86
|
-
# id = Column(Integer, primary_key=True)
|
|
87
|
-
# workspace_id = Column(Integer, ForeignKey("workspace.id"), nullable=False)
|
|
88
|
-
# service_type = Column(String(32), nullable=False) # e.g. 'primary', 'embedding'
|
|
89
|
-
# provider = Column(String(24), nullable=False) # e.g. 'openai'
|
|
90
|
-
# model = Column(String(64), nullable=False) # e.g. 'gpt-4', 'text-embedding-ada-002'
|
|
91
|
-
# api_key = Column(LargeBinary, nullable=False)
|
|
92
|
-
|
|
93
|
-
# __table_args__ = (
|
|
94
|
-
# UniqueConstraint("workspace_id", "service_type", name="uq_ws_service"),
|
|
95
|
-
# )
|
|
96
|
-
|
|
97
|
-
# # convenience backref to Workspace
|
|
98
|
-
# workspace = relationship("Workspace", back_populates="services")
|
|
99
|
-
|
|
100
77
|
Base.metadata.create_all(engine)
|
|
@@ -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,43 +1,43 @@
|
|
|
1
|
-
syntaxmatrix/__init__.py,sha256=
|
|
1
|
+
syntaxmatrix/__init__.py,sha256=a1dZrVeJ9jjqZOiyC_QX6RzF5DcluwOXRAM95-c2NbI,2683
|
|
2
2
|
syntaxmatrix/auth.py,sha256=SCD6uWojXjj9yjUTKzgV5kBYe6ZkXASEG2VopLFkEtM,18140
|
|
3
3
|
syntaxmatrix/bootstrap.py,sha256=Y7ZNg-Z3ecrr1iYem5EMzPmGstXnEKmO9kqKVoOoljo,817
|
|
4
|
-
syntaxmatrix/
|
|
5
|
-
syntaxmatrix/
|
|
6
|
-
syntaxmatrix/
|
|
7
|
-
syntaxmatrix/
|
|
4
|
+
syntaxmatrix/client_docs.py,sha256=_ho5MTC7QAVxRHtX5HquwjEXX2iCUbm7i9m2m6088UA,6793
|
|
5
|
+
syntaxmatrix/commentary.py,sha256=5AAjD6kfAVEIjMn60xBj-run9SyhXU9dIA2v9MRwhfk,14433
|
|
6
|
+
syntaxmatrix/core.py,sha256=ZIAfu6ZPchUi0Oef5xE2-8VlmSDPy7QfkGFzyQY8fPc,72237
|
|
7
|
+
syntaxmatrix/dataset_preprocessing.py,sha256=PjMKP7M0St51Rif0aWEN5NCGa63GhUZVxQg6ymZLuoc,8752
|
|
8
|
+
syntaxmatrix/db.py,sha256=NPZm-O3HGkKmQJaHEhaCBZFFXPFNa-sJx2y0L4C7dnA,23041
|
|
8
9
|
syntaxmatrix/db_contract.py,sha256=N7WvdTgRH87XX7K5cPSDXvNfHNsSZ4xxZO5DL5vrpVA,2141
|
|
9
10
|
syntaxmatrix/display_html.py,sha256=tBeeHcRbmAOKqRTXY0hUehThFspCDsvjW4myi2zj0iU,3568
|
|
10
11
|
syntaxmatrix/emailer.py,sha256=KazaSY0ieE5kC5nTVmh-O2N3gjfeG_oBnl4pl_UHEws,949
|
|
11
12
|
syntaxmatrix/file_processor.py,sha256=9-TT20qfhZ7Q0eWCJpdxDA54jWM9g56A6VJNFme2azY,2863
|
|
12
13
|
syntaxmatrix/gpt_models_latest.py,sha256=jl2zHsiUq04_6UHpdrRwXWAUf9nHHON1_i41s-UNSyo,1607
|
|
13
14
|
syntaxmatrix/history_store.py,sha256=PG09joPmgnmP6sfa-EoRkt0a6yumfiJvYh7ypx7QsDA,6921
|
|
14
|
-
syntaxmatrix/kernel_manager.py,sha256=
|
|
15
|
+
syntaxmatrix/kernel_manager.py,sha256=6va4SE_hcVQsO6mQTrxDjy5jMBxkF1485sVSTG9dxpY,11376
|
|
15
16
|
syntaxmatrix/llm_store.py,sha256=c22-ahR_PmZVWB5OAKPVr01YI9rWPWDd_aSEMujhAic,7500
|
|
16
17
|
syntaxmatrix/models.py,sha256=zKSxtzwhCy8ipDSXWbfy4JqP8trFF7evqVdbHqSHBmo,511
|
|
17
18
|
syntaxmatrix/page_builder_defaults.py,sha256=vG5nGl83PAg4jbtGUSIz1aQ0qMIWEpeUkF3GGGqSTPs,6443
|
|
18
|
-
syntaxmatrix/page_builder_generation.py,sha256=
|
|
19
|
-
syntaxmatrix/page_layout_contract.py,sha256=
|
|
20
|
-
syntaxmatrix/page_patch_publish.py,sha256=
|
|
19
|
+
syntaxmatrix/page_builder_generation.py,sha256=OAXDNtbj9vb9TlWvPcrUOFODJsHawnYv3GJahkmOAbM,65830
|
|
20
|
+
syntaxmatrix/page_layout_contract.py,sha256=1WdHv_LU_sOl2MkyNyKnwHiRz8uat28-RJHQ4UL3jyE,25769
|
|
21
|
+
syntaxmatrix/page_patch_publish.py,sha256=EymLj8TFKHXmG5AR5Y2ZgRoUgy7L6OtsOYx10UROn0Q,63174
|
|
21
22
|
syntaxmatrix/plottings.py,sha256=MjHQ9T1_oC5oyr4_wkM2GJDrpjp0sbvudbs2lGaMyzk,6103
|
|
22
|
-
syntaxmatrix/plugin_manager.py,sha256=sRpm6xGU8AQSDU_bnh1aHHARwl4uqNYgYXgKlFGHYm4,3747
|
|
23
23
|
syntaxmatrix/preface.py,sha256=tCm0C0BhY_SOntQT5I7cOJr6TB5mVDAeL9i8UmHLu5g,21237
|
|
24
|
-
syntaxmatrix/profiles.py,sha256=
|
|
24
|
+
syntaxmatrix/profiles.py,sha256=ycTiixys0LUtBiLsIBK6Oi-F6oNPDdwdpwNrFJPdg6I,2899
|
|
25
25
|
syntaxmatrix/project_root.py,sha256=1ckvbFVV1szHtHsfSCoGcImHkRwbfszmPG1kGh9ZZlE,2227
|
|
26
|
-
syntaxmatrix/routes.py,sha256=
|
|
26
|
+
syntaxmatrix/routes.py,sha256=TjxlltgOYGmb4td0E83GC_rdE8jjRinQXi9yvq3WJY0,422769
|
|
27
27
|
syntaxmatrix/selftest_page_templates.py,sha256=JY1i2xu7FBkN0TIPiAXhEk_iIjdOBmfc1g9aX98iqhw,14833
|
|
28
28
|
syntaxmatrix/session.py,sha256=v0qgxnVM_LEaNvZQJSa-13Q2eiwc3RDnjd2SahNnHQk,599
|
|
29
29
|
syntaxmatrix/smiv.py,sha256=1lSN3UYpXvYoVNd6VrkY5iZuF_nDxD6xxvLnTn9wcbQ,1405
|
|
30
30
|
syntaxmatrix/smpv.py,sha256=rrCgYqfjBaK2n5qzfQyXK3bHFMvgNcCIqPaXquOLtDM,3600
|
|
31
|
-
syntaxmatrix/themes.py,sha256=
|
|
31
|
+
syntaxmatrix/themes.py,sha256=drlJ99FPPzzBHcl4KbWxupd3vQFmIs0XTqoEADMPsZQ,3584
|
|
32
32
|
syntaxmatrix/ui_modes.py,sha256=5lfKK3AKAB-JQCWfi1GRYp4sQqg4Z0fC3RJ8G3VGCMw,152
|
|
33
33
|
syntaxmatrix/utils.py,sha256=w3Qzg4QmwHqL6hXISXjvprKnS_W0jDJaZjZb61CzWnc,128227
|
|
34
34
|
syntaxmatrix/vector_db.py,sha256=ozvOcMHt52xFAvcp-vAqT69kECPq9BwL8Rzgq3AJaMs,5824
|
|
35
35
|
syntaxmatrix/vectorizer.py,sha256=5w_UQiUIirm_W-Q9TcaEI8LTcTYIuDBdKfz79T1aZ8g,1366
|
|
36
|
-
syntaxmatrix/workspace_db.py,sha256=
|
|
36
|
+
syntaxmatrix/workspace_db.py,sha256=eOmzTPDBIR8FUAqiervyM_u98GAzmzJsHNfY5aZgdRM,3597
|
|
37
37
|
syntaxmatrix/agentic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
38
|
syntaxmatrix/agentic/agent_tools.py,sha256=yQwavONP23ziMxNQf3j2Y4TVo_LxEsiAWecKuBK8WDg,866
|
|
39
|
-
syntaxmatrix/agentic/agents.py,sha256=
|
|
40
|
-
syntaxmatrix/agentic/agents_orchestrer.py,sha256=
|
|
39
|
+
syntaxmatrix/agentic/agents.py,sha256=08DsIC1CZDInudEFHxyo0QCB6IwiwcXtKZNib1BZ29Q,82411
|
|
40
|
+
syntaxmatrix/agentic/agents_orchestrer.py,sha256=pfub5ZSLJMFsPR7nQJ3efuJl-ryOAACkbm0nd2P5Bh4,15310
|
|
41
41
|
syntaxmatrix/agentic/code_tools_registry.py,sha256=rV0sA1qf_a9A4mmJXGuLnPD6qzAtTBjVgViYpwykfRU,1489
|
|
42
42
|
syntaxmatrix/agentic/model_templates.py,sha256=A3ROE3BHkvnU9cxqSGjlCBIw9U15zRaTKgK-WxcZtUI,76033
|
|
43
43
|
syntaxmatrix/db_backends/__init__.py,sha256=ocEqHP5enZCCpurdITAucrrWbw2peihBC6AM3Ck9AAI,23
|
|
@@ -45,36 +45,42 @@ syntaxmatrix/db_backends/postgres_backend.py,sha256=vveUAz8Ss2KSFQRpKVxjBPpgqabw
|
|
|
45
45
|
syntaxmatrix/db_backends/sqlite_backend.py,sha256=DJ70rB7NCRpcYZ6heGnrunt9lxxFgAaidLcio-8y8U0,8384
|
|
46
46
|
syntaxmatrix/media/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
syntaxmatrix/media/media_pixabay.py,sha256=_gkntpbK7HzyLOtzoyWLjXXWtCXUFknD4hFHn_qHfRY,8195
|
|
48
|
-
syntaxmatrix/
|
|
49
|
-
syntaxmatrix/
|
|
48
|
+
syntaxmatrix/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
syntaxmatrix/plugins/plugin_manager.py,sha256=sRpm6xGU8AQSDU_bnh1aHHARwl4uqNYgYXgKlFGHYm4,3747
|
|
50
|
+
syntaxmatrix/premium/__init__.py,sha256=KFtra3isheLHYohi2GVlBAMAlOChdbhMAcpGs_69VZU,625
|
|
51
|
+
syntaxmatrix/premium/gate.py,sha256=UwHeQfPeRi0mykGMMaSz1O8UiqQXNnB8aszSxbUDelQ,3637
|
|
52
|
+
syntaxmatrix/premium/state.py,sha256=Juq1WSMlHD6hipf9JYNQynne7f1w161RGjSHRfJ6nrg,15996
|
|
53
|
+
syntaxmatrix/premium/verify.py,sha256=7b973mSAu7YmhuJUlaTKhEEl_P2iLKOx0f3IQtLzzfA,7420
|
|
54
|
+
syntaxmatrix/premium/catalogue/__init__.py,sha256=P19edUmrDYrUFEFOM_uGagYZJKjz6UYYRqnD-stZ49w,4155
|
|
50
55
|
syntaxmatrix/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
56
|
syntaxmatrix/settings/client_items.py,sha256=jtJ2k5r_Roq42Pumor_VEsYVTIdbFVP2l61MOeMAPUc,868
|
|
52
|
-
syntaxmatrix/settings/default.yaml,sha256=BznvF1D06VMPbT6UX3MQ4zUkXxTXLnAA53aUu8G4O38,569
|
|
53
57
|
syntaxmatrix/settings/logging.py,sha256=U8iTDFv0H1ECdIzH9He2CtOVlK1x5KHCk126Zn5Vi7M,1362
|
|
54
|
-
syntaxmatrix/settings/model_map.py,sha256=
|
|
55
|
-
syntaxmatrix/settings/prompts.py,sha256=
|
|
56
|
-
syntaxmatrix/settings/string_navbar.py,sha256=
|
|
58
|
+
syntaxmatrix/settings/model_map.py,sha256=l2r4UeXv71AuaV1uinYOBqg7uufosXt9PL-Dw1jQZpg,25862
|
|
59
|
+
syntaxmatrix/settings/prompts.py,sha256=k_z3F27hLZGqEqV8PST8KiTRkN7jXE8g9m7ZereH94E,34822
|
|
60
|
+
syntaxmatrix/settings/string_navbar.py,sha256=Q_H8S5LdIi4fREQvfantyBb5yBR03lDtBz9xHY6heuU,73
|
|
57
61
|
syntaxmatrix/static/docs.md,sha256=rWlKjNcpS2cs5DElGNYuaA-XXdGZnRGMXx62nACvDwE,11105
|
|
58
62
|
syntaxmatrix/static/assets/hero-default.svg,sha256=b3iwMN36o5anxlgQDGGr8yF4qEy-WXKqj_sbq51yiks,1019
|
|
59
63
|
syntaxmatrix/static/css/style.css,sha256=20QHPm9qlHhFh5lE_epMw1ehgmZL3lDv7bZhcorf5JI,686
|
|
60
|
-
syntaxmatrix/static/icons/bot_icon.png,sha256=
|
|
64
|
+
syntaxmatrix/static/icons/bot_icon.png,sha256=qRs_FleJwo4VfNRxGn3rRT8kypRRbDHZBSXuVXcRJVA,9895
|
|
65
|
+
syntaxmatrix/static/icons/bot_icon2.png,sha256=ttOEMukAeFPhmHPAhvscaV8AiYFqn_YJ0it850bR454,2811
|
|
61
66
|
syntaxmatrix/static/icons/favicon.png,sha256=qRs_FleJwo4VfNRxGn3rRT8kypRRbDHZBSXuVXcRJVA,9895
|
|
62
67
|
syntaxmatrix/static/icons/logo.png,sha256=FGwH-vhx7gSmwiKkPfP1_6Mq9VGxscaXkZSKsX6o3-M,67536
|
|
63
|
-
syntaxmatrix/static/icons/
|
|
68
|
+
syntaxmatrix/static/icons/logo2.png,sha256=l_9Px0P1uJOFKpKC8kISdwcpKafZF2GXCmCXQV-Zw6c,12467
|
|
64
69
|
syntaxmatrix/static/icons/svg_497526.svg,sha256=q1psnT8mW1nItUPLrqkWkwQmAvKaMoz4OSUlGVjeD4Q,672
|
|
65
70
|
syntaxmatrix/static/icons/svg_497528.svg,sha256=tr6h370kTqDUfyCrByGjrjNBh2iKwBUOQUnh2unqZZA,670
|
|
66
71
|
syntaxmatrix/static/js/chat.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
72
|
syntaxmatrix/static/js/sidebar.js,sha256=zHp4skKLY2Dlqx7aLPQ8_cR0iTRT17W0SC2TR38Yl64,7609
|
|
68
73
|
syntaxmatrix/static/js/widgets.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
syntaxmatrix/templates/
|
|
70
|
-
syntaxmatrix/templates/
|
|
74
|
+
syntaxmatrix/templates/admin_billing.html,sha256=376j7tBnvTNBVWL7VAMSs-Syv0YBjMR7-fDkX81q2mY,18858
|
|
75
|
+
syntaxmatrix/templates/admin_branding.html,sha256=jIEDv35ny2CATwjt0Oyq_Ux8QvMpJlZVOoPDkZNnNNE,10048
|
|
76
|
+
syntaxmatrix/templates/admin_features.html,sha256=JEwWhETr-Pq_2j9EFDXV-JzOVtSaAvjkCBmy3zJ92W4,5199
|
|
71
77
|
syntaxmatrix/templates/admin_secretes.html,sha256=lG8NpJSokdC27SZTLo0j2fHpbukts2-lgJyqyWnqCu8,4973
|
|
72
78
|
syntaxmatrix/templates/change_password.html,sha256=YWEcnwJLccLyKGzQxIrc0xuP-p00BtEIwcYq4oFvJ-0,3332
|
|
73
79
|
syntaxmatrix/templates/code_cell.html,sha256=LOr9VjvNQcOGKKJ1ecpcZh3C3qsUxBHueg2iQtpdxl8,638
|
|
74
|
-
syntaxmatrix/templates/dashboard.html,sha256=
|
|
80
|
+
syntaxmatrix/templates/dashboard.html,sha256=0BSz09pd4c9_SClmGETK9TgLh0Vj9swE-ncBZtx21OE,46064
|
|
75
81
|
syntaxmatrix/templates/dataset_resize.html,sha256=MRDbEGTjuMASdMn1yhnwKRyyM70-bL7u05i5EtrNVQg,14909
|
|
76
82
|
syntaxmatrix/templates/docs.html,sha256=KVi5JrZD3gwOduiZhAz7hQrKY9SrQ_bsHOODj0Nj09s,3552
|
|
77
|
-
syntaxmatrix/templates/edit_page.html,sha256=
|
|
83
|
+
syntaxmatrix/templates/edit_page.html,sha256=RUK_5HOVv4tI9ua3DbRlPRqsdQtifyCAnami6tWZzOM,102318
|
|
78
84
|
syntaxmatrix/templates/error.html,sha256=Iu5ykHnhw8jrxVBNn6B95e90W5u9I2hySCiLtaoOJMs,3290
|
|
79
85
|
syntaxmatrix/templates/login.html,sha256=V_bWHozS1xCeHPsvAAfaGG-_2lAE7K8d05IarQN1PS8,2677
|
|
80
86
|
syntaxmatrix/templates/register.html,sha256=d64PN7-ZFKoiiDYgGC76T0etCB9Mzn37OPJLKdZ-Ye4,2766
|
|
@@ -85,8 +91,7 @@ syntaxmatrix/vectordb/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
85
91
|
syntaxmatrix/vectordb/adapters/milvus_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
86
92
|
syntaxmatrix/vectordb/adapters/pgvector_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
93
|
syntaxmatrix/vectordb/adapters/sqlite_adapter.py,sha256=L8M2qHfwZRAFVxWeurUVdHaJXz6F5xTUSWh3uy6TSUs,6035
|
|
88
|
-
syntaxmatrix-
|
|
89
|
-
syntaxmatrix-
|
|
90
|
-
syntaxmatrix-
|
|
91
|
-
syntaxmatrix-
|
|
92
|
-
syntaxmatrix-2.6.4.4.dist-info/RECORD,,
|
|
94
|
+
syntaxmatrix-3.0.1.dist-info/METADATA,sha256=cDmo-xl2SJXSsLy68i0YSl9ijCH0jDtKTjcTyla7rbE,5476
|
|
95
|
+
syntaxmatrix-3.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
96
|
+
syntaxmatrix-3.0.1.dist-info/top_level.txt,sha256=HKP_zkl4V_nt7osC15DlacoBZktHrbZYOqf_pPkF3T8,13
|
|
97
|
+
syntaxmatrix-3.0.1.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# syntaxmatrix/settings/default.yaml
|
|
2
|
-
# -----------------------------------------------------------------
|
|
3
|
-
# Default framework‑level configuration
|
|
4
|
-
# -----------------------------------------------------------------
|
|
5
|
-
# Select the vector‑database backend to load at runtime. Options out‑of‑the‑box:
|
|
6
|
-
# - sqlite (lightweight, file‑based)
|
|
7
|
-
# - pgvector (PostgreSQL + pgvector extension)
|
|
8
|
-
# - milvus (distributed ANN engine)
|
|
9
|
-
#
|
|
10
|
-
# This can be overridden per environment with the SYNTAXMATRIX_VDB
|
|
11
|
-
# environment variable.
|
|
12
|
-
|
|
13
|
-
vectordb: sqlite
|