MindsDB 25.9.2.0a1__py3-none-any.whl → 25.9.3rc1__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 (116) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/__main__.py +39 -20
  3. mindsdb/api/a2a/agent.py +7 -9
  4. mindsdb/api/a2a/common/server/server.py +3 -3
  5. mindsdb/api/a2a/common/server/task_manager.py +4 -4
  6. mindsdb/api/a2a/task_manager.py +15 -17
  7. mindsdb/api/common/middleware.py +9 -11
  8. mindsdb/api/executor/command_executor.py +2 -4
  9. mindsdb/api/executor/datahub/datanodes/datanode.py +2 -2
  10. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +100 -48
  11. mindsdb/api/executor/datahub/datanodes/project_datanode.py +8 -4
  12. mindsdb/api/executor/datahub/datanodes/system_tables.py +1 -1
  13. mindsdb/api/executor/exceptions.py +29 -10
  14. mindsdb/api/executor/planner/plan_join.py +17 -3
  15. mindsdb/api/executor/sql_query/sql_query.py +74 -74
  16. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +1 -2
  17. mindsdb/api/executor/sql_query/steps/subselect_step.py +0 -1
  18. mindsdb/api/executor/utilities/functions.py +6 -6
  19. mindsdb/api/executor/utilities/sql.py +32 -16
  20. mindsdb/api/http/gui.py +5 -11
  21. mindsdb/api/http/initialize.py +8 -10
  22. mindsdb/api/http/namespaces/agents.py +10 -12
  23. mindsdb/api/http/namespaces/analysis.py +13 -20
  24. mindsdb/api/http/namespaces/auth.py +1 -1
  25. mindsdb/api/http/namespaces/config.py +15 -11
  26. mindsdb/api/http/namespaces/databases.py +140 -201
  27. mindsdb/api/http/namespaces/file.py +15 -4
  28. mindsdb/api/http/namespaces/handlers.py +7 -2
  29. mindsdb/api/http/namespaces/knowledge_bases.py +8 -7
  30. mindsdb/api/http/namespaces/models.py +94 -126
  31. mindsdb/api/http/namespaces/projects.py +13 -22
  32. mindsdb/api/http/namespaces/sql.py +33 -25
  33. mindsdb/api/http/namespaces/tab.py +27 -37
  34. mindsdb/api/http/namespaces/views.py +1 -1
  35. mindsdb/api/http/start.py +14 -8
  36. mindsdb/api/mcp/__init__.py +2 -1
  37. mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +15 -20
  38. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +26 -50
  39. mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +0 -1
  40. mindsdb/api/postgres/postgres_proxy/executor/executor.py +6 -13
  41. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +40 -28
  42. mindsdb/integrations/handlers/byom_handler/byom_handler.py +168 -185
  43. mindsdb/integrations/handlers/file_handler/file_handler.py +7 -0
  44. mindsdb/integrations/handlers/lightwood_handler/functions.py +45 -79
  45. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +13 -1
  46. mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +25 -12
  47. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +2 -1
  48. mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
  49. mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
  50. mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +4 -4
  51. mindsdb/integrations/libs/api_handler.py +10 -10
  52. mindsdb/integrations/libs/base.py +4 -4
  53. mindsdb/integrations/libs/llm/utils.py +2 -2
  54. mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +4 -7
  55. mindsdb/integrations/libs/ml_handler_process/func_call_process.py +2 -7
  56. mindsdb/integrations/libs/ml_handler_process/learn_process.py +37 -47
  57. mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +4 -7
  58. mindsdb/integrations/libs/ml_handler_process/update_process.py +2 -7
  59. mindsdb/integrations/libs/process_cache.py +132 -140
  60. mindsdb/integrations/libs/response.py +18 -12
  61. mindsdb/integrations/libs/vectordatabase_handler.py +26 -0
  62. mindsdb/integrations/utilities/files/file_reader.py +6 -7
  63. mindsdb/integrations/utilities/rag/config_loader.py +37 -26
  64. mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +59 -9
  65. mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +4 -4
  66. mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +55 -133
  67. mindsdb/integrations/utilities/rag/settings.py +58 -133
  68. mindsdb/integrations/utilities/rag/splitters/file_splitter.py +5 -15
  69. mindsdb/interfaces/agents/agents_controller.py +2 -1
  70. mindsdb/interfaces/agents/constants.py +0 -2
  71. mindsdb/interfaces/agents/litellm_server.py +34 -58
  72. mindsdb/interfaces/agents/mcp_client_agent.py +10 -10
  73. mindsdb/interfaces/agents/mindsdb_database_agent.py +5 -5
  74. mindsdb/interfaces/agents/run_mcp_agent.py +12 -21
  75. mindsdb/interfaces/chatbot/chatbot_task.py +20 -23
  76. mindsdb/interfaces/chatbot/polling.py +30 -18
  77. mindsdb/interfaces/data_catalog/data_catalog_loader.py +10 -10
  78. mindsdb/interfaces/database/integrations.py +19 -2
  79. mindsdb/interfaces/file/file_controller.py +6 -6
  80. mindsdb/interfaces/functions/controller.py +1 -1
  81. mindsdb/interfaces/functions/to_markdown.py +2 -2
  82. mindsdb/interfaces/jobs/jobs_controller.py +5 -5
  83. mindsdb/interfaces/jobs/scheduler.py +3 -8
  84. mindsdb/interfaces/knowledge_base/controller.py +50 -23
  85. mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +40 -61
  86. mindsdb/interfaces/model/model_controller.py +170 -166
  87. mindsdb/interfaces/query_context/context_controller.py +14 -2
  88. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +6 -4
  89. mindsdb/interfaces/skills/retrieval_tool.py +43 -50
  90. mindsdb/interfaces/skills/skill_tool.py +2 -2
  91. mindsdb/interfaces/skills/sql_agent.py +25 -19
  92. mindsdb/interfaces/storage/fs.py +114 -169
  93. mindsdb/interfaces/storage/json.py +19 -18
  94. mindsdb/interfaces/tabs/tabs_controller.py +49 -72
  95. mindsdb/interfaces/tasks/task_monitor.py +3 -9
  96. mindsdb/interfaces/tasks/task_thread.py +7 -9
  97. mindsdb/interfaces/triggers/trigger_task.py +7 -13
  98. mindsdb/interfaces/triggers/triggers_controller.py +47 -50
  99. mindsdb/migrations/migrate.py +16 -16
  100. mindsdb/utilities/api_status.py +58 -0
  101. mindsdb/utilities/config.py +49 -0
  102. mindsdb/utilities/exception.py +40 -1
  103. mindsdb/utilities/fs.py +0 -1
  104. mindsdb/utilities/hooks/profiling.py +17 -14
  105. mindsdb/utilities/langfuse.py +40 -45
  106. mindsdb/utilities/log.py +272 -0
  107. mindsdb/utilities/ml_task_queue/consumer.py +52 -58
  108. mindsdb/utilities/ml_task_queue/producer.py +26 -30
  109. mindsdb/utilities/render/sqlalchemy_render.py +7 -6
  110. mindsdb/utilities/utils.py +2 -2
  111. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.9.3rc1.dist-info}/METADATA +269 -264
  112. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.9.3rc1.dist-info}/RECORD +115 -115
  113. mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -14
  114. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.9.3rc1.dist-info}/WHEEL +0 -0
  115. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.9.3rc1.dist-info}/licenses/LICENSE +0 -0
  116. {mindsdb-25.9.2.0a1.dist-info → mindsdb-25.9.3rc1.dist-info}/top_level.txt +0 -0
