MindsDB 25.6.3.1__py3-none-any.whl → 25.6.4.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.
Potentially problematic release.
This version of MindsDB might be problematic. Click here for more details.
- mindsdb/__about__.py +1 -1
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +71 -43
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +16 -1
- mindsdb/api/executor/datahub/datanodes/project_datanode.py +1 -1
- mindsdb/api/executor/datahub/datanodes/system_tables.py +314 -1
- mindsdb/api/executor/planner/plan_join.py +1 -1
- mindsdb/api/executor/planner/query_planner.py +7 -1
- mindsdb/integrations/handlers/ludwig_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +2 -0
- mindsdb/integrations/libs/api_handler.py +6 -7
- mindsdb/interfaces/agents/constants.py +44 -0
- mindsdb/interfaces/agents/langchain_agent.py +8 -1
- mindsdb/interfaces/data_catalog/data_catalog_reader.py +19 -2
- mindsdb/interfaces/knowledge_base/controller.py +6 -13
- mindsdb/interfaces/knowledge_base/evaluate.py +3 -3
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +24 -22
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +40 -28
- mindsdb/interfaces/skills/skill_tool.py +91 -88
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.6.4.0.dist-info}/METADATA +259 -257
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.6.4.0.dist-info}/RECORD +23 -23
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.6.4.0.dist-info}/WHEEL +0 -0
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.6.4.0.dist-info}/licenses/LICENSE +0 -0
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.6.4.0.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=azn4M9w6thxZxfkDiAWbetGsus3-dOQhX59HgmNx34I,456
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
3
|
mindsdb/__main__.py,sha256=bkLqiYLsx1KyCyi6tJjyMBkpMvO3g37wOC0PymMbiHU,24037
|
|
4
4
|
mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -30,17 +30,17 @@ mindsdb/api/executor/datahub/classes/response.py,sha256=1JLErGOSwcgYeSlCOBaEDjkX
|
|
|
30
30
|
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
|
|
31
31
|
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
32
32
|
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qfgrebm2pwJYOy3zgZi4mQI,594
|
|
33
|
-
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=
|
|
34
|
-
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=
|
|
33
|
+
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=mF9Ie0dAowdh8vo2a2v3Y4VDan3dnwzxWYcuZozzjZU,8761
|
|
34
|
+
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=8pmOujN7JRDF6F6vCZn59gOuBjh5FL4G5Zu3-A9jVw0,11156
|
|
35
35
|
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
|
|
36
|
-
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=
|
|
37
|
-
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=
|
|
36
|
+
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=I97p3wsZjGZ7wfgq54rs9X-72MYXu1PVHteWVFRX-rg,7682
|
|
37
|
+
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=cSekW9FEBEaU8YSctwQpe2_aknxHAo5LznMMc6g1gko,27462
|
|
38
38
|
mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
|
|
39
39
|
mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
|
|
40
|
-
mindsdb/api/executor/planner/plan_join.py,sha256=
|
|
40
|
+
mindsdb/api/executor/planner/plan_join.py,sha256=01Hp2RSYgXDWt-H8UcUufO6Hj1zUtY3ZbHpUCR1f0VU,22432
|
|
41
41
|
mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
|
|
42
42
|
mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
|
|
43
|
-
mindsdb/api/executor/planner/query_planner.py,sha256=
|
|
43
|
+
mindsdb/api/executor/planner/query_planner.py,sha256=9yNno776Ht1cGwmoSVRgz2psltWRg8bYwyJIOcWXI-A,35605
|
|
44
44
|
mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
|
|
45
45
|
mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
|
|
46
46
|
mindsdb/api/executor/planner/steps.py,sha256=eAffDFqL0ZpCn1PSFK5gnpsY6eb-gM--lZw2WyadGfo,9511
|
|
@@ -945,7 +945,7 @@ mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7r
|
|
|
945
945
|
mindsdb/integrations/handlers/ludwig_handler/functions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
946
946
|
mindsdb/integrations/handlers/ludwig_handler/icon.svg,sha256=p-EtG5_8PHHYs4u5R45t2yL4qVCFPnUqcdq3CMsvA1U,414
|
|
947
947
|
mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py,sha256=xNGqY_4LKZN2ZqAHJn2FulRu7p1CBR8eBO7C9XH5uPE,2395
|
|
948
|
-
mindsdb/integrations/handlers/ludwig_handler/requirements.txt,sha256=
|
|
948
|
+
mindsdb/integrations/handlers/ludwig_handler/requirements.txt,sha256=7qFLocpjcPdlAgHFqbYfaYzsadXTb3c4Q0ro0ORyB54,44
|
|
949
949
|
mindsdb/integrations/handlers/ludwig_handler/utils.py,sha256=6GF7yKawEaG-sWRUW7jTMb6SzU8eus19d3lK3yHEopA,250
|
|
950
950
|
mindsdb/integrations/handlers/luma_handler/__about__.py,sha256=mJacT8OVMIq5k-kY5ilNBeNP4D-S3LYJ2drayH0vyMY,332
|
|
951
951
|
mindsdb/integrations/handlers/luma_handler/__init__.py,sha256=7Zh8FJe9A0T38wdOEm3cXl8vXyROFuZC8-Mh1X2rT5A,621
|
|
@@ -1347,7 +1347,7 @@ mindsdb/integrations/handlers/salesforce_handler/connection_args.py,sha256=XF20-
|
|
|
1347
1347
|
mindsdb/integrations/handlers/salesforce_handler/icon.svg,sha256=sL7XX_vF5Y7gLLklV1h17MXILGYz0f79VH915DQXyV0,8594
|
|
1348
1348
|
mindsdb/integrations/handlers/salesforce_handler/requirements.txt,sha256=JbByk_8_aqTrg45rT_tUbyDgUoDSTK7VVpgUaMen3wU,22
|
|
1349
1349
|
mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=1w93ntZ3U47tyYGjhj6KVF6Ku_-dFCofwYf2XxfIt98,10607
|
|
1350
|
-
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=
|
|
1350
|
+
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=jMEylwnBKlDeEIZpVmx13P-mOYA7lH3LlM9dk_sQ9aE,10509
|
|
1351
1351
|
mindsdb/integrations/handlers/sap_erp_handler/__about__.py,sha256=yXC_YavBeY0vTZvwkU4EN7DUijGMZ8m3jtQsftKwlhs,340
|
|
1352
1352
|
mindsdb/integrations/handlers/sap_erp_handler/__init__.py,sha256=2rnUX-yeCkCgh4viBttHdG4o4HKJrVI3m82S8GJFCBU,531
|
|
1353
1353
|
mindsdb/integrations/handlers/sap_erp_handler/api.py,sha256=tAIqeww34R0N0QyVKYhSE3NRzIDoBn8xepCZIG4tYbg,2168
|
|
@@ -1703,7 +1703,7 @@ mindsdb/integrations/handlers/zotero_handler/requirements.txt,sha256=uRY96N9ioKv
|
|
|
1703
1703
|
mindsdb/integrations/handlers/zotero_handler/zotero_handler.py,sha256=CVmTS9Cqj85xWt1RWR8BKJDh9h-dUYLXWIkYHI5ncfk,3575
|
|
1704
1704
|
mindsdb/integrations/handlers/zotero_handler/zotero_tables.py,sha256=5uTXP3fYAQ6rKgWKKVRc2x0Pn1u4rNMZUHm01ewC9RA,4861
|
|
1705
1705
|
mindsdb/integrations/libs/__init__.py,sha256=uEz-XQLAwY2nMXc5ilEPP6cWWfo5HpO8o8UfV8JELS0,99
|
|
1706
|
-
mindsdb/integrations/libs/api_handler.py,sha256
|
|
1706
|
+
mindsdb/integrations/libs/api_handler.py,sha256=-Zn0rdVA1gvHms0k2ZDzuifPmKOnlNy8qab3t1lkdho,25359
|
|
1707
1707
|
mindsdb/integrations/libs/api_handler_exceptions.py,sha256=mw83eTmo9knpVHP1ISnudonZcBMI_Xzr77b1wXN-eu8,236
|
|
1708
1708
|
mindsdb/integrations/libs/api_handler_generator.py,sha256=qQs12fr31g0XvMjTInopNfKiPj7pKfyuNhqqX0tCgGo,19304
|
|
1709
1709
|
mindsdb/integrations/libs/base.py,sha256=LaM5XhcGw75Yfg5aUvAzhoEOu7-FrXHnJD-E8zyg1_8,21069
|
|
@@ -1796,9 +1796,9 @@ mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVG
|
|
|
1796
1796
|
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1797
1797
|
mindsdb/interfaces/agents/agents_controller.py,sha256=zuKoO4C7X3_-8KXaLuHz4OyNpx2iCdo_Nq_MtE9kIxI,28564
|
|
1798
1798
|
mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
|
|
1799
|
-
mindsdb/interfaces/agents/constants.py,sha256=
|
|
1799
|
+
mindsdb/interfaces/agents/constants.py,sha256=W1p2z1iLeY4eC-lOVFaeR8MluVPfWfjMoyAmKjIYyOI,8438
|
|
1800
1800
|
mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
|
|
1801
|
-
mindsdb/interfaces/agents/langchain_agent.py,sha256=
|
|
1801
|
+
mindsdb/interfaces/agents/langchain_agent.py,sha256=dOhY9vFV1S7QubKF_tVmIsnQ-zOcCeO9h6y1tLC-rDA,30277
|
|
1802
1802
|
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
|
|
1803
1803
|
mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
|
|
1804
1804
|
mindsdb/interfaces/agents/mcp_client_agent.py,sha256=D90tKJl7OicZyOnj6USiN8bXW-6IflBpUSJ8unjduH0,10030
|
|
@@ -1817,7 +1817,7 @@ mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS
|
|
|
1817
1817
|
mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1818
1818
|
mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
|
|
1819
1819
|
mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=jB0jHcLARFRCnGfN1IzQ_djsXIcnzgz3hi5hCiTRuz8,15622
|
|
1820
|
-
mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=
|
|
1820
|
+
mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=_kIVpNLu_0KvzBHNHTeJoLKNhGqmoJhuYCZeoGvSi_Q,2137
|
|
1821
1821
|
mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1822
1822
|
mindsdb/interfaces/database/database.py,sha256=xUGax9RhsFRN0DAmPtVLTk1LrNsRxc74hA6nRRX5FfU,5605
|
|
1823
1823
|
mindsdb/interfaces/database/integrations.py,sha256=3CFTJZmEVcVFgtiP4r1zNr0HBsKq2L3I1YuU5UaJDOc,37031
|
|
@@ -1833,8 +1833,8 @@ mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
1833
1833
|
mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
|
|
1834
1834
|
mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
|
|
1835
1835
|
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1836
|
-
mindsdb/interfaces/knowledge_base/controller.py,sha256=
|
|
1837
|
-
mindsdb/interfaces/knowledge_base/evaluate.py,sha256=
|
|
1836
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=f32oWJDumJYlHWtQHuIL0JsWS90gXEO8_Gq91EOc7YU,50309
|
|
1837
|
+
mindsdb/interfaces/knowledge_base/evaluate.py,sha256=RqXjLfPDgH3MulEjujyqusaZSDoBK694ifuh2GUp1hg,19270
|
|
1838
1838
|
mindsdb/interfaces/knowledge_base/llm_client.py,sha256=gYaF_WDAXHsN9GOLf7UjSDRyujnZE1u7n65KOhyF6F4,2786
|
|
1839
1839
|
mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
|
|
1840
1840
|
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1852,14 +1852,14 @@ mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCb
|
|
|
1852
1852
|
mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
|
|
1853
1853
|
mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1854
1854
|
mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
|
|
1855
|
-
mindsdb/interfaces/skills/skill_tool.py,sha256=
|
|
1855
|
+
mindsdb/interfaces/skills/skill_tool.py,sha256=ciuo9kEWaRvBIhyXBFCfn3fLBzh2Sr7TgPalPxnOilg,20486
|
|
1856
1856
|
mindsdb/interfaces/skills/skills_controller.py,sha256=ury7v-nns9OHWMouzetCF1bbAZmbpSwSBpOOYZuXJr8,6248
|
|
1857
1857
|
mindsdb/interfaces/skills/sql_agent.py,sha256=8H121jPTp4w0XBPqIyfpsSYS6Fbmg6V7PtBuyTNilWU,26289
|
|
1858
1858
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1859
1859
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1860
|
-
mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=
|
|
1860
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=cdscMJovCQJgWit_aC7zySGCZX53k4a_df2Vgzqz1W4,9983
|
|
1861
1861
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
|
|
1862
|
-
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=
|
|
1862
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=9vre6MI_kzDY4lae42EhOvuTdXcTrs9R_oeiuZkMO2o,12352
|
|
1863
1863
|
mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1864
1864
|
mindsdb/interfaces/storage/db.py,sha256=w5apMUM-TjXfkd-wBBHXqhkG4-lz_l3u9QYdBIZGVe4,28705
|
|
1865
1865
|
mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
|
|
@@ -1985,8 +1985,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
|
|
|
1985
1985
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1986
1986
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1987
1987
|
mindsdb/utilities/render/sqlalchemy_render.py,sha256=7GYCKCCFIo4UzmPtnRncefZBuUVdcVEo4ICqHxGWPrw,30852
|
|
1988
|
-
mindsdb-25.6.
|
|
1989
|
-
mindsdb-25.6.
|
|
1990
|
-
mindsdb-25.6.
|
|
1991
|
-
mindsdb-25.6.
|
|
1992
|
-
mindsdb-25.6.
|
|
1988
|
+
mindsdb-25.6.4.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1989
|
+
mindsdb-25.6.4.0.dist-info/METADATA,sha256=3PTs4FmJgWNb6HTVI5FI1lfpJJu1BKaahXOP-lMEQ6k,44915
|
|
1990
|
+
mindsdb-25.6.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1991
|
+
mindsdb-25.6.4.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1992
|
+
mindsdb-25.6.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|