syntaxmatrix 2.6.4.3__py3-none-any.whl → 3.0.0__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.
Files changed (45) hide show
  1. syntaxmatrix/__init__.py +6 -4
  2. syntaxmatrix/agentic/agents.py +195 -15
  3. syntaxmatrix/agentic/agents_orchestrer.py +16 -10
  4. syntaxmatrix/client_docs.py +237 -0
  5. syntaxmatrix/commentary.py +96 -25
  6. syntaxmatrix/core.py +156 -54
  7. syntaxmatrix/dataset_preprocessing.py +2 -2
  8. syntaxmatrix/db.py +60 -0
  9. syntaxmatrix/db_backends/__init__.py +1 -0
  10. syntaxmatrix/db_backends/postgres_backend.py +14 -0
  11. syntaxmatrix/db_backends/sqlite_backend.py +258 -0
  12. syntaxmatrix/db_contract.py +71 -0
  13. syntaxmatrix/kernel_manager.py +174 -150
  14. syntaxmatrix/page_builder_generation.py +654 -50
  15. syntaxmatrix/page_layout_contract.py +25 -3
  16. syntaxmatrix/page_patch_publish.py +368 -15
  17. syntaxmatrix/plugins/__init__.py +0 -0
  18. syntaxmatrix/plugins/plugin_manager.py +114 -0
  19. syntaxmatrix/premium/__init__.py +18 -0
  20. syntaxmatrix/premium/catalogue/__init__.py +121 -0
  21. syntaxmatrix/premium/gate.py +119 -0
  22. syntaxmatrix/premium/state.py +507 -0
  23. syntaxmatrix/premium/verify.py +222 -0
  24. syntaxmatrix/profiles.py +1 -1
  25. syntaxmatrix/routes.py +9782 -8004
  26. syntaxmatrix/settings/model_map.py +50 -65
  27. syntaxmatrix/settings/prompts.py +1435 -380
  28. syntaxmatrix/settings/string_navbar.py +4 -4
  29. syntaxmatrix/static/icons/bot_icon.png +0 -0
  30. syntaxmatrix/static/icons/bot_icon2.png +0 -0
  31. syntaxmatrix/templates/admin_billing.html +408 -0
  32. syntaxmatrix/templates/admin_branding.html +65 -2
  33. syntaxmatrix/templates/admin_features.html +54 -0
  34. syntaxmatrix/templates/dashboard.html +285 -8
  35. syntaxmatrix/templates/edit_page.html +199 -18
  36. syntaxmatrix/themes.py +17 -17
  37. syntaxmatrix/workspace_db.py +0 -23
  38. syntaxmatrix-3.0.0.dist-info/METADATA +219 -0
  39. {syntaxmatrix-2.6.4.3.dist-info → syntaxmatrix-3.0.0.dist-info}/RECORD +42 -30
  40. {syntaxmatrix-2.6.4.3.dist-info → syntaxmatrix-3.0.0.dist-info}/WHEEL +1 -1
  41. syntaxmatrix/settings/default.yaml +0 -13
  42. syntaxmatrix-2.6.4.3.dist-info/METADATA +0 -539
  43. syntaxmatrix-2.6.4.3.dist-info/licenses/LICENSE.txt +0 -21
  44. /syntaxmatrix/static/icons/{logo3.png → logo2.png} +0 -0
  45. {syntaxmatrix-2.6.4.3.dist-info → syntaxmatrix-3.0.0.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": "black",
19
- "nav_background": "#333",
18
+ "text_color": "#fdf6e3",
19
+ "nav_background": "#1e1e1e",
20
20
  "nav_text": "#fff",
21
- "chat_background": "#2e2e2e",
21
+ "chat_background": "#eef2f7",
22
22
  "chat_border": "#555",
23
23
  "widget_background": "#444",
24
- "widget_border": "#007acc",
25
- "sidebar_background": "#2a2a2a",
26
- "sidebar_text": "#ccc"
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": "#000000",
37
+ "text_color": "#010101",
38
38
  },
39
39
  "github": { #4
40
40
  "background": "#197dc0",
41
- "text_color": "#333",
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": "#839496",
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": "#073642",
73
- "sidebar_text": "#839496"
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": "#C0C5CE"
85
+ "sidebar_text": "#070707"
86
86
  },
87
87
  "ayu-mirage": { #8
88
88
  "background": "#785876",
89
- "text_color": "#48494C",
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": "#A6ACCD"
97
+ "sidebar_text": "#141414"
98
98
  },