@@ -1,23 +1,23 @@
1
- mindsdb/__about__.py,sha256=GtZWjMAKqdOUBRwhR1dnKP4DsBfRG12tLOS_84HkiiE,458
1
+ mindsdb/__about__.py,sha256=Pc_zOjgxg4v5CQKDmQF9ZQzA4kAMcfdFXotxgLlBNpo,457
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
- mindsdb/__main__.py,sha256=qFh7Ls83V0dK2LOYJdTFQFNnu0qr6sbRPFnqER8ZHUw,21817
3
+ mindsdb/__main__.py,sha256=mpQrZwu_VTNCJ9EWmJhsDulfe-ZEUxd_FdDsWN510PY,22382
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  mindsdb/api/a2a/__init__.py,sha256=JYp8GBtJbMNq6475AwsMzugkrlw3E754qQ8D6uHf7Is,1704
6
- mindsdb/api/a2a/agent.py,sha256=iVHNP4ZjJKKnKCGYxcX169tzbZAr6gIpYlmZAewthOU,6651
6
+ mindsdb/api/a2a/agent.py,sha256=TCo5kSmO2t7KKzC5gMChUBfhrTM_uSeZq6bZIrxCPp4,6600
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=8hexhgR1TclLPldT6I9tdBA5SDzuYiB9PK0QZzZQ2fg,20394
9
9
  mindsdb/api/a2a/utils.py,sha256=UesCEra9n7rVsksayeknmhiynmHlb8zg4BddFQYo6m8,3199
10
10
  mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  mindsdb/api/a2a/common/types.py,sha256=uBhFzipgIJ9VYbfYElsYdCWmjftd_QPRt5qnj8RSJ-o,8816
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=L4DxVWN-FaWFEFzcEcup1_TorzsqgHimWq6dvFGJPRA,6829
14
+ mindsdb/api/a2a/common/server/task_manager.py,sha256=NECA51G8n8Q7GPjcB7NsxftVcMJH4-HTeFfTTr3brho,10080
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=4H0gLlCx7G9N3zrxdOBru_BR7gR3MVpoc62YjDI3FZE,3511
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=P62Z_-OdrW8AfbWDnUY16H6ZB_18cDt3M_YCc2LFp3Q,85148
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,15 +28,15 @@ 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
31
+ mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=bONVqvyx4BXzMfwx1VGVTcB8YNn-2CtCYPfOiLFn_l4,575
32
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
33
+ mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=ux1VQBJFtwsCDCRY7H_ra01UlAlEwl9Z3DfhjKX6l_Y,13055
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=FltjEMyL7-QSjtUfjYEZlyxAjrgIadqcsBme1XLem9g,27509
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
@@ -47,12 +47,12 @@ mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIg
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=WcQz1t63MsFuo7HcK4gx2IeDN4AlJe3gIQJfMS2fHVo,10166
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=EWlWc5yrLsEnKJC5uWHtbh_-MtwTXWogzM_iAlLKkfU,16237
74
+ mindsdb/api/http/start.py,sha256=cYwojnr5Saau2Ekoi2N-9ZwYgpwJXF4ENt8vIu3C4UA,1707
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
77
+ mindsdb/api/http/namespaces/agents.py,sha256=gBvWW0F51hG4HFqxTja-zE5MOgnrSc50OpN465NhExk,17733
78
+ mindsdb/api/http/namespaces/analysis.py,sha256=OH-VjUQ0lYE0f0uc-gZGljMwpolXEKP9D8ZxmnA5a2c,4236
79
+ mindsdb/api/http/namespaces/auth.py,sha256=rAgoV0Ejw9m8hPt5vNi2LqvWB0UsbFwkJn0oC3sYADc,5326
80
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
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=UtcXALmBTk4b4XBysD7Rt8SIj1VEyHbSgOn5ZrccYcI,8584
85
+ mindsdb/api/http/namespaces/handlers.py,sha256=fLXhFq2wpQCpnDtAXQrvT8cyfaTaxjxmxH19MTSFRjs,8091
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=FrWBmkdIgofvXqFaq_IFOhsABklPoXZP93A8uDYcyv4,16700
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=tGTPeqqpcDk7kPqhmAWhFL2uUKpvqhcMSUCQiiDFfcA,6145
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,29 +145,28 @@ 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
154
+ mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
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
157
156
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
158
157
  mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
