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

Files changed (76) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/api/a2a/agent.py +50 -26
  3. mindsdb/api/a2a/common/server/server.py +32 -26
  4. mindsdb/api/a2a/task_manager.py +68 -6
  5. mindsdb/api/executor/command_executor.py +69 -14
  6. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +49 -65
  7. mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +91 -84
  8. mindsdb/api/executor/datahub/datanodes/project_datanode.py +29 -48
  9. mindsdb/api/executor/datahub/datanodes/system_tables.py +35 -61
  10. mindsdb/api/executor/planner/plan_join.py +67 -77
  11. mindsdb/api/executor/planner/query_planner.py +176 -155
  12. mindsdb/api/executor/planner/steps.py +37 -12
  13. mindsdb/api/executor/sql_query/result_set.py +45 -64
  14. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +14 -18
  15. mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py +17 -18
  16. mindsdb/api/executor/sql_query/steps/insert_step.py +13 -33
  17. mindsdb/api/executor/sql_query/steps/subselect_step.py +43 -35
  18. mindsdb/api/executor/utilities/sql.py +42 -48
  19. mindsdb/api/http/namespaces/config.py +1 -1
  20. mindsdb/api/http/namespaces/file.py +14 -23
  21. mindsdb/api/http/namespaces/knowledge_bases.py +132 -154
  22. mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +12 -28
  23. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +59 -50
  24. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +9 -8
  25. mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +449 -461
  26. mindsdb/api/mysql/mysql_proxy/utilities/dump.py +87 -36
  27. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +219 -28
  28. mindsdb/integrations/handlers/file_handler/file_handler.py +15 -9
  29. mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +43 -24
  30. mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +10 -3
  31. mindsdb/integrations/handlers/llama_index_handler/requirements.txt +1 -1
  32. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +29 -33
  33. mindsdb/integrations/handlers/openai_handler/openai_handler.py +277 -356
  34. mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +74 -51
  35. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +305 -98
  36. mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +145 -40
  37. mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +136 -6
  38. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +352 -83
  39. mindsdb/integrations/libs/api_handler.py +279 -57
  40. mindsdb/integrations/libs/base.py +185 -30
  41. mindsdb/integrations/utilities/files/file_reader.py +99 -73
  42. mindsdb/integrations/utilities/handler_utils.py +23 -8
  43. mindsdb/integrations/utilities/sql_utils.py +35 -40
  44. mindsdb/interfaces/agents/agents_controller.py +226 -196
  45. mindsdb/interfaces/agents/constants.py +8 -1
  46. mindsdb/interfaces/agents/langchain_agent.py +42 -11
  47. mindsdb/interfaces/agents/mcp_client_agent.py +29 -21
  48. mindsdb/interfaces/agents/mindsdb_database_agent.py +23 -18
  49. mindsdb/interfaces/data_catalog/__init__.py +0 -0
  50. mindsdb/interfaces/data_catalog/base_data_catalog.py +54 -0
  51. mindsdb/interfaces/data_catalog/data_catalog_loader.py +375 -0
  52. mindsdb/interfaces/data_catalog/data_catalog_reader.py +38 -0
  53. mindsdb/interfaces/database/database.py +81 -57
  54. mindsdb/interfaces/database/integrations.py +222 -234
  55. mindsdb/interfaces/database/log.py +72 -104
  56. mindsdb/interfaces/database/projects.py +156 -193
  57. mindsdb/interfaces/file/file_controller.py +21 -65
  58. mindsdb/interfaces/knowledge_base/controller.py +66 -25
  59. mindsdb/interfaces/knowledge_base/evaluate.py +516 -0
  60. mindsdb/interfaces/knowledge_base/llm_client.py +75 -0
  61. mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +83 -43
  62. mindsdb/interfaces/skills/skills_controller.py +31 -36
  63. mindsdb/interfaces/skills/sql_agent.py +113 -86
  64. mindsdb/interfaces/storage/db.py +242 -82
  65. mindsdb/migrations/versions/2025-05-28_a44643042fe8_added_data_catalog_tables.py +118 -0
  66. mindsdb/migrations/versions/2025-06-09_608e376c19a7_updated_data_catalog_data_types.py +58 -0
  67. mindsdb/utilities/config.py +13 -2
  68. mindsdb/utilities/log.py +35 -26
  69. mindsdb/utilities/ml_task_queue/task.py +19 -22
  70. mindsdb/utilities/render/sqlalchemy_render.py +129 -181
  71. mindsdb/utilities/starters.py +40 -0
  72. {mindsdb-25.5.4.2.dist-info → mindsdb-25.6.3.0.dist-info}/METADATA +257 -257
  73. {mindsdb-25.5.4.2.dist-info → mindsdb-25.6.3.0.dist-info}/RECORD +76 -68
  74. {mindsdb-25.5.4.2.dist-info → mindsdb-25.6.3.0.dist-info}/WHEEL +0 -0
  75. {mindsdb-25.5.4.2.dist-info → mindsdb-25.6.3.0.dist-info}/licenses/LICENSE +0 -0
  76. {mindsdb-25.5.4.2.dist-info → mindsdb-25.6.3.0.dist-info}/top_level.txt +0 -0