99
99
  "one-dark": { #9
100
100
  "background": "#03740c",
101
- "text_color": "#424244",
101
+ "text_color": "#1A1A1A",
102
102
  "nav_background": "#049cad",
103
103
  "nav_text": "#dbdce0",
104
- "chat_background": "#12171f",
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": "#abb2bf"
109
+ "sidebar_text": "#252525"
110
110
  },
111
111
 
112
112
  }
@@ -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.0
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,73 +1,86 @@
1
- syntaxmatrix/__init__.py,sha256=_LnTrYAW2tbYA37Y233Vv4OMOk8NUnoJi-1yzFyHxEI,2573
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/commentary.py,sha256=3c8qBAKJI2IcYd9PBZrFEwmv-c4_tfa3ebEoPa5vW7U,12428
5
- syntaxmatrix/core.py,sha256=iJdgfxhmtFTArbaKz2akv_y0ma20DlcevSuDFGz027M,66872
6
- syntaxmatrix/dataset_preprocessing.py,sha256=wtV4MWzkyfOsBHTsS0H1gqHho77ZQHGDI9skJryyZWA,8732
7
- syntaxmatrix/db.py,sha256=MLpNs-Ue3xjEwaOJOMgFuPEz_gP9Fr3b1__BA3A3RDg,20801
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
9
+ syntaxmatrix/db_contract.py,sha256=N7WvdTgRH87XX7K5cPSDXvNfHNsSZ4xxZO5DL5vrpVA,2141
8
10
  syntaxmatrix/display_html.py,sha256=tBeeHcRbmAOKqRTXY0hUehThFspCDsvjW4myi2zj0iU,3568
9
11
  syntaxmatrix/emailer.py,sha256=KazaSY0ieE5kC5nTVmh-O2N3gjfeG_oBnl4pl_UHEws,949
10
12
  syntaxmatrix/file_processor.py,sha256=9-TT20qfhZ7Q0eWCJpdxDA54jWM9g56A6VJNFme2azY,2863
11
13
  syntaxmatrix/gpt_models_latest.py,sha256=jl2zHsiUq04_6UHpdrRwXWAUf9nHHON1_i41s-UNSyo,1607
12
14
  syntaxmatrix/history_store.py,sha256=PG09joPmgnmP6sfa-EoRkt0a6yumfiJvYh7ypx7QsDA,6921
13
- syntaxmatrix/kernel_manager.py,sha256=sE9zwuqEZq10Q4ySpGn0ilx-ui7cmZw-LEK8GxK-HhE,10631
15
+ syntaxmatrix/kernel_manager.py,sha256=6va4SE_hcVQsO6mQTrxDjy5jMBxkF1485sVSTG9dxpY,11376
14
16
  syntaxmatrix/llm_store.py,sha256=c22-ahR_PmZVWB5OAKPVr01YI9rWPWDd_aSEMujhAic,7500
15
17
  syntaxmatrix/models.py,sha256=zKSxtzwhCy8ipDSXWbfy4JqP8trFF7evqVdbHqSHBmo,511
16
18
  syntaxmatrix/page_builder_defaults.py,sha256=vG5nGl83PAg4jbtGUSIz1aQ0qMIWEpeUkF3GGGqSTPs,6443
17
- syntaxmatrix/page_builder_generation.py,sha256=EuRVsHLxYDo0SQUo9apMY0ML0-OnaZ9kD5FG_CFNHOY,43691
18
- syntaxmatrix/page_layout_contract.py,sha256=4i18ireN2wigWD3mGIA5A6RMw-0DCxnEXpKuu3UrHog,25175
19
- syntaxmatrix/page_patch_publish.py,sha256=pakIo8tA2y_2zulrU7aBqbqXkmgJLc2-YwghDvYKbgs,50473
19
+ syntaxmatrix/page_builder_generation.py,sha256=TqHxjVcVy7Z5zafjCAWV8swmiiesx8aibXv9-PjtuiY,66309
20
+ syntaxmatrix/page_layout_contract.py,sha256=1WdHv_LU_sOl2MkyNyKnwHiRz8uat28-RJHQ4UL3jyE,25769
21
+ syntaxmatrix/page_patch_publish.py,sha256=EymLj8TFKHXmG5AR5Y2ZgRoUgy7L6OtsOYx10UROn0Q,63174
20
22
  syntaxmatrix/plottings.py,sha256=MjHQ9T1_oC5oyr4_wkM2GJDrpjp0sbvudbs2lGaMyzk,6103
