MindsDB 25.6.2.0__py3-none-any.whl → 25.6.3.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.

Potentially problematic release.


This version of MindsDB might be problematic. Click here for more details.

Files changed (35) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/api/a2a/agent.py +25 -4
  3. mindsdb/api/a2a/task_manager.py +68 -6
  4. mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +91 -84
  5. mindsdb/api/executor/datahub/datanodes/project_datanode.py +1 -1
  6. mindsdb/api/executor/utilities/sql.py +18 -19
  7. mindsdb/api/http/namespaces/knowledge_bases.py +132 -154
  8. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +219 -28
  9. mindsdb/integrations/handlers/lindorm_handler/requirements.txt +1 -1
  10. mindsdb/integrations/handlers/llama_index_handler/requirements.txt +1 -1
  11. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +3 -0
  12. mindsdb/integrations/handlers/openai_handler/openai_handler.py +277 -356
  13. mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +94 -8
  14. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +19 -1
  15. mindsdb/integrations/libs/api_handler.py +19 -1
  16. mindsdb/integrations/libs/base.py +86 -2
  17. mindsdb/interfaces/agents/agents_controller.py +32 -6
  18. mindsdb/interfaces/agents/constants.py +1 -0
  19. mindsdb/interfaces/agents/mindsdb_database_agent.py +27 -34
  20. mindsdb/interfaces/data_catalog/data_catalog_loader.py +22 -6
  21. mindsdb/interfaces/data_catalog/data_catalog_reader.py +4 -0
  22. mindsdb/interfaces/database/integrations.py +4 -2
  23. mindsdb/interfaces/knowledge_base/controller.py +29 -24
  24. mindsdb/interfaces/knowledge_base/evaluate.py +0 -3
  25. mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +17 -86
  26. mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +28 -3
  27. mindsdb/interfaces/skills/skills_controller.py +0 -23
  28. mindsdb/interfaces/skills/sql_agent.py +9 -5
  29. mindsdb/interfaces/storage/db.py +20 -4
  30. mindsdb/utilities/config.py +5 -1
  31. {mindsdb-25.6.2.0.dist-info → mindsdb-25.6.3.1.dist-info}/METADATA +247 -247
  32. {mindsdb-25.6.2.0.dist-info → mindsdb-25.6.3.1.dist-info}/RECORD +35 -35
  33. {mindsdb-25.6.2.0.dist-info → mindsdb-25.6.3.1.dist-info}/WHEEL +0 -0
  34. {mindsdb-25.6.2.0.dist-info → mindsdb-25.6.3.1.dist-info}/licenses/LICENSE +0 -0
  35. {mindsdb-25.6.2.0.dist-info → mindsdb-25.6.3.1.dist-info}/top_level.txt +0 -0
@@ -1,13 +1,13 @@
1
- mindsdb/__about__.py,sha256=LnyyfSCC_6wr0BFlEld7exxv1FUP-I18_7gsSut9_gI,456
1
+ mindsdb/__about__.py,sha256=GN00xouVcR0rbSRYw97iyKOMLWx5fM4T1m5lG1h5E6o,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
5
5
  mindsdb/api/a2a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  mindsdb/api/a2a/__main__.py,sha256=zrzTzt9zgN38NImInrmxCsdr66urJNS0JOq0xJaKHac,4712
7
- mindsdb/api/a2a/agent.py,sha256=bre2HlS-SnUmT6sijuIr2FwluL5Oh_NdTUPYXqt--Ps,13200
7
+ mindsdb/api/a2a/agent.py,sha256=Kx0GXt158YtCX7_jot_Gjuzudb_ka-BxVFkV1eSHGdk,14192
8
8
  mindsdb/api/a2a/constants.py,sha256=1BmvDneWzNG6YJFUc-gZ9CNCO4wq2_12vFe6aw23yX4,2292
9
9
  mindsdb/api/a2a/run_a2a.py,sha256=7cWNu93DAaSG2jVgVvjoPy0ACaAhbU2qoApYkHYaLGc,2893
10
- mindsdb/api/a2a/task_manager.py,sha256=SwTwDC4_4pLIm8471Bi10WFvpI7uQ7qFLTDMcpg9mgI,23970
10
+ mindsdb/api/a2a/task_manager.py,sha256=oj9gEfmE3FH5bHPQSv34393Y13HlF2AFinxm-N3D95w,27170
11
11
  mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
