syntaxmatrix 2.6.2__py3-none-any.whl → 2.6.3__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 +5 -6
- syntaxmatrix/routes.py +1 -1
- {syntaxmatrix-2.6.2.dist-info → syntaxmatrix-2.6.3.dist-info}/METADATA +1 -1
- {syntaxmatrix-2.6.2.dist-info → syntaxmatrix-2.6.3.dist-info}/RECORD +7 -7
- {syntaxmatrix-2.6.2.dist-info → syntaxmatrix-2.6.3.dist-info}/WHEEL +0 -0
- {syntaxmatrix-2.6.2.dist-info → syntaxmatrix-2.6.3.dist-info}/licenses/LICENSE.txt +0 -0
- {syntaxmatrix-2.6.2.dist-info → syntaxmatrix-2.6.3.dist-info}/top_level.txt +0 -0
syntaxmatrix/agentic/agents.py
CHANGED
|
@@ -757,17 +757,16 @@ def agentic_generate_page(*,
|
|
|
757
757
|
|
|
758
758
|
if provider == "openai":
|
|
759
759
|
if int(model.split("gpt-")[1][0])>=5:
|
|
760
|
+
|
|
760
761
|
response = client.responses.create(
|
|
761
|
-
model=model,
|
|
762
|
-
instructions=system_prompt,
|
|
762
|
+
model=model,
|
|
763
|
+
instructions=system_prompt,
|
|
763
764
|
input=[
|
|
764
765
|
{"role": "user", "content": user_prompt}
|
|
765
766
|
],
|
|
766
767
|
reasoning={"effort": "medium"},
|
|
767
|
-
text
|
|
768
|
-
|
|
769
|
-
{"format": {"type": "json_object"}}
|
|
770
|
-
],
|
|
768
|
+
# IMPORTANT: 'text' must be an object (not a list)
|
|
769
|
+
text={"format": {"type": "json_object"}},
|
|
771
770
|
)
|
|
772
771
|
|
|
773
772
|
txt = (response.output_text or "")
|
syntaxmatrix/routes.py
CHANGED
|
@@ -21,7 +21,7 @@ syntaxmatrix/plottings.py,sha256=MjHQ9T1_oC5oyr4_wkM2GJDrpjp0sbvudbs2lGaMyzk,610
|
|
|
21
21
|
syntaxmatrix/preface.py,sha256=tCm0C0BhY_SOntQT5I7cOJr6TB5mVDAeL9i8UmHLu5g,21237
|
|
22
22
|
syntaxmatrix/profiles.py,sha256=hPg27IQjl8-Tpo3BanQQsByeAgcizqIA2I_IKKNZ0TI,2900
|
|
23
23
|
syntaxmatrix/project_root.py,sha256=1ckvbFVV1szHtHsfSCoGcImHkRwbfszmPG1kGh9ZZlE,2227
|
|
24
|
-
syntaxmatrix/routes.py,sha256=
|
|
24
|
+
syntaxmatrix/routes.py,sha256=QWLAwtKrv013zohZeSxnA6QQ-1XvZFQfXDaYsT_gpkI,355273
|
|
25
25
|
syntaxmatrix/selftest_page_templates.py,sha256=JY1i2xu7FBkN0TIPiAXhEk_iIjdOBmfc1g9aX98iqhw,14833
|
|
26
26
|
syntaxmatrix/session.py,sha256=v0qgxnVM_LEaNvZQJSa-13Q2eiwc3RDnjd2SahNnHQk,599
|
|
27
27
|
syntaxmatrix/smiv.py,sha256=1lSN3UYpXvYoVNd6VrkY5iZuF_nDxD6xxvLnTn9wcbQ,1405
|
|
@@ -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=n8lqelmTn_u3MIfFySIWQZgUA_qsfzbzBGdLPNIqT9M,75261
|
|
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
|
|
@@ -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.
|
|
82
|
-
syntaxmatrix-2.6.
|
|
83
|
-
syntaxmatrix-2.6.
|
|
84
|
-
syntaxmatrix-2.6.
|
|
85
|
-
syntaxmatrix-2.6.
|
|
81
|
+
syntaxmatrix-2.6.3.dist-info/licenses/LICENSE.txt,sha256=j1P8naTdy1JMxTC80XYQjbyAQnuOlpDusCUhncrvpy8,1083
|
|
82
|
+
syntaxmatrix-2.6.3.dist-info/METADATA,sha256=1oIQ3LUTuL4Js5qCOJozwjPIUqhAkNFH6xClW9vgW64,18219
|
|
83
|
+
syntaxmatrix-2.6.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
84
|
+
syntaxmatrix-2.6.3.dist-info/top_level.txt,sha256=HKP_zkl4V_nt7osC15DlacoBZktHrbZYOqf_pPkF3T8,13
|
|
85
|
+
syntaxmatrix-2.6.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|