21
23
  syntaxmatrix/preface.py,sha256=tCm0C0BhY_SOntQT5I7cOJr6TB5mVDAeL9i8UmHLu5g,21237
22
- syntaxmatrix/profiles.py,sha256=hPg27IQjl8-Tpo3BanQQsByeAgcizqIA2I_IKKNZ0TI,2900
24
+ syntaxmatrix/profiles.py,sha256=ycTiixys0LUtBiLsIBK6Oi-F6oNPDdwdpwNrFJPdg6I,2899
23
25
  syntaxmatrix/project_root.py,sha256=1ckvbFVV1szHtHsfSCoGcImHkRwbfszmPG1kGh9ZZlE,2227
24
- syntaxmatrix/routes.py,sha256=3LMXyZPTI82ON7cT8wFmm7lbEnnBiFoy-I3FnM_FJj8,356892
26
+ syntaxmatrix/routes.py,sha256=e-Kg4H8gUK6HxwRq_khG7w8PmcMDBzQ5S65ZFvT9kag,420641
25
27
  syntaxmatrix/selftest_page_templates.py,sha256=JY1i2xu7FBkN0TIPiAXhEk_iIjdOBmfc1g9aX98iqhw,14833
26
28
  syntaxmatrix/session.py,sha256=v0qgxnVM_LEaNvZQJSa-13Q2eiwc3RDnjd2SahNnHQk,599
27
29
  syntaxmatrix/smiv.py,sha256=1lSN3UYpXvYoVNd6VrkY5iZuF_nDxD6xxvLnTn9wcbQ,1405
28
30
  syntaxmatrix/smpv.py,sha256=rrCgYqfjBaK2n5qzfQyXK3bHFMvgNcCIqPaXquOLtDM,3600
29
- syntaxmatrix/themes.py,sha256=qa90vPZTuNNKB37loZhChQfu5QqkaJG4JxgI_4QgCxw,3576
31
+ syntaxmatrix/themes.py,sha256=drlJ99FPPzzBHcl4KbWxupd3vQFmIs0XTqoEADMPsZQ,3584
30
32
  syntaxmatrix/ui_modes.py,sha256=5lfKK3AKAB-JQCWfi1GRYp4sQqg4Z0fC3RJ8G3VGCMw,152
31
33
  syntaxmatrix/utils.py,sha256=w3Qzg4QmwHqL6hXISXjvprKnS_W0jDJaZjZb61CzWnc,128227
32
34
  syntaxmatrix/vector_db.py,sha256=ozvOcMHt52xFAvcp-vAqT69kECPq9BwL8Rzgq3AJaMs,5824
33
35
  syntaxmatrix/vectorizer.py,sha256=5w_UQiUIirm_W-Q9TcaEI8LTcTYIuDBdKfz79T1aZ8g,1366
34
- syntaxmatrix/workspace_db.py,sha256=Xu9OlW8wo3iaH5Y88ZMdLOf-fiZxF1NBb5rAw3KcbfY,4715
36
+ syntaxmatrix/workspace_db.py,sha256=eOmzTPDBIR8FUAqiervyM_u98GAzmzJsHNfY5aZgdRM,3597
35
37
  syntaxmatrix/agentic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
38
  syntaxmatrix/agentic/agent_tools.py,sha256=yQwavONP23ziMxNQf3j2Y4TVo_LxEsiAWecKuBK8WDg,866
37
- syntaxmatrix/agentic/agents.py,sha256=IVqF2VLl-80nx75FW0-RK2-2nfhbQjVwyGgplgVOeaA,74640
38
- syntaxmatrix/agentic/agents_orchestrer.py,sha256=NMC0Mr1zRxxWBr-KRZxu1iLMBJowqesNIkuNwY1AlQA,14681
39
+ syntaxmatrix/agentic/agents.py,sha256=ffvR7C12IqVl-APP0AKTXOjINFA2IZv36C4LqFzUqCU,82371
40
+ syntaxmatrix/agentic/agents_orchestrer.py,sha256=pfub5ZSLJMFsPR7nQJ3efuJl-ryOAACkbm0nd2P5Bh4,15310
39
41
  syntaxmatrix/agentic/code_tools_registry.py,sha256=rV0sA1qf_a9A4mmJXGuLnPD6qzAtTBjVgViYpwykfRU,1489
40
42
  syntaxmatrix/agentic/model_templates.py,sha256=A3ROE3BHkvnU9cxqSGjlCBIw9U15zRaTKgK-WxcZtUI,76033