@@ -1,23 +1,23 @@
1
- mindsdb/__about__.py,sha256=6ecw6qoBh1z4_NCyRNUP16M7mVXU-CqB-UlBCED-yT8,456
1
+ mindsdb/__about__.py,sha256=b0FpRGgVto5BPAFBMHDp3_oq4MTryGZd2SKsWPBuutQ,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=DN3VCsdFuoFBXyQDeH4C9pNGnHSEM-KnHSCjL-HY4ls,13007
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
14
- mindsdb/api/a2a/common/server/server.py,sha256=ymnM0HblF9iH1Htay-LfFu-_CQjXieN_ZEgyHYkHPfk,6352
14
+ mindsdb/api/a2a/common/server/server.py,sha256=4Y5vc8hfMcj-fFxMTvxvEMQF-7d0irRJc-sWFlMsR64,6986
15
15
  mindsdb/api/a2a/common/server/task_manager.py,sha256=NnKO2ZcI-KBWiX4wNc8FbLmnVsb5KeIm62B4jdX73IU,10189
16
16
  mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
17
17
  mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
19
19
  mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
20
- mindsdb/api/executor/command_executor.py,sha256=mXpbe1KI83mvJCWK-RVWErr6iAaaq8XQ_eROe98s1I8,78515
20
+ mindsdb/api/executor/command_executor.py,sha256=mZ1R6qltSp9XBUouoz3fv6nmlvZC11lvfZhrqd1bOJM,80972
21
21
  mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
22
22
  mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
23
23
  mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
@@ -31,43 +31,43 @@ mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokS
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
33
  mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=q6Mu80zwL7yoA1HstiVHm7jQMrspQQdVnjiPSW8KTek,8472
34
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=avxO_6IkIcdDSBrqIXFly2fjGz7g-7XTuqySH3KOXHI,10610
35
- mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=inOQtLa-nP0sbyDtwvFGuxZsvWClQDhhNrA-bjFmWP4,14120
36
- mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=j2dJHT09FJOq76ORSkgGMtZxtE8kSB4VY6UrRce-KBc,8080
37
- mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=_lIL6h8rTXYBzpLQBi_-IjR2BmCoNERafhdI4AYGoFY,16750
34
+ mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=o2IpDxfmuamRHkDUenPKC0zS9UgPKeiwbHoaytvhwb4,10629
35
+ mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
36
+ mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=NY9AI9tkbHmSzEPOK4hDtR-fJ6ZWCbVoK_nans8ZRuQ,7662
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
40
- mindsdb/api/executor/planner/plan_join.py,sha256=QuwrM2Ck8jQmHMzo3eU768v1QqNtaLCZQ4cKfj2IkwA,22549
40
+ mindsdb/api/executor/planner/plan_join.py,sha256=5M9EtsvclgI9dK-Vo-Q0qdRc7bO2fkG2mevHYmrx4RM,22435
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=9rmsoA_IcXIn-AEOFHKkFC5IOKvnpQpLMIlpTdMKtHk,35152
43
+ mindsdb/api/executor/planner/query_planner.py,sha256=mmz6Amn3oPvqxEaIM-rxhTymvc6-YqssHWtAISJtcVE,35255
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
- mindsdb/api/executor/planner/steps.py,sha256=8BV3dGf5Yi3jbq_2XPapr5nPyL0KqgPFtWxqX95Mcyw,9352
46
+ mindsdb/api/executor/planner/steps.py,sha256=eAffDFqL0ZpCn1PSFK5gnpsY6eb-gM--lZw2WyadGfo,9511
47
47
  mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
48
48
  mindsdb/api/executor/planner/utils.py,sha256=pCec75lLc5V84LYMheprYxT7RGeJPKiNZrqA_bYmco0,3838
49
49
  mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5V25G_SdsNIYZI,32
