syntaxmatrix 2.6.4.1__py3-none-any.whl → 2.6.4.2__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/agents.py +2 -1
- syntaxmatrix/core.py +1 -1
- syntaxmatrix/settings/model_map.py +68 -14
- {syntaxmatrix-2.6.4.1.dist-info → syntaxmatrix-2.6.4.2.dist-info}/METADATA +1 -1
- {syntaxmatrix-2.6.4.1.dist-info → syntaxmatrix-2.6.4.2.dist-info}/RECORD +8 -8
- {syntaxmatrix-2.6.4.1.dist-info → syntaxmatrix-2.6.4.2.dist-info}/WHEEL +0 -0
- {syntaxmatrix-2.6.4.1.dist-info → syntaxmatrix-2.6.4.2.dist-info}/licenses/LICENSE.txt +0 -0
- {syntaxmatrix-2.6.4.1.dist-info → syntaxmatrix-2.6.4.2.dist-info}/top_level.txt +0 -0
syntaxmatrix/agentic/agents.py
CHANGED
|
@@ -413,7 +413,8 @@ def context_compatibility(question: str, dataset_context: str | None = None) ->
|
|
|
413
413
|
def classify_ml_job_agent(refined_question, dataset_profile):
|
|
414
414
|
import ast
|
|
415
415
|
|
|
416
|
-
_profile = _prof.get_profile('classifier') or _prof.get_profile('admin')
|
|
416
|
+
_profile = _prof.get_profile('classifier') or _prof.get_profile('summarizer') or _prof.get_profile('chat') or _prof.get_profile('admin')
|
|
417
|
+
|
|
417
418
|
_profile['client'] = _prof.get_client(_profile)
|
|
418
419
|
_client = _profile['client']
|
|
419
420
|
_provider = _profile["provider"].lower()
|
syntaxmatrix/core.py
CHANGED
|
@@ -682,7 +682,7 @@ class SyntaxMUI:
|
|
|
682
682
|
def classify_query_intent(self, query: str) -> str:
|
|
683
683
|
|
|
684
684
|
if not self.classifier_profile:
|
|
685
|
-
classifier_profile = _prof.get_profile('classifier') or _prof.get_profile('
|
|
685
|
+
classifier_profile = _prof.get_profile('classifier') or _prof.get_profile('summarizer') or _prof.get_profile('chat') or _prof.get_profile('admin')
|
|
686
686
|
if not classifier_profile:
|
|
687
687
|
return "Error: Set a profile for Classification"
|
|
688
688
|
self.classifier_profile = classifier_profile
|
|
@@ -20,7 +20,7 @@ PROVIDERS_MODELS = {
|
|
|
20
20
|
"gpt-4.1-nano", # $0.10 $0.025 $0.40
|
|
21
21
|
"gpt-4.1-mini", # $0.40 $0.10 $1.60
|
|
22
22
|
"gpt-4o", # $2.50 $1.25 $10.00
|
|
23
|
-
"gpt-4o-mini", # $0.15 $0.075 $0.60
|
|
23
|
+
# "gpt-4o-mini", # $0.15 $0.075 $0.60
|
|
24
24
|
# "gpt-4o-mini-search-preview", # $0.15 - $0.60
|
|
25
25
|
],
|
|
26
26
|
#2
|
|
@@ -149,7 +149,33 @@ MODEL_DESCRIPTIONS = {
|
|
|
149
149
|
- ImageTexter
|
|
150
150
|
""",
|
|
151
151
|
|
|
152
|
-
#1.3 OpenAI
|
|
152
|
+
# #1.3 OpenAI
|
|
153
|
+
# "gpt-4o-mini-search-preview":"""
|
|
154
|
+
# Model: GPT 4o Mini
|
|
155
|
+
# Cost:
|
|
156
|
+
# Input = $0.15 <= 1M tokens
|
|
157
|
+
# Output = $0.60 <= 1M tokens
|
|
158
|
+
|
|
159
|
+
# Data Type:
|
|
160
|
+
# Input = Text
|
|
161
|
+
# Output = Text
|
|
162
|
+
|
|
163
|
+
# Context Length:
|
|
164
|
+
# Input = 128,000 tokens
|
|
165
|
+
# Output = 16,384 tokens
|
|
166
|
+
|
|
167
|
+
# Speed, Intelligence, and Training:
|
|
168
|
+
# 4x Fast
|
|
169
|
+
# 2x Clever
|
|
170
|
+
# Cut-off: 01/10/2023
|
|
171
|
+
|
|
172
|
+
# Agency:
|
|
173
|
+
# - Chat
|
|
174
|
+
# - Classifier
|
|
175
|
+
# - Summarizer
|
|
176
|
+
# """,
|
|
177
|
+
|
|
178
|
+
#1.4 OpenAI
|
|
153
179
|
"gpt-4.1":"""
|
|
154
180
|
Model: GPT 4.1
|
|
155
181
|
Cost:
|
|
@@ -173,7 +199,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
173
199
|
- Coder
|
|
174
200
|
""",
|
|
175
201
|
|
|
176
|
-
#1.
|
|
202
|
+
#1.5 OpenAI
|
|
177
203
|
"gpt-4.1-nano":"""
|
|
178
204
|
Model: GPT 4.1 Nano
|
|
179
205
|
Cost:
|
|
@@ -200,7 +226,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
200
226
|
- ImageTexter
|
|
201
227
|
""",
|
|
202
228
|
|
|
203
|
-
#1.
|
|
229
|
+
#1.6 OpenAI
|
|
204
230
|
"gpt-4.1-mini":"""
|
|
205
231
|
Model: GPT 4.1 Mini
|
|
206
232
|
Cost:
|
|
@@ -228,7 +254,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
228
254
|
- ImageTexter
|
|
229
255
|
""",
|
|
230
256
|
|
|
231
|
-
#1.
|
|
257
|
+
#1.7 OpenAI
|
|
232
258
|
"gpt-5":"""
|
|
233
259
|
Model: GPT 5
|
|
234
260
|
Cost:
|
|
@@ -253,7 +279,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
253
279
|
- Coder
|
|
254
280
|
""",
|
|
255
281
|
|
|
256
|
-
#1.
|
|
282
|
+
#1.8 OpenAI
|
|
257
283
|
"gpt-5-nano":"""
|
|
258
284
|
Model: GPT 5 Nano
|
|
259
285
|
Cost:
|
|
@@ -281,7 +307,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
281
307
|
- ImageTexter
|
|
282
308
|
""",
|
|
283
309
|
|
|
284
|
-
#1.
|
|
310
|
+
#1.9 OpenAI
|
|
285
311
|
"gpt-5-mini":"""
|
|
286
312
|
Model: GPT 5 Mini
|
|
287
313
|
Cost:
|
|
@@ -316,7 +342,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
316
342
|
|
|
317
343
|
#1.8 OpenAI
|
|
318
344
|
|
|
319
|
-
#1.
|
|
345
|
+
#1.10 OpenAI
|
|
320
346
|
"gpt-5-pro":"""
|
|
321
347
|
Model: GPT 5 Pro
|
|
322
348
|
Cost:
|
|
@@ -341,7 +367,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
341
367
|
- Coder
|
|
342
368
|
""",
|
|
343
369
|
|
|
344
|
-
#1.
|
|
370
|
+
#1.11 OpenAI
|
|
345
371
|
"gpt-5.1":"""
|
|
346
372
|
Model: GPT 5.1
|
|
347
373
|
Cost:
|
|
@@ -367,7 +393,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
367
393
|
- Coder
|
|
368
394
|
""",
|
|
369
395
|
|
|
370
|
-
#1.
|
|
396
|
+
#1.12 OpenAI
|
|
371
397
|
"gpt-5.1-chat-latest":"""
|
|
372
398
|
Model: GPT 5.1 Chat
|
|
373
399
|
Cost:
|
|
@@ -393,7 +419,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
393
419
|
- Chat
|
|
394
420
|
""",
|
|
395
421
|
|
|
396
|
-
#1.
|
|
422
|
+
#1.13 OpenAI
|
|
397
423
|
"gpt-5.1-codex-mini":"""
|
|
398
424
|
Model: GPT 5.1 Codex Mini
|
|
399
425
|
Cost:
|
|
@@ -418,7 +444,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
418
444
|
- Coder
|
|
419
445
|
""",
|
|
420
446
|
|
|
421
|
-
#1.
|
|
447
|
+
#1.14 OpenAI
|
|
422
448
|
"gpt-5.1-codex-max":"""
|
|
423
449
|
Model: GPT 5.1 Codex Max
|
|
424
450
|
Cost:
|
|
@@ -443,7 +469,7 @@ MODEL_DESCRIPTIONS = {
|
|
|
443
469
|
- Coder
|
|
444
470
|
""",
|
|
445
471
|
|
|
446
|
-
#1.
|
|
472
|
+
#1.15 OpenAI
|
|
447
473
|
"gpt-5.2":"""
|
|
448
474
|
Model: GPT 5.2
|
|
449
475
|
Cost:
|
|
@@ -467,8 +493,33 @@ MODEL_DESCRIPTIONS = {
|
|
|
467
493
|
Agency:
|
|
468
494
|
- Coder
|
|
469
495
|
""",
|
|
496
|
+
|
|
497
|
+
#1.16 OpenAI
|
|
498
|
+
"gpt-5.2-chat-latest":"""
|
|
499
|
+
Model: GPT 5.2 Chat
|
|
500
|
+
Cost:
|
|
501
|
+
Input = $1.74 <= 1M tokens
|
|
502
|
+
Output = $14.00 <= 1M tokens
|
|
470
503
|
|
|
471
|
-
|
|
504
|
+
Data Type:
|
|
505
|
+
Input = (Text, Image)
|
|
506
|
+
Output = Text
|
|
507
|
+
|
|
508
|
+
Context Length:
|
|
509
|
+
Input = 128,000 tokens
|
|
510
|
+
Output = 16,384 tokens
|
|
511
|
+
|
|
512
|
+
Misc:
|
|
513
|
+
3x Fast
|
|
514
|
+
3x Clever
|
|
515
|
+
Thinking: No
|
|
516
|
+
Knowledge: 31/08/2025
|
|
517
|
+
|
|
518
|
+
Agency:
|
|
519
|
+
- Admin
|
|
520
|
+
""",
|
|
521
|
+
|
|
522
|
+
#1.17 OpenAI
|
|
472
523
|
"gpt-5.2-pro":"""
|
|
473
524
|
Model: GPT 5.2 Pro
|
|
474
525
|
Cost:
|
|
@@ -493,6 +544,9 @@ MODEL_DESCRIPTIONS = {
|
|
|
493
544
|
- Coder
|
|
494
545
|
""",
|
|
495
546
|
|
|
547
|
+
# =========================
|
|
548
|
+
#2 GOOGLE
|
|
549
|
+
# =========================
|
|
496
550
|
#2.1 Google
|
|
497
551
|
"gemini-3-pro-preview": """
|
|
498
552
|
Model: Gemini 3 Pro
|
|
@@ -2,7 +2,7 @@ syntaxmatrix/__init__.py,sha256=_LnTrYAW2tbYA37Y233Vv4OMOk8NUnoJi-1yzFyHxEI,2573
|
|
|
2
2
|
syntaxmatrix/auth.py,sha256=SCD6uWojXjj9yjUTKzgV5kBYe6ZkXASEG2VopLFkEtM,18140
|
|
3
3
|
syntaxmatrix/bootstrap.py,sha256=Y7ZNg-Z3ecrr1iYem5EMzPmGstXnEKmO9kqKVoOoljo,817
|
|
4
4
|
syntaxmatrix/commentary.py,sha256=3c8qBAKJI2IcYd9PBZrFEwmv-c4_tfa3ebEoPa5vW7U,12428
|
|
5
|
-
syntaxmatrix/core.py,sha256=
|
|
5
|
+
syntaxmatrix/core.py,sha256=q1TbQx0gf_jBGDkQKdFGPEByuER0PEZnFqwaWSbOmco,66592
|
|
6
6
|
syntaxmatrix/dataset_preprocessing.py,sha256=wtV4MWzkyfOsBHTsS0H1gqHho77ZQHGDI9skJryyZWA,8732
|
|
7
7
|
syntaxmatrix/db.py,sha256=MLpNs-Ue3xjEwaOJOMgFuPEz_gP9Fr3b1__BA3A3RDg,20801
|
|
8
8
|
syntaxmatrix/display_html.py,sha256=tBeeHcRbmAOKqRTXY0hUehThFspCDsvjW4myi2zj0iU,3568
|
|
@@ -34,7 +34,7 @@ syntaxmatrix/vectorizer.py,sha256=5w_UQiUIirm_W-Q9TcaEI8LTcTYIuDBdKfz79T1aZ8g,13
|
|
|
34
34
|
syntaxmatrix/workspace_db.py,sha256=Xu9OlW8wo3iaH5Y88ZMdLOf-fiZxF1NBb5rAw3KcbfY,4715
|
|
35
35
|
syntaxmatrix/agentic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
syntaxmatrix/agentic/agent_tools.py,sha256=yQwavONP23ziMxNQf3j2Y4TVo_LxEsiAWecKuBK8WDg,866
|
|
37
|
-
syntaxmatrix/agentic/agents.py,sha256=
|
|
37
|
+
syntaxmatrix/agentic/agents.py,sha256=IVqF2VLl-80nx75FW0-RK2-2nfhbQjVwyGgplgVOeaA,74640
|
|
38
38
|
syntaxmatrix/agentic/agents_orchestrer.py,sha256=NMC0Mr1zRxxWBr-KRZxu1iLMBJowqesNIkuNwY1AlQA,14681
|
|
39
39
|
syntaxmatrix/agentic/code_tools_registry.py,sha256=rV0sA1qf_a9A4mmJXGuLnPD6qzAtTBjVgViYpwykfRU,1489
|
|
40
40
|
syntaxmatrix/agentic/model_templates.py,sha256=A3ROE3BHkvnU9cxqSGjlCBIw9U15zRaTKgK-WxcZtUI,76033
|
|
@@ -44,7 +44,7 @@ syntaxmatrix/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
44
44
|
syntaxmatrix/settings/client_items.py,sha256=jtJ2k5r_Roq42Pumor_VEsYVTIdbFVP2l61MOeMAPUc,868
|
|
45
45
|
syntaxmatrix/settings/default.yaml,sha256=BznvF1D06VMPbT6UX3MQ4zUkXxTXLnAA53aUu8G4O38,569
|
|
46
46
|
syntaxmatrix/settings/logging.py,sha256=U8iTDFv0H1ECdIzH9He2CtOVlK1x5KHCk126Zn5Vi7M,1362
|
|
47
|
-
syntaxmatrix/settings/model_map.py,sha256=
|
|
47
|
+
syntaxmatrix/settings/model_map.py,sha256=Sh84M4ZeKCSYNwgTS9u00-bWjD_8tMW_WVBEEyV8yLY,26712
|
|
48
48
|
syntaxmatrix/settings/prompts.py,sha256=Gni--SPxFfqbQXPJqkK0tdViBtAMtUBp185i5WdYux4,25888
|
|
49
49
|
syntaxmatrix/settings/string_navbar.py,sha256=NqgTzo3J9rRI4c278VG6kpoViFfmi2FKmL6sO0R-bus,83
|
|
50
50
|
syntaxmatrix/static/docs.md,sha256=rWlKjNcpS2cs5DElGNYuaA-XXdGZnRGMXx62nACvDwE,11105
|
|
@@ -78,8 +78,8 @@ syntaxmatrix/vectordb/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
78
78
|
syntaxmatrix/vectordb/adapters/milvus_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
79
|
syntaxmatrix/vectordb/adapters/pgvector_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
80
|
syntaxmatrix/vectordb/adapters/sqlite_adapter.py,sha256=L8M2qHfwZRAFVxWeurUVdHaJXz6F5xTUSWh3uy6TSUs,6035
|
|
81
|
-
syntaxmatrix-2.6.4.
|
|
82
|
-
syntaxmatrix-2.6.4.
|
|
83
|
-
syntaxmatrix-2.6.4.
|
|
84
|
-
syntaxmatrix-2.6.4.
|
|
85
|
-
syntaxmatrix-2.6.4.
|
|
81
|
+
syntaxmatrix-2.6.4.2.dist-info/licenses/LICENSE.txt,sha256=j1P8naTdy1JMxTC80XYQjbyAQnuOlpDusCUhncrvpy8,1083
|
|
82
|
+
syntaxmatrix-2.6.4.2.dist-info/METADATA,sha256=Lfr4JXJYE44Ezkm909Yfp6RYLT7GziLSNk70_qSBcg8,18221
|
|
83
|
+
syntaxmatrix-2.6.4.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
84
|
+
syntaxmatrix-2.6.4.2.dist-info/top_level.txt,sha256=HKP_zkl4V_nt7osC15DlacoBZktHrbZYOqf_pPkF3T8,13
|
|
85
|
+
syntaxmatrix-2.6.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|