MindsDB 25.7.3.0__py3-none-any.whl → 25.7.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.

Files changed (61) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/api/a2a/common/server/server.py +16 -6
  3. mindsdb/api/executor/command_executor.py +206 -135
  4. mindsdb/api/executor/datahub/datanodes/project_datanode.py +14 -3
  5. mindsdb/api/executor/planner/plan_join.py +3 -0
  6. mindsdb/api/executor/planner/plan_join_ts.py +117 -100
  7. mindsdb/api/executor/planner/query_planner.py +1 -0
  8. mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +54 -85
  9. mindsdb/api/http/initialize.py +16 -43
  10. mindsdb/api/http/namespaces/agents.py +23 -20
  11. mindsdb/api/http/namespaces/chatbots.py +83 -120
  12. mindsdb/api/http/namespaces/file.py +1 -1
  13. mindsdb/api/http/namespaces/jobs.py +38 -60
  14. mindsdb/api/http/namespaces/tree.py +69 -61
  15. mindsdb/api/mcp/start.py +2 -0
  16. mindsdb/api/mysql/mysql_proxy/utilities/dump.py +3 -2
  17. mindsdb/integrations/handlers/autogluon_handler/requirements.txt +1 -1
  18. mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +1 -1
  19. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +25 -5
  20. mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +3 -3
  21. mindsdb/integrations/handlers/flaml_handler/requirements.txt +1 -1
  22. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +82 -73
  23. mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -1
  24. mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +83 -76
  25. mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -4
  26. mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +5 -2
  27. mindsdb/integrations/handlers/litellm_handler/settings.py +2 -1
  28. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +106 -90
  29. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +41 -39
  30. mindsdb/integrations/handlers/salesforce_handler/constants.py +208 -0
  31. mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +141 -80
  32. mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +0 -1
  33. mindsdb/integrations/handlers/tpot_handler/requirements.txt +1 -1
  34. mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +32 -17
  35. mindsdb/integrations/handlers/web_handler/web_handler.py +19 -22
  36. mindsdb/integrations/libs/vectordatabase_handler.py +10 -1
  37. mindsdb/integrations/utilities/handler_utils.py +32 -12
  38. mindsdb/interfaces/agents/agents_controller.py +167 -108
  39. mindsdb/interfaces/agents/langchain_agent.py +10 -3
  40. mindsdb/interfaces/data_catalog/data_catalog_loader.py +4 -4
  41. mindsdb/interfaces/database/database.py +38 -13
  42. mindsdb/interfaces/database/integrations.py +20 -5
  43. mindsdb/interfaces/database/projects.py +63 -16
  44. mindsdb/interfaces/database/views.py +86 -60
  45. mindsdb/interfaces/jobs/jobs_controller.py +103 -110
  46. mindsdb/interfaces/knowledge_base/controller.py +26 -5
  47. mindsdb/interfaces/knowledge_base/evaluate.py +2 -1
  48. mindsdb/interfaces/knowledge_base/executor.py +24 -0
  49. mindsdb/interfaces/query_context/context_controller.py +100 -133
  50. mindsdb/interfaces/skills/skills_controller.py +18 -6
  51. mindsdb/interfaces/storage/db.py +40 -6
  52. mindsdb/interfaces/variables/variables_controller.py +8 -15
  53. mindsdb/utilities/config.py +3 -3
  54. mindsdb/utilities/functions.py +72 -60
  55. mindsdb/utilities/log.py +38 -6
  56. mindsdb/utilities/ps.py +7 -7
  57. {mindsdb-25.7.3.0.dist-info → mindsdb-25.7.4.0.dist-info}/METADATA +246 -247
  58. {mindsdb-25.7.3.0.dist-info → mindsdb-25.7.4.0.dist-info}/RECORD +61 -60
  59. {mindsdb-25.7.3.0.dist-info → mindsdb-25.7.4.0.dist-info}/WHEEL +0 -0
  60. {mindsdb-25.7.3.0.dist-info → mindsdb-25.7.4.0.dist-info}/licenses/LICENSE +0 -0
  61. {mindsdb-25.7.3.0.dist-info → mindsdb-25.7.4.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- mindsdb/__about__.py,sha256=LfpVkkDwrZs6tFScqaSMap79IPcQV7KWW3n4ztes77E,456
1
+ mindsdb/__about__.py,sha256=neIbtt7uNbeB7bDAH2raJweWgWnBdYcWPCGR6xEHqFM,456
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
3
  mindsdb/__main__.py,sha256=yFyIwXwPSsYsvylO8Sqo8Hpu_TJbI20Vwbaz8QEZQVk,23503
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -12,13 +12,13 @@ mindsdb/api/a2a/utils.py,sha256=81jhx9QbU8AJqVUvptcMDzfY40wIo_NJtMIYJHoE9EY,778
12
12
  mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  mindsdb/api/a2a/common/types.py,sha256=EYBpqEj-nZapSKe2jI8BcNDfSlTXXTbw8RcSA1DII9Q,8787
14
14
  mindsdb/api/a2a/common/server/__init__.py,sha256=Bl7Qa3Pk4QWY4yDPRNyHeTzNJpAe9HgUJd8-oTnMPv8,152
15
- mindsdb/api/a2a/common/server/server.py,sha256=mg1MXHQ0Gf7iVG_winqaYBkgNhYUEqnOAY7Xnveb0wo,7079
15
+ mindsdb/api/a2a/common/server/server.py,sha256=OhD_14Gg3Jcbvb3-ciDEdoQr9NwMjkDTq3mrTSscwwE,7345
16
16
  mindsdb/api/a2a/common/server/task_manager.py,sha256=NnKO2ZcI-KBWiX4wNc8FbLmnVsb5KeIm62B4jdX73IU,10189
17
17
  mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
18
18
  mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
20
20
  mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
21
- mindsdb/api/executor/command_executor.py,sha256=xNEPF4-fwY02luOlGOYmnhfRb13rn7qyNbJvaEk-yfg,81311
21
+ mindsdb/api/executor/command_executor.py,sha256=SX4WHW11hpnQp_RVZOxPlv37_rmjPbdfI7cafH5HS2g,85351
22
22
  mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
23
23
  mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
24
24
  mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
@@ -34,14 +34,14 @@ mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qf
34
34
  mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=4G8kWdxTT16DRcALwUPlcHM5OIt2eCEBfG44j-VUURA,8763
35
35
  mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=WGDW8Uj23UYzJ8aa-B-K_P2g_caS2Q03y05QeGy_GQ4,11209
36
36
  mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
37
- mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=I97p3wsZjGZ7wfgq54rs9X-72MYXu1PVHteWVFRX-rg,7682
37
+ mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=W87wSnpfaQRQFiqZcrAXLGLcmhVMzbCLJpa7TWhxbvY,8168
38
38
  mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=JCxwfbqGjTOwn1JqyJfdIk5C9h8TViUEn9L7IMrqT58,27505
39
39
  mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
40
40
  mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
41
- mindsdb/api/executor/planner/plan_join.py,sha256=01Hp2RSYgXDWt-H8UcUufO6Hj1zUtY3ZbHpUCR1f0VU,22432
42
- mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
41
+ mindsdb/api/executor/planner/plan_join.py,sha256=ukVqmIr20OmP-HAee0ykYvIRCkMBnJnV-XaJp7E0kiA,22580
42
+ mindsdb/api/executor/planner/plan_join_ts.py,sha256=7o0ecqiKFOHsoiS_NlbrJ1iyWdn5iGyXrvjRFY2qqnY,15780
43
43
  mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
44
- mindsdb/api/executor/planner/query_planner.py,sha256=9yNno776Ht1cGwmoSVRgz2psltWRg8bYwyJIOcWXI-A,35605
44
+ mindsdb/api/executor/planner/query_planner.py,sha256=NvCEMd8AJe0NI8buKT_PSKJfIiVCm4geItHFNcpspR8,35643
45
45
  mindsdb/api/executor/planner/query_prepare.py,sha256=Wsquc8hsJFDLbW3P_f87YivoIw2_cf1yXHQQXFjYA4s,16565
46
46
  mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
47
47
  mindsdb/api/executor/planner/steps.py,sha256=eAffDFqL0ZpCn1PSFK5gnpsY6eb-gM--lZw2WyadGfo,9511
@@ -51,7 +51,7 @@ mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5
51
51
  mindsdb/api/executor/sql_query/result_set.py,sha256=IZByc32zloCcNzIA3En8cGENVndpzILKrCWc3VDExFQ,14960
52
52
  mindsdb/api/executor/sql_query/sql_query.py,sha256=G6_Et49fgECMC8BGHj8Ig2WnbpIz8wHePIRXUobsme0,11339
53
53
  mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0UxS35mfpeYSL4D_fzqo,795
54
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=NU_Okjioql0iZW1wfYv_IIftOVEjQpW0SOrg1lFJops,17229
54
+ mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=UmCknfR8arIfB4FthqJsyA3GIskaKYPTsPFD3DkY4LI,16909
55
55
  mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
56
56
  mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
57
57
  mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=06ldNOI5tzbux5GEX_CTADihuKwlKzORP14wiPsXlaE,4263
@@ -72,27 +72,27 @@ mindsdb/api/executor/utilities/sql.py,sha256=WcSw85NtgiF2i5hH3qwwCgXfWlHI3qzTORm
72
72
  mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
73
  mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
74
74
  mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
75
- mindsdb/api/http/initialize.py,sha256=eZvMgyqYQRbbuykjwVmxxX3LFz6mkFZ2HE8zMQepKEM,16813
75
+ mindsdb/api/http/initialize.py,sha256=gBauW0B7UDwSOKIhzyE8hmX05hbFi4KJ39fNUzkYO3s,16544
76
76
  mindsdb/api/http/start.py,sha256=tD_ImE2kbGAJk3wFX6s5ezCavd2LRJ2qU9U2tOVSQLo,2389
77
77
  mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
78
78
  mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
- mindsdb/api/http/namespaces/agents.py,sha256=s_Vg32YS9O7AhsUqa-SNZrygvAkoX8Vy9jL9BjKv4eM,17829
79
+ mindsdb/api/http/namespaces/agents.py,sha256=c0EtuCq37vDwWYNuH1xg8rO8i_uVoIytgLgJAnMqSzo,17964
80
80
  mindsdb/api/http/namespaces/analysis.py,sha256=maYxI-TP9RswWHgKX3KAZQJK_XSBQfpZMqv0ZH1ZC0k,4295
81
81
  mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
82
- mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
82
+ mindsdb/api/http/namespaces/chatbots.py,sha256=ArEYtqEII8a8MIN9-9kfpHeR7FwTNmrPqzWsHp5MQDg,11519
83
83
  mindsdb/api/http/namespaces/config.py,sha256=Ci_kv906hIA9Ye5c8_MwNW7HQV9kC75DXsSB8nk-WH0,8966
84
84
  mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
85
85
  mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
86
- mindsdb/api/http/namespaces/file.py,sha256=K0gP1rGX32foRABy4JNJNK02f1TBNx1f2AlxBCFKMUw,7837
86
+ mindsdb/api/http/namespaces/file.py,sha256=Z8a_qdJ85l-Eh0JXts2GsQLOeg63QFg24-3alC0_PQA,7845
87
87
  mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
88
- mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
88
+ mindsdb/api/http/namespaces/jobs.py,sha256=4lYmLQolCjDNCV8HMBLyNbdQTkqI_L_N-SuLdKA3Q4A,2818
89
89
  mindsdb/api/http/namespaces/knowledge_bases.py,sha256=RotgaH_Utryxrqm4OUTeinjY1JzQzPQ3t72FVM2GQ0s,16570
90
90
  mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
91
91
  mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
92
92
  mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
93
93
  mindsdb/api/http/namespaces/sql.py,sha256=JjrXxcJr00QpaxYWzvghBLhb78kIkTZg2-OOSbJHz3U,5586
94
94
  mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
95
- mindsdb/api/http/namespaces/tree.py,sha256=_lWGp4wrX19GnqVD36U-ZmZiHfMIwlSAf9fIUYc9LYg,3812
95
+ mindsdb/api/http/namespaces/tree.py,sha256=8UZUZCt4f5EzQYJLRTwraol8RtebYjlyRWeHiOLhPIA,4191
96
96
  mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
97
97
  mindsdb/api/http/namespaces/views.py,sha256=bSoCOJQq-xyWdOpNRA1YyOSlYHTHHYIZgd8m4E_rvy0,6226
98
98
  mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
@@ -118,7 +118,7 @@ mindsdb/api/http/namespaces/configs/webhooks.py,sha256=WTZAN2r6GdR8LbhAyh9osFGaF
118
118
  mindsdb/api/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
119
  mindsdb/api/litellm/start.py,sha256=U6gBzQrHNmbPCjCnizPz59jnM0GdYmMx84XTIVzCiww,2761
120
120
  mindsdb/api/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
- mindsdb/api/mcp/start.py,sha256=6QIEMpQlLMC8HmBX2UyFJaGaQ1IrLniOYhysxDFzR0w,6457
121
+ mindsdb/api/mcp/start.py,sha256=Q8wq3M_4Bab6bZ96y9L1-9qKkQyxIGlYyeZr3Qz36Nw,6580
122
122
  mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
123
  mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
124
124
  mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
@@ -200,7 +200,7 @@ mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzp
200
200
  mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
201
201
  mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=yyIDUzzcPU2sTOMCAOUwoRs9ywqak4bLQuCNXelUbqg,42253
202
202
  mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
203
- mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=zLOwvjHb1tDEGnBbi66XO57C9YKBFjYDdBKJqUnT_rk,14645
203
+ mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=1Q32uUguEfjf9JxMdw68UaPlk0j8lRf_XURn98JPpUY,14670
204
204
  mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
205
205
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
206
206
  mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -305,7 +305,7 @@ mindsdb/integrations/handlers/autogluon_handler/__init__.py,sha256=sWRXwYFd9GmcC
305
305
  mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py,sha256=Vd3ZXS0SE4uKXEwfgz3hzOY_oV3V2QZ9FPIYtZ1yM8o,1771
306
306
  mindsdb/integrations/handlers/autogluon_handler/config.py,sha256=0XrzN4IZheuv82Z97FgdBF4GkxWTS8nowoUm2gVm4l8,278
307
307
  mindsdb/integrations/handlers/autogluon_handler/icon.svg,sha256=1DWvvXtPk3CsPNPaGi_LyRm1n2S4uTvPGxBZxCFoymE,956
308
- mindsdb/integrations/handlers/autogluon_handler/requirements.txt,sha256=-YcvGjdvwcaaIS_raNf8mrfYtti3VqBSZ6JzlITtVGI,29
308
+ mindsdb/integrations/handlers/autogluon_handler/requirements.txt,sha256=xobG1xoP7T2fTIqOJWW7uymAAPQEAETiAuKv2hNq-5w,29
309
309
  mindsdb/integrations/handlers/autokeras_handler/__about__.py,sha256=O1GbcYW-3EwU3NGSR1xo-31gc9404Vz5mOalPK48-4s,352
310
310
  mindsdb/integrations/handlers/autokeras_handler/__init__.py,sha256=twksFx9Qgm7syJBsWJMuXmrAnH7ha1cbwIfvDymxE68,560
311
311
  mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py,sha256=xSIf8UAVcP-Sbat6t089j4oc3aH1INYhxpk9PNFpaXs,5772
@@ -316,7 +316,7 @@ mindsdb/integrations/handlers/autosklearn_handler/__init__.py,sha256=KSndjfPj1fG
316
316
  mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=DLK9fcRA4mvXhtvrl_pPIyy5QPEz16ymCFWbYBiwDNA,1678
317
317
  mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=y86RzJ16PSoM8cPFaMLz6siS3336ASiX1hIhDal9N-g,676
318
318
  mindsdb/integrations/handlers/autosklearn_handler/icon.png,sha256=kbcEAnyOFO2mj20-godaONlkzrtK-3Oj-yhQ-kX1O78,15729
319
- mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=M80gYwMHVvAlFBJKtarluQacFmr6etbrUQgKjoX_hNM,32
319
+ mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=2ZnXjLobtAggg2nQnTduqwDYMJcRooaHH_sC_-u9mhE,32
320
320
  mindsdb/integrations/handlers/azure_blob_handler/__about__.py,sha256=qDGv39-0a0ze7k1E3MzW2O_5IMJmXOxzITb1MB8Vslg,365
321
321
  mindsdb/integrations/handlers/azure_blob_handler/__init__.py,sha256=F9z916N_iyz70Cph5N-dGWs-gFkW2AuP0n8Cf3Dr-iE,618
322
322
  mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py,sha256=E2tKRD8gHmRG6z2gl6nsx-77eZZWYa5UKO02j3lxt7o,11216
@@ -332,7 +332,7 @@ mindsdb/integrations/handlers/bedrock_handler/settings.py,sha256=cG_SWH0PfQ6o-ev
332
332
  mindsdb/integrations/handlers/bedrock_handler/utilities.py,sha256=hx8mzWLApZIV-mgp_CJM8qj-X51gX9-hcTXdGxE5fSs,1184
333
333
  mindsdb/integrations/handlers/bigquery_handler/__about__.py,sha256=hRxU4C7TM6ssU3oxS89oDVFfx-p_Wjj_jNh_Y6vq544,349
334
334
  mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNicKAh4FLIX2TX_v6ac2r6djxr_5d9WI,612
335
- mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=QQnEggLjF-aMJoqYZ1kulagLltoQg6c54_c2aHMiFJw,14914
335
+ mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=Xm-pd8QpVpNU7KGLOsJwL_Z1TxBPHANcWM4Y-aVpfDQ,15955
336
336
  mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
337
337
  mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
338
338
  mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=l8BgEzlWWL_88GeLfV3Dp40Am3DUNuDlVkgnH9jJccM,131
@@ -367,7 +367,7 @@ mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py,sha256=47DEQpj
367
367
  mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py,sha256=9MibR3PQlvZzt7Q0rCU6R8dICvqhPA_kxoUp4JiVEVE,1353
368
368
  mindsdb/integrations/handlers/chromadb_handler/__about__.py,sha256=28MPMq-Rjb1tR4SawSItNeGvVRupERgeHUDW7KRiyr4,345
369
369
  mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2JpJT_nUryqEZrRR3TtpAmynMFOfHr4,659
370
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=vW0JlfgBi5Z8z6_zC9irb0qfa1qGVQYKddC3tW1zSrg,19100
370
+ mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=ppa67kViukHwopIhO1lSuInx2uP5JTXS21Nx3jHPmQM,19176
371
371
  mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
372
372
  mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
373
373
  mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=74shT4HXgWhY9USh902gDPUo7SvgHZZ2u9V13jkdC_E,99
@@ -649,7 +649,7 @@ mindsdb/integrations/handlers/flaml_handler/__about__.py,sha256=vQJvUYCSJpM2L_K3
649
649
  mindsdb/integrations/handlers/flaml_handler/__init__.py,sha256=MHYGvpWtU8o5izMpv4d0CxBIamoCmP-J9Ti5bq_f2-I,531
650
650
  mindsdb/integrations/handlers/flaml_handler/flaml_handler.py,sha256=qgvXfPEOmf5A4amIGj6LkDLhGVqmJiYWVmNQ_M-Fnn8,1601
651
651
  mindsdb/integrations/handlers/flaml_handler/icon.svg,sha256=L5ADXk0pRN8VFCYew_jeJXjVTP8etzLQsUwAjjuPwIA,3096
652
- mindsdb/integrations/handlers/flaml_handler/requirements.txt,sha256=YbK2xIvGKGeFqBEel014cWFzfgwukPKcloTX4ar3Bpk,32
652
+ mindsdb/integrations/handlers/flaml_handler/requirements.txt,sha256=oRdmerK_sjA4M828BFHNyIyeYDBHikxp6xtrHDduqg8,32
653
653
  mindsdb/integrations/handlers/frappe_handler/__about__.py,sha256=NPBXQAHQGMUoAxc3L0e5Cu_CnccWeyyPEVLe1jNwe4o,345
654
654
  mindsdb/integrations/handlers/frappe_handler/__init__.py,sha256=JTd4ltTHkkVOmZuitOz2GpA3S_cZJxDmlp3A18imeUo,480
655
655
  mindsdb/integrations/handlers/frappe_handler/frappe_client.py,sha256=XbDZ7GJK2MqJq2EdHYCiOkl5uLAgBunVyr-zQkdUpfE,4338
@@ -706,7 +706,7 @@ mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZ
706
706
  mindsdb/integrations/handlers/google_calendar_handler/__init__.py,sha256=ms_QDVhQf3b_jnweJXDVAUFYuyKkPb6JgEfGEzJ9uzA,580
707
707
  mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=HL1g-EYFULOoR3l874dFRmPGeP5bl0fNwRTftYDeF84,780
708
708
  mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=NV8wWKS8_09flwJmf3X1J2iQ96o-uJ6HKk-e4ODZhCE,10900
709
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=QuY3I05xV_XaqOGV_xtMn2eMkDSZBxTWiYC9ylQ860E,8002
709
+ mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=MLxKilrCF-vZADfxv_cfmNPYSyTi34YLRJ8kXb6nsv8,8179
710
710
  mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
711
711
  mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
712
712
  mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -781,7 +781,7 @@ mindsdb/integrations/handlers/hubspot_handler/__init__.py,sha256=AW1XObHkkRIdszU
781
781
  mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py,sha256=NMYzpBVDxdo10hFFsV_Ybi3JCw3RuftheAOyPOjwMTQ,2784
782
782
  mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py,sha256=Rfu2N3UyT7dRLhdZoHHANHsUf70-j4mAPrHG-V1Yg7k,19943
783
783
  mindsdb/integrations/handlers/hubspot_handler/icon.svg,sha256=FoLHI5CdLMqZLv_M0PvMu_TzlLtt-t-vhoaGIBiC7cY,1453
784
- mindsdb/integrations/handlers/hubspot_handler/requirements.txt,sha256=50SL5fyMnNRccXgKNrQ9UW5zK5iiJWYvNK_yXdJhgV8,19
784
+ mindsdb/integrations/handlers/hubspot_handler/requirements.txt,sha256=1R1O7JBlGTaLdh65pyYkhA4ClQK22hfQdjtYjjQPW7E,27
785
785
  mindsdb/integrations/handlers/huggingface_api_handler/__about__.py,sha256=gUWilT75wrd2aRmL3iK3XXI8XjXu4mpun3pcmVwrZ4A,381
786
786
  mindsdb/integrations/handlers/huggingface_api_handler/__init__.py,sha256=Bs6kqNT2-WSRioNS6kcJxl_DQrC0SH9_QuS6APYTGlE,537
787
787
  mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py,sha256=VNq0dhoiQjVQ1E_-29-9J3-vkJ7dnQ5bpROeKeZKZpg,113
@@ -883,7 +883,7 @@ mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py,sha
883
883
  mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkObedPPwbyNl9tB0ygJN6qj0aPwPYI_fqc,345
884
884
  mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
885
885
  mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
886
- mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=8dYeUKwMprSSwDmd5eV0MK_-6_xNqyK3HuhXWoiISGI,12840
886
+ mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=dx2xabat9kOsGbRQBoqqEJ0JUGjysQ-Skbo-N9CIPyw,13022
887
887
  mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=X3GMk6YUemVSiVvr0Rd2P2HerVhXFeL84yzrBgAiWHk,238
888
888
  mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=61Akpoh4m2cRJR7TV5tCChQzr-C0oSdDXJajcVIcAqM,11066
889
889
  mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
@@ -918,7 +918,7 @@ mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfe
918
918
  mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=p3FXxafjrwa2Af6xkMO3MCOVLWxZEWfAmEu1sx0qIb8,9056
919
919
  mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
920
920
  mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=UuN1FUZrB292qZjGriQEbPly7vGBd8S-7DVNjqZAWRA,23596
921
- mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=jEN0TN09G2-yFrr5FSEMjEVZFnkoS7nu2lJrJdjVBLI,91
921
+ mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=nkzTeanhsH1AA4MpYSA0wApfJsF8ceREOVlzZ_pjhYg,91
922
922
  mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
923
923
  mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
924
924
  mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=Mm68eznjSa55qxmbmR6mXtNfvPYAClIghMKJZ94IvE0,10963
@@ -932,9 +932,9 @@ mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha2
932
932
  mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
933
933
  mindsdb/integrations/handlers/litellm_handler/__init__.py,sha256=phvu1-lcM1HovXh4GHunND_ScTON4Yb3s4VXNVd_epU,550
934
934
  mindsdb/integrations/handlers/litellm_handler/icon.png,sha256=mfPLH1-n3D1q3U57hADzl7s2G-W-EDevUHzmvnLTjy8,37122
935
- mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=qOqvUDGtzFDAz28AREfmLJUu7POnN9_0HDV9L4idbsM,6669
935
+ mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=OAEb05czmSFOqR1C363CH4jZKqe-8__mx6ZkSBX1bLk,6740
936
936
  mindsdb/integrations/handlers/litellm_handler/requirements.txt,sha256=dy-zvg7q-XWnmLu6dh1DSphrzDsLZHec2oSRuF-jWmw,18
937
- mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84fLe2AhBWzSzpeHbeoeVNz3T6-Rlk,2301
937
+ mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=eGe2ckW9ZMP5pXhk8TBygD7XAeMQmXBPTnrWGul0tY0,2380
938
938
  mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
939
939
  mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
940
940
  mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
@@ -1193,7 +1193,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
1193
1193
  mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
1194
1194
  mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
1195
1195
  mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
1196
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=YP9WoaniXSwxW-KS-c8JPtNWEG6XUY61MNAntwyu4m4,27111
1196
+ mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=y518IssS7YTrDrxPPIBLZRrFTZ4u0awEjYInrc5LA4w,27236
1197
1197
  mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1198
1198
  mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
1199
1199
  mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=njwyWqUt8PmCISBN4KjcDnZPakbro1E5lSqTEEZbTO8,607
@@ -1250,7 +1250,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
1250
1250
  mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
1251
1251
  mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
1252
1252
  mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
1253
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=HCOMYxG8Lp6m0JANb-mIiHwBWEdulL-lcs2wu7QLERA,28572
1253
+ mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=7fxNful9UKR5KNw2IDeG7fwQKSH5ZLodoEkBaKni_oU,28455
1254
1254
  mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1255
1255
  mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
1256
1256
  mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
@@ -1345,10 +1345,11 @@ mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py,sha256=WGH7BN3
1345
1345
  mindsdb/integrations/handlers/salesforce_handler/__about__.py,sha256=WLr4oUXEPsawa_y4oDxihsqN2iawkNDCbe4ttcF7WUQ,349
1346
1346
  mindsdb/integrations/handlers/salesforce_handler/__init__.py,sha256=nH_HnnS5cnDadXEy6ZiGuUPByT_JGu2Nrgx3Nzw0JCg,650
1347
1347
  mindsdb/integrations/handlers/salesforce_handler/connection_args.py,sha256=XF20-m222AxVvK751lWKV2tb3I1WkRrmR5AJ7qV9PtI,1498
1348
+ mindsdb/integrations/handlers/salesforce_handler/constants.py,sha256=lJw4OukvRJ4DUyqRN22teSWStRFSxZ9OeASt1WpSoXA,9508
1348
1349
  mindsdb/integrations/handlers/salesforce_handler/icon.svg,sha256=sL7XX_vF5Y7gLLklV1h17MXILGYz0f79VH915DQXyV0,8594
1349
1350
  mindsdb/integrations/handlers/salesforce_handler/requirements.txt,sha256=JbByk_8_aqTrg45rT_tUbyDgUoDSTK7VVpgUaMen3wU,22
1350
- mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=Q-dA-OuBWTWQolH8HPZ8QVvwXI9dPWnwUBEeq2PKGQw,10652
1351
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=hSsktMf5RAgTVD9rvwYudARmLz8tzfzYoDXDjaBwAhM,10894
1351
+ mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=ZNGbJqLumF_65N6SdVPDlIpHmKWHwU3RSMwZp36OU-E,12930
1352
+ mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=dax9qShUzeR5ZU8PSgfwhdh5hJfJK6L3wPwTr8eQX2E,10893
1352
1353
  mindsdb/integrations/handlers/sap_erp_handler/__about__.py,sha256=yXC_YavBeY0vTZvwkU4EN7DUijGMZ8m3jtQsftKwlhs,340
1353
1354
  mindsdb/integrations/handlers/sap_erp_handler/__init__.py,sha256=2rnUX-yeCkCgh4viBttHdG4o4HKJrVI3m82S8GJFCBU,531
1354
1355
  mindsdb/integrations/handlers/sap_erp_handler/api.py,sha256=tAIqeww34R0N0QyVKYhSE3NRzIDoBn8xepCZIG4tYbg,2168
@@ -1567,7 +1568,7 @@ mindsdb/integrations/handlers/togetherai_handler/togetherai_handler.py,sha256=94
1567
1568
  mindsdb/integrations/handlers/tpot_handler/__about__.py,sha256=UnKylDgzptBz8GP0Az_AnwEtYN7tGTzSkrk8OByt9hg,335
1568
1569
  mindsdb/integrations/handlers/tpot_handler/__init__.py,sha256=In_YSefcrQXPbgqBoTR77fx9sIRpBTBpWaIlhaaHHhA,526
1569
1570
  mindsdb/integrations/handlers/tpot_handler/icon.png,sha256=j1DfF2jF1kWD3dhCET51X26QnSW9rNuLXXG7Tav3M2M,114250
1570
- mindsdb/integrations/handlers/tpot_handler/requirements.txt,sha256=8F0hdotOm6E8Y2Fp7aKkDq1laiAX8CDem43CVybzdm4,32
1571
+ mindsdb/integrations/handlers/tpot_handler/requirements.txt,sha256=mJbUp-XmgU9yy_bGf3Ge-NXykkh_YuPcvTNppyh1ANc,32
1571
1572
  mindsdb/integrations/handlers/tpot_handler/tpot_handler.py,sha256=RQwuvd9ss91dSUiHSvQ-Yt4LNmcQv_pJIkC3XBJ-BDQ,3244
1572
1573
  mindsdb/integrations/handlers/trino_handler/__about__.py,sha256=O-XM6_t3ajkzjNhyI8J5BaVVmwwUCkQARNlJusNoYDk,333
1573
1574
  mindsdb/integrations/handlers/trino_handler/__init__.py,sha256=aj-pP90O6WWCyWBgry5D9URUaUCM5ALoAOQYHbU6gt8,457
@@ -1640,8 +1641,8 @@ mindsdb/integrations/handlers/web_handler/__about__.py,sha256=CxQc3_pLSKuz1AnBj6
1640
1641
  mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE3B900gkZLuQ8QWQEvYFbTUkE,504
1641
1642
  mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
1642
1643
  mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
1643
- mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=dCBqMYKwdQdThqbxeZA0a9z--yBC5vJJ8q8MikIKA2Q,11305
1644
- mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=iLiQQ7CbRhKjnRyfBhhLK2m8EtaNcXIWNSP0BgruVKA,3494
1644
+ mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=1bhujPOu85x0Y-zBUXCWr17UnxaCvK8X6hrBK3PpkOg,11658
1645
+ mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=A5O74YqhNR2x2St0lDMkQyhyl0MbKAmcz5GsckOFhSs,3684
1645
1646
  mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
1646
1647
  mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
1647
1648
  mindsdb/integrations/handlers/webz_handler/icon.svg,sha256=Mvt32fMxE_p294_hTqGVY3vnRkbZOJ2a0n9M72aZjTk,1042
@@ -1715,7 +1716,7 @@ mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmoz
1715
1716
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1716
1717
  mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
1717
1718
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1718
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=7BLFn1wxPbMhUjKp5X3M1DsOJ-puJTmac9HPwjPrAHQ,20467
1719
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=tG30fazN9F4yc3Bx0FjABxmU63_GgL7Y102AxZevWKg,20843
1719
1720
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1720
1721
  mindsdb/integrations/libs/llm/config.py,sha256=p_N1E3b-KB2g-OT2gC66QP1ahh7VftjXublf4k_uLig,4957
1721
1722
  mindsdb/integrations/libs/llm/utils.py,sha256=Wz2aptwngVyPX8tVrNx1yUHffpgnMDHQG-e01LoXFwc,25140
@@ -1731,7 +1732,7 @@ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=ccz
1731
1732
  mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
1732
1733
  mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1733
1734
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1734
- mindsdb/integrations/utilities/handler_utils.py,sha256=z34PVi3977e8UURfRjLc8nh6pAnbglJ_KdxHsA0_ajE,3763
1735
+ mindsdb/integrations/utilities/handler_utils.py,sha256=C1F3ATH4eb9qA4MismUoXdQgnoJ8nk2VjsTve1VrpfI,4271
1735
1736
  mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
1736
1737
  mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
1737
1738
  mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
@@ -1796,11 +1797,11 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
1796
1797
  mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
1797
1798
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1798
1799
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1799
- mindsdb/interfaces/agents/agents_controller.py,sha256=wFgTWZMqLEEj4xz85uD_ySLMneJW0c4fClor_0exz0U,29405
1800
+ mindsdb/interfaces/agents/agents_controller.py,sha256=La2NH7ICYKo81xV837dIPXXXn2fmFMlr664r1wt0mz0,31027
1800
1801
  mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
1801
1802
  mindsdb/interfaces/agents/constants.py,sha256=W1p2z1iLeY4eC-lOVFaeR8MluVPfWfjMoyAmKjIYyOI,8438
1802
1803
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1803
- mindsdb/interfaces/agents/langchain_agent.py,sha256=dSyEOD7t0-QEn-AWDe7Ugbjo4ijtC36Ly6f_LWg31_U,30345
1804
+ mindsdb/interfaces/agents/langchain_agent.py,sha256=Wg6wTjhxwTAYWTze4CGeLN-PWqnZoB7S4Z4mCB7i_Zg,30769
1804
1805
  mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
1805
1806
  mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
1806
1807
  mindsdb/interfaces/agents/mcp_client_agent.py,sha256=8pDHMWJz5aYe7lyyVJYLqlCCKVMT_iqoWJ-XeBXSUz8,10036
@@ -1818,26 +1819,26 @@ mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augj
1818
1819
  mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
1819
1820
  mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1820
1821
  mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
1821
- mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=Ox0Jkj8sfX_xzmxR9OGjru_vz6HV9WR4PpF4XXg0xW4,16111
1822
+ mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=HPUfQZ3Gx8g4kzqAPajc7ju9eG5lBFwu3qOSGDBXn14,16175
1822
1823
  mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=fUSLlpmHo8hrb9zjtwNXzbSAoWRBxUI34cYSaN9vObI,2186
1823
1824
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1824
- mindsdb/interfaces/database/database.py,sha256=xUGax9RhsFRN0DAmPtVLTk1LrNsRxc74hA6nRRX5FfU,5605
1825
- mindsdb/interfaces/database/integrations.py,sha256=3CFTJZmEVcVFgtiP4r1zNr0HBsKq2L3I1YuU5UaJDOc,37031
1825
+ mindsdb/interfaces/database/database.py,sha256=f8KWdPQyAQbFW9paJMK2Vni_ZKtsLcP7CeUXl9cIyAk,6769
1826
+ mindsdb/interfaces/database/integrations.py,sha256=26mGJRlNZ4aSDWrTvvRfG81qaMnb8con9w9-ROP-8-w,37612
1826
1827
  mindsdb/interfaces/database/log.py,sha256=ZpsEKKEtF32KjWRQ5rMtnHZTHqqJiffeaEcUDTx44cs,10305
1827
- mindsdb/interfaces/database/projects.py,sha256=isAnZ8JkTDPAONnV3SqILeCHitP1Er8AcBghRPxuh9w,16460
1828
- mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
1828
+ mindsdb/interfaces/database/projects.py,sha256=ONRaKsiJqmeYACQa8WoIvcxLEglRDPysm3YTzuSw-8c,18379
1829
+ mindsdb/interfaces/database/views.py,sha256=kDCYU7C5DISDEehIYYve55ZJcpKbG9bJ2DBhISDm-5E,5754
1829
1830
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1830
1831
  mindsdb/interfaces/file/file_controller.py,sha256=vkxIdR12FLCZkAbwm-0_ZFK56q5bJciRqYwLK_0ooIM,8059
1831
1832
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1832
1833
  mindsdb/interfaces/functions/controller.py,sha256=1nMC-DREpkjeVMKBxvqzNNSidj4-uIFWmuNjYlqZ1gM,7659
1833
1834
  mindsdb/interfaces/functions/to_markdown.py,sha256=sD5iIRlaAsHdrqsyJyqKD5ItnfPY-g5-845K0Y_f6Ac,3901
1834
1835
  mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1835
- mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
1836
+ mindsdb/interfaces/jobs/jobs_controller.py,sha256=HfI2d_yPmMYJLrDlAYG7hm03BiAIPQ1Gl9bWAncvLKk,18437
1836
1837
  mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1837
1838
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1838
- mindsdb/interfaces/knowledge_base/controller.py,sha256=-hA6E8TDEvMzyxOLDcIGhhvhf76QvoHIDyFiKwOej3k,56258
1839
- mindsdb/interfaces/knowledge_base/evaluate.py,sha256=6D2NcEQTWeaC9S49pfl74ZqMiFVcXCLlnjly50_jb5E,21534
1840
- mindsdb/interfaces/knowledge_base/executor.py,sha256=WN6tKDtBBPBjEQdRaX8KS5ypv3DzoEd2dWWBI60py_U,12967
1839
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=G_mrj_da3rQ7ill2ssFxxfOBQN0JouVmtgpmYyZZNHs,57607
1840
+ mindsdb/interfaces/knowledge_base/evaluate.py,sha256=ZXm_op5-n8beY42ikfgIxx9OKhr7P5Bqr9DkGmHaVtE,21574
1841
+ mindsdb/interfaces/knowledge_base/executor.py,sha256=WwMAYHThohojGPm3ANVYRj425UaKo024HL7mIUTzDoo,14037
1841
1842
  mindsdb/interfaces/knowledge_base/llm_client.py,sha256=pZQdoU8TTyMO1b7sa8-Ou4VRFDxR6974cyJkm0IeTIw,2844
1842
1843
  mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
1843
1844
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1850,13 +1851,13 @@ mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
1850
1851
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1851
1852
  mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
1852
1853
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1853
- mindsdb/interfaces/query_context/context_controller.py,sha256=AonESR6kb3kuqT-t_eJJXJfFSr9TWJVnpxdWkenBiuY,19756
1854
+ mindsdb/interfaces/query_context/context_controller.py,sha256=AtZQ5g2_fNvsXCrS5bvRpH8Zh6uHo0ET5se4Qp6eECg,19327
1854
1855
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1855
1856
  mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
1856
1857
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1857
1858
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1858
1859
  mindsdb/interfaces/skills/skill_tool.py,sha256=ciuo9kEWaRvBIhyXBFCfn3fLBzh2Sr7TgPalPxnOilg,20486
1859
- mindsdb/interfaces/skills/skills_controller.py,sha256=ury7v-nns9OHWMouzetCF1bbAZmbpSwSBpOOYZuXJr8,6248
1860
+ mindsdb/interfaces/skills/skills_controller.py,sha256=Xg5E7tWKFw6Sznws2014WGzGg98k35MXZQ0yy6DqJPE,6747
1860
1861
  mindsdb/interfaces/skills/sql_agent.py,sha256=2AEXbUd1ygRHNWFdw6bjnjerCXQl7X4ct3x_sEjtiMU,26591
1861
1862
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1862
1863
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1864,7 +1865,7 @@ mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=upkozOXGLir
1864
1865
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1865
1866
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=9vre6MI_kzDY4lae42EhOvuTdXcTrs9R_oeiuZkMO2o,12352
1866
1867
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1867
- mindsdb/interfaces/storage/db.py,sha256=SLFof1ZrA43t8yiKgIHCi5qp-NAeXX9tHWy714IItCk,28854
1868
+ mindsdb/interfaces/storage/db.py,sha256=lTRMoucUIEHJKw6doSt50zlyWpZId_C5Xx88nrO7yus,29986
1868
1869
  mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
1869
1870
  mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1870
1871
  mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
@@ -1878,7 +1879,7 @@ mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
1878
1879
  mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
1879
1880
  mindsdb/interfaces/triggers/triggers_controller.py,sha256=tmyaI9Pi-EUkaoN5jtRc0aGa_OgDfRRuag0-7mz-VgU,5523
1880
1881
  mindsdb/interfaces/variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1881
- mindsdb/interfaces/variables/variables_controller.py,sha256=UZ9WBL6fJibtP5Ao5Jzz3Lq_Da7ZkuoYhVS1ilLCSkc,2915
1882
+ mindsdb/interfaces/variables/variables_controller.py,sha256=Js7VjA6vU9LUE0OUrHNLdZohoq7tGN0y9O40yJq3f3M,2905
1882
1883
  mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1883
1884
  mindsdb/metrics/metrics.py,sha256=6pV5DO85OF_iIBTma0TXRUrfNHU9a0Ds2RS2u1-XYrU,1956
1884
1885
  mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
@@ -1952,17 +1953,17 @@ mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
1952
1953
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1953
1954
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1954
1955
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1955
- mindsdb/utilities/config.py,sha256=zFEcXDzDdPuNZl54A1j_rJBwnkWGy4gEKRqIiEfFOMI,27913
1956
+ mindsdb/utilities/config.py,sha256=dtox9tzShM9r5ZA_R153O48SddNFJrYGO2T4FL-bU2A,27933
1956
1957
  mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1957
1958
  mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
1958
1959
  mindsdb/utilities/exception.py,sha256=Y0-aO54_EQeebBuvR0105qITJc_Jq6bQ5QszmmKmUpE,2688
1959
1960
  mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
1960
- mindsdb/utilities/functions.py,sha256=xAlSAmgWMosCYoBI2mZyEyIrz0RAJaPTiFDq2sQVIeI,5279
1961
+ mindsdb/utilities/functions.py,sha256=FkLSSge3EYzG-ow6uExQ6GTMfPYeh8NBWRTf6JTuIy8,6366
1961
1962
  mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
1962
1963
  mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY,9528
1963
- mindsdb/utilities/log.py,sha256=fiiPluFEnO_Ud88Bi25yepRKWXr-9oNsJukR1elo7pQ,4818
1964
+ mindsdb/utilities/log.py,sha256=5ZUwh8J_LG9c_EbHghMwV8Xc-tsJTkvf5S_iFsEaHWg,5767
1964
1965
  mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
1965
- mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
1966
+ mindsdb/utilities/ps.py,sha256=6JqJoAMXqPo7rG0BkImF6szghcANx-Xt_4SRYFZ3rUU,2347
1966
1967
  mindsdb/utilities/security.py,sha256=Jcd6v1UKRr4HY7SRkYdvF9zSjcqeKRO10f295XVZNAA,3017
1967
1968
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1968
1969
  mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
@@ -1988,8 +1989,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
1988
1989
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1989
1990
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1990
1991
  mindsdb/utilities/render/sqlalchemy_render.py,sha256=7GYCKCCFIo4UzmPtnRncefZBuUVdcVEo4ICqHxGWPrw,30852
1991
- mindsdb-25.7.3.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1992
- mindsdb-25.7.3.0.dist-info/METADATA,sha256=1NrujoFaTNCwvdFTXfuubb-KdFV8ccgNBxeecY502Bo,44098
1993
- mindsdb-25.7.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1994
- mindsdb-25.7.3.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1995
- mindsdb-25.7.3.0.dist-info/RECORD,,
1992
+ mindsdb-25.7.4.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1993
+ mindsdb-25.7.4.0.dist-info/METADATA,sha256=hMHYCGybBiODlOq9uXjLdP05IwzVrVPI0Z9GyD_Hu6s,44065
1994
+ mindsdb-25.7.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1995
+ mindsdb-25.7.4.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1996
+ mindsdb-25.7.4.0.dist-info/RECORD,,