43
+ syntaxmatrix/db_backends/__init__.py,sha256=ocEqHP5enZCCpurdITAucrrWbw2peihBC6AM3Ck9AAI,23
44
+ syntaxmatrix/db_backends/postgres_backend.py,sha256=vveUAz8Ss2KSFQRpKVxjBPpgqabw-Z5VVKHHdKxsuSU,519
45
+ syntaxmatrix/db_backends/sqlite_backend.py,sha256=DJ70rB7NCRpcYZ6heGnrunt9lxxFgAaidLcio-8y8U0,8384
41
46
  syntaxmatrix/media/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
47
  syntaxmatrix/media/media_pixabay.py,sha256=_gkntpbK7HzyLOtzoyWLjXXWtCXUFknD4hFHn_qHfRY,8195
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
43
55
  syntaxmatrix/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
56
  syntaxmatrix/settings/client_items.py,sha256=jtJ2k5r_Roq42Pumor_VEsYVTIdbFVP2l61MOeMAPUc,868
45
- syntaxmatrix/settings/default.yaml,sha256=BznvF1D06VMPbT6UX3MQ4zUkXxTXLnAA53aUu8G4O38,569
46
57
  syntaxmatrix/settings/logging.py,sha256=U8iTDFv0H1ECdIzH9He2CtOVlK1x5KHCk126Zn5Vi7M,1362
47
- syntaxmatrix/settings/model_map.py,sha256=P3RsBGkq36ozADjZOY_p8bjvLgaleiZynMgl4HP1qR8,26385
48
- syntaxmatrix/settings/prompts.py,sha256=Gni--SPxFfqbQXPJqkK0tdViBtAMtUBp185i5WdYux4,25888
49
- syntaxmatrix/settings/string_navbar.py,sha256=NqgTzo3J9rRI4c278VG6kpoViFfmi2FKmL6sO0R-bus,83
58
+ syntaxmatrix/settings/model_map.py,sha256=l2r4UeXv71AuaV1uinYOBqg7uufosXt9PL-Dw1jQZpg,25862
59
+ syntaxmatrix/settings/prompts.py,sha256=rAyycu8bVIJATxaE56VmcjbbAN7IzMiZw6po9-4_luc,54369
60
+ syntaxmatrix/settings/string_navbar.py,sha256=Q_H8S5LdIi4fREQvfantyBb5yBR03lDtBz9xHY6heuU,73
50
61
  syntaxmatrix/static/docs.md,sha256=rWlKjNcpS2cs5DElGNYuaA-XXdGZnRGMXx62nACvDwE,11105
51
62
  syntaxmatrix/static/assets/hero-default.svg,sha256=b3iwMN36o5anxlgQDGGr8yF4qEy-WXKqj_sbq51yiks,1019
52
63
  syntaxmatrix/static/css/style.css,sha256=20QHPm9qlHhFh5lE_epMw1ehgmZL3lDv7bZhcorf5JI,686
53
- syntaxmatrix/static/icons/bot_icon.png,sha256=ttOEMukAeFPhmHPAhvscaV8AiYFqn_YJ0it850bR454,2811
64
+ syntaxmatrix/static/icons/bot_icon.png,sha256=qRs_FleJwo4VfNRxGn3rRT8kypRRbDHZBSXuVXcRJVA,9895
65
+ syntaxmatrix/static/icons/bot_icon2.png,sha256=ttOEMukAeFPhmHPAhvscaV8AiYFqn_YJ0it850bR454,2811
54
66
  syntaxmatrix/static/icons/favicon.png,sha256=qRs_FleJwo4VfNRxGn3rRT8kypRRbDHZBSXuVXcRJVA,9895
55
67
  syntaxmatrix/static/icons/logo.png,sha256=FGwH-vhx7gSmwiKkPfP1_6Mq9VGxscaXkZSKsX6o3-M,67536
56
- syntaxmatrix/static/icons/logo3.png,sha256=l_9Px0P1uJOFKpKC8kISdwcpKafZF2GXCmCXQV-Zw6c,12467
68
+ syntaxmatrix/static/icons/logo2.png,sha256=l_9Px0P1uJOFKpKC8kISdwcpKafZF2GXCmCXQV-Zw6c,12467
57
69
  syntaxmatrix/static/icons/svg_497526.svg,sha256=q1psnT8mW1nItUPLrqkWkwQmAvKaMoz4OSUlGVjeD4Q,672
58
70
  syntaxmatrix/static/icons/svg_497528.svg,sha256=tr6h370kTqDUfyCrByGjrjNBh2iKwBUOQUnh2unqZZA,670