50
- mindsdb/api/executor/sql_query/result_set.py,sha256=HDbs17lL0DeZUIKsulmj_ki86BQSzKLbq8cxx2r_zEg,15063
50
+ mindsdb/api/executor/sql_query/result_set.py,sha256=IZByc32zloCcNzIA3En8cGENVndpzILKrCWc3VDExFQ,14960
51
51
  mindsdb/api/executor/sql_query/sql_query.py,sha256=G6_Et49fgECMC8BGHj8Ig2WnbpIz8wHePIRXUobsme0,11339
52
52
  mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0UxS35mfpeYSL4D_fzqo,795
53
53
  mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=NU_Okjioql0iZW1wfYv_IIftOVEjQpW0SOrg1lFJops,17229
54
54
  mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
55
55
  mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
56
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=YgVkXit8mKDb7FS0EIoyxClpnIOF68MhePY2ick19qY,4052
57
- mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=wGyns_c1RdbnVvOfidb3pgu6vvTaTvYtjePOWXfG-f0,7134
58
- mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=VrzAbUmlwq8X9kstMChbmYx1SiiBpkn-EvCcrq1ioDM,4395
56
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=dRm4nVEWu5lCVFUsNmMEoH3Ft-g0BlR2jpd9qOG55XI,4113
57
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=-ViiI0UILMcpPjpXAZcODnS3WIPtMNCB1LxIJCSuGLE,7154
58
+ mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=oi5q43kzBKKDXh97MbrzQT6qJpp6tcBakfqC6OJ3R0w,4250
59
59
  mindsdb/api/executor/sql_query/steps/join_step.py,sha256=govBGAmZEgFQ4I-QmxNY7nRN81_GF4HAuP-wOTDSrBk,4265
60
60
  mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
61
61
  mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSjjHmPpNLMVPX4adAU-PoHJBuY,656
62
62
  mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=URXDoE6vuc5mJ-vBkM5RXRYCS92NXs8_Jrlykh9mk6c,1588
63
63
  mindsdb/api/executor/sql_query/steps/project_step.py,sha256=2Hy-b9a3-bJcUHQNhILWSNs17k0JTLrG1aGwTbtJDAM,2868
64
64
  mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=01aDbFrqatM-iX70gU3-ODPBP9F-v0mWZ9BedddBOa8,889
65
- mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=XCMMFvNOinspR9HQr_iviOKOtiP_5RvzAxFG_8xan7I,8072
65
+ mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=JLLjZyMNcWt-115WjRtdUvPr5200lxY4HDw-JJEtEaQ,8973
66
66
  mindsdb/api/executor/sql_query/steps/union_step.py,sha256=p9OABRTbcIkDx62kK8zLfhYpmNXt8opSrBdj56Xy3b4,1774
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=vULbEMKN3ZB5RULqC_VPRhuROQ0_CotHYqA32Z2gKAg,6280
70
+ mindsdb/api/executor/utilities/sql.py,sha256=Ury3Ai8_6VR3ns0f_UbeMTpGDwvCAdr3s89nJYCRQ6s,6181
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
@@ -79,13 +79,13 @@ mindsdb/api/http/namespaces/agents.py,sha256=H3C4MmNCsrk3Dv8Cw1kx0j7EvNOia5PfyfQ
79
79
  mindsdb/api/http/namespaces/analysis.py,sha256=maYxI-TP9RswWHgKX3KAZQJK_XSBQfpZMqv0ZH1ZC0k,4295
80
80
  mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
81
81
  mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
82
- mindsdb/api/http/namespaces/config.py,sha256=eHZybqUA-HryK7zTvEteMqcDw39J-yKtEs3nRdvrtz8,8454
82
+ mindsdb/api/http/namespaces/config.py,sha256=h7nILaVsMtvaLqdcKwXmLCcaWaelVVEedQFyjwDmgX4,8461
83
83
  mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
84
84
  mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
85
- mindsdb/api/http/namespaces/file.py,sha256=ONMsQDDC2Ug-O38cbPKSL8UpQ78soQKsPHOfzUj-Bfo,6933
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
@@ -173,10 +173,10 @@ mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv
173
173
  mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py,sha256=TxhoWBkpVJShG-tPLDd4_7xhz-CtjoWBtq83k5U4oEc,75
174
174
  mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=uUOaAJfmSIcZYLT4dppnbRun7Uawd5x_09bJfIN2EUs,1003
175
175
  mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py,sha256=a8Gi2hcTPYSTtqscMcEW2R-1Qu_YmMcP1CN9DOfavo0,6246