158
  mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
160
159
  mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
160
  mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=oZhjbk6NYbjfP-z48jGqOWtNbYIKhcxviBz5DFHmqPU,19102
162
161
  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
162
+ mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=taGbh13rn4J76JyQsIz8gHh-4080hcv-C3pM-nQhUiI,6375
164
163
  mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
164
  mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
166
165
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
167
166
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py,sha256=YzwqqOdkSqdWp_E_IY-UIkPpv0SakABZ7EsUdYtKFKo,1093
168
167
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256=LB1zEgsI0U_9rLdwVED0VQRz7AWR1EuCLDsR-WF1CTw,40739
169
168
  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
169
+ mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py,sha256=DsggIZ6N8YB8f3XnoUP5u0z57Kr4n-n6YJ66Z8z9u90,8520
171
170
  mindsdb/api/postgres/postgres_proxy/utilities/__init__.py,sha256=3RdLBT2FuJ1jzjysirDmfzQ0ocRcrhKONrJw2XQB2PQ,259
172
171
  mindsdb/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
172
  mindsdb/integrations/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -295,7 +294,7 @@ mindsdb/integrations/handlers/box_handler/icon.svg,sha256=LhDX_Yikte5esxe9qOtHNn
295
294
  mindsdb/integrations/handlers/box_handler/requirements.txt,sha256=FQc6GqJL5eYYA9-oPcRQbmJR0HrSmnSz-5Q82yiR2sE,11
296
295
  mindsdb/integrations/handlers/byom_handler/__about__.py,sha256=5MMwfPjVWxerbcXI564QKIUaYW43COokSWU8KBBlOEg,330
297
296
  mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=vp4o5UA9txxJSa9RLE8UwioAR5yFOnnZHtxHX5XuBag,502
298
- mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=uI-UN2XLx7jAx7PxqOO_vlWcluUpPJJ4GEYZ5jP9jno,24818
297
+ mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=co2nOr8auRO4UW_glfo5_GJO5mr-CBBD0uGVXquaOyQ,24615
299
298
  mindsdb/integrations/handlers/byom_handler/connection_args.py,sha256=chqPtpiEBtko8kxS15ImkZ6Q3kuhv7vwOzV3JeyU4cU,522
300
299
  mindsdb/integrations/handlers/byom_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
301
300
  mindsdb/integrations/handlers/byom_handler/proc_wrapper.py,sha256=GqOB8Zw4-SYsn4lu3tkYORaNfgM4bm0HMDPyOJtErKk,5644
@@ -570,7 +569,7 @@ mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py,sha256=47DEQpj8H
570
569
  mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py,sha256=JrgVIq6jucZjUCr8FpbC9ByJ3WdZGppZKHdovvFbNiw,1151
571
570
  mindsdb/integrations/handlers/file_handler/__about__.py,sha256=UavP5jJ_xWIaJ0oRsEANLulczZ0craaUb3XLfCSBmEc,331
572
571
  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
572
+ mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=wBqa3ASt7me6A4KhXvCk6w3iHZ4chKWhzYyXYjUR25Y,7888
574
573
  mindsdb/integrations/handlers/file_handler/icon.svg,sha256=hsXEvUzrO7WQMOPC83LYQt-FW0wey9TCj5EwiIJwKwk,565
575
574
  mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
576
575
  mindsdb/integrations/handlers/file_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -867,7 +866,7 @@ mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=OfEJwXURVr
867
866
  mindsdb/integrations/handlers/lightfm_handler/settings.py,sha256=0iwjsbfzYwBsCizVymXn-vwhOYrES7Hm0MEmiviGP4I,143
868
867
  mindsdb/integrations/handlers/lightwood_handler/__about__.py,sha256=9SiT20BQuKEgzGSxhDunieyX33S5XS0cst9MxDfw-1o,345
869
868
  mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfef9lCHd7293J6GEEZRXLP5Jp07KkvOc,504
870
- mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=p3FXxafjrwa2Af6xkMO3MCOVLWxZEWfAmEu1sx0qIb8,9056
869
+ mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=7CFATTis0v-krgOWWEz66bCYC8Y58_rniwILcYJEZcM,8727
871
870
  mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
872
871
  mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=UuN1FUZrB292qZjGriQEbPly7vGBd8S-7DVNjqZAWRA,23596
873
872
  mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=3bM6rmtQbFQHZ8axgGlJt7Y_LXNfdXY3zc15JJ_UpwQ,91
@@ -1206,7 +1205,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
1206
1205
  mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
1207
1206
  mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
1208
1207
  mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
1209
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=4wl81ZUMYsf4fKKPsx8lRh8eU1z2x7X9f7gHsUV35p8,28810
1208
+ mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=gjv_N3tZ6qv8SJhUArnDjL5iG_gkiQQCd-KOA3QCGGU,29651
1210
1209
  mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1211
1210
  mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
1212
1211
  mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
@@ -1358,7 +1357,7 @@ mindsdb/integrations/handlers/shopify_handler/__about__.py,sha256=w70w9xG4laoJ6f
1358
1357
  mindsdb/integrations/handlers/shopify_handler/__init__.py,sha256=VeIeMd6vofxyaAkLPX6X63Ye0of6s768mZ7gLvXrQ_8,511
1359
1358
  mindsdb/integrations/handlers/shopify_handler/icon.svg,sha256=-htxdS5C7rsXqiY3H0Y5LVhvHG_cb8Iw7MuJc8Ra2Qo,2452
1360
1359
  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
1360
+ mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=7yeClveNQBtqH8TItrynqmbOqXr3E2It_s3KIh04_Hg,4971
1362
1361
  mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=eFxuR6PUx772Oc_LCgDOiDYjBhwS6fcDwiLgOFBhbnM,38545
1363
1362
  mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=_15qBORkD-oCNaAG43vfOz-8UokwaQlTJMkVPVphWtU,351
1364
1363
  mindsdb/integrations/handlers/singlestore_handler/__init__.py,sha256=MSAEudTZyL-23T9amF0pU1wJjLYkn34VqJHtOYT1C1A,501
@@ -1381,7 +1380,7 @@ mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DI
1381
1380
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1382
1381
  mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
1383
1382
  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
1383
+ mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=sU6kBXzJmTO1XnDz4qEL-m9NMumVEDFOql5HK1BuvIk,30654
1385
1384
  mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
1386
1385
  mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
1387
1386
  mindsdb/integrations/handlers/solace_handler/icon.svg,sha256=rzGNiCdLWu9OJ3j8ilXrOTwRupMp3n3RQrfm2D_Nx5A,152
@@ -1437,8 +1436,8 @@ mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,
1437
1436
  mindsdb/integrations/handlers/statsforecast_handler/__about__.py,sha256=1X1F2LyKSugvGa7VZco3R4fDZTM1ED3Ku-ys2evcczY,374
1438
1437
  mindsdb/integrations/handlers/statsforecast_handler/__init__.py,sha256=LYYrtDMAW5aFPLPyIp-rOxO2O6izWi7pNtQGAsRmmdY,516
1439
1438
  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
1439
+ mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=HYgxhMnqNx1Zm3cnXn1aZ2KVfnXAmsh1Zf-lRG9IwGI,60
1440
+ mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=HYgxhMnqNx1Zm3cnXn1aZ2KVfnXAmsh1Zf-lRG9IwGI,60
1442
1441
  mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=jPo3yj5nuxi6WP8xrEFx4lI1pGJbKQs-uHJLtBrLz_k,8408
1443
1442
  mindsdb/integrations/handlers/strapi_handler/__about__.py,sha256=pCZCrsIQ2_9QSAfpIY8se9QDvIE2kP9_a5N0DnRMO6k,344
1444
1443
  mindsdb/integrations/handlers/strapi_handler/__init__.py,sha256=TnZspPGgLSMgWxJkY0oUd6EiPl16Xo7spn0Oswok8-o,529
@@ -1597,7 +1596,7 @@ mindsdb/integrations/handlers/web_handler/__about__.py,sha256=CxQc3_pLSKuz1AnBj6
1597
1596
  mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE3B900gkZLuQ8QWQEvYFbTUkE,504
1598
1597
  mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
1599
1598
  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
1599
+ mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=Z_-8_mv5teYRIMupcTiw9OuDJgwn1g26HtInrmODIWQ,11634
1601
1600
  mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=A5O74YqhNR2x2St0lDMkQyhyl0MbKAmcz5GsckOFhSs,3684
1602
1601
  mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
1603
1602
  mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
@@ -1661,31 +1660,31 @@ mindsdb/integrations/handlers/zotero_handler/requirements.txt,sha256=uRY96N9ioKv
1661
1660
  mindsdb/integrations/handlers/zotero_handler/zotero_handler.py,sha256=CVmTS9Cqj85xWt1RWR8BKJDh9h-dUYLXWIkYHI5ncfk,3575
1662
1661
  mindsdb/integrations/handlers/zotero_handler/zotero_tables.py,sha256=5uTXP3fYAQ6rKgWKKVRc2x0Pn1u4rNMZUHm01ewC9RA,4861
1663
1662
  mindsdb/integrations/libs/__init__.py,sha256=uEz-XQLAwY2nMXc5ilEPP6cWWfo5HpO8o8UfV8JELS0,99
1664
- mindsdb/integrations/libs/api_handler.py,sha256=-Zn0rdVA1gvHms0k2ZDzuifPmKOnlNy8qab3t1lkdho,25359
1663
+ mindsdb/integrations/libs/api_handler.py,sha256=yo85p4wfiy7FiQKvwuOtUmYnfPfI8VH8P4F4-QpSmCY,25334
1665
1664
  mindsdb/integrations/libs/api_handler_exceptions.py,sha256=mw83eTmo9knpVHP1ISnudonZcBMI_Xzr77b1wXN-eu8,236
1666
1665
  mindsdb/integrations/libs/api_handler_generator.py,sha256=qQs12fr31g0XvMjTInopNfKiPj7pKfyuNhqqX0tCgGo,19304
1667
- mindsdb/integrations/libs/base.py,sha256=S5eELL3VZZx-qUgHVDB6LC4i82EXV2XJlh3-Vnfktnw,21053
1666
+ mindsdb/integrations/libs/base.py,sha256=R0ygtzWN0juhXwal8JMJnWao7sceiFMFzZwlRwtrUMU,21043
1668
1667
  mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4SexxR8c,407
1669
1668
  mindsdb/integrations/libs/keyword_search_base.py,sha256=U-O6AxIj8kZmnmoR3_RxO3RkZsydpsKUHjEy38mU6wk,1205
1670
1669
  mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
1671
- mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
1670
+ mindsdb/integrations/libs/process_cache.py,sha256=6Gahc9jM7Kf_Vv7mT2DRvpycCQ8cReRxzLGSBaNspwA,15828
1672
1671
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1673
- mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
1672
+ mindsdb/integrations/libs/response.py,sha256=TW6oh20LBmSjEBs-M5ClPoHZ4YDg5RjElHGPNNd_wCs,6393
1674
1673
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1675
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=tG30fazN9F4yc3Bx0FjABxmU63_GgL7Y102AxZevWKg,20843
1674
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=pyBzB6-dLzvSEo2E8XYV2DtVbmVPfPI69_KSnnH7KsU,21782
1676
1675
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1677
1676
  mindsdb/integrations/libs/llm/config.py,sha256=Bm25XFXcTfFwUYhGUzcM7qiYVbUFeuNVhgSHO109a98,5183
1678
- mindsdb/integrations/libs/llm/utils.py,sha256=UVwCa5HsW3osTsNa_d7_0uez4jcofjzvboXaE4h9A5o,25124
1677
+ mindsdb/integrations/libs/llm/utils.py,sha256=5nc3gAjrIqIlgfmjaq7vLGy6Zh6ARKnm5UuKrkSrpr4,25138
1679
1678
  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
1679
+ mindsdb/integrations/libs/ml_handler_process/create_engine_process.py,sha256=k98ktiznXPe64jA7tSb9TTCzOwZBcDAjrrhTnoMKe14,721
1681
1680
  mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256=-69NRhBGnNG0hgNi9O_W5LffIxPBUmuxy4bbQY2Z-_8,444
1682
1681
  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
1682
+ mindsdb/integrations/libs/ml_handler_process/func_call_process.py,sha256=n3GZc1j_MnNCSG1UVp5Mdr-44G6iVuMUkzN6YZpjYbs,631
1684
1683
  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
1684
+ mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=NFVg3zFCS6b9LB1bBD7-e_csAhgdHqkay0he-vwuQoM,7170
1686
1685
  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
1686
+ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=lm-ClgExgXFkvWGXz3Ti8NQ_y_N96nX9d5rBV8AQGSA,721
1687
+ mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=oiCnLcTSaFMNAAeq5yEQfF5ZZ76mq52whbdqxc4wq-E,687
1689
1688
  mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1690
1689
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1691
1690
  mindsdb/integrations/utilities/handler_utils.py,sha256=C1F3ATH4eb9qA4MismUoXdQgnoJ8nk2VjsTve1VrpfI,4271
@@ -1701,7 +1700,7 @@ mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-
1701
1700
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
1702
1701
  mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
1703
1702
  mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1704
- mindsdb/integrations/utilities/files/file_reader.py,sha256=p0a7XVjCToAmLqcI2LPBHSGN7VwYaSuHhT4f8VP0IhU,12423
1703
+ mindsdb/integrations/utilities/files/file_reader.py,sha256=aVor1zm2mE9iaDRwcZPO8NnV8Svzlm6VOZPMDTw7t3s,12415
1705
1704
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1706
1705
  mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1707
1706
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
@@ -1723,9 +1722,9 @@ mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.p
1723
1722
  mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py,sha256=EuDU24j8NDOJFlUh5PH23-2Am_ph2wojq6Wz2VSnWC8,72
1724
1723
  mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py,sha256=AWGzBulx0tlN8d5uVD2yGvujJHoT4ZVKybA_5y3JzTU,681
1725
1724
  mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1726
- mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
1725
+ mindsdb/integrations/utilities/rag/config_loader.py,sha256=rIWDEcfaAQNlcceQKM7mWabVbwLZKSrVSxZnjUwkaKY,3606
1727
1726
  mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=0RhyafFoQPl1aniRYcOu57aljfqKqj_p0cNb_bfOrc8,3742
1728
- mindsdb/integrations/utilities/rag/settings.py,sha256=wJ4aA6lciKmKN3kz8dad6dxmvqhHo2rzj97xgVlcB_c,33497
1727
+ mindsdb/integrations/utilities/rag/settings.py,sha256=oQrCHCOs9kP7Xy_VPdKUOHvoGs3LaEpeWy2Yr5yZW5I,33438
1729
1728
  mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
1730
1729
  mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
1731
1730
  mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1740,60 +1739,60 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_load
1740
1739
  mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1741
1740
  mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
1742
1741
  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
1742
+ mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=hinHDgtOeN1ZErBOK7ClEK2HPPsvdj99xzBrIuwWcws,17756
1743
+ mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=CpABoeVOYoD-vNx8ptMK6NgMVDmvHRkOzMpIcNIUqZE,3732
1745
1744
  mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
1746
1745
  mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
1747
1746
  mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoTWz6OlhRG-GzqdPPoAR6XyPtk,264
1748
1747
  mindsdb/integrations/utilities/rag/retrievers/multi_hop_retriever.py,sha256=wC2M3Vsgzs5Nu6uEuD4YQZZU9W8eW_bc7RrrqvN38mk,3319
1749
1748
  mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py,sha256=D9QzIRZWQ6LrT892twdgJj287_BlVEmXRQLYQegQuVA,4383
1750
1749
  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
1750
+ mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=CtDR8iaPwcGMgM7iNdjLM757tPmVTyNOTLuJtqMvsXU,34123
1752
1751
  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
1752
+ mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=LRbIfUg0iTyr2mEJjeya6qL2bMHtlfG5oJ5vjEB_cAE,5113
1754
1753
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1755
1754
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1756
- mindsdb/interfaces/agents/agents_controller.py,sha256=nTV6_RSsuK7WiJjHNHFJ_Wj3olyXJrRA6EXazuUXi-s,32203
1755
+ mindsdb/interfaces/agents/agents_controller.py,sha256=xps66SVIqs2yfR-HVvpfEn3MEGFK4sMFiVCVwQ9XuDo,32280
1757
1756
  mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
1758
- mindsdb/interfaces/agents/constants.py,sha256=WKzd_IA9vGXGSe6dQnCbQrDCgG9W8rdzqLEOLn0NxF0,9865
1757
+ mindsdb/interfaces/agents/constants.py,sha256=nMHosFmA7P3hvzpV_5Z2uAxVAJ-sw7Xz7EV5Un_lKtY,9819
1759
1758
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1760
1759
  mindsdb/interfaces/agents/langchain_agent.py,sha256=zvYIf4tZvTZ126nmSZXDFnfT1_GRcvHd_DlRuo2KcU8,34816
1761
1760
  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
1761
+ mindsdb/interfaces/agents/litellm_server.py,sha256=FuGcl7OxvjcNFzY5a7j1KOvdvpTH36Qaiheh30OkPf8,10919
1762
+ mindsdb/interfaces/agents/mcp_client_agent.py,sha256=KhHnniwlF5S0K9mFB09ZSqBFhCwF80W2tU_SCG0GjQo,9984
1764
1763
  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
1764
+ mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=-qevojKYf-5eZAZ28a_UgyucE35dAykGWXcGb-fhPNs,4723
1766
1765
  mindsdb/interfaces/agents/providers.py,sha256=r4zIyi1p16lwgmHdEKaubvmD3D-JqubpTilMhuxB9NE,743
1767
- mindsdb/interfaces/agents/run_mcp_agent.py,sha256=4ZXhIGBu3wVIZC9Ys6vTJDxGJzLXppLLqzbg1UFanS8,8689
1766
+ mindsdb/interfaces/agents/run_mcp_agent.py,sha256=2l2rzQQ3Qg8BCcGs6yLdTCcX6Tya-_lhlhQhgcUAjVI,8490
1768
1767
  mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
1769
1768
  mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1770
1769
  mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=nmJs8zotT88aab99FdPQLqaOSsqbqmHNpo9oK6nlBG0,14494
1771
1770
  mindsdb/interfaces/chatbot/chatbot_executor.py,sha256=3qU98MHBmUcsIWYqaNNJhoudUQWLPWlCB_di6iFaP1g,7742
1772
- mindsdb/interfaces/chatbot/chatbot_task.py,sha256=eKU-7FSygAzFq9lkHKLl5zlkiiQDGjzOX7oUb-rJNQo,7001
1771
+ mindsdb/interfaces/chatbot/chatbot_task.py,sha256=miCSjT5I5EC0X1QX5Fg6RMK2V2HoItGxSNGPQ6SnP6E,7011
1773
1772
  mindsdb/interfaces/chatbot/memory.py,sha256=tkqBiA5mMvkuGITCjUC_r0JuyUS2DbeARxJ_GryOZJQ,8346
1774
1773
  mindsdb/interfaces/chatbot/model_executor.py,sha256=qv8DRysWLbJwbv4TkQ-bsLmJOnDaDlMBw7jZ3s6-dzk,3598
1775
- mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augjRHxscn48,8109
1774
+ mindsdb/interfaces/chatbot/polling.py,sha256=QGbcz6RGxVslvzE0OH7fJ0XbYKuDQFDjvoLC0DnwxzU,8314
1776
1775
  mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
1777
1776
  mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1778
1777
  mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
1779
- mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=HPUfQZ3Gx8g4kzqAPajc7ju9eG5lBFwu3qOSGDBXn14,16175
1778
+ mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=Qj3ItF8stv2KP6fVzo-41Y6HJ8NzBDrs2bTSvju2tPk,16145
1780
1779
  mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=fUSLlpmHo8hrb9zjtwNXzbSAoWRBxUI34cYSaN9vObI,2186
1781
1780
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1782
1781
  mindsdb/interfaces/database/database.py,sha256=f8KWdPQyAQbFW9paJMK2Vni_ZKtsLcP7CeUXl9cIyAk,6769
1783
- mindsdb/interfaces/database/integrations.py,sha256=26mGJRlNZ4aSDWrTvvRfG81qaMnb8con9w9-ROP-8-w,37612
1782
+ mindsdb/interfaces/database/integrations.py,sha256=szZwNj5Ig2bLmEtq_TL_AMCoY7L0Njl2TpCQzZekgJ4,38444
1784
1783
  mindsdb/interfaces/database/log.py,sha256=ZpsEKKEtF32KjWRQ5rMtnHZTHqqJiffeaEcUDTx44cs,10305
1785
1784
  mindsdb/interfaces/database/projects.py,sha256=Dw5d_mdoGBmt9AYECW91LZb5Qm2Tg6k155d8yOKB0tM,22789
1786
1785
  mindsdb/interfaces/database/views.py,sha256=kDCYU7C5DISDEehIYYve55ZJcpKbG9bJ2DBhISDm-5E,5754
1787
1786
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1788
- mindsdb/interfaces/file/file_controller.py,sha256=vkxIdR12FLCZkAbwm-0_ZFK56q5bJciRqYwLK_0ooIM,8059
1787
+ mindsdb/interfaces/file/file_controller.py,sha256=rztvOD0ez-HvtYEt54pOrbi5MxN_wYMzm1xYJY7mOqU,8169
1789
1788
  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
1789
+ mindsdb/interfaces/functions/controller.py,sha256=EfbL_-5hSGn2rCjxxI7XmIU7MLj3rGBdopPc0vgnJ0s,7666
1790
+ mindsdb/interfaces/functions/to_markdown.py,sha256=US4wdYPZ0_19EZZ3LsJhmyaHdzgIHqHcD1W79O97R2Q,3913
1792
1791
  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
1792
+ mindsdb/interfaces/jobs/jobs_controller.py,sha256=EVIUFTwH_vrRxVN2rLGDLgqG7dw4XlVsBL5YA6ExQyE,18526
1793
+ mindsdb/interfaces/jobs/scheduler.py,sha256=b-kvWpiqCyNwMa4RuegGTcIXhGNUtRJbMFbd8L2tCHc,3719
1795
1794
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1796
- mindsdb/interfaces/knowledge_base/controller.py,sha256=wLwe5nO4ewK1HqcS_TOlvx3NRfKeXeBdSkcZ65y1ME8,58783
1795
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=Vlfc7dVqbFNKd3X-0EtM21d-6EGJ9cDRO3oQDR1-sMs,60061
1797
1796
  mindsdb/interfaces/knowledge_base/evaluate.py,sha256=ZXm_op5-n8beY42ikfgIxx9OKhr7P5Bqr9DkGmHaVtE,21574
1798
1797
  mindsdb/interfaces/knowledge_base/executor.py,sha256=WwMAYHThohojGPm3ANVYRj425UaKo024HL7mIUTzDoo,14037
1799
1798
  mindsdb/interfaces/knowledge_base/llm_client.py,sha256=pZQdoU8TTyMO1b7sa8-Ou4VRFDxR6974cyJkm0IeTIw,2844
@@ -1802,40 +1801,40 @@ mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-
1802
1801
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1803
1802
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=l_snHg8O6pLu4-TGTd5K3VgWVwlXa7mnLH_NaQdbS6E,3596
1804
1803
  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
1804
+ mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=0JIKwyG8zPlrm5sjplcJ3EyKCOL8rC4trBOXqz_yLL8,16930
1806
1805
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=76SO2G6tSqGzE64cnFWR9XtA8YXqf6rEjS24uRp_Nsk,5850
1807
1806
  mindsdb/interfaces/knowledge_base/preprocessing/text_splitter.py,sha256=sZKAaZ2cfJrGf1oX1rdeW6CEIsOEp31gIQ-d7sQGa5E,2824
1808
1807
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1809
1808
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1810
- mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
1809
+ mindsdb/interfaces/model/model_controller.py,sha256=C_UN6QSIpcvTc0572h9NQZ2k_KrAAUkqzMVQJDIYzPo,20242
1811
1810
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1812
- mindsdb/interfaces/query_context/context_controller.py,sha256=PlcF_-EmCIyfcv5czPtZRg0UTjbtSmEE3gBpswXY6l8,19495
1811
+ mindsdb/interfaces/query_context/context_controller.py,sha256=xXBNDDQxW8vvGUidyZgVJkLO47-xL7netRe017P3f4c,19950
1813
1812
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1814
1813
  mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
1815
1814
  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
1815
+ mindsdb/interfaces/skills/retrieval_tool.py,sha256=cfwyUVDcKEP2rxQJzwKFN2ajKc4AUdIhie1NDcB0ZdA,8625
1816
+ mindsdb/interfaces/skills/skill_tool.py,sha256=icUN-m8ogMtptwkNaSfVKEuKV0JMd8t9bcQX2IH1WOI,20684
1818
1817
  mindsdb/interfaces/skills/skills_controller.py,sha256=Xg5E7tWKFw6Sznws2014WGzGg98k35MXZQ0yy6DqJPE,6747
1819
- mindsdb/interfaces/skills/sql_agent.py,sha256=RMisd1bxdOHdOY5tOzfJUT89dlyN-u8HFYMbpxGjUiE,26711
1818
+ mindsdb/interfaces/skills/sql_agent.py,sha256=lFdF4RLeV0rrTubJf2TsuiTuwNLPwie7_C26vLLrYac,27003
1820
1819
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1821
1820
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1822
1821
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=upkozOXGLirA0gNiHSz8VXzhJc4NHYkV65uP_kUsVyg,10061
1823
1822
  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
1823
+ mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=dzTzBkWCO29xQwnIaBtAuIU-hgIQ_PYEzMIDwo1eTr8,12641
1825
1824
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1826
1825
  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
1826
+ mindsdb/interfaces/storage/fs.py,sha256=jKH64Ijmtm8lDBDmS-fo1mW7ZFILRW8IQlOi-1qNEug,20283
1827
+ mindsdb/interfaces/storage/json.py,sha256=L3l4bj_kBJt_XUg8Hc2UAFDwrVCh2Kw7xCY43Qnbxtw,5105
1829
1828
  mindsdb/interfaces/storage/model_fs.py,sha256=1RlVL53XNEZn-fPVSBOZjF2cBf2uMV83lEydzRPktq0,10988
1830
1829
  mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1831
- mindsdb/interfaces/tabs/tabs_controller.py,sha256=TZltOnr0DAjhrW2u-bzIVfjPHgh4bxdkitExr9sCNYE,8761
1830
+ mindsdb/interfaces/tabs/tabs_controller.py,sha256=Za747QLL24P31Vr-m65XgTRU3m3w4LeP-WjlXLU1ZrY,8523
1832
1831
  mindsdb/interfaces/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1833
1832
  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
1833
+ mindsdb/interfaces/tasks/task_monitor.py,sha256=Z7aElzflNIex0Ga_BpjNSP8A9r7AsuaI_L4rpojHFEE,4004
1834
+ mindsdb/interfaces/tasks/task_thread.py,sha256=iM4cfIPwRUWoD9liFiRqIiSgnC13eVGFe9oacFSzQRs,1930
1836
1835
  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
1836
+ mindsdb/interfaces/triggers/trigger_task.py,sha256=sOwmtn8P2FzNys1vzFb3ldTtHwtJu4dr63deuskEB_k,2858
1837
+ mindsdb/interfaces/triggers/triggers_controller.py,sha256=kUwSo9f6H6muD62BmDw8q2vyh2TYDYIGjd4-IOFqe-M,5606
1839
1838
  mindsdb/interfaces/variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1840
1839
  mindsdb/interfaces/variables/variables_controller.py,sha256=Js7VjA6vU9LUE0OUrHNLdZohoq7tGN0y9O40yJq3f3M,2905
1841
1840
  mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1844,7 +1843,7 @@ mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
1844
1843
  mindsdb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1845
1844
  mindsdb/migrations/alembic.ini,sha256=NdEIqmmxo5mIPQYbimTMVJ3VRay5BBs0PM1XsaAr1Gw,2193
1846
1845
  mindsdb/migrations/env.py,sha256=VXDrz2X6xecnWAbpUECoKiq3XCRRfuMfKx66VaVT7a8,2091
1847
- mindsdb/migrations/migrate.py,sha256=VA0hVz_PaV1VFn5gQ4NZofLHJD8gJyaI4snrHvG0IpY,2989
1846
+ mindsdb/migrations/migrate.py,sha256=gewa4JCeWXFdr1zdYbmaSxsWrM7v0gJPEm4E6lExs38,3022
1848
1847
  mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py,sha256=SdJFsF-awdH0vvyJ_cku-QggiSZAn0x1PHNF_3YgMFk,5871
1849
1848
  mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py,sha256=VKgouePcADnmsp-AyxILjOhPVTvIZccorsH_UJN0V7E,1050
1850
1849
  mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py,sha256=ZBqlmRK3mqvLtzFaA1AqF-rlXCPyc45wG3l1S1COs5A,10817
@@ -1909,32 +1908,33 @@ mindsdb/migrations/versions/2025-05-28_a44643042fe8_added_data_catalog_tables.py
1909
1908
  mindsdb/migrations/versions/2025-06-09_608e376c19a7_updated_data_catalog_data_types.py,sha256=HZUPWs0MWLLPCMYQKV8bIS5jOGjnw3hvbqN7pSm3OtY,1605
1910
1909
  mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1911
1910
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1911
+ mindsdb/utilities/api_status.py,sha256=Z_3BLKZuglP0Horvle-oSiIaxp4TyS0z2k_zYXoHdU8,1714
1912
1912
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1913
1913
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1914
- mindsdb/utilities/config.py,sha256=co1oYPyFOniPZYIptlGKEGvrIdFr882zkVwICIvUxPs,21096
1914
+ mindsdb/utilities/config.py,sha256=ueSNHOGVT3ap5ciEHEzZwZPolRNyAVFe4GEjC_BJKbs,23587
1915
1915
  mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1916
1916
  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
1917
+ mindsdb/utilities/exception.py,sha256=usGEmw1pKoG3AkQDpxEvGIjwLfb5Fyp6GilCXPOd-xE,3711
1918
+ mindsdb/utilities/fs.py,sha256=mrVg4V39F-YcPE_YzIdRj0Kl-f5nP2mnG0a322tF8Vo,5734
1919
1919
  mindsdb/utilities/functions.py,sha256=FkLSSge3EYzG-ow6uExQ6GTMfPYeh8NBWRTf6JTuIy8,6366
1920
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
1921
+ mindsdb/utilities/langfuse.py,sha256=Is9JpIACo0JQhZDI_-xtWbHyHxW7MDCCspHxPEFLwbY,9204
1922
+ mindsdb/utilities/log.py,sha256=yHIz19YYg077wAnuR_4PkVWd6Ja2acoQaFZXDKEYuA0,17225
1923
1923
  mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
1924
1924
  mindsdb/utilities/ps.py,sha256=6JqJoAMXqPo7rG0BkImF6szghcANx-Xt_4SRYFZ3rUU,2347
1925
1925
  mindsdb/utilities/security.py,sha256=Jcd6v1UKRr4HY7SRkYdvF9zSjcqeKRO10f295XVZNAA,3017
1926
1926
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1927
1927
  mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
1928
1928
  mindsdb/utilities/starters.py,sha256=ujkIkwejezlZMfnw545TdQ2a-PidNfVAe2P6SvGzx5c,1517
1929
- mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
1929
+ mindsdb/utilities/utils.py,sha256=RQC82-WUwlqSMY9M34Pb6a0LSTQrHY__ngLC0FkZZgo,1096
1930
1930
  mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
1931
1931
  mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
1932
- mindsdb/utilities/hooks/profiling.py,sha256=rku6YqVRv1cL0V62aZEw3dzrv5WQcFkoOut_93YHr2Q,2262
1932
+ mindsdb/utilities/hooks/profiling.py,sha256=CDtStkRDZ3hsZ53SVWYSFknsfoKERN8CqN9_XtEjNYM,2329
1933
1933
  mindsdb/utilities/ml_task_queue/__init__.py,sha256=fwDJ5M5cmXQNjNLBUq-sChjahZ9mjYVL4gAU6VoKQA0,2810
1934
1934
  mindsdb/utilities/ml_task_queue/base.py,sha256=eHOUIi9R9GnAt9Xjuip2VMxiroMFgFshhs7cW9hoS2U,453
1935
1935
  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
1936
+ mindsdb/utilities/ml_task_queue/consumer.py,sha256=jYxyLTLd4tzFF2kZ1RUIvfpCYg11UsidlFTr3eE2JKM,9405
1937
+ mindsdb/utilities/ml_task_queue/producer.py,sha256=AyWsyflU0N0sYjNwXmogRxtnTmzS3wu3O_EfS_bZD44,2701
1938
1938
  mindsdb/utilities/ml_task_queue/task.py,sha256=jEYVU-tuvNOUaaIaVd9M2dfNCldQL1hqcGo3MfpYmG4,3100
1939
1939
  mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
1940
1940
  mindsdb/utilities/otel/__init__.py,sha256=XjZOMBZxyU6mK-NSb8fdrJcxlByVI8Qf6WZuqGy3Lm8,838
@@ -1946,9 +1946,9 @@ mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=4YH6YwclsYLjBPBM-e9OAf
1946
1946
  mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
1947
1947
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1948
1948
  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,,
1949
+ mindsdb/utilities/render/sqlalchemy_render.py,sha256=rcvtAmpKo6s1Zxkr3o-5tAkuv1vNCkm981nCcQbzfA4,31294
1950
+ mindsdb-25.9.3rc1.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1951
+ mindsdb-25.9.3rc1.dist-info/METADATA,sha256=l1_czFY1EVSA2touIqqZSw_TbEoLfiNNIJbf5aafI_k,44797
1952
+ mindsdb-25.9.3rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1953
+ mindsdb-25.9.3rc1.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1954
+ mindsdb-25.9.3rc1.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- from mindsdb.api.mysql.mysql_proxy.libs.constants.mysql import ERR
2
-
3
-
4
- # base exception for known error
5
- class SqlApiException(Exception):
6
- err_code = ERR.ER_SYNTAX_ERROR
7
-
8
-
9
- class ErSqlSyntaxError(SqlApiException):
10
- err_code = ERR.ER_SYNTAX_ERROR
11
-
12
-
13
- class ErWrongCharset(SqlApiException):
14
- err_code = ERR.ER_UNKNOWN_CHARACTER_SET