MindsDB 25.9.2.0a1__py3-none-any.whl → 25.10.0rc1__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 (163) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/__main__.py +40 -29
  3. mindsdb/api/a2a/__init__.py +1 -1
  4. mindsdb/api/a2a/agent.py +16 -10
  5. mindsdb/api/a2a/common/server/server.py +7 -3
  6. mindsdb/api/a2a/common/server/task_manager.py +12 -5
  7. mindsdb/api/a2a/common/types.py +66 -0
  8. mindsdb/api/a2a/task_manager.py +65 -17
  9. mindsdb/api/common/middleware.py +10 -12
  10. mindsdb/api/executor/command_executor.py +51 -40
  11. mindsdb/api/executor/datahub/datanodes/datanode.py +2 -2
  12. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +7 -13
  13. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +101 -49
  14. mindsdb/api/executor/datahub/datanodes/project_datanode.py +8 -4
  15. mindsdb/api/executor/datahub/datanodes/system_tables.py +3 -2
  16. mindsdb/api/executor/exceptions.py +29 -10
  17. mindsdb/api/executor/planner/plan_join.py +17 -3
  18. mindsdb/api/executor/planner/query_prepare.py +2 -20
  19. mindsdb/api/executor/sql_query/sql_query.py +74 -74
  20. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +1 -2
  21. mindsdb/api/executor/sql_query/steps/subselect_step.py +0 -1
  22. mindsdb/api/executor/utilities/functions.py +6 -6
  23. mindsdb/api/executor/utilities/sql.py +37 -20
  24. mindsdb/api/http/gui.py +5 -11
  25. mindsdb/api/http/initialize.py +75 -61
  26. mindsdb/api/http/namespaces/agents.py +10 -15
  27. mindsdb/api/http/namespaces/analysis.py +13 -20
  28. mindsdb/api/http/namespaces/auth.py +1 -1
  29. mindsdb/api/http/namespaces/chatbots.py +0 -5
  30. mindsdb/api/http/namespaces/config.py +15 -11
  31. mindsdb/api/http/namespaces/databases.py +140 -201
  32. mindsdb/api/http/namespaces/file.py +17 -4
  33. mindsdb/api/http/namespaces/handlers.py +17 -7
  34. mindsdb/api/http/namespaces/knowledge_bases.py +28 -7
  35. mindsdb/api/http/namespaces/models.py +94 -126
  36. mindsdb/api/http/namespaces/projects.py +13 -22
  37. mindsdb/api/http/namespaces/sql.py +33 -25
  38. mindsdb/api/http/namespaces/tab.py +27 -37
  39. mindsdb/api/http/namespaces/views.py +1 -1
  40. mindsdb/api/http/start.py +16 -10
  41. mindsdb/api/mcp/__init__.py +2 -1
  42. mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +15 -20
  43. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +26 -50
  44. mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +0 -1
  45. mindsdb/api/mysql/mysql_proxy/utilities/dump.py +8 -2
  46. mindsdb/integrations/handlers/byom_handler/byom_handler.py +165 -190
  47. mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +98 -46
  48. mindsdb/integrations/handlers/druid_handler/druid_handler.py +32 -40
  49. mindsdb/integrations/handlers/file_handler/file_handler.py +7 -0
  50. mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +5 -2
  51. mindsdb/integrations/handlers/lightwood_handler/functions.py +45 -79
  52. mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +438 -100
  53. mindsdb/integrations/handlers/mssql_handler/requirements_odbc.txt +3 -0
  54. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +235 -3
  55. mindsdb/integrations/handlers/oracle_handler/__init__.py +2 -0
  56. mindsdb/integrations/handlers/oracle_handler/connection_args.py +7 -1
  57. mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +321 -16
  58. mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -1
  59. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +14 -2
  60. mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +25 -12
  61. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +2 -1
  62. mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
  63. mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
  64. mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +4 -4
  65. mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +144 -111
  66. mindsdb/integrations/libs/api_handler.py +10 -10
  67. mindsdb/integrations/libs/base.py +4 -4
  68. mindsdb/integrations/libs/llm/utils.py +2 -2
  69. mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +4 -7
  70. mindsdb/integrations/libs/ml_handler_process/func_call_process.py +2 -7
  71. mindsdb/integrations/libs/ml_handler_process/learn_process.py +37 -47
  72. mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +4 -7
  73. mindsdb/integrations/libs/ml_handler_process/update_process.py +2 -7
  74. mindsdb/integrations/libs/process_cache.py +132 -140
  75. mindsdb/integrations/libs/response.py +18 -12
  76. mindsdb/integrations/libs/vectordatabase_handler.py +26 -0
  77. mindsdb/integrations/utilities/files/file_reader.py +6 -7
  78. mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/__init__.py +1 -0
  79. mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/snowflake_jwt_gen.py +151 -0
  80. mindsdb/integrations/utilities/rag/config_loader.py +37 -26
  81. mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +83 -30
  82. mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +4 -4
  83. mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +55 -133
  84. mindsdb/integrations/utilities/rag/settings.py +58 -133
  85. mindsdb/integrations/utilities/rag/splitters/file_splitter.py +5 -15
  86. mindsdb/interfaces/agents/agents_controller.py +2 -3
  87. mindsdb/interfaces/agents/constants.py +0 -2
  88. mindsdb/interfaces/agents/litellm_server.py +34 -58
  89. mindsdb/interfaces/agents/mcp_client_agent.py +10 -10
  90. mindsdb/interfaces/agents/mindsdb_database_agent.py +5 -5
  91. mindsdb/interfaces/agents/run_mcp_agent.py +12 -21
  92. mindsdb/interfaces/chatbot/chatbot_task.py +20 -23
  93. mindsdb/interfaces/chatbot/polling.py +30 -18
  94. mindsdb/interfaces/data_catalog/data_catalog_loader.py +16 -17
  95. mindsdb/interfaces/data_catalog/data_catalog_reader.py +15 -4
  96. mindsdb/interfaces/database/data_handlers_cache.py +190 -0
  97. mindsdb/interfaces/database/database.py +3 -3
  98. mindsdb/interfaces/database/integrations.py +7 -110
  99. mindsdb/interfaces/database/projects.py +2 -6
  100. mindsdb/interfaces/database/views.py +1 -4
  101. mindsdb/interfaces/file/file_controller.py +6 -6
  102. mindsdb/interfaces/functions/controller.py +1 -1
  103. mindsdb/interfaces/functions/to_markdown.py +2 -2
  104. mindsdb/interfaces/jobs/jobs_controller.py +5 -9
  105. mindsdb/interfaces/jobs/scheduler.py +3 -9
  106. mindsdb/interfaces/knowledge_base/controller.py +244 -128
  107. mindsdb/interfaces/knowledge_base/evaluate.py +36 -41
  108. mindsdb/interfaces/knowledge_base/executor.py +11 -0
  109. mindsdb/interfaces/knowledge_base/llm_client.py +51 -17
  110. mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +40 -61
  111. mindsdb/interfaces/model/model_controller.py +172 -168
  112. mindsdb/interfaces/query_context/context_controller.py +14 -2
  113. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +10 -14
  114. mindsdb/interfaces/skills/retrieval_tool.py +43 -50
  115. mindsdb/interfaces/skills/skill_tool.py +2 -2
  116. mindsdb/interfaces/skills/skills_controller.py +1 -4
  117. mindsdb/interfaces/skills/sql_agent.py +25 -19
  118. mindsdb/interfaces/storage/db.py +16 -6
  119. mindsdb/interfaces/storage/fs.py +114 -169
  120. mindsdb/interfaces/storage/json.py +19 -18
  121. mindsdb/interfaces/tabs/tabs_controller.py +49 -72
  122. mindsdb/interfaces/tasks/task_monitor.py +3 -9
  123. mindsdb/interfaces/tasks/task_thread.py +7 -9
  124. mindsdb/interfaces/triggers/trigger_task.py +7 -13
  125. mindsdb/interfaces/triggers/triggers_controller.py +47 -52
  126. mindsdb/migrations/migrate.py +16 -16
  127. mindsdb/utilities/api_status.py +58 -0
  128. mindsdb/utilities/config.py +68 -2
  129. mindsdb/utilities/exception.py +40 -1
  130. mindsdb/utilities/fs.py +0 -1
  131. mindsdb/utilities/hooks/profiling.py +17 -14
  132. mindsdb/utilities/json_encoder.py +24 -10
  133. mindsdb/utilities/langfuse.py +40 -45
  134. mindsdb/utilities/log.py +272 -0
  135. mindsdb/utilities/ml_task_queue/consumer.py +52 -58
  136. mindsdb/utilities/ml_task_queue/producer.py +26 -30
  137. mindsdb/utilities/render/sqlalchemy_render.py +22 -20
  138. mindsdb/utilities/starters.py +0 -10
  139. mindsdb/utilities/utils.py +2 -2
  140. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.10.0rc1.dist-info}/METADATA +293 -276
  141. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.10.0rc1.dist-info}/RECORD +144 -158
  142. mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -14
  143. mindsdb/api/postgres/__init__.py +0 -0
  144. mindsdb/api/postgres/postgres_proxy/__init__.py +0 -0
  145. mindsdb/api/postgres/postgres_proxy/executor/__init__.py +0 -1
  146. mindsdb/api/postgres/postgres_proxy/executor/executor.py +0 -189
  147. mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py +0 -0
  148. mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +0 -322
  149. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +0 -34
  150. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +0 -31
  151. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +0 -1265
  152. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +0 -31
  153. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +0 -253
  154. mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +0 -477
  155. mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +0 -10
  156. mindsdb/api/postgres/start.py +0 -11
  157. mindsdb/integrations/handlers/mssql_handler/tests/__init__.py +0 -0
  158. mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +0 -169
  159. mindsdb/integrations/handlers/oracle_handler/tests/__init__.py +0 -0
  160. mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +0 -32
  161. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.10.0rc1.dist-info}/WHEEL +0 -0
  162. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.10.0rc1.dist-info}/licenses/LICENSE +0 -0
  163. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.10.0rc1.dist-info}/top_level.txt +0 -0