12
  mindsdb/api/a2a/common/types.py,sha256=EYBpqEj-nZapSKe2jI8BcNDfSlTXXTbw8RcSA1DII9Q,8787
13
13
  mindsdb/api/a2a/common/server/__init__.py,sha256=Bl7Qa3Pk4QWY4yDPRNyHeTzNJpAe9HgUJd8-oTnMPv8,152
@@ -32,8 +32,8 @@ mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpV
32
32
  mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qfgrebm2pwJYOy3zgZi4mQI,594
33
33
  mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=q6Mu80zwL7yoA1HstiVHm7jQMrspQQdVnjiPSW8KTek,8472
34
34
  mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=o2IpDxfmuamRHkDUenPKC0zS9UgPKeiwbHoaytvhwb4,10629
35
- mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=inOQtLa-nP0sbyDtwvFGuxZsvWClQDhhNrA-bjFmWP4,14120
36
- mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=NY9AI9tkbHmSzEPOK4hDtR-fJ6ZWCbVoK_nans8ZRuQ,7662
35
+ mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
36
+ mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=uirk9IDgQpnbk6mOKbNMzw-cQL8v6a2IwZm9kc4OMxU,7664
37
37
  mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=LjkvnHZnVfc3GCjyU9Frq8AsNpSjsCV9MpTBJ0s4Dao,16331
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
@@ -67,7 +67,7 @@ mindsdb/api/executor/sql_query/steps/union_step.py,sha256=p9OABRTbcIkDx62kK8zLfh
67
67
  mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS5t8SfSo-14ttOd1r0_T8NA,4643
68
68
  mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
69
  mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
70
- mindsdb/api/executor/utilities/sql.py,sha256=Ury3Ai8_6VR3ns0f_UbeMTpGDwvCAdr3s89nJYCRQ6s,6181
70
+ mindsdb/api/executor/utilities/sql.py,sha256=RaqAmk-q8_Qab-pvKozgtc5LiBXBwHPRidhD8UKcdOs,6239
71
71
  mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
72
  mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
73
73
  mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
@@ -85,7 +85,7 @@ mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzX
85
85
  mindsdb/api/http/namespaces/file.py,sha256=gxJ1ScH2iTK7mkomMifsCOODVwReKJPdTpPVWmxeRIo,6871
86
86
  mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
87
87
  mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
88
- mindsdb/api/http/namespaces/knowledge_bases.py,sha256=ZwzSXn_6DNn3awCnMlvCbZfCOTPM3VcsQNotMM05v3U,16653
88
+ mindsdb/api/http/namespaces/knowledge_bases.py,sha256=RotgaH_Utryxrqm4OUTeinjY1JzQzPQ3t72FVM2GQ0s,16570
89
89
  mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
90
90
  mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
91
91
  mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
@@ -331,7 +331,7 @@ mindsdb/integrations/handlers/bedrock_handler/settings.py,sha256=cG_SWH0PfQ6o-ev
331
331
  mindsdb/integrations/handlers/bedrock_handler/utilities.py,sha256=hx8mzWLApZIV-mgp_CJM8qj-X51gX9-hcTXdGxE5fSs,1184
332
332
  mindsdb/integrations/handlers/bigquery_handler/__about__.py,sha256=hRxU4C7TM6ssU3oxS89oDVFfx-p_Wjj_jNh_Y6vq544,349
333
333
  mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNicKAh4FLIX2TX_v6ac2r6djxr_5d9WI,612
334
- mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=ZxFfZIUwnM7hJcZRTjyPY5_q2tonmVOuj_It8lxIOKY,6903
334
+ mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=QQnEggLjF-aMJoqYZ1kulagLltoQg6c54_c2aHMiFJw,14914
335
335
  mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
336
336
  mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
337
337
  mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=l8BgEzlWWL_88GeLfV3Dp40Am3DUNuDlVkgnH9jJccM,131
@@ -925,7 +925,7 @@ mindsdb/integrations/handlers/lindorm_handler/__about__.py,sha256=2V9KbVFWmQ2v98
925
925
  mindsdb/integrations/handlers/lindorm_handler/__init__.py,sha256=jZNxAhQpnXT6u7E72ZFPugYsbH5Fw-TH_JbHWRDWEY4,534
926
926
  mindsdb/integrations/handlers/lindorm_handler/icon.svg,sha256=Zj6gBi36Sf8YPQP0mYWr0YMznOeHdMNECasW_-C4o7g,1293