59
71
  syntaxmatrix/static/js/chat.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
72
  syntaxmatrix/static/js/sidebar.js,sha256=zHp4skKLY2Dlqx7aLPQ8_cR0iTRT17W0SC2TR38Yl64,7609
61
73
  syntaxmatrix/static/js/widgets.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
- syntaxmatrix/templates/admin_branding.html,sha256=H6mBsy6dErFSE4qjX2ZipDSnorHMLTV3jLMeSWLpA7Y,6730
63
- syntaxmatrix/templates/admin_features.html,sha256=K2ETWQM7t-YNhChzubgi0c3VnA33bn57uTxyPl3q65c,2917
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
64
77
  syntaxmatrix/templates/admin_secretes.html,sha256=lG8NpJSokdC27SZTLo0j2fHpbukts2-lgJyqyWnqCu8,4973
65
78
  syntaxmatrix/templates/change_password.html,sha256=YWEcnwJLccLyKGzQxIrc0xuP-p00BtEIwcYq4oFvJ-0,3332
66
79
  syntaxmatrix/templates/code_cell.html,sha256=LOr9VjvNQcOGKKJ1ecpcZh3C3qsUxBHueg2iQtpdxl8,638
67
- syntaxmatrix/templates/dashboard.html,sha256=iAzsafNOahP2tHQRGyeh4NffWkIb_T-pTshFEtc_LzY,36826
80
+ syntaxmatrix/templates/dashboard.html,sha256=0BSz09pd4c9_SClmGETK9TgLh0Vj9swE-ncBZtx21OE,46064
68
81
  syntaxmatrix/templates/dataset_resize.html,sha256=MRDbEGTjuMASdMn1yhnwKRyyM70-bL7u05i5EtrNVQg,14909
69
82
  syntaxmatrix/templates/docs.html,sha256=KVi5JrZD3gwOduiZhAz7hQrKY9SrQ_bsHOODj0Nj09s,3552
70
- syntaxmatrix/templates/edit_page.html,sha256=XdyB_FDrqbpgN1TZjWcWdWt4g8F6CZhH9N6I-eBt54o,95911
83
+ syntaxmatrix/templates/edit_page.html,sha256=RUK_5HOVv4tI9ua3DbRlPRqsdQtifyCAnami6tWZzOM,102318
71
84
  syntaxmatrix/templates/error.html,sha256=Iu5ykHnhw8jrxVBNn6B95e90W5u9I2hySCiLtaoOJMs,3290
72
85
  syntaxmatrix/templates/login.html,sha256=V_bWHozS1xCeHPsvAAfaGG-_2lAE7K8d05IarQN1PS8,2677
73
86
  syntaxmatrix/templates/register.html,sha256=d64PN7-ZFKoiiDYgGC76T0etCB9Mzn37OPJLKdZ-Ye4,2766
@@ -78,8 +91,7 @@ syntaxmatrix/vectordb/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
78
91
  syntaxmatrix/vectordb/adapters/milvus_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
92
  syntaxmatrix/vectordb/adapters/pgvector_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
93
  syntaxmatrix/vectordb/adapters/sqlite_adapter.py,sha256=L8M2qHfwZRAFVxWeurUVdHaJXz6F5xTUSWh3uy6TSUs,6035
81
- syntaxmatrix-2.6.4.3.dist-info/licenses/LICENSE.txt,sha256=j1P8naTdy1JMxTC80XYQjbyAQnuOlpDusCUhncrvpy8,1083
82
- syntaxmatrix-2.6.4.3.dist-info/METADATA,sha256=hWnucD9cQKs7xEYoQSz2f_C-1OQOBTBs5INkfAE1stg,18201
83
- syntaxmatrix-2.6.4.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
84
- syntaxmatrix-2.6.4.3.dist-info/top_level.txt,sha256=HKP_zkl4V_nt7osC15DlacoBZktHrbZYOqf_pPkF3T8,13
85
- syntaxmatrix-2.6.4.3.dist-info/RECORD,,
94
+ syntaxmatrix-3.0.0.dist-info/METADATA,sha256=QkCFY7jJP2i9-kjAT-rtiLxf1UNsPkuNJdO085pyLCM,5476
95
+ syntaxmatrix-3.0.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
96
+ syntaxmatrix-3.0.0.dist-info/top_level.txt,sha256=HKP_zkl4V_nt7osC15DlacoBZktHrbZYOqf_pPkF3T8,13
97
+ syntaxmatrix-3.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -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