@@ -1,23 +1,23 @@
1
- mindsdb/__about__.py,sha256=GtZWjMAKqdOUBRwhR1dnKP4DsBfRG12tLOS_84HkiiE,458
1
+ mindsdb/__about__.py,sha256=v3qwfKYVisj0976tsj4F_c0ym0n6o8MAvdZK0pO6x3o,458
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
- mindsdb/__main__.py,sha256=qFh7Ls83V0dK2LOYJdTFQFNnu0qr6sbRPFnqER8ZHUw,21817
3
+ mindsdb/__main__.py,sha256=SrPyU-1TFWSCaIGTqbyWuhZpqc0tXanp6IKLcmwmUCQ,22092
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- mindsdb/api/a2a/__init__.py,sha256=JYp8GBtJbMNq6475AwsMzugkrlw3E754qQ8D6uHf7Is,1704
6
- mindsdb/api/a2a/agent.py,sha256=iVHNP4ZjJKKnKCGYxcX169tzbZAr6gIpYlmZAewthOU,6651
5
+ mindsdb/api/a2a/__init__.py,sha256=WwAqjMC8q7Njsh54MYw8VmEhic3gdg_4sIVOTBoroFA,1709
6
+ mindsdb/api/a2a/agent.py,sha256=UCreyKuOh12G_YfRWH9S_9JeGn3pieOU1lpqKMHa_MY,6866
7
7
  mindsdb/api/a2a/constants.py,sha256=1BmvDneWzNG6YJFUc-gZ9CNCO4wq2_12vFe6aw23yX4,2292
8
- mindsdb/api/a2a/task_manager.py,sha256=mGkSt88VTAVCUbXDgjRG9mZ1_dnPD8sh5IYXWtTlJ9E,20542
8
+ mindsdb/api/a2a/task_manager.py,sha256=KPufcR1LYMWGKMtRTUNAs7HeYBrr535Q4H8tSGS2qx4,22486
9
9
  mindsdb/api/a2a/utils.py,sha256=UesCEra9n7rVsksayeknmhiynmHlb8zg4BddFQYo6m8,3199
10
10
  mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mindsdb/api/a2a/common/types.py,sha256=uBhFzipgIJ9VYbfYElsYdCWmjftd_QPRt5qnj8RSJ-o,8816
11
+ mindsdb/api/a2a/common/types.py,sha256=cgUxeqAA4QoGd8VAly4ygRn1K4gh2z75aDwXHQUoKyY,11331
12
12
  mindsdb/api/a2a/common/server/__init__.py,sha256=Bl7Qa3Pk4QWY4yDPRNyHeTzNJpAe9HgUJd8-oTnMPv8,152
13
- mindsdb/api/a2a/common/server/server.py,sha256=lopajxRF980-7Rm7fq5RBBcgNCwTDyCw5a8nrU_2fCE,6836
14
- mindsdb/api/a2a/common/server/task_manager.py,sha256=VdD9KqoFslYurFgTDpDcc2PcGWuFHp2c697fgxrRw0A,10092
13
+ mindsdb/api/a2a/common/server/server.py,sha256=shOWvDbxyyItvWgxDa5FjgBs7DXGmQqGp2P_KX3KWdU,7114
14
+ mindsdb/api/a2a/common/server/task_manager.py,sha256=GWFZb6gm-ERK-9lbqSO35kVDxlPuRjRXVtLp4nDAKo4,10286
15
15
  mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
16
16
  mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- mindsdb/api/common/middleware.py,sha256=QlOD2Kv39TyNRRZ3jzgkxv_hirTOa4EE-5wlYijoG5E,3597
17
+ mindsdb/api/common/middleware.py,sha256=Wj_fpq9xsYzF5gOHxbmoF0Ala-AShFNUyYVXCU_-OUY,3497
18
18
  mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
19
- mindsdb/api/executor/command_executor.py,sha256=vlCy5LRoMmbmpMd3vns63PUIjtP3bVA_g72D1r6loXk,85185
20
- mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
19
+ mindsdb/api/executor/command_executor.py,sha256=dskI-RcEd1ac0FtIYvVgo-iQEI6iB0VLCR2hQQnG3mA,85577
20
+ mindsdb/api/executor/exceptions.py,sha256=31ueAs7RAUUnl-uaqmHCaMtY2BWxgMuXVhRjOnaR0T0,1352
21
21
  mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
22
22
  mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
23
23
  mindsdb/api/executor/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -28,31 +28,31 @@ mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
28
28
  mindsdb/api/executor/datahub/classes/response.py,sha256=1JLErGOSwcgYeSlCOBaEDjkXUPtpmjq4SXtVijLkeUs,419
29
29
  mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
30
30
  mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
31
- mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qfgrebm2pwJYOy3zgZi4mQI,594
32
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=4G8kWdxTT16DRcALwUPlcHM5OIt2eCEBfG44j-VUURA,8763
33
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=WGDW8Uj23UYzJ8aa-B-K_P2g_caS2Q03y05QeGy_GQ4,11209
31
+ mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=bONVqvyx4BXzMfwx1VGVTcB8YNn-2CtCYPfOiLFn_l4,575
32
+ mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=FNPBfDGmQ42f1gLQC0-scJu5y0LLkmF2nr8dthxPyuo,8549
33
+ mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=X3NpLmVcNe3Aa7XUiHuouyX9MRlEkGeM_A75g2K3i_w,13056
34
34
  mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
35
- mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=W87wSnpfaQRQFiqZcrAXLGLcmhVMzbCLJpa7TWhxbvY,8168
36
- mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=JCxwfbqGjTOwn1JqyJfdIk5C9h8TViUEn9L7IMrqT58,27505
35
+ mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=hAiBkUNN4flZwXazlsmY4wJAEKwobARCXPKSBdw7ecs,8354
36
+ mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=E-sTVan7-6uIQNQ393tbJAxplX1dieCBI88tCt9ln-0,27545
37
37
  mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
38
38
  mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
39
- mindsdb/api/executor/planner/plan_join.py,sha256=ukVqmIr20OmP-HAee0ykYvIRCkMBnJnV-XaJp7E0kiA,22580
39
+ mindsdb/api/executor/planner/plan_join.py,sha256=V_ehRYSDj5Xv4_IKNir87uD1QyCufE40c9au_AEZGbE,23095
40
40
  mindsdb/api/executor/planner/plan_join_ts.py,sha256=7o0ecqiKFOHsoiS_NlbrJ1iyWdn5iGyXrvjRFY2qqnY,15780
41
41
  mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
42
42
  mindsdb/api/executor/planner/query_planner.py,sha256=NvCEMd8AJe0NI8buKT_PSKJfIiVCm4geItHFNcpspR8,35643
43
- mindsdb/api/executor/planner/query_prepare.py,sha256=Wsquc8hsJFDLbW3P_f87YivoIw2_cf1yXHQQXFjYA4s,16565
43
+ mindsdb/api/executor/planner/query_prepare.py,sha256=bsUcPycxymQLlJODqX71T8Bjtu1rZfxsABZ1PgaKCEc,15835
44
44
  mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
45
45
  mindsdb/api/executor/planner/steps.py,sha256=eAffDFqL0ZpCn1PSFK5gnpsY6eb-gM--lZw2WyadGfo,9511
46
46
  mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
47
47
  mindsdb/api/executor/planner/utils.py,sha256=pCec75lLc5V84LYMheprYxT7RGeJPKiNZrqA_bYmco0,3838
48
48
  mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5V25G_SdsNIYZI,32
49
49
  mindsdb/api/executor/sql_query/result_set.py,sha256=IZByc32zloCcNzIA3En8cGENVndpzILKrCWc3VDExFQ,14960
50
- mindsdb/api/executor/sql_query/sql_query.py,sha256=G6_Et49fgECMC8BGHj8Ig2WnbpIz8wHePIRXUobsme0,11339
50
+ mindsdb/api/executor/sql_query/sql_query.py,sha256=x84xa6fsapyaMJkvCyf27UX_0xr19tO4jgXSn_0CieQ,11373
51
51
  mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0UxS35mfpeYSL4D_fzqo,795
52
52
  mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=UmCknfR8arIfB4FthqJsyA3GIskaKYPTsPFD3DkY4LI,16909
53
53
  mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
54
54
  mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
55
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=IN0WSBL4nCsaOAZXgbSYiLKCA5GFpa7WXfq3V3ctRBM,4044
55
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=yLrpJBsOt_gBn3QS0-_KS5oX-dBlHIJxxgvHoH23rFY,4001
56
56
  mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=539-wgj-6W_4VmAgF0N9DbfH9DEnIIvYp8jtrcnAA8M,7405
57
57
  mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=oi5q43kzBKKDXh97MbrzQT6qJpp6tcBakfqC6OJ3R0w,4250
58
58
  mindsdb/api/executor/sql_query/steps/join_step.py,sha256=govBGAmZEgFQ4I-QmxNY7nRN81_GF4HAuP-wOTDSrBk,4265
@@ -61,38 +61,38 @@ mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSj
61
61
  mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=URXDoE6vuc5mJ-vBkM5RXRYCS92NXs8_Jrlykh9mk6c,1588
62
62
  mindsdb/api/executor/sql_query/steps/project_step.py,sha256=2Hy-b9a3-bJcUHQNhILWSNs17k0JTLrG1aGwTbtJDAM,2868
63
63
  mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=01aDbFrqatM-iX70gU3-ODPBP9F-v0mWZ9BedddBOa8,889
64
- mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=AX2HDrmEHgPrti_S7IJuotlqfKxp4_4Wi4P6z2Z9lZg,8771
64
+ mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=KULWfFVPmoQ_Dh5yeac-HWXCgxPtnBw9t5FRpJK4xNQ,8734
65
65
  mindsdb/api/executor/sql_query/steps/union_step.py,sha256=SDCQqLON3NHSbzc2g31xT8CNG5cXu2dSRB7-AELQt6Q,1859
66
66
  mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS5t8SfSo-14ttOd1r0_T8NA,4643
67
67
  mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
68
+ mindsdb/api/executor/utilities/functions.py,sha256=FilHuYMTVMqmB3rQPcVgDga8qFvIdxlwyXjge_5iJjc,1003
69
69
  mindsdb/api/executor/utilities/mysql_to_duckdb_functions.py,sha256=CxeS5NbDKCv6nyRioZIWSmGMgl5e5MSF8MSeWfcRYIo,21966
70
- mindsdb/api/executor/utilities/sql.py,sha256=b5fAdqnJiRG2KXUY6z7wnhEH4ehyhwSRR62h_NN4xiM,9658
70
+ mindsdb/api/executor/utilities/sql.py,sha256=MD-mAF-moZ_JOl6aloIXcqDMjEpk-hsNuT9QwuYmgfc,10326
71
71
  mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
73
- mindsdb/api/http/initialize.py,sha256=gz9EYohbEEuVqftN7MXiq5dMJfPl4KHF52bS7n0D-3E,16319
74
- mindsdb/api/http/start.py,sha256=g0TcP65YHhHUDDsH2GKndx2m-DNf30QjEJHhxK-IBEg,1497
72
+ mindsdb/api/http/gui.py,sha256=zbgKwLfX-tHiD5U2SIhIHZ9Wuvgfk0__7Gv-t-DYzT0,3073
73
+ mindsdb/api/http/initialize.py,sha256=iXpIuxojLxhzqSc5M_Czw-ZkJMKLiUlEmubR7S-7wN8,16741
74
+ mindsdb/api/http/start.py,sha256=lgG2DWjVStnHZOp-hcG2Uqk4qTn9UQh_vfkYKdV7u3U,1743
75
75
  mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