927
927
  mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py,sha256=OWKgOVxsVHA6TyhCXfKTh5Q1fLh4-GCkwrDuw507_Eg,6707
928
- mindsdb/integrations/handlers/lindorm_handler/requirements.txt,sha256=gnFyFuCLPdeDlN9PlotCbHNKyeVb9xR2ptVKxezuWa8,36
928
+ mindsdb/integrations/handlers/lindorm_handler/requirements.txt,sha256=wAlQavTX7ZORlSzjzq4GYE2ywfm5Gxg7PCSHDui049U,36
929
929
  mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
930
930
  mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha256=odnriKTV2M0T-dExrDM2iZFmDyVXXnfqznHWFAQOMco,1037
931
931
  mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
@@ -938,7 +938,7 @@ mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27
938
938
  mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
939
939
  mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
940
940
  mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py,sha256=7QxPi037d4O1RSoJQGpPWVg0ZAJU4mAZl1NOjh4t2MQ,7844
941
- mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=xoOq5UyUuLyAbii-dIMeUoLts_iloEsv6qM9KBe4cvs,101
941
+ mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=B517oPm1CT7ltcVryotwkNToCarFGmzPnLEuAGVVQMY,101
942
942
  mindsdb/integrations/handlers/llama_index_handler/settings.py,sha256=BnnqbiH7_kYe8al1O8Lw_p3Vfuvjhd6ccCtf8URQQks,2125
943
943
  mindsdb/integrations/handlers/ludwig_handler/__about__.py,sha256=5pC8567sj_ZZW70dm7Chkc4He6-F8l5oUKE1W9V98Ck,343
944
944
  mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7rK_zPFFAIHGjEsGR_rc2FK8r8HyM,536
@@ -1072,7 +1072,7 @@ mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=6kvzqW7nBK7T6fWa
1072
1072
  mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=vE9F5Fi6Xgpfpsy6ABbIdeHMbD0do4nHqvq8B94IvJU,627
1073
1073
  mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=btTVpawoIuruXOjAI7Ycmcega2Xgu7P8gSr1iz4lUew,2278
1074
1074
  mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
1075
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=5jpJ6DvK7hDDBWefSbh7Z2sNKgqWoodIiooNI19Na0Q,11046
1075
+ mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=ySlS9nmN8t8A-OLsi5OgfxBOZ9jai0c7Vg1AcvUnLmY,11116
1076
1076
  mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
1077
1077
  mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=lC3KC5pr_IDeM9_hkAFkdui1INrin5ab_zKLOITxWbM,1722
1078
1078
  mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
@@ -1137,7 +1137,7 @@ mindsdb/integrations/handlers/openai_handler/creation_args.py,sha256=v1NHiz-tLvA
1137
1137
  mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=xEezAE-Pmxxsa878vAtO05AxBhLQkT89ShPjBwyZoEs,6843
1138
1138
  mindsdb/integrations/handlers/openai_handler/icon.svg,sha256=r5vCiNm9_nL1ZbM1e6PYcTzw9KrgC0hqWT8IAi2pFbE,2625
1139
1139
  mindsdb/integrations/handlers/openai_handler/model_using_args.py,sha256=c5NBe6RGkRGVOLhc7Ksq3M3w96Kd9KECO6T01j7VS90,76
1140
- mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=NjHJQzCFgTd3QZpdtvr7CMMxtyUbcnvavBcQ5RvzX5s,49206
1140
+ mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=Pz1Dsp0MiBoo97FowrCpRmhD5I5faoCHiJUApFLdlbQ,47653
1141
1141
  mindsdb/integrations/handlers/openai_handler/requirements.txt,sha256=u06ahGd1EskIW_Yy-5Y_jNLNbN1CtF9N3ylGPPOPBLA,9
1142
1142
  mindsdb/integrations/handlers/openai_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1143
1143
  mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py,sha256=W3b39JCQfCF_IXUS98j7KqTqIzeYne9RDba33AxM774,18651
@@ -1346,7 +1346,7 @@ mindsdb/integrations/handlers/salesforce_handler/__init__.py,sha256=nH_HnnS5cnDa
1346
1346
  mindsdb/integrations/handlers/salesforce_handler/connection_args.py,sha256=XF20-m222AxVvK751lWKV2tb3I1WkRrmR5AJ7qV9PtI,1498
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
- mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=wBAAg-asCG3L9fscNtydjeIYqFu2wTgZarxGTOQnLiA,7439
1349
+ mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=1w93ntZ3U47tyYGjhj6KVF6Ku_-dFCofwYf2XxfIt98,10607
1350
1350
  mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=0Ffy0niHxbhd-pi7Pfzvwjgz3_b9cAz_6C9zv-LOkms,10365
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
@@ -1423,7 +1423,7 @@ mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DI
1423
1423
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1424
1424
  mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