176
+ mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py,sha256=tVj-OcQpVX22hpPQuSnSnk9ucPCuuXK2mjr1snc_-bw,5998
177
177
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py,sha256=Z6aQ9VMh3Ta2m4qs5hU5-LaiBHhan91NstUQlChMUnI,4891
178
178
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py,sha256=OusdXUJI3gD62ewP4z3UH_VHrbfX7u2eSwDdL7Z0Ois,1550
179
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py,sha256=bJMlydvCpcwFMq7zLBfURBDs3pfWDXSFAwvtCeJQmhM,6058
179
+ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py,sha256=C23Vxf3OBB8UvL2iR2mHZM_bMNstb5euAtB5RUxoMTY,6470
180
180
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py,sha256=uG8HKkYSbFRadDOu18OVDhV7wgGy-dXwTYFXxgwRqDg,1097
181
181
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py,sha256=V6eXSr2NuRjyTjF25D5o9jG0_0R1Ry1nGJ6W2-NCMww,2982
182
182
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py,sha256=I5kuON2Jh7V8k7o5xxeO7IUII6-DsGrYrrmkgiMMBBE,5765
@@ -187,7 +187,7 @@ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py,sha25
187
187
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py,sha256=9VjwaNrM4obv_QfK_wv4YZcpc1ub5JW7_lKrhzAG8O8,3770
188
188
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py,sha256=jO4JZ1THYHyWRbrtckPLjRK0eb652Jqv7wCn8EgMj2Q,3787
189
189
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py,sha256=vgrffdKjKDpEPTMXyTEaQDk7WBOjhyCEHu73ju6NH1I,421
190
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py,sha256=W1Xpgl_1NsA-WNnyJF-MBLisV8p-V5T1u7Xcxgl7mDk,1523
190
+ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py,sha256=zoGWNPtO1BRk1bsY2XoFf2a65w_OpfU7x4HhNv-gexs,1605
191
191
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py,sha256=_Pc2uTLyEkXxdSt3LY6uxpWaVOE1Nblvljw5CoggWTw,1426
192
192
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py,sha256=ykZJyhvw8iDq8CwVHW0RW5SWbTbfqyX1aD9dOo5Y9MA,1494
193
193
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py,sha256=cm2f1fjPy0nfKWCPARMvq92smMij_X4WTjOdxRlMXOM,521
@@ -197,9 +197,9 @@ mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py,sha256=47DEQpj8HBSa-_TIm
197
197
  mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py,sha256=k5ZmduhQW2E3Mf_jns-dyVLsRxXUAJE1b3Qbr1FkHKo,4116
198
198
  mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
199
199
  mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
200
- mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=28982dbx0OrjRfT7LCv_zwIympVuBLUkqq3zvX_C7Gk,43712
200
+ mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=yyIDUzzcPU2sTOMCAOUwoRs9ywqak4bLQuCNXelUbqg,42253
201
201
  mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
202
- mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=T8mSSBo-jaYrUMjAgVPkJtGwkEpS3U6nCbFUI87ySf4,13060
202
+ mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=zLOwvjHb1tDEGnBbi66XO57C9YKBFjYDdBKJqUnT_rk,14645
203
203
  mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
204
204
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
205
205
  mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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
@@ -625,11 +625,11 @@ mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py,sha256=47DEQpj8H
625
625
  mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py,sha256=JrgVIq6jucZjUCr8FpbC9ByJ3WdZGppZKHdovvFbNiw,1151
626
626
  mindsdb/integrations/handlers/file_handler/__about__.py,sha256=UavP5jJ_xWIaJ0oRsEANLulczZ0craaUb3XLfCSBmEc,331
627
627
  mindsdb/integrations/handlers/file_handler/__init__.py,sha256=46Hnm3ijRsYw95BkkBxHJK8k4h_2Te0j1W0r3-ptVCg,329
628
- mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=atOboSG8pcMwnHCsxTzT1vtr92LqYgCcMyqt3hjhO2w,7148
628
+ mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=6NxAynyniYvUrQ8GCkzm1PQ9BZfzLhyy3Y_73-P4kRk,7564
629
629
  mindsdb/integrations/handlers/file_handler/icon.svg,sha256=hsXEvUzrO7WQMOPC83LYQt-FW0wey9TCj5EwiIJwKwk,565
630
630
  mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
631
631
  mindsdb/integrations/handlers/file_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
632
- mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py,sha256=kFJaLeOjpIgCjWsBQL7A4Q4nN5Z1APafxX9zyT_rU1g,11078
632
+ mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py,sha256=hKEjk_KP-b9a2obLlSXHH9wb8CwzKkxEJJMJZdB_7M0,11564
633
633
  mindsdb/integrations/handlers/file_handler/tests/data/test.txt,sha256=SUG2Uw_Hmth51gyaCJyeyfAbFssHfsB3qWFcxBX_W1g,570
634
634
  mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py,sha256=Dz6gPZVoxWJqMgte07pkMKtQq42u7qYtCiaxdHVgANw,392
635
635
  mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py,sha256=AncBNXt6EECSYDNTlnkxkQ3_dfgEITMKaUUWjV-KSMY,537
@@ -931,14 +931,14 @@ mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha2
931
931
  mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
932
932
  mindsdb/integrations/handlers/litellm_handler/__init__.py,sha256=phvu1-lcM1HovXh4GHunND_ScTON4Yb3s4VXNVd_epU,550
933
933
  mindsdb/integrations/handlers/litellm_handler/icon.png,sha256=mfPLH1-n3D1q3U57hADzl7s2G-W-EDevUHzmvnLTjy8,37122
934
- mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=1lE0R1Z1S4Nwtv5PVfR3uohfxNsO_WNjDe3QJLRYdhM,5625
934
+ mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=_Jz401yFO6JjiUzBIHYX5nFOW_6yKPRel22yW3Nx4-A,6002
935
935
  mindsdb/integrations/handlers/litellm_handler/requirements.txt,sha256=dy-zvg7q-XWnmLu6dh1DSphrzDsLZHec2oSRuF-jWmw,18
936
936
  mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84fLe2AhBWzSzpeHbeoeVNz3T6-Rlk,2301
937
937
  mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
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=Ck5R0vV9EBbRFifjrVb8BrOEBndryI4o8QCNlmEGNXo,10981
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
@@ -1166,7 +1166,7 @@ mindsdb/integrations/handlers/oracle_handler/__about__.py,sha256=IIt4NVwQ52K79l7
1166
1166
  mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=9U8p9zE7yi32hWtWEQTFcVz5CSgAGlu6E9C-hPf_tBE,629
1167
1167
  mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=EXsizLXCjKijmhqu8QM77QuhMrUiYuAg_jarKOTE_Kc,2191
1168
1168
  mindsdb/integrations/handlers/oracle_handler/icon.svg,sha256=43yVX7g6fI4SLk9h23xsJvzLl9fMOfiKlQ4aNyQ3yxU,537
1169
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=nTjTftUura00bxtlJ4Q3M4A3VKguyVuUSvzN52Ln6fw,14287
1169
+ mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=ciWzHpMQ2dbt8720_Eb95soQyfwlXijlRsuIcbxXAdE,14820
1170
1170
  mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=6My_yqlFsKIvJvanjJc8usHiQ5Ax_rKaHrzNYNKC71c,16
1171
1171
  mindsdb/integrations/handlers/oracle_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1172
1172
  mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py,sha256=TjY4cZHMPUaLyusCTTHCRGC30pXDUqqM2vEjw2UqB1Q,1064
@@ -1249,7 +1249,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
1249
1249
  mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
1250
1250
  mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
1251
1251
  mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
1252
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=GkggjAIMJ9WGJ4ord1y7FdECpyl3LySagr91Jy7WD9U,19648
1252
+ mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=9I3INr35BpSovnLfNiaXNjEsxTuxRAGz1RblnLSMRZQ,28592
1253
1253
  mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1254
1254
  mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
1255
1255
  mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
@@ -1346,8 +1346,8 @@ 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=vJRjGTLBE3IYWcU_TG5JV7nreSqIDxV0gNxokAMWO_g,6448
1350
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=6h7BhO8U6J0Zqil3ja3Snv98t2jeylSTrD-xWm2pkTw,5065
1349
+ mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=1w93ntZ3U47tyYGjhj6KVF6Ku_-dFCofwYf2XxfIt98,10607
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
1353
1353
  mindsdb/integrations/handlers/sap_erp_handler/api.py,sha256=tAIqeww34R0N0QyVKYhSE3NRzIDoBn8xepCZIG4tYbg,2168
@@ -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=46q9FH31HgdQ9P5K_iPrfH9Stn8KGolDKJr0xy0ua8M,18802
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=PutrH8LuiEj7SNKb6Nl3ahaC6LieaB8VlG6RQL23w0w,13504
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=fVs3nf98jfA9aH5O18ZlrGjhZuasYHwD9TrgF9fJ8Eo,12851
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
@@ -1729,11 +1729,11 @@ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=ccz
1729
1729
  mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
1730
1730
  mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1731
1731
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1732
- mindsdb/integrations/utilities/handler_utils.py,sha256=QbAUGgeyXr5fAJZqyrqtl59Re8Ze0ER5h8zK5ITrOYQ,3055
1732
+ mindsdb/integrations/utilities/handler_utils.py,sha256=z34PVi3977e8UURfRjLc8nh6pAnbglJ_KdxHsA0_ajE,3763
1733
1733
  mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
1734
1734
  mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
1735
1735
  mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
1736
- mindsdb/integrations/utilities/sql_utils.py,sha256=zPXrG3pI-wbrrBTM9WXMwt66zsQHw2RZ1qXUX58rJ9Q,6777
1736
+ mindsdb/integrations/utilities/sql_utils.py,sha256=lcsx8JV7OLuiWzWQAE7IstgrN-vU4v795DtdD2D32sE,6857
1737
1737
  mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
1738
1738
  mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
1739
1739
  mindsdb/integrations/utilities/utils.py,sha256=sM2WfOrlIyliSm2lXaPyU21l4kQZVoSv1yLsBDKv90k,972
@@ -1742,7 +1742,7 @@ mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-
1742
1742
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
1743
1743
  mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
1744
1744
  mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1745
- mindsdb/integrations/utilities/files/file_reader.py,sha256=rqL4XgeLRaBE3B0rFfMm6zNctMJs-IHV5_tTqnqqpww,11508
1745
+ mindsdb/integrations/utilities/files/file_reader.py,sha256=qkGOH2FqTrdQJEbLINuOep7s50ziY0dtbOT4-PVWZrc,12961
1746
1746
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1747
1747
  mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1748
1748
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
@@ -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=l_lC08HnE7F_Iki-hm9VznEY8Afmv1-diO7YJIyqfSo,27106
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=ms_XhYhxzGcQ27fPKZxZgWvG9H5TdyVOSbsesyCzz4I,5927
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
- mindsdb/interfaces/agents/langchain_agent.py,sha256=p_gSmIvIkEkfOlm_vdForcJMBRlqoQeIu3QHrkJU1Ps,28543
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
- mindsdb/interfaces/agents/mcp_client_agent.py,sha256=9oki-GDsN1H6fYsNLBQWTMYSHGpWliYF9I5AZSuXS8U,9814
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=E1eBIBBHVpYQBvnBPDHoyIOMJ6TVXEi4e2AoImfo7CU,6822
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
@@ -1814,14 +1814,18 @@ mindsdb/interfaces/chatbot/memory.py,sha256=tkqBiA5mMvkuGITCjUC_r0JuyUS2DbeARxJ_
1814
1814
  mindsdb/interfaces/chatbot/model_executor.py,sha256=qv8DRysWLbJwbv4TkQ-bsLmJOnDaDlMBw7jZ3s6-dzk,3598
1815
1815
  mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augjRHxscn48,8109
1816
1816
  mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
1817
+ mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1818
+ mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
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
1817
1821
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1818
- mindsdb/interfaces/database/database.py,sha256=ax8GlviJpdTyufQvBfy0ft4H8pxH7w4hp_ejNY_aYHM,4356
1819
- mindsdb/interfaces/database/integrations.py,sha256=B4dfcOCsUMKgX5teNEGrXwUBnrX5L2sUP34XvbUaSdk,36825
1820
- mindsdb/interfaces/database/log.py,sha256=lRfYgAAeKXT6f8S-b_-sjqn99lZOgSCDAazLeJgXdF4,11076
1821
- mindsdb/interfaces/database/projects.py,sha256=Kgi2PJmKQ9AVqnjpNhomSJCcmucSAXj9qE7XMIydtOk,16463
1822
+ mindsdb/interfaces/database/database.py,sha256=xUGax9RhsFRN0DAmPtVLTk1LrNsRxc74hA6nRRX5FfU,5605
1823
+ mindsdb/interfaces/database/integrations.py,sha256=3CFTJZmEVcVFgtiP4r1zNr0HBsKq2L3I1YuU5UaJDOc,37031
1824
+ mindsdb/interfaces/database/log.py,sha256=ZpsEKKEtF32KjWRQ5rMtnHZTHqqJiffeaEcUDTx44cs,10305
1825
+ mindsdb/interfaces/database/projects.py,sha256=fIA9_wCvUrQD_aX75R36RmPpvCTRDBR4ZgCnx7Yjv_s,16560
1822
1826
  mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
1823
1827
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1824
- mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2uARKGp_NWBkKY,8626
1828
+ mindsdb/interfaces/file/file_controller.py,sha256=vkxIdR12FLCZkAbwm-0_ZFK56q5bJciRqYwLK_0ooIM,8059
1825
1829
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1826
1830
  mindsdb/interfaces/functions/controller.py,sha256=jFzu8Glz8CyeOFYiLMAEqetW6feV9XCENUW66lBBGQI,7400
1827
1831
  mindsdb/interfaces/functions/to_markdown.py,sha256=labr_DTrl8dDKNgusZM0Nf6ISXkemeSAlSR04ddI_rU,2847
@@ -1829,7 +1833,9 @@ mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
1829
1833
  mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
1830
1834
  mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1831
1835
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1832
- mindsdb/interfaces/knowledge_base/controller.py,sha256=DOiZpyN5iLukWL96cA0sFVrdL36Lkfd9q3KFsrXMsDE,48218
1836
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=WJ9mCZ5B056tQIyZBNKjHWJ_LPyjVwsqFMOWBi0mJps,50144
1837
+ mindsdb/interfaces/knowledge_base/evaluate.py,sha256=VBVujsfwmCPBn6ORXMOuyFMKbgm3VVzuR3s0ZcBX_3E,19275
1838
+ mindsdb/interfaces/knowledge_base/llm_client.py,sha256=gYaF_WDAXHsN9GOLf7UjSDRyujnZE1u7n65KOhyF6F4,2786
1833
1839
  mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
1834
1840
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1835
1841
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
@@ -1847,15 +1853,15 @@ mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54
1847
1853
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1848
1854
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1849
1855
  mindsdb/interfaces/skills/skill_tool.py,sha256=aC_eaiKT_bJhMoMjmWviFLh84zqDaBvag8DgO1fSQGw,20392
1850
- mindsdb/interfaces/skills/skills_controller.py,sha256=cNblNQNOJXQkuXq0q2g7-OmAFG-QoBbRign6gHt6NLg,6319
1851
- mindsdb/interfaces/skills/sql_agent.py,sha256=Zs1WPLencvKfmDFw1aAKJowmGXuNGlOg0merHhGdDbI,24881
1856
+ mindsdb/interfaces/skills/skills_controller.py,sha256=ury7v-nns9OHWMouzetCF1bbAZmbpSwSBpOOYZuXJr8,6248
1857
+ mindsdb/interfaces/skills/sql_agent.py,sha256=AXbcrzDkpftkRh5NK9H8f0TQrlD6HavwjnvzTExtAQU,26287
1852
1858
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1853
1859
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1854
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=RyckwnehpSofJpfwMJTaRy2zPZlZnpSv_h1odb8HDQU,6855
1860
+ mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=oG5KUryWgGbpfZ_qAz8E7w0rFqHn7OQh7a4aeq96TE4,9286
1855
1861
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1856
1862
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=fpOkZDMVihwzXHxMSrHqicVNLMK45RPUyNlTgARVzqI,12072
1857
1863
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1858
- mindsdb/interfaces/storage/db.py,sha256=tIbODmfE6YkFup2PfVhT6lgTWNkwkJK42evSNWn52Ns,20309
1864
+ mindsdb/interfaces/storage/db.py,sha256=w5apMUM-TjXfkd-wBBHXqhkG4-lz_l3u9QYdBIZGVe4,28705
1859
1865
  mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
1860
1866
  mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1861
1867
  mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
@@ -1937,11 +1943,13 @@ mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.p
1937
1943
  mindsdb/migrations/versions/2025-03-21_fda503400e43_queries.py,sha256=rZ0oj2DTLxz4sRWVElZ4YfSzEK19fIcLuRfS_3LX0rY,1418
1938
1944
  mindsdb/migrations/versions/2025-04-22_53502b6d63bf_query_database.py,sha256=z_RcbWyUz88jc-qFS--G49Cyfb5xY0-fH7aI9r5_2qg,633
1939
1945
  mindsdb/migrations/versions/2025-05-21_9f150e4f9a05_checkpoint_1.py,sha256=Nb13ralIE2QRHn1I1ZnQWFbATGeaqH3srbpdJ5XL0x0,17470
1946
+ mindsdb/migrations/versions/2025-05-28_a44643042fe8_added_data_catalog_tables.py,sha256=ze5dSNVHxaSa8RZvS65lJXzPRU2dkdtuvaHdNEx_qh0,3541
1947
+ mindsdb/migrations/versions/2025-06-09_608e376c19a7_updated_data_catalog_data_types.py,sha256=HZUPWs0MWLLPCMYQKV8bIS5jOGjnw3hvbqN7pSm3OtY,1605
1940
1948
  mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1941
1949
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1942
1950
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1943
1951
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1944
- mindsdb/utilities/config.py,sha256=lEQH2rkaf3PwoSSdnHecc0Yhskm0Zp1niFtW6KSlePw,26360
1952
+ mindsdb/utilities/config.py,sha256=RM4nneDbsn1gipz0jsDGSp-_g0f1m3XyEIr8ZG3DoFc,26809
1945
1953
  mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1946
1954
  mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
1947
1955
  mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
@@ -1949,13 +1957,13 @@ mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
1949
1957
  mindsdb/utilities/functions.py,sha256=xAlSAmgWMosCYoBI2mZyEyIrz0RAJaPTiFDq2sQVIeI,5279
1950
1958
  mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
1951
1959
  mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY,9528
1952
- mindsdb/utilities/log.py,sha256=krqJoAsKrrg9bk8X0QfCbbk7CN_f7BS6wm-0aVjkrGc,4401
1960
+ mindsdb/utilities/log.py,sha256=fiiPluFEnO_Ud88Bi25yepRKWXr-9oNsJukR1elo7pQ,4818
1953
1961
  mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
1954
1962
  mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
1955
1963
  mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
1956
1964
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1957
1965
  mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
1958
- mindsdb/utilities/starters.py,sha256=W9K08liqPYJ6vMaf415VtDVa-8xwKfpXBNwJyI4YuTM,1531
1966
+ mindsdb/utilities/starters.py,sha256=rfwpqJHkPlqh5wv3bSDsyak0Y7LHSjeOUfTJmkNIoYQ,2453
1959
1967
  mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
1960
1968
  mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
1961
1969
  mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
@@ -1965,7 +1973,7 @@ mindsdb/utilities/ml_task_queue/base.py,sha256=eHOUIi9R9GnAt9Xjuip2VMxiroMFgFshh
1965
1973
  mindsdb/utilities/ml_task_queue/const.py,sha256=o-WWuREP7sXsjTo5Ok1awEtrE6KTB51ZzGfSMuDZUV4,607
1966
1974
  mindsdb/utilities/ml_task_queue/consumer.py,sha256=jYORLKMdWKYGUgIIRcnY-RSI3JSA2nmXeC_68OvQwco,9569
1967
1975
  mindsdb/utilities/ml_task_queue/producer.py,sha256=x0s1_xcqtUaT5Og0TdErgWmN1Jp236byzvd2N2HMO34,2764
1968
- mindsdb/utilities/ml_task_queue/task.py,sha256=h6PimSa_AXFo_xvEJGvhDhxiCI54VN2VebVQn0QpAsQ,3166
1976
+ mindsdb/utilities/ml_task_queue/task.py,sha256=jEYVU-tuvNOUaaIaVd9M2dfNCldQL1hqcGo3MfpYmG4,3100
1969
1977
  mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
1970
1978
  mindsdb/utilities/otel/__init__.py,sha256=XjZOMBZxyU6mK-NSb8fdrJcxlByVI8Qf6WZuqGy3Lm8,838
1971
1979
  mindsdb/utilities/otel/logger.py,sha256=o-bWPUinZS0yz2G89oxVD4qXgi0oo5gXHJI4aT7sejY,892
@@ -1976,9 +1984,9 @@ mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=4YH6YwclsYLjBPBM-e9OAf
1976
1984
  mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
1977
1985
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1978
1986
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1979
- mindsdb/utilities/render/sqlalchemy_render.py,sha256=6NqOcfz19dhd0PEyNfOtNHsBt1fGjq2E3nFNUad5HOk,31444
1980
- mindsdb-25.5.4.2.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1981
- mindsdb-25.5.4.2.dist-info/METADATA,sha256=9BmoqVdx7RI1TEaFuIi8MSB_-QHlECCnTF2EEoHs2QU,44798
1982
- mindsdb-25.5.4.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1983
- mindsdb-25.5.4.2.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1984
- mindsdb-25.5.4.2.dist-info/RECORD,,
1987
+ mindsdb/utilities/render/sqlalchemy_render.py,sha256=7GYCKCCFIo4UzmPtnRncefZBuUVdcVEo4ICqHxGWPrw,30852
1988
+ mindsdb-25.6.3.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1989
+ mindsdb-25.6.3.0.dist-info/METADATA,sha256=qi6UEGIcQY8C9L34d5WUC_C3iZqCYB-itjN3Zf47upE,44815
1990
+ mindsdb-25.6.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1991
+ mindsdb-25.6.3.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1992
+ mindsdb-25.6.3.0.dist-info/RECORD,,