76
76
  mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
- mindsdb/api/http/namespaces/agents.py,sha256=D4fY2w2MYlq1IUt4ksL9kCjkL9EZ64yxjzvF-26xlqQ,17841
78
- mindsdb/api/http/namespaces/analysis.py,sha256=maYxI-TP9RswWHgKX3KAZQJK_XSBQfpZMqv0ZH1ZC0k,4295
79
- mindsdb/api/http/namespaces/auth.py,sha256=CN1pZc2urwVLiKi82dNcym-xhBQPPkJarwNPQ9Zz-fE,5311
80
- mindsdb/api/http/namespaces/chatbots.py,sha256=ArEYtqEII8a8MIN9-9kfpHeR7FwTNmrPqzWsHp5MQDg,11519
81
- mindsdb/api/http/namespaces/config.py,sha256=5tvE3RKu-jcNMRIWulesB1LKXyHDPxC-DBgHGYxhlbA,8884
82
- mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
77
+ mindsdb/api/http/namespaces/agents.py,sha256=FpXWAUTqnfpbYIKPxkCHu0haQC4oUnAZmnIDCsL0C38,17598
78
+ mindsdb/api/http/namespaces/analysis.py,sha256=OH-VjUQ0lYE0f0uc-gZGljMwpolXEKP9D8ZxmnA5a2c,4236
79
+ mindsdb/api/http/namespaces/auth.py,sha256=rAgoV0Ejw9m8hPt5vNi2LqvWB0UsbFwkJn0oC3sYADc,5326
80
+ mindsdb/api/http/namespaces/chatbots.py,sha256=RR4mzHfyOLS0clC-pAvjwxA1g5V1eWSrFXiSbzE_Wm0,11234
81
+ mindsdb/api/http/namespaces/config.py,sha256=BbEshgHbcY9XLyNsOWDEeKWlJ01zHoxv23xrA2MT2zI,9239
82
+ mindsdb/api/http/namespaces/databases.py,sha256=twg1epjUnDWMFO-kvaypJ2JEb_Xom-5Wy98JII2Vbvs,17685
83
83
  mindsdb/api/http/namespaces/default.py,sha256=N-ADA862kjdZkj6SIm2CiCuTQwRTp3q90hT6ymxKFGM,4444
84
- mindsdb/api/http/namespaces/file.py,sha256=4onLsUQdeAjfvlOHxNJ_QDiNcQToeL3IVd5Q4KIdAhA,8166
85
- mindsdb/api/http/namespaces/handlers.py,sha256=L-Hz43zxUXNMBEcR5Y-M0T_0QiQOXu-xyAkX20JJmfw,7943
84
+ mindsdb/api/http/namespaces/file.py,sha256=b-jM4H10Zg8zPDAWjwh4Owz71onEwVUhagptOHOpmVQ,8728
85
+ mindsdb/api/http/namespaces/handlers.py,sha256=u_nn5Ux7HpJKgmSQoxCp1beUph8GZjS3alv0R1PTMlQ,8250
86
86
  mindsdb/api/http/namespaces/jobs.py,sha256=4lYmLQolCjDNCV8HMBLyNbdQTkqI_L_N-SuLdKA3Q4A,2818
87
- mindsdb/api/http/namespaces/knowledge_bases.py,sha256=RotgaH_Utryxrqm4OUTeinjY1JzQzPQ3t72FVM2GQ0s,16570
88
- mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
89
- mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
87
+ mindsdb/api/http/namespaces/knowledge_bases.py,sha256=F1LhwZJ-_91zGgdWurS_dPHOp9T-si4UGOd6r_z8PPg,17484
88
+ mindsdb/api/http/namespaces/models.py,sha256=X57eZVvBega-M6S-LIUWG5wsyJx6S9W14MZ9U9JHMO0,10882
89
+ mindsdb/api/http/namespaces/projects.py,sha256=hFzaI6QIhrShqdyVp3J0h9xlnAGWvMLP4Wn6CEPP3H8,1245
90
90
  mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
91
- mindsdb/api/http/namespaces/sql.py,sha256=JjrXxcJr00QpaxYWzvghBLhb78kIkTZg2-OOSbJHz3U,5586
92
- mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
91
+ mindsdb/api/http/namespaces/sql.py,sha256=B6rY0xk78hXoCXSgVPAQlPBsTxf6nZaixAqbVpweHYU,6141
92
+ mindsdb/api/http/namespaces/tab.py,sha256=9lYOpu3bUsDNG27qio-AKcnq5LIFq2oj-X9WMdQXvJ0,3863
93
93
  mindsdb/api/http/namespaces/tree.py,sha256=8UZUZCt4f5EzQYJLRTwraol8RtebYjlyRWeHiOLhPIA,4191
94
94
  mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
95
- mindsdb/api/http/namespaces/views.py,sha256=PwNc9ECSbe2yfGZ556wBF6DxK01QVbmW9cwBu3LB_mI,6030
95
+ mindsdb/api/http/namespaces/views.py,sha256=gZZWPSoVoT_c71PiHtI_QL_3_1GShjjmegLCQPjw7II,6038
96
96
  mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
97
97
  mindsdb/api/http/namespaces/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
98
  mindsdb/api/http/namespaces/configs/agents.py,sha256=9LKToZNLtQGBhj1nRwIjaTNDeI5PA-TbVVW1qwFdqzc,124
@@ -115,11 +115,11 @@ mindsdb/api/http/namespaces/configs/util.py,sha256=BY7FtouA0QjxiygxCIrQNfP3z1dbX
115
115
  mindsdb/api/http/namespaces/configs/webhooks.py,sha256=WTZAN2r6GdR8LbhAyh9osFGaFDtgPDCl7VMSew-NUqs,116
116
116
  mindsdb/api/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
117
  mindsdb/api/litellm/start.py,sha256=wzxGbSuJYh6dPDGc5qZHIPX8EhFVotVQ9T_0PJ-35FA,2715
118
- mindsdb/api/mcp/__init__.py,sha256=zmkVk1GBgxRrfeLsvDg7Aq9vQzj4bC9WJtJDnuA2SUg,5157
118
+ mindsdb/api/mcp/__init__.py,sha256=wUEhMu8P258RrD7unRbeISgzVD1JbLfnkxraEolkZIs,5220
119
119
  mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
120
  mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
121
121
  mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=FYmGxbMk2ZvLh4V302zFmGdXQZTEcuEKQzZ2iTim3mQ,34090
122
+ mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=9N09YLOsYnQqGXtMPZWe09_LxLY1MWThVjHyyUjjXOo,33134
123
123
  mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
124
  mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
125
125
  mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
@@ -145,30 +145,15 @@ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py,sh
145
145
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py,sha256=ykZJyhvw8iDq8CwVHW0RW5SWbTbfqyX1aD9dOo5Y9MA,1494
146
146
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py,sha256=cm2f1fjPy0nfKWCPARMvq92smMij_X4WTjOdxRlMXOM,521
147
147
  mindsdb/api/mysql/mysql_proxy/executor/__init__.py,sha256=U4cWmxMMtOYdK4a3OvSyy-VzICWiURroIAKMKMoRcnM,38
148
- mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=Bm8Gu77u7HPcLM8oyUsiGdmnoD7Xz1ksB5QFiSbl5iY,3502
148
+ mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=2bxhfbuZl1RMyaQQ2LnShVmY-aDy8CnWkeiW0ZPyPwE,3544
149
149
  mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
150
  mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py,sha256=k5ZmduhQW2E3Mf_jns-dyVLsRxXUAJE1b3Qbr1FkHKo,4116
151
151
  mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
152
152
  mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
153
153
  mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=yyIDUzzcPU2sTOMCAOUwoRs9ywqak4bLQuCNXelUbqg,42253
154
- mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
155
- mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=1Q32uUguEfjf9JxMdw68UaPlk0j8lRf_XURn98JPpUY,14670
156
- mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
154
+ mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
+ mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=0zo81TP3D5kwgS3SlnaVjabjHYt2ySvd7BHmeOMW5CA,14939
157
156
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
158
- mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
- mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
160
- mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=oZhjbk6NYbjfP-z48jGqOWtNbYIKhcxviBz5DFHmqPU,19102
162
- mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
163
- mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=hm0opUcUNadTIyJl50sZADUU8S-u30hev7r4jXoMq4Q,6441
164
- mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
- mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
166
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
167
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py,sha256=YzwqqOdkSqdWp_E_IY-UIkPpv0SakABZ7EsUdYtKFKo,1093
168
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256=LB1zEgsI0U_9rLdwVED0VQRz7AWR1EuCLDsR-WF1CTw,40739
169
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py,sha256=3qpSK3UWHW-Uo1qjgnz51aGPDCcVDfvQBcsmE932A8Y,626
170
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py,sha256=VDdUFydhXPrDyFD4iy_BHF4e9COXElcqmTBRqwYofKU,8422
171
- mindsdb/api/postgres/postgres_proxy/utilities/__init__.py,sha256=3RdLBT2FuJ1jzjysirDmfzQ0ocRcrhKONrJw2XQB2PQ,259
172
157
  mindsdb/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
158
  mindsdb/integrations/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
159
  mindsdb/integrations/handlers/access_handler/__about__.py,sha256=kTxz8PpOUa1zRCCgYRoef7GDBwgi1kNgVM45YakJBwA,372
@@ -295,7 +280,7 @@ mindsdb/integrations/handlers/box_handler/icon.svg,sha256=LhDX_Yikte5esxe9qOtHNn
295
280
  mindsdb/integrations/handlers/box_handler/requirements.txt,sha256=FQc6GqJL5eYYA9-oPcRQbmJR0HrSmnSz-5Q82yiR2sE,11
296
281
  mindsdb/integrations/handlers/byom_handler/__about__.py,sha256=5MMwfPjVWxerbcXI564QKIUaYW43COokSWU8KBBlOEg,330
297
282
  mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=vp4o5UA9txxJSa9RLE8UwioAR5yFOnnZHtxHX5XuBag,502
298
- mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=uI-UN2XLx7jAx7PxqOO_vlWcluUpPJJ4GEYZ5jP9jno,24818
283
+ mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=TYyRS14l7hS54PLzem0O97ygzWFIg2fMNq6TnL5hra8,24305
299
284
  mindsdb/integrations/handlers/byom_handler/connection_args.py,sha256=chqPtpiEBtko8kxS15ImkZ6Q3kuhv7vwOzV3JeyU4cU,522
300
285
  mindsdb/integrations/handlers/byom_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
301
286
  mindsdb/integrations/handlers/byom_handler/proc_wrapper.py,sha256=GqOB8Zw4-SYsn4lu3tkYORaNfgM4bm0HMDPyOJtErKk,5644
@@ -421,7 +406,7 @@ mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py,sh
421
406
  mindsdb/integrations/handlers/databricks_handler/__about__.py,sha256=_DJsf3lXMtRb-c9tlUQesBW5_Vinsvd7uGjcDHaQhwE,363
422
407
  mindsdb/integrations/handlers/databricks_handler/__init__.py,sha256=go72eMqUWKLj4j7wnUbf3znTL4TQXrLfc1hTpxBxumc,675
423
408
  mindsdb/integrations/handlers/databricks_handler/connection_args.py,sha256=tdHFSNaXlAUFkM-FX7cMXEfdF6UtEgcNPSaRhFXuSUg,1885
424
- mindsdb/integrations/handlers/databricks_handler/databricks_handler.py,sha256=BFNxA5Xsdajva89SpUPMghUEubn3VaE8NsMhZhAG88s,9434
409
+ mindsdb/integrations/handlers/databricks_handler/databricks_handler.py,sha256=3jd9PWgK3JUUHphQ7T_HBjQs5aynDq5C2VjJb6U4cAc,11708
425
410
  mindsdb/integrations/handlers/databricks_handler/icon.svg,sha256=p4vKYvjt5bXU6R88i6xcoNKHO2DNlAGZGGZPZKNkroU,618
426
411
  mindsdb/integrations/handlers/databricks_handler/requirements.txt,sha256=W5yjZU0A5YjPZ5Ls_JEF6xNSQ-IsPKf7_iSxSAZ0IXY,43
427
412
  mindsdb/integrations/handlers/databricks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -489,7 +474,7 @@ mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py,sha2
489
474
  mindsdb/integrations/handlers/druid_handler/__about__.py,sha256=psafZg7bMoHnSdx4ThYNV5hFZiq1Y8ZB06SqzAPvabw,362
490
475
  mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=eUEHsfHUYrqYnNzj_YKHAYQb8iDTdRkoamLITQvEEMM,599
491
476
  mindsdb/integrations/handlers/druid_handler/connection_args.py,sha256=dlwEAIswp5kkBIiHGXGe_AkI06W6RukP5QPT4BxKvoI,1401
492
- mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=ln1kMx7CvkBlRUwY9ykBtJX57yWGt4CWPU1mBmWu6Y4,6406
477
+ mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=8fNeQCGnciaxkTXS-QmAW20cPGrJNHCmIgFAVePeHRQ,6267
493
478
  mindsdb/integrations/handlers/druid_handler/icon.svg,sha256=ak7qaXWafkb6MvCGtG5wAfVcffKNuARcUtF74uqVDEw,2823
494
479
  mindsdb/integrations/handlers/druid_handler/requirements.txt,sha256=dahrkIufqj8IX1uzmprfLUzgIAKmeJYmrvcEhwOpdJI,8
495
480
  mindsdb/integrations/handlers/druid_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -570,7 +555,7 @@ mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py,sha256=47DEQpj8H
570
555
  mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py,sha256=JrgVIq6jucZjUCr8FpbC9ByJ3WdZGppZKHdovvFbNiw,1151
571
556
  mindsdb/integrations/handlers/file_handler/__about__.py,sha256=UavP5jJ_xWIaJ0oRsEANLulczZ0craaUb3XLfCSBmEc,331
572
557
  mindsdb/integrations/handlers/file_handler/__init__.py,sha256=46Hnm3ijRsYw95BkkBxHJK8k4h_2Te0j1W0r3-ptVCg,329
573
- mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=6NxAynyniYvUrQ8GCkzm1PQ9BZfzLhyy3Y_73-P4kRk,7564
558
+ mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=wBqa3ASt7me6A4KhXvCk6w3iHZ4chKWhzYyXYjUR25Y,7888
574
559
  mindsdb/integrations/handlers/file_handler/icon.svg,sha256=hsXEvUzrO7WQMOPC83LYQt-FW0wey9TCj5EwiIJwKwk,565
575
560
  mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
576
561
  mindsdb/integrations/handlers/file_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -618,7 +603,7 @@ mindsdb/integrations/handlers/github_handler/icon.svg,sha256=c1j3IrEwYsGXPwW-hjZ
618
603
  mindsdb/integrations/handlers/github_handler/requirements.txt,sha256=BJz2OYblSD2RZAV7csj2UIyRfuSQmstGWB3flUgFOk4,16
619
604
  mindsdb/integrations/handlers/gitlab_handler/__about__.py,sha256=2uH49-_UriKLYrfBa8yIU6j1L9Bxpyp5Gqm7zsTT7eA,341
620
605
  mindsdb/integrations/handlers/gitlab_handler/__init__.py,sha256=MleI0P8FKMYzbzd_XPkTbCjT1_Ub21hreu56QhXQuy8,481
621
- mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=2aI5V86NUsolt31AINviwe368XpdaKfdUxBupMOXUb4,2575
606
+ mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=tYP0AGZujZMiCHhof0NIIdQZ5e4FL6kj5MA98LEKqaQ,2691
622
607
  mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py,sha256=qgIcwzLQLByzBEMga9EIqsGuEVgF1LECLsC_L4w3xg4,15283
623
608
  mindsdb/integrations/handlers/gitlab_handler/icon.svg,sha256=bQ1whEb3IObHqMiZAHomuekYicpYFVnD7W0y-4JyzKc,1995
624
609
  mindsdb/integrations/handlers/gitlab_handler/requirements.txt,sha256=1W6ZjjUzciSZ0BX4yJ7C54BWdhWYLCw5ASu-VQohWro,13
@@ -867,7 +852,7 @@ mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=OfEJwXURVr
867
852
  mindsdb/integrations/handlers/lightfm_handler/settings.py,sha256=0iwjsbfzYwBsCizVymXn-vwhOYrES7Hm0MEmiviGP4I,143
868
853
  mindsdb/integrations/handlers/lightwood_handler/__about__.py,sha256=9SiT20BQuKEgzGSxhDunieyX33S5XS0cst9MxDfw-1o,345
869
854
  mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfef9lCHd7293J6GEEZRXLP5Jp07KkvOc,504
870
- mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=p3FXxafjrwa2Af6xkMO3MCOVLWxZEWfAmEu1sx0qIb8,9056
855
+ mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=7CFATTis0v-krgOWWEz66bCYC8Y58_rniwILcYJEZcM,8727
871
856
  mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
872
857
  mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=UuN1FUZrB292qZjGriQEbPly7vGBd8S-7DVNjqZAWRA,23596
873
858
  mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=3bM6rmtQbFQHZ8axgGlJt7Y_LXNfdXY3zc15JJ_UpwQ,91
@@ -1021,15 +1006,14 @@ mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWR
1021
1006
  mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
1022
1007
  mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
1023
1008
  mindsdb/integrations/handlers/mssql_handler/icon.svg,sha256=CMPDc66jCYyao_ui5eRds92raysDIMNuhIs59Tvbk_8,11944
1024
- mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=1kuYNAAm_OjsblBiZLEQlEA2tli9rjEIO7vSijdAuQM,11758
1009
+ mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=yk76DneNegW0u9kygjAG4JxJqzH3AQVJTYvEvkJiKz4,27643
1025
1010
  mindsdb/integrations/handlers/mssql_handler/requirements.txt,sha256=U59auV3ZAxBGXdMbyXxdRI3LTfCICvZVZWKWMnLUlwA,17
1026
- mindsdb/integrations/handlers/mssql_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1027
- mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py,sha256=gh8t3ft5Xy-EZ3Rfk1oopojQTrbc_DDE-uAlWpeH-8E,6010
1011
+ mindsdb/integrations/handlers/mssql_handler/requirements_odbc.txt,sha256=bLU8k0noNs0obAseJAR2AIlSudRfkzG6lZG6CAzdnz0,34
1028
1012
  mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=6kvzqW7nBK7T6fWasLd0kSRXltGkk6xH2PTkxZ46GgA,333
1029
1013
  mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=vE9F5Fi6Xgpfpsy6ABbIdeHMbD0do4nHqvq8B94IvJU,627
1030
1014
  mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=btTVpawoIuruXOjAI7Ycmcega2Xgu7P8gSr1iz4lUew,2278
1031
1015
  mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
1032
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=ySlS9nmN8t8A-OLsi5OgfxBOZ9jai0c7Vg1AcvUnLmY,11116
1016
+ mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=V2nZNfqp4P6_ZKj_p5Gv82vozfNUbIX3_4btAu9HsiI,20603
1033
1017
  mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
1034
1018
  mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=lC3KC5pr_IDeM9_hkAFkdui1INrin5ab_zKLOITxWbM,1722
1035
1019
  mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
@@ -1120,13 +1104,11 @@ mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt,sha256=uEk8
1120
1104
  mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1121
1105
  mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py,sha256=Y54Bmy0WEMtWuA8tLEuqYisytrrctanPEFgeuQ_b1dQ,1228
1122
1106
  mindsdb/integrations/handlers/oracle_handler/__about__.py,sha256=IIt4NVwQ52K79l7v7lc4andzcy6iiodvfjlAvQdHiCQ,354
1123
- mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=9U8p9zE7yi32hWtWEQTFcVz5CSgAGlu6E9C-hPf_tBE,629
1124
- mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=EXsizLXCjKijmhqu8QM77QuhMrUiYuAg_jarKOTE_Kc,2191
1107
+ mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=TiLn9hGp9oyP8kau1QSlgRNiQ4Xq-iTYXqNlZHmCsXg,631
1108
+ mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=hvMqXZskTMpEgPaW2kpQYQa_QYisMC0Bc0ofeBr_gAo,2454
1125
1109
  mindsdb/integrations/handlers/oracle_handler/icon.svg,sha256=43yVX7g6fI4SLk9h23xsJvzLl9fMOfiKlQ4aNyQ3yxU,537
1126
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=ciWzHpMQ2dbt8720_Eb95soQyfwlXijlRsuIcbxXAdE,14820
1127
- mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=6My_yqlFsKIvJvanjJc8usHiQ5Ax_rKaHrzNYNKC71c,16
1128
- mindsdb/integrations/handlers/oracle_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1129
- mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py,sha256=TjY4cZHMPUaLyusCTTHCRGC30pXDUqqM2vEjw2UqB1Q,1064
1110
+ mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=wHcgNWybIhVjvziAn6yZraSLCgLO8V9hMrqOgSa5UuM,26979
1111
+ mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=Ow68bpt7F5jCyxhUCa5ZohJVSMf0ZL57hE-CXAtIchE,15
1130
1112
  mindsdb/integrations/handlers/orioledb_handler/__about__.py,sha256=AT5fv9NBW3ElkX0DHZpYa6MEge8OQbrYhxixz78iTaY,346
1131
1113
  mindsdb/integrations/handlers/orioledb_handler/__init__.py,sha256=z5zE5RetKJHMqSTfwEu69yP2H_MXsa69_zKw1xkPHpo,605
1132
1114
  mindsdb/integrations/handlers/orioledb_handler/connection_args.py,sha256=JFKd8CqZmUTxFmtbO-wrn3IjuF_9G36ImxMszdjGFRI,1003
@@ -1206,7 +1188,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
1206
1188
  mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
1207
1189
  mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
1208
1190
  mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
1209
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=4wl81ZUMYsf4fKKPsx8lRh8eU1z2x7X9f7gHsUV35p8,28810
1191
+ mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=sDAgoLyfLvqMRKzYstRtsXM_R0OiX0SXmmpd1gg7Ogw,29648
1210
1192
  mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1211
1193
  mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
1212
1194
  mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
@@ -1358,7 +1340,7 @@ mindsdb/integrations/handlers/shopify_handler/__about__.py,sha256=w70w9xG4laoJ6f
1358
1340
  mindsdb/integrations/handlers/shopify_handler/__init__.py,sha256=VeIeMd6vofxyaAkLPX6X63Ye0of6s768mZ7gLvXrQ_8,511
1359
1341
  mindsdb/integrations/handlers/shopify_handler/icon.svg,sha256=-htxdS5C7rsXqiY3H0Y5LVhvHG_cb8Iw7MuJc8Ra2Qo,2452
1360
1342
  mindsdb/integrations/handlers/shopify_handler/requirements.txt,sha256=keRn5kMNcJHM3MBDc26Y-mYR747z5HdsJeURBQ3sygY,11
1361
- mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=Phcoh8ukUSJQ-RwqV_pp2at4blJHrMDQg6zjP8EXmiw,4935
1343
+ mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=7yeClveNQBtqH8TItrynqmbOqXr3E2It_s3KIh04_Hg,4971
1362
1344
  mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=eFxuR6PUx772Oc_LCgDOiDYjBhwS6fcDwiLgOFBhbnM,38545
1363
1345
  mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=_15qBORkD-oCNaAG43vfOz-8UokwaQlTJMkVPVphWtU,351
1364
1346
  mindsdb/integrations/handlers/singlestore_handler/__init__.py,sha256=MSAEudTZyL-23T9amF0pU1wJjLYkn34VqJHtOYT1C1A,501
@@ -1381,7 +1363,7 @@ mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DI
1381
1363
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1382
1364
  mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
1383
1365
  mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=jPONiX7mUekXJMK0Tv1A5fhSAR2Vkc-_4E_pCDJo068,71
1384
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=6t3yn-likCK_qs7MjOJUvvvOiVTmYtYJKkonZuGfGGA,30596
1366
+ mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=sU6kBXzJmTO1XnDz4qEL-m9NMumVEDFOql5HK1BuvIk,30654
1385
1367
  mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
1386
1368
  mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
1387
1369
  mindsdb/integrations/handlers/solace_handler/icon.svg,sha256=rzGNiCdLWu9OJ3j8ilXrOTwRupMp3n3RQrfm2D_Nx5A,152
@@ -1437,8 +1419,8 @@ mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,
1437
1419
  mindsdb/integrations/handlers/statsforecast_handler/__about__.py,sha256=1X1F2LyKSugvGa7VZco3R4fDZTM1ED3Ku-ys2evcczY,374
1438
1420
  mindsdb/integrations/handlers/statsforecast_handler/__init__.py,sha256=LYYrtDMAW5aFPLPyIp-rOxO2O6izWi7pNtQGAsRmmdY,516
1439
1421
  mindsdb/integrations/handlers/statsforecast_handler/icon.svg,sha256=dg5efvtY54Q70QS8a1FGc3-RbH9vbsWoOCmHtPjANRE,590
1440
- mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=byT245TFXdOIWksM4Sik8GToMkKEEkY-GLx8J8tI0oM,35
1441
- mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=byT245TFXdOIWksM4Sik8GToMkKEEkY-GLx8J8tI0oM,35
1422
+ mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=HYgxhMnqNx1Zm3cnXn1aZ2KVfnXAmsh1Zf-lRG9IwGI,60
1423
+ mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=HYgxhMnqNx1Zm3cnXn1aZ2KVfnXAmsh1Zf-lRG9IwGI,60
1442
1424
  mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=jPo3yj5nuxi6WP8xrEFx4lI1pGJbKQs-uHJLtBrLz_k,8408
1443
1425
  mindsdb/integrations/handlers/strapi_handler/__about__.py,sha256=pCZCrsIQ2_9QSAfpIY8se9QDvIE2kP9_a5N0DnRMO6k,344
1444
1426
  mindsdb/integrations/handlers/strapi_handler/__init__.py,sha256=TnZspPGgLSMgWxJkY0oUd6EiPl16Xo7spn0Oswok8-o,529
@@ -1597,7 +1579,7 @@ mindsdb/integrations/handlers/web_handler/__about__.py,sha256=CxQc3_pLSKuz1AnBj6
1597
1579
  mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE3B900gkZLuQ8QWQEvYFbTUkE,504
1598
1580
  mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
1599
1581
  mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
1600
- mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=1bhujPOu85x0Y-zBUXCWr17UnxaCvK8X6hrBK3PpkOg,11658
1582
+ mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=Z_-8_mv5teYRIMupcTiw9OuDJgwn1g26HtInrmODIWQ,11634
1601
1583
  mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=A5O74YqhNR2x2St0lDMkQyhyl0MbKAmcz5GsckOFhSs,3684
1602
1584
  mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
1603
1585
  mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
@@ -1645,7 +1627,7 @@ mindsdb/integrations/handlers/zendesk_handler/connection_args.py,sha256=xlvJDA5g
1645
1627
  mindsdb/integrations/handlers/zendesk_handler/icon.svg,sha256=s1A5JS37n5wvlrPLTiE5ssExWahxgi0CbrpwiHhPpb8,1702
1646
1628
  mindsdb/integrations/handlers/zendesk_handler/requirements.txt,sha256=isC2d0ECxc6bKij6WwDLroQYdLo9TLZhv-ukCJ_QBL4,5
1647
1629
  mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py,sha256=CpAhZ2GCVFO-I5jkbUiBl1M8p9bao5xJDWUm_eYKzJg,2574
1648
- mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py,sha256=umykoN-bl1NeGXbixwh0WHyBRtBZ5vq84NIYq0o64gs,14307
1630
+ mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py,sha256=TnK7QY8kZmD0f7cghjrtPTv_G7VFzkLcdwPKuzriUfM,14745
1649
1631
  mindsdb/integrations/handlers/zipcodebase_handler/__about__.py,sha256=2ehsqaOMsHLhHnKMm_V0tw_7gJ9BBke8z_DyC-2RFHw,349
1650
1632
  mindsdb/integrations/handlers/zipcodebase_handler/__init__.py,sha256=o0ehXXkJuWbAFTlb9gPqM3h6cti818PkfzFatr426hE,649
1651
1633
  mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py,sha256=4Ut8wlfgIuijAHM9zDZTKKLXrXbTXq6GJ3SCqt9NTh4,413
@@ -1661,31 +1643,31 @@ mindsdb/integrations/handlers/zotero_handler/requirements.txt,sha256=uRY96N9ioKv
1661
1643
  mindsdb/integrations/handlers/zotero_handler/zotero_handler.py,sha256=CVmTS9Cqj85xWt1RWR8BKJDh9h-dUYLXWIkYHI5ncfk,3575
1662
1644
  mindsdb/integrations/handlers/zotero_handler/zotero_tables.py,sha256=5uTXP3fYAQ6rKgWKKVRc2x0Pn1u4rNMZUHm01ewC9RA,4861
1663
1645
  mindsdb/integrations/libs/__init__.py,sha256=uEz-XQLAwY2nMXc5ilEPP6cWWfo5HpO8o8UfV8JELS0,99
1664
- mindsdb/integrations/libs/api_handler.py,sha256=-Zn0rdVA1gvHms0k2ZDzuifPmKOnlNy8qab3t1lkdho,25359
1646
+ mindsdb/integrations/libs/api_handler.py,sha256=yo85p4wfiy7FiQKvwuOtUmYnfPfI8VH8P4F4-QpSmCY,25334
1665
1647
  mindsdb/integrations/libs/api_handler_exceptions.py,sha256=mw83eTmo9knpVHP1ISnudonZcBMI_Xzr77b1wXN-eu8,236
1666
1648
  mindsdb/integrations/libs/api_handler_generator.py,sha256=qQs12fr31g0XvMjTInopNfKiPj7pKfyuNhqqX0tCgGo,19304
1667
- mindsdb/integrations/libs/base.py,sha256=S5eELL3VZZx-qUgHVDB6LC4i82EXV2XJlh3-Vnfktnw,21053
1649
+ mindsdb/integrations/libs/base.py,sha256=R0ygtzWN0juhXwal8JMJnWao7sceiFMFzZwlRwtrUMU,21043
1668
1650
  mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4SexxR8c,407
1669
1651
  mindsdb/integrations/libs/keyword_search_base.py,sha256=U-O6AxIj8kZmnmoR3_RxO3RkZsydpsKUHjEy38mU6wk,1205
1670
1652
  mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
1671
- mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
1653
+ mindsdb/integrations/libs/process_cache.py,sha256=6Gahc9jM7Kf_Vv7mT2DRvpycCQ8cReRxzLGSBaNspwA,15828
1672
1654
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1673
- mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
1655
+ mindsdb/integrations/libs/response.py,sha256=_Si1pclMQSDIuHtEzAlVnYtTIy7OeXKkiGKRcvPUcFg,6387
1674
1656
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1675
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=tG30fazN9F4yc3Bx0FjABxmU63_GgL7Y102AxZevWKg,20843
1657
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=pyBzB6-dLzvSEo2E8XYV2DtVbmVPfPI69_KSnnH7KsU,21782
1676
1658
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1677
1659
  mindsdb/integrations/libs/llm/config.py,sha256=Bm25XFXcTfFwUYhGUzcM7qiYVbUFeuNVhgSHO109a98,5183
1678
- mindsdb/integrations/libs/llm/utils.py,sha256=UVwCa5HsW3osTsNa_d7_0uez4jcofjzvboXaE4h9A5o,25124
1660
+ mindsdb/integrations/libs/llm/utils.py,sha256=5nc3gAjrIqIlgfmjaq7vLGy6Zh6ARKnm5UuKrkSrpr4,25138
1679
1661
  mindsdb/integrations/libs/ml_handler_process/__init__.py,sha256=TW1DslwZTaD8oeGaxPx99uYkPAeDIeHWAturBcnDBFU,756
1680
- mindsdb/integrations/libs/ml_handler_process/create_engine_process.py,sha256=YHbk1x7GEIZXcM0IazB2z2tvu5Yd24Fb4aJPpUg321A,788
1662
+ mindsdb/integrations/libs/ml_handler_process/create_engine_process.py,sha256=k98ktiznXPe64jA7tSb9TTCzOwZBcDAjrrhTnoMKe14,721
1681
1663
  mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256=-69NRhBGnNG0hgNi9O_W5LffIxPBUmuxy4bbQY2Z-_8,444
1682
1664
  mindsdb/integrations/libs/ml_handler_process/describe_process.py,sha256=D1FEY2C5Ht1KjiycMuplLgHhfRaw-OJylVgst6pOzpQ,4205
1683
- mindsdb/integrations/libs/ml_handler_process/func_call_process.py,sha256=W29lPhV6K8g2prNR57CmyJ_t5DNG_EVnf4fhnHpGFPI,728
1665
+ mindsdb/integrations/libs/ml_handler_process/func_call_process.py,sha256=n3GZc1j_MnNCSG1UVp5Mdr-44G6iVuMUkzN6YZpjYbs,631
1684
1666
  mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py,sha256=Lult730J8sPGabO4cVqXWtc9gqt_iFvTFlY7GAym1RM,771
1685
- mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=84Sui802ursG2wVgUhc2fhwtmfqoIA20yqoafBh3gOY,7476
1667
+ mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=NFVg3zFCS6b9LB1bBD7-e_csAhgdHqkay0he-vwuQoM,7170
1686
1668
  mindsdb/integrations/libs/ml_handler_process/predict_process.py,sha256=QmThCaCy-LBVCcpzHWEecl6eWW48QJsf2HxxnwNWN0o,1346
1687
- mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=cczOfdAPbriukLa5lamDT4VRONjFZ9QGdlXxzOad4K8,788
1688
- mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
1669
+ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=lm-ClgExgXFkvWGXz3Ti8NQ_y_N96nX9d5rBV8AQGSA,721
1670
+ mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=oiCnLcTSaFMNAAeq5yEQfF5ZZ76mq52whbdqxc4wq-E,687
1689
1671
  mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1690
1672
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1691
1673
  mindsdb/integrations/utilities/handler_utils.py,sha256=C1F3ATH4eb9qA4MismUoXdQgnoJ8nk2VjsTve1VrpfI,4271
@@ -1701,7 +1683,7 @@ mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-
1701
1683
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
1702
1684
  mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
1703
1685
  mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1704
- mindsdb/integrations/utilities/files/file_reader.py,sha256=p0a7XVjCToAmLqcI2LPBHSGN7VwYaSuHhT4f8VP0IhU,12423
1686
+ mindsdb/integrations/utilities/files/file_reader.py,sha256=aVor1zm2mE9iaDRwcZPO8NnV8Svzlm6VOZPMDTw7t3s,12415
1705
1687
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1706
1688
  mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1707
1689
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
@@ -1713,6 +1695,8 @@ mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_acc
1713
1695
  mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=IJnVzD2WYavlKtZMJ5uW51CDUBthYnR0YoA_HBtKXDo,3737
1714
1696
  mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py,sha256=T90ankGZeTN434zsA1Up6Ga9AQa7wWF_t64nUw25X78,119
1715
1697
  mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=YACUQ8qy34yexNg6ffnUuYkfNJ5OTcZ7Ejzgx9XEnc0,8217
1698
+ mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/__init__.py,sha256=_G-MriUR18ev5D-jCuDZzFZ3LWf7JwYwnpRuLJwxYbo,70
1699
+ mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/snowflake_jwt_gen.py,sha256=9Oxehw56R-M1_CoFAoNCBOVa05ZfX87DqpCLjgxwqx0,6003
1716
1700
  mindsdb/integrations/utilities/handlers/query_utilities/__init__.py,sha256=Gy3epzeBeKSi5xFMs9Zq2ggAupWJTDWc_3C7X8rnSEU,279
1717
1701
  mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py,sha256=XFmXkaDd1y2YwWDpVG6EptdWpT1QnW8cPmC9QEDyorw,1483
1718
1702
  mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py,sha256=tylfQrK9kNAOdCpAKgTyACka1L4AGj-CT1JYpnjyRFc,1543
@@ -1723,9 +1707,9 @@ mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.p
1723
1707
  mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py,sha256=EuDU24j8NDOJFlUh5PH23-2Am_ph2wojq6Wz2VSnWC8,72
1724
1708
  mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py,sha256=AWGzBulx0tlN8d5uVD2yGvujJHoT4ZVKybA_5y3JzTU,681
1725
1709
  mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1726
- mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
1710
+ mindsdb/integrations/utilities/rag/config_loader.py,sha256=rIWDEcfaAQNlcceQKM7mWabVbwLZKSrVSxZnjUwkaKY,3606
1727
1711
  mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=0RhyafFoQPl1aniRYcOu57aljfqKqj_p0cNb_bfOrc8,3742
1728
- mindsdb/integrations/utilities/rag/settings.py,sha256=wJ4aA6lciKmKN3kz8dad6dxmvqhHo2rzj97xgVlcB_c,33497
1712
+ mindsdb/integrations/utilities/rag/settings.py,sha256=oQrCHCOs9kP7Xy_VPdKUOHvoGs3LaEpeWy2Yr5yZW5I,33438
1729
1713
  mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
1730
1714
  mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
1731
1715
  mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1740,102 +1724,103 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_load
1740
1724
  mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1741
1725
  mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
1742
1726
  mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1743
- mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=RSMa6bY83kr6ljrBLvOPk04F5KEv6AoDeNh2LPLf9pE,15665
1744
- mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=IN7R2dtqEtqdhPQh5r62oZOII_4m_ZU-XCpnbvSqjw0,3729
1727
+ mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=YRqRjW578P9h_cnktLKB_hn66GQT8y3WGmDpyytUZ-w,17931
1728
+ mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=CpABoeVOYoD-vNx8ptMK6NgMVDmvHRkOzMpIcNIUqZE,3732
1745
1729
  mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
1746
1730
  mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
1747
1731
  mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoTWz6OlhRG-GzqdPPoAR6XyPtk,264
1748
1732
  mindsdb/integrations/utilities/rag/retrievers/multi_hop_retriever.py,sha256=wC2M3Vsgzs5Nu6uEuD4YQZZU9W8eW_bc7RrrqvN38mk,3319
1749
1733
  mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py,sha256=D9QzIRZWQ6LrT892twdgJj287_BlVEmXRQLYQegQuVA,4383
1750
1734
  mindsdb/integrations/utilities/rag/retrievers/retriever_factory.py,sha256=knmGLJNEG8x4KFhUYQiCIpghR5yEEeu_tonSUMUqXAQ,2205
1751
- mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=uOJ8-UW09hkjMo4J6htrbbl5zmH_-YCWauRJxmdp3oc,35309
1735
+ mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=CtDR8iaPwcGMgM7iNdjLM757tPmVTyNOTLuJtqMvsXU,34123
1752
1736
  mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1753
- mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
1737
+ mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=LRbIfUg0iTyr2mEJjeya6qL2bMHtlfG5oJ5vjEB_cAE,5113
1754
1738
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1755
1739
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1756
- mindsdb/interfaces/agents/agents_controller.py,sha256=nTV6_RSsuK7WiJjHNHFJ_Wj3olyXJrRA6EXazuUXi-s,32203
1740
+ mindsdb/interfaces/agents/agents_controller.py,sha256=CSZGLUKboV_msVmybyj0xtNV1OuG4y0T0bi-n48zv-s,32169
1757
1741
  mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
1758
- mindsdb/interfaces/agents/constants.py,sha256=WKzd_IA9vGXGSe6dQnCbQrDCgG9W8rdzqLEOLn0NxF0,9865
1742
+ mindsdb/interfaces/agents/constants.py,sha256=nMHosFmA7P3hvzpV_5Z2uAxVAJ-sw7Xz7EV5Un_lKtY,9819
1759
1743
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1760
1744
  mindsdb/interfaces/agents/langchain_agent.py,sha256=zvYIf4tZvTZ126nmSZXDFnfT1_GRcvHd_DlRuo2KcU8,34816
1761
1745
  mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
1762
- mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
1763
- mindsdb/interfaces/agents/mcp_client_agent.py,sha256=8pDHMWJz5aYe7lyyVJYLqlCCKVMT_iqoWJ-XeBXSUz8,10036
1746
+ mindsdb/interfaces/agents/litellm_server.py,sha256=FuGcl7OxvjcNFzY5a7j1KOvdvpTH36Qaiheh30OkPf8,10919
1747
+ mindsdb/interfaces/agents/mcp_client_agent.py,sha256=KhHnniwlF5S0K9mFB09ZSqBFhCwF80W2tU_SCG0GjQo,9984
1764
1748
  mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
1765
- mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=OmvdSnN6ZIHC_EudSXxY9f_MJOGyrWD-TcRTrPnedds,4782
1749
+ mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=-qevojKYf-5eZAZ28a_UgyucE35dAykGWXcGb-fhPNs,4723
1766
1750
  mindsdb/interfaces/agents/providers.py,sha256=r4zIyi1p16lwgmHdEKaubvmD3D-JqubpTilMhuxB9NE,743
1767
- mindsdb/interfaces/agents/run_mcp_agent.py,sha256=4ZXhIGBu3wVIZC9Ys6vTJDxGJzLXppLLqzbg1UFanS8,8689
1751
+ mindsdb/interfaces/agents/run_mcp_agent.py,sha256=2l2rzQQ3Qg8BCcGs6yLdTCcX6Tya-_lhlhQhgcUAjVI,8490
1768
1752
  mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
1769
1753
  mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1770
1754
  mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=nmJs8zotT88aab99FdPQLqaOSsqbqmHNpo9oK6nlBG0,14494
1771
1755
  mindsdb/interfaces/chatbot/chatbot_executor.py,sha256=3qU98MHBmUcsIWYqaNNJhoudUQWLPWlCB_di6iFaP1g,7742
1772
- mindsdb/interfaces/chatbot/chatbot_task.py,sha256=eKU-7FSygAzFq9lkHKLl5zlkiiQDGjzOX7oUb-rJNQo,7001
1756
+ mindsdb/interfaces/chatbot/chatbot_task.py,sha256=miCSjT5I5EC0X1QX5Fg6RMK2V2HoItGxSNGPQ6SnP6E,7011
1773
1757
  mindsdb/interfaces/chatbot/memory.py,sha256=tkqBiA5mMvkuGITCjUC_r0JuyUS2DbeARxJ_GryOZJQ,8346
1774
1758
  mindsdb/interfaces/chatbot/model_executor.py,sha256=qv8DRysWLbJwbv4TkQ-bsLmJOnDaDlMBw7jZ3s6-dzk,3598
1775
- mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augjRHxscn48,8109
1759
+ mindsdb/interfaces/chatbot/polling.py,sha256=QGbcz6RGxVslvzE0OH7fJ0XbYKuDQFDjvoLC0DnwxzU,8314
1776
1760
  mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
1777
1761
  mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1778
1762
  mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
1779
- mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=HPUfQZ3Gx8g4kzqAPajc7ju9eG5lBFwu3qOSGDBXn14,16175
1780
- mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=fUSLlpmHo8hrb9zjtwNXzbSAoWRBxUI34cYSaN9vObI,2186
1763
+ mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=vVr5E4XE2VrpsXvTTHCuQEh-dOjGeTGQVOddXiZa1Ro,16122
1764
+ mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=oU_nUSvfyG4DcMIaMn-IbQFEMOCCqdQj_PatMzMQKL0,2593
1781
1765
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1782
- mindsdb/interfaces/database/database.py,sha256=f8KWdPQyAQbFW9paJMK2Vni_ZKtsLcP7CeUXl9cIyAk,6769
1783
- mindsdb/interfaces/database/integrations.py,sha256=26mGJRlNZ4aSDWrTvvRfG81qaMnb8con9w9-ROP-8-w,37612
1766
+ mindsdb/interfaces/database/data_handlers_cache.py,sha256=ONBvs6Z6Tlqtu7WUtc6QHfvblkSIY_mdVr0PHUUZoxQ,6966
1767
+ mindsdb/interfaces/database/database.py,sha256=J2FnRZ8DtgfKOPXkkbGcAa7kKXkqN8pudYYltnjP_ws,6768
1768
+ mindsdb/interfaces/database/integrations.py,sha256=SoufE7in-k15VE2iXz207mlGdjzDhyjhvJX36BbuDug,34025
1784
1769
  mindsdb/interfaces/database/log.py,sha256=ZpsEKKEtF32KjWRQ5rMtnHZTHqqJiffeaEcUDTx44cs,10305
1785
- mindsdb/interfaces/database/projects.py,sha256=Dw5d_mdoGBmt9AYECW91LZb5Qm2Tg6k155d8yOKB0tM,22789
1786
- mindsdb/interfaces/database/views.py,sha256=kDCYU7C5DISDEehIYYve55ZJcpKbG9bJ2DBhISDm-5E,5754
1770
+ mindsdb/interfaces/database/projects.py,sha256=uozA3mkTqfVVkVBuIPX6h_bkOhkwVN9wHj88XNJfIQA,22706
1771
+ mindsdb/interfaces/database/views.py,sha256=uVhqPkVkGYkU9-0FgJuAjigOkZXddSPQTVtFDv06DZA,5684
1787
1772
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1788
- mindsdb/interfaces/file/file_controller.py,sha256=vkxIdR12FLCZkAbwm-0_ZFK56q5bJciRqYwLK_0ooIM,8059
1773
+ mindsdb/interfaces/file/file_controller.py,sha256=rztvOD0ez-HvtYEt54pOrbi5MxN_wYMzm1xYJY7mOqU,8169
1789
1774
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1790
- mindsdb/interfaces/functions/controller.py,sha256=1nMC-DREpkjeVMKBxvqzNNSidj4-uIFWmuNjYlqZ1gM,7659
1791
- mindsdb/interfaces/functions/to_markdown.py,sha256=sD5iIRlaAsHdrqsyJyqKD5ItnfPY-g5-845K0Y_f6Ac,3901
1775
+ mindsdb/interfaces/functions/controller.py,sha256=EfbL_-5hSGn2rCjxxI7XmIU7MLj3rGBdopPc0vgnJ0s,7666
1776
+ mindsdb/interfaces/functions/to_markdown.py,sha256=US4wdYPZ0_19EZZ3LsJhmyaHdzgIHqHcD1W79O97R2Q,3913
1792
1777
  mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1793
- mindsdb/interfaces/jobs/jobs_controller.py,sha256=HfI2d_yPmMYJLrDlAYG7hm03BiAIPQ1Gl9bWAncvLKk,18437
1794
- mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1778
+ mindsdb/interfaces/jobs/jobs_controller.py,sha256=D4z9t6dYBbJVudVk_tBA-IBFeHVa38_jeB6338LwiOc,18394
1779
+ mindsdb/interfaces/jobs/scheduler.py,sha256=tG5dPTGaPvOsM6mtDPGXeDYtNbwfWgiLv2hjx29ENmQ,3677
1795
1780
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1796
- mindsdb/interfaces/knowledge_base/controller.py,sha256=wLwe5nO4ewK1HqcS_TOlvx3NRfKeXeBdSkcZ65y1ME8,58783
1797
- mindsdb/interfaces/knowledge_base/evaluate.py,sha256=ZXm_op5-n8beY42ikfgIxx9OKhr7P5Bqr9DkGmHaVtE,21574
1798
- mindsdb/interfaces/knowledge_base/executor.py,sha256=WwMAYHThohojGPm3ANVYRj425UaKo024HL7mIUTzDoo,14037
1799
- mindsdb/interfaces/knowledge_base/llm_client.py,sha256=pZQdoU8TTyMO1b7sa8-Ou4VRFDxR6974cyJkm0IeTIw,2844
1781
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=4Q8i3RoPnqMICdFajH4W4gWQjfOTErt6qePyaZsRSec,63234
1782
+ mindsdb/interfaces/knowledge_base/evaluate.py,sha256=UqC8k6GoOw17OLPF-r9GPMMUm8NOyXG2DrqqceSvVmg,21386
1783
+ mindsdb/interfaces/knowledge_base/executor.py,sha256=LJhv1V5v5tDLdnX8lktea3mKWGJQJioPZn3hzYwz76s,14471
1784
+ mindsdb/interfaces/knowledge_base/llm_client.py,sha256=6X8bSU-TaeQuybwLwtfbaxVx0860iV34yzuRw-E6mdM,4046
1800
1785
  mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
1801
1786
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1802
1787
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1803
1788
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=l_snHg8O6pLu4-TGTd5K3VgWVwlXa7mnLH_NaQdbS6E,3596
1804
1789
  mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=bX2j3xxBq0zFwT5v2GLvtTiBuECBrAQI3g7NReoRUk4,14647
1805
- mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=ciOiEmSN3JalwN9_d-tfJLabD_5etBYIHavCnazI0x8,17333
1790
+ mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=0JIKwyG8zPlrm5sjplcJ3EyKCOL8rC4trBOXqz_yLL8,16930
1806
1791
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=76SO2G6tSqGzE64cnFWR9XtA8YXqf6rEjS24uRp_Nsk,5850
1807
1792
  mindsdb/interfaces/knowledge_base/preprocessing/text_splitter.py,sha256=sZKAaZ2cfJrGf1oX1rdeW6CEIsOEp31gIQ-d7sQGa5E,2824
1808
1793
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1809
1794
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1810
- mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
1795
+ mindsdb/interfaces/model/model_controller.py,sha256=ufJbyehqCGNmKBLmSxovhs0kU5OnI_3BiymJJGe6LpU,20261
1811
1796
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1812
- mindsdb/interfaces/query_context/context_controller.py,sha256=PlcF_-EmCIyfcv5czPtZRg0UTjbtSmEE3gBpswXY6l8,19495
1797
+ mindsdb/interfaces/query_context/context_controller.py,sha256=xXBNDDQxW8vvGUidyZgVJkLO47-xL7netRe017P3f4c,19950
1813
1798
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1814
1799
  mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
1815
1800
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1816
- mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1817
- mindsdb/interfaces/skills/skill_tool.py,sha256=U46lwKEccl0hfPRgN9NP_b1KkGTOew0EVqVAhFIQqQA,20683
1818
- mindsdb/interfaces/skills/skills_controller.py,sha256=Xg5E7tWKFw6Sznws2014WGzGg98k35MXZQ0yy6DqJPE,6747
1819
- mindsdb/interfaces/skills/sql_agent.py,sha256=RMisd1bxdOHdOY5tOzfJUT89dlyN-u8HFYMbpxGjUiE,26711
1801
+ mindsdb/interfaces/skills/retrieval_tool.py,sha256=cfwyUVDcKEP2rxQJzwKFN2ajKc4AUdIhie1NDcB0ZdA,8625
1802
+ mindsdb/interfaces/skills/skill_tool.py,sha256=icUN-m8ogMtptwkNaSfVKEuKV0JMd8t9bcQX2IH1WOI,20684
1803
+ mindsdb/interfaces/skills/skills_controller.py,sha256=1KULT0VaD9NYeeMfoAfjNbg2pPNH7q23HtjWYG3JK9o,6661
1804
+ mindsdb/interfaces/skills/sql_agent.py,sha256=lFdF4RLeV0rrTubJf2TsuiTuwNLPwie7_C26vLLrYac,27003
1820
1805
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1821
1806
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1822
1807
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=upkozOXGLirA0gNiHSz8VXzhJc4NHYkV65uP_kUsVyg,10061
1823
1808
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1824
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=Vpx-l6gvpH8Z1sNCUPNjs1n3KGxOWpOxcni6pTdykAU,12507
1809
+ mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=SE5NmS1PfQNGK_BbP3DpzrMdubq25gC5HjxeuPVW6OM,12342
1825
1810
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1826
- mindsdb/interfaces/storage/db.py,sha256=lTRMoucUIEHJKw6doSt50zlyWpZId_C5Xx88nrO7yus,29986
1827
- mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
1828
- mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1811
+ mindsdb/interfaces/storage/db.py,sha256=8HuJvhDSrk00gzw3ZNoFNUCGULutOfTX_2KAflwatGQ,30296
1812
+ mindsdb/interfaces/storage/fs.py,sha256=jKH64Ijmtm8lDBDmS-fo1mW7ZFILRW8IQlOi-1qNEug,20283
1813
+ mindsdb/interfaces/storage/json.py,sha256=L3l4bj_kBJt_XUg8Hc2UAFDwrVCh2Kw7xCY43Qnbxtw,5105
1829
1814
  mindsdb/interfaces/storage/model_fs.py,sha256=1RlVL53XNEZn-fPVSBOZjF2cBf2uMV83lEydzRPktq0,10988
1830
1815
  mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1831
- mindsdb/interfaces/tabs/tabs_controller.py,sha256=TZltOnr0DAjhrW2u-bzIVfjPHgh4bxdkitExr9sCNYE,8761
1816
+ mindsdb/interfaces/tabs/tabs_controller.py,sha256=Za747QLL24P31Vr-m65XgTRU3m3w4LeP-WjlXLU1ZrY,8523
1832
1817
  mindsdb/interfaces/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1833
1818
  mindsdb/interfaces/tasks/task.py,sha256=KQZ9rtD7mE6qeCtA14arMIP-gEnPzMBvIUvmGSzqTH8,401
1834
- mindsdb/interfaces/tasks/task_monitor.py,sha256=zGRUEUDM7b1A5oCUBYsotpYyEuyfFg7ns-remRSLnbY,4004
1835
- mindsdb/interfaces/tasks/task_thread.py,sha256=RJfPF8BUpwS95M-ytDyq35-1RUp2_Q4K3Vb08TYZCLg,1924
1819
+ mindsdb/interfaces/tasks/task_monitor.py,sha256=Z7aElzflNIex0Ga_BpjNSP8A9r7AsuaI_L4rpojHFEE,4004
1820
+ mindsdb/interfaces/tasks/task_thread.py,sha256=iM4cfIPwRUWoD9liFiRqIiSgnC13eVGFe9oacFSzQRs,1930
1836
1821
  mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1837
- mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
1838
- mindsdb/interfaces/triggers/triggers_controller.py,sha256=tmyaI9Pi-EUkaoN5jtRc0aGa_OgDfRRuag0-7mz-VgU,5523
1822
+ mindsdb/interfaces/triggers/trigger_task.py,sha256=sOwmtn8P2FzNys1vzFb3ldTtHwtJu4dr63deuskEB_k,2858
1823
+ mindsdb/interfaces/triggers/triggers_controller.py,sha256=abmdqq4pW6UXl9kyQM_u8ki5c_ShCLvT8FbZmnmtWgw,5569
1839
1824
  mindsdb/interfaces/variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1840
1825
  mindsdb/interfaces/variables/variables_controller.py,sha256=Js7VjA6vU9LUE0OUrHNLdZohoq7tGN0y9O40yJq3f3M,2905
1841
1826
  mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1844,7 +1829,7 @@ mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
1844
1829
  mindsdb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1845
1830
  mindsdb/migrations/alembic.ini,sha256=NdEIqmmxo5mIPQYbimTMVJ3VRay5BBs0PM1XsaAr1Gw,2193
1846
1831
  mindsdb/migrations/env.py,sha256=VXDrz2X6xecnWAbpUECoKiq3XCRRfuMfKx66VaVT7a8,2091
1847
- mindsdb/migrations/migrate.py,sha256=VA0hVz_PaV1VFn5gQ4NZofLHJD8gJyaI4snrHvG0IpY,2989
1832
+ mindsdb/migrations/migrate.py,sha256=gewa4JCeWXFdr1zdYbmaSxsWrM7v0gJPEm4E6lExs38,3022
1848
1833
  mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py,sha256=SdJFsF-awdH0vvyJ_cku-QggiSZAn0x1PHNF_3YgMFk,5871
1849
1834
  mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py,sha256=VKgouePcADnmsp-AyxILjOhPVTvIZccorsH_UJN0V7E,1050
1850
1835
  mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py,sha256=ZBqlmRK3mqvLtzFaA1AqF-rlXCPyc45wG3l1S1COs5A,10817
@@ -1909,32 +1894,33 @@ mindsdb/migrations/versions/2025-05-28_a44643042fe8_added_data_catalog_tables.py
1909
1894
  mindsdb/migrations/versions/2025-06-09_608e376c19a7_updated_data_catalog_data_types.py,sha256=HZUPWs0MWLLPCMYQKV8bIS5jOGjnw3hvbqN7pSm3OtY,1605
1910
1895
  mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1911
1896
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1897
+ mindsdb/utilities/api_status.py,sha256=Z_3BLKZuglP0Horvle-oSiIaxp4TyS0z2k_zYXoHdU8,1714
1912
1898
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1913
1899
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1914
- mindsdb/utilities/config.py,sha256=co1oYPyFOniPZYIptlGKEGvrIdFr882zkVwICIvUxPs,21096
1900
+ mindsdb/utilities/config.py,sha256=VJcaoLxJMrWCLHSu9_mN50VQ-V5XvEL3u6QmRZepqb4,24416
1915
1901
  mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1916
1902
  mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
1917
- mindsdb/utilities/exception.py,sha256=Y0-aO54_EQeebBuvR0105qITJc_Jq6bQ5QszmmKmUpE,2688
1918
- mindsdb/utilities/fs.py,sha256=qCf15vAu7SYMKfP2Vw-334U0DDLv_pJEQAO4AeZYHHQ,5735
1903
+ mindsdb/utilities/exception.py,sha256=g7gJ_nGneDHD-waCjr_YrTjYidQvbkGgwY2q05GQAsc,3705
1904
+ mindsdb/utilities/fs.py,sha256=mrVg4V39F-YcPE_YzIdRj0Kl-f5nP2mnG0a322tF8Vo,5734
1919
1905
  mindsdb/utilities/functions.py,sha256=FkLSSge3EYzG-ow6uExQ6GTMfPYeh8NBWRTf6JTuIy8,6366
1920
- mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
1921
- mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY,9528
1922
- mindsdb/utilities/log.py,sha256=MuO-S5eYPep74jwJj1AfmWT0hOeX5vmd5TOtI0E___4,4948
1906
+ mindsdb/utilities/json_encoder.py,sha256=iUsJFPFjUHxrlneMGVmChd6koO-6hqG_ku_FPLuT6Vw,1334
1907
+ mindsdb/utilities/langfuse.py,sha256=Is9JpIACo0JQhZDI_-xtWbHyHxW7MDCCspHxPEFLwbY,9204
1908
+ mindsdb/utilities/log.py,sha256=yHIz19YYg077wAnuR_4PkVWd6Ja2acoQaFZXDKEYuA0,17225
1923
1909
  mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
1924
1910
  mindsdb/utilities/ps.py,sha256=6JqJoAMXqPo7rG0BkImF6szghcANx-Xt_4SRYFZ3rUU,2347
1925
1911
  mindsdb/utilities/security.py,sha256=Jcd6v1UKRr4HY7SRkYdvF9zSjcqeKRO10f295XVZNAA,3017
1926
1912
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1927
1913
  mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
1928
- mindsdb/utilities/starters.py,sha256=ujkIkwejezlZMfnw545TdQ2a-PidNfVAe2P6SvGzx5c,1517
1929
- mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
1914
+ mindsdb/utilities/starters.py,sha256=XZskEoKllYbO40e5yVMcKFAOU4kVlyepqkigJfdhkF0,1307
1915
+ mindsdb/utilities/utils.py,sha256=RQC82-WUwlqSMY9M34Pb6a0LSTQrHY__ngLC0FkZZgo,1096
1930
1916
  mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
1931
1917
  mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
1932
- mindsdb/utilities/hooks/profiling.py,sha256=rku6YqVRv1cL0V62aZEw3dzrv5WQcFkoOut_93YHr2Q,2262
1918
+ mindsdb/utilities/hooks/profiling.py,sha256=CDtStkRDZ3hsZ53SVWYSFknsfoKERN8CqN9_XtEjNYM,2329
1933
1919
  mindsdb/utilities/ml_task_queue/__init__.py,sha256=fwDJ5M5cmXQNjNLBUq-sChjahZ9mjYVL4gAU6VoKQA0,2810
1934
1920
  mindsdb/utilities/ml_task_queue/base.py,sha256=eHOUIi9R9GnAt9Xjuip2VMxiroMFgFshhs7cW9hoS2U,453
1935
1921
  mindsdb/utilities/ml_task_queue/const.py,sha256=o-WWuREP7sXsjTo5Ok1awEtrE6KTB51ZzGfSMuDZUV4,607
1936
- mindsdb/utilities/ml_task_queue/consumer.py,sha256=jYORLKMdWKYGUgIIRcnY-RSI3JSA2nmXeC_68OvQwco,9569
1937
- mindsdb/utilities/ml_task_queue/producer.py,sha256=x0s1_xcqtUaT5Og0TdErgWmN1Jp236byzvd2N2HMO34,2764
1922
+ mindsdb/utilities/ml_task_queue/consumer.py,sha256=jYxyLTLd4tzFF2kZ1RUIvfpCYg11UsidlFTr3eE2JKM,9405
1923
+ mindsdb/utilities/ml_task_queue/producer.py,sha256=AyWsyflU0N0sYjNwXmogRxtnTmzS3wu3O_EfS_bZD44,2701
1938
1924
  mindsdb/utilities/ml_task_queue/task.py,sha256=jEYVU-tuvNOUaaIaVd9M2dfNCldQL1hqcGo3MfpYmG4,3100
1939
1925
  mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
1940
1926
  mindsdb/utilities/otel/__init__.py,sha256=XjZOMBZxyU6mK-NSb8fdrJcxlByVI8Qf6WZuqGy3Lm8,838
@@ -1946,9 +1932,9 @@ mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=4YH6YwclsYLjBPBM-e9OAf
1946
1932
  mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
1947
1933
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1948
1934
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1949
- mindsdb/utilities/render/sqlalchemy_render.py,sha256=UlbdCqlloK7vXJ5Wk_g-t631-UO1FKGuwi1SgDmkSyI,31193
1950
- mindsdb-25.9.2.0a1.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1951
- mindsdb-25.9.2.0a1.dist-info/METADATA,sha256=pUxQk7RFTx2n9nE6-CfyA6lWnrne8mcIjmObQxOhQgU,44484
1952
- mindsdb-25.9.2.0a1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1953
- mindsdb-25.9.2.0a1.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1954
- mindsdb-25.9.2.0a1.dist-info/RECORD,,
1935
+ mindsdb/utilities/render/sqlalchemy_render.py,sha256=fPpZicT18_9EgM2K66OTyftbERVNn66ePiJdFX8bPYg,31315
1936
+ mindsdb-25.10.0rc1.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1937
+ mindsdb-25.10.0rc1.dist-info/METADATA,sha256=aZZgd3h7nOT18zfFB6hv_KMdfHXMF5MoMUtJDFCrmtQ,45432
1938
+ mindsdb-25.10.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1939
+ mindsdb-25.10.0rc1.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1940
+ mindsdb-25.10.0rc1.dist-info/RECORD,,