1425
1425
  mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=jPONiX7mUekXJMK0Tv1A5fhSAR2Vkc-_4E_pCDJo068,71
1426
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=Za14SL8hX1gX_PKy0wBSH4gn_3fvwR7cQAIS5WDPSv8,29811
1426
+ mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=6t3yn-likCK_qs7MjOJUvvvOiVTmYtYJKkonZuGfGGA,30596
1427
1427
  mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
1428
1428
  mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
1429
1429
  mindsdb/integrations/handlers/solace_handler/icon.svg,sha256=rzGNiCdLWu9OJ3j8ilXrOTwRupMp3n3RQrfm2D_Nx5A,152
@@ -1703,10 +1703,10 @@ 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=AImckLLVnrEJm1mo307Wk2SHAVFi2BSqx9abeZUdEfU,24451
1706
+ mindsdb/integrations/libs/api_handler.py,sha256=Mh52y0rmw1vYNW2jlB5s-ny98yCqkfWjK5qw1wF-xIU,25340
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
- mindsdb/integrations/libs/base.py,sha256=wph23_Tn1smJUQnXQzNzl5nmJYOmqAMZQnKsPSG4H-Y,16969
1709
+ mindsdb/integrations/libs/base.py,sha256=LaM5XhcGw75Yfg5aUvAzhoEOu7-FrXHnJD-E8zyg1_8,21069
1710
1710
  mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4SexxR8c,407
1711
1711
  mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
1712
1712
  mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
@@ -1794,16 +1794,16 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
1794
1794
  mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
1795
1795
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1796
1796
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1797
- mindsdb/interfaces/agents/agents_controller.py,sha256=3jgt7avVVsjaDrK6E3hCul7lpyxLQN9mIykI5duo04Q,27202
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=OIT0Fg41JhRMyvJVgx4IWXY7JGjboPxvYvyCIKw72uU,6390
1799
+ mindsdb/interfaces/agents/constants.py,sha256=s-f67O3IZQ5dsQRzPoK3u597AGWQPauquq-qi2HncI8,6501
1800
1800
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1801
1801
  mindsdb/interfaces/agents/langchain_agent.py,sha256=A-C6Iamojoxgdx3o3r2IFUv65esflJ6_M0-caEw80Ac,29937
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
1805
1805
  mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
1806
- mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=-BYmUrTejJN9VAxn0OzNIwiopCK-Z5cHkSG0nAq7KAo,6725
1806
+ mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=KhaAllQxou6EDDE8IbovLJdcQdCof8BMbwufLpAWItY,6390
1807
1807
  mindsdb/interfaces/agents/run_mcp_agent.py,sha256=4ZXhIGBu3wVIZC9Ys6vTJDxGJzLXppLLqzbg1UFanS8,8689
1808
1808
  mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
1809
1809
  mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
@@ -1816,11 +1816,11 @@ mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augj
1816
1816
  mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
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
- mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=SYGbgBcuVLpDm0KY2AyHRooJVEcQh7QOCp7zFwvQc_4,14851
1820
- mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=kPadtV7ki_zls3KZE7eFcvq31YqLP4t-_5Dc7kkoXQo,1461
1819
+ mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=jB0jHcLARFRCnGfN1IzQ_djsXIcnzgz3hi5hCiTRuz8,15622
1820
+ mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=uXFNfSNtytL6c0llaK9yUwRIkijJ_9ieuUIchOyPGXM,1606
1821
1821
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1822
1822
  mindsdb/interfaces/database/database.py,sha256=xUGax9RhsFRN0DAmPtVLTk1LrNsRxc74hA6nRRX5FfU,5605
1823
- mindsdb/interfaces/database/integrations.py,sha256=saJIEPTxqEjmhlHN0JWeUIOGbz81g-nnjotHSi4Ssk8,36894
1823
+ mindsdb/interfaces/database/integrations.py,sha256=3CFTJZmEVcVFgtiP4r1zNr0HBsKq2L3I1YuU5UaJDOc,37031
1824
1824
  mindsdb/interfaces/database/log.py,sha256=ZpsEKKEtF32KjWRQ5rMtnHZTHqqJiffeaEcUDTx44cs,10305
1825
1825
  mindsdb/interfaces/database/projects.py,sha256=fIA9_wCvUrQD_aX75R36RmPpvCTRDBR4ZgCnx7Yjv_s,16560
1826
1826
  mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
@@ -1833,13 +1833,13 @@ 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=EbxpLdqvHPMup8gS9yDRJl5pf6GhjHZ2mEIFo3LplxU,50729
1837
- mindsdb/interfaces/knowledge_base/evaluate.py,sha256=V86ABSoulSgN0UVsNSBs0xiVSRYGwuyq-wugBJ8LU2g,19423
1836
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=xFMhr46tm1gv49JYXhnTfecevpRJCNo3fpb456X37XI,50658
1837
+ mindsdb/interfaces/knowledge_base/evaluate.py,sha256=VBVujsfwmCPBn6ORXMOuyFMKbgm3VVzuR3s0ZcBX_3E,19275
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
1841
1841
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1842
- mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
1842
+ mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=l_snHg8O6pLu4-TGTd5K3VgWVwlXa7mnLH_NaQdbS6E,3596
1843
1843
  mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=AOFnVTeoOq89sp_9Hr166ric5ti-cWodipdmDMRqCuw,14795
1844
1844
  mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=ciOiEmSN3JalwN9_d-tfJLabD_5etBYIHavCnazI0x8,17333
1845
1845
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=5TjFLLsocR6DUfjWg1oxtnEplquSi0puPMC7Ij36G-o,6042
@@ -1853,15 +1853,15 @@ mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54
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
1855
  mindsdb/interfaces/skills/skill_tool.py,sha256=aC_eaiKT_bJhMoMjmWviFLh84zqDaBvag8DgO1fSQGw,20392
1856
- mindsdb/interfaces/skills/skills_controller.py,sha256=thEdLY2zBLuTEs2P3nvgLlDPG0DL1EpaiQV6tZ8GjKE,7728
1857
- mindsdb/interfaces/skills/sql_agent.py,sha256=0vhvLTsgVHLTyism7miA6AikOuV6wbn2l2Xqnul60SY,26048
1856
+ mindsdb/interfaces/skills/skills_controller.py,sha256=ury7v-nns9OHWMouzetCF1bbAZmbpSwSBpOOYZuXJr8,6248
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=oG5KUryWgGbpfZ_qAz8E7w0rFqHn7OQh7a4aeq96TE4,9286
1860
+ mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=WKEVanYkZ4qb6ALj13AkCZbhqxI26AEh-hA9e_291RY,10045
1861
1861
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1862
1862
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=fpOkZDMVihwzXHxMSrHqicVNLMK45RPUyNlTgARVzqI,12072
1863
1863
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1864
- mindsdb/interfaces/storage/db.py,sha256=s1ENaM3V-JbJGRm7BzN_KSI2uVM_cpeuJGuRZbuwy6Y,28004
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
1866
1866
  mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1867
1867
  mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
@@ -1949,7 +1949,7 @@ mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
1949
1949
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1950
1950
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1951
1951
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1952
- mindsdb/utilities/config.py,sha256=9dZLT4HfMy5JrPfkvijNm7ilrN6ZnPF599tUZVrv-r4,26717
1952
+ mindsdb/utilities/config.py,sha256=RM4nneDbsn1gipz0jsDGSp-_g0f1m3XyEIr8ZG3DoFc,26809
1953
1953
  mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1954
1954
  mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
1955
1955
  mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
@@ -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.2.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1989
- mindsdb-25.6.2.0.dist-info/METADATA,sha256=tXXBiF6nAOmT15OilDzBsj6wrm-IClOiSOPJ9uC1g68,44815
1990
- mindsdb-25.6.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1991
- mindsdb-25.6.2.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1992
- mindsdb-25.6.2.0.dist-info/RECORD,,
1988
+ mindsdb-25.6.3.1.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1989
+ mindsdb-25.6.3.1.dist-info/METADATA,sha256=eecj1m1XQhsaGGn2hJhf5hzXKE_6ep1EYXBovJKuU4E,44815
1990
+ mindsdb-25.6.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1991
+ mindsdb-25.6.3.1.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1992
+ mindsdb-25.6.3.1.dist-info/RECORD,,