MindsDB 25.7.3.0__py3-none-any.whl → 25.8.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (102) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/__main__.py +11 -1
  3. mindsdb/api/a2a/common/server/server.py +16 -6
  4. mindsdb/api/executor/command_executor.py +215 -150
  5. mindsdb/api/executor/datahub/datanodes/project_datanode.py +14 -3
  6. mindsdb/api/executor/planner/plan_join.py +3 -0
  7. mindsdb/api/executor/planner/plan_join_ts.py +117 -100
  8. mindsdb/api/executor/planner/query_planner.py +1 -0
  9. mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +54 -85
  10. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +21 -24
  11. mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py +9 -3
  12. mindsdb/api/executor/sql_query/steps/subselect_step.py +11 -8
  13. mindsdb/api/executor/utilities/mysql_to_duckdb_functions.py +264 -0
  14. mindsdb/api/executor/utilities/sql.py +30 -0
  15. mindsdb/api/http/initialize.py +18 -44
  16. mindsdb/api/http/namespaces/agents.py +23 -20
  17. mindsdb/api/http/namespaces/chatbots.py +83 -120
  18. mindsdb/api/http/namespaces/file.py +1 -1
  19. mindsdb/api/http/namespaces/jobs.py +38 -60
  20. mindsdb/api/http/namespaces/tree.py +69 -61
  21. mindsdb/api/http/namespaces/views.py +56 -72
  22. mindsdb/api/mcp/start.py +2 -0
  23. mindsdb/api/mysql/mysql_proxy/utilities/dump.py +3 -2
  24. mindsdb/integrations/handlers/autogluon_handler/requirements.txt +1 -1
  25. mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +1 -1
  26. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +25 -5
  27. mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +3 -3
  28. mindsdb/integrations/handlers/db2_handler/db2_handler.py +19 -23
  29. mindsdb/integrations/handlers/flaml_handler/requirements.txt +1 -1
  30. mindsdb/integrations/handlers/gong_handler/__about__.py +2 -0
  31. mindsdb/integrations/handlers/gong_handler/__init__.py +30 -0
  32. mindsdb/integrations/handlers/gong_handler/connection_args.py +37 -0
  33. mindsdb/integrations/handlers/gong_handler/gong_handler.py +164 -0
  34. mindsdb/integrations/handlers/gong_handler/gong_tables.py +508 -0
  35. mindsdb/integrations/handlers/gong_handler/icon.svg +25 -0
  36. mindsdb/integrations/handlers/gong_handler/test_gong_handler.py +125 -0
  37. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +82 -73
  38. mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -1
  39. mindsdb/integrations/handlers/huggingface_handler/__init__.py +8 -12
  40. mindsdb/integrations/handlers/huggingface_handler/finetune.py +203 -223
  41. mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +360 -383
  42. mindsdb/integrations/handlers/huggingface_handler/requirements.txt +7 -7
  43. mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +7 -7
  44. mindsdb/integrations/handlers/huggingface_handler/settings.py +25 -25
  45. mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +83 -77
  46. mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -4
  47. mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +5 -2
  48. mindsdb/integrations/handlers/litellm_handler/settings.py +2 -1
  49. mindsdb/integrations/handlers/openai_handler/constants.py +11 -30
  50. mindsdb/integrations/handlers/openai_handler/helpers.py +27 -34
  51. mindsdb/integrations/handlers/openai_handler/openai_handler.py +14 -12
  52. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +106 -90
  53. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +41 -39
  54. mindsdb/integrations/handlers/salesforce_handler/constants.py +215 -0
  55. mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +141 -80
  56. mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +0 -1
  57. mindsdb/integrations/handlers/tpot_handler/requirements.txt +1 -1
  58. mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +32 -17
  59. mindsdb/integrations/handlers/web_handler/web_handler.py +19 -22
  60. mindsdb/integrations/libs/llm/config.py +0 -14
  61. mindsdb/integrations/libs/llm/utils.py +0 -15
  62. mindsdb/integrations/libs/vectordatabase_handler.py +10 -1
  63. mindsdb/integrations/utilities/files/file_reader.py +5 -19
  64. mindsdb/integrations/utilities/handler_utils.py +32 -12
  65. mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +1 -1
  66. mindsdb/interfaces/agents/agents_controller.py +246 -149
  67. mindsdb/interfaces/agents/constants.py +0 -1
  68. mindsdb/interfaces/agents/langchain_agent.py +11 -6
  69. mindsdb/interfaces/data_catalog/data_catalog_loader.py +4 -4
  70. mindsdb/interfaces/database/database.py +38 -13
  71. mindsdb/interfaces/database/integrations.py +20 -5
  72. mindsdb/interfaces/database/projects.py +174 -23
  73. mindsdb/interfaces/database/views.py +86 -60
  74. mindsdb/interfaces/jobs/jobs_controller.py +103 -110
  75. mindsdb/interfaces/knowledge_base/controller.py +33 -6
  76. mindsdb/interfaces/knowledge_base/evaluate.py +2 -1
  77. mindsdb/interfaces/knowledge_base/executor.py +24 -0
  78. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +6 -10
  79. mindsdb/interfaces/knowledge_base/preprocessing/text_splitter.py +73 -0
  80. mindsdb/interfaces/query_context/context_controller.py +111 -145
  81. mindsdb/interfaces/skills/skills_controller.py +18 -6
  82. mindsdb/interfaces/storage/db.py +40 -6
  83. mindsdb/interfaces/variables/variables_controller.py +8 -15
  84. mindsdb/utilities/config.py +5 -3
  85. mindsdb/utilities/fs.py +54 -17
  86. mindsdb/utilities/functions.py +72 -60
  87. mindsdb/utilities/log.py +38 -6
  88. mindsdb/utilities/ps.py +7 -7
  89. {mindsdb-25.7.3.0.dist-info → mindsdb-25.8.2.0.dist-info}/METADATA +282 -268
  90. {mindsdb-25.7.3.0.dist-info → mindsdb-25.8.2.0.dist-info}/RECORD +94 -92
  91. mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +0 -9
  92. mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +0 -20
  93. mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +0 -290
  94. mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py +0 -14
  95. mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg +0 -4
  96. mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +0 -2
  97. mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py +0 -51
  98. mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py +0 -212
  99. /mindsdb/integrations/handlers/{anyscale_endpoints_handler/tests/__init__.py → gong_handler/requirements.txt} +0 -0
  100. {mindsdb-25.7.3.0.dist-info → mindsdb-25.8.2.0.dist-info}/WHEEL +0 -0
  101. {mindsdb-25.7.3.0.dist-info → mindsdb-25.8.2.0.dist-info}/licenses/LICENSE +0 -0
  102. {mindsdb-25.7.3.0.dist-info → mindsdb-25.8.2.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- mindsdb/__about__.py,sha256=LfpVkkDwrZs6tFScqaSMap79IPcQV7KWW3n4ztes77E,456
1
+ mindsdb/__about__.py,sha256=uSWxOQLze0dgqylIg9Zf-ueZGBiI4Xoe5ostZRR7SGU,456
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
- mindsdb/__main__.py,sha256=yFyIwXwPSsYsvylO8Sqo8Hpu_TJbI20Vwbaz8QEZQVk,23503
3
+ mindsdb/__main__.py,sha256=0hapnqEhebkgA93oYaBf6AOE6wutKXZymeMTqEBSuns,23785
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  mindsdb/api/a2a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  mindsdb/api/a2a/__main__.py,sha256=zrzTzt9zgN38NImInrmxCsdr66urJNS0JOq0xJaKHac,4712
@@ -12,13 +12,13 @@ mindsdb/api/a2a/utils.py,sha256=81jhx9QbU8AJqVUvptcMDzfY40wIo_NJtMIYJHoE9EY,778
12
12
  mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  mindsdb/api/a2a/common/types.py,sha256=EYBpqEj-nZapSKe2jI8BcNDfSlTXXTbw8RcSA1DII9Q,8787
14
14
  mindsdb/api/a2a/common/server/__init__.py,sha256=Bl7Qa3Pk4QWY4yDPRNyHeTzNJpAe9HgUJd8-oTnMPv8,152
15
- mindsdb/api/a2a/common/server/server.py,sha256=mg1MXHQ0Gf7iVG_winqaYBkgNhYUEqnOAY7Xnveb0wo,7079
15
+ mindsdb/api/a2a/common/server/server.py,sha256=OhD_14Gg3Jcbvb3-ciDEdoQr9NwMjkDTq3mrTSscwwE,7345
16
16
  mindsdb/api/a2a/common/server/task_manager.py,sha256=NnKO2ZcI-KBWiX4wNc8FbLmnVsb5KeIm62B4jdX73IU,10189
17
17
  mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
18
18
  mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
20
20
  mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
21
- mindsdb/api/executor/command_executor.py,sha256=xNEPF4-fwY02luOlGOYmnhfRb13rn7qyNbJvaEk-yfg,81311
21
+ mindsdb/api/executor/command_executor.py,sha256=vlCy5LRoMmbmpMd3vns63PUIjtP3bVA_g72D1r6loXk,85185
22
22
  mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
23
23
  mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
24
24
  mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
@@ -34,14 +34,14 @@ mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qf
34
34
  mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=4G8kWdxTT16DRcALwUPlcHM5OIt2eCEBfG44j-VUURA,8763
35
35
  mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=WGDW8Uj23UYzJ8aa-B-K_P2g_caS2Q03y05QeGy_GQ4,11209
36
36
  mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
37
- mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=I97p3wsZjGZ7wfgq54rs9X-72MYXu1PVHteWVFRX-rg,7682
37
+ mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=W87wSnpfaQRQFiqZcrAXLGLcmhVMzbCLJpa7TWhxbvY,8168
38
38
  mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=JCxwfbqGjTOwn1JqyJfdIk5C9h8TViUEn9L7IMrqT58,27505
39
39
  mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
40
40
  mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
41
- mindsdb/api/executor/planner/plan_join.py,sha256=01Hp2RSYgXDWt-H8UcUufO6Hj1zUtY3ZbHpUCR1f0VU,22432
42
- mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
41
+ mindsdb/api/executor/planner/plan_join.py,sha256=ukVqmIr20OmP-HAee0ykYvIRCkMBnJnV-XaJp7E0kiA,22580
42
+ mindsdb/api/executor/planner/plan_join_ts.py,sha256=7o0ecqiKFOHsoiS_NlbrJ1iyWdn5iGyXrvjRFY2qqnY,15780
43
43
  mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
44
- mindsdb/api/executor/planner/query_planner.py,sha256=9yNno776Ht1cGwmoSVRgz2psltWRg8bYwyJIOcWXI-A,35605
44
+ mindsdb/api/executor/planner/query_planner.py,sha256=NvCEMd8AJe0NI8buKT_PSKJfIiVCm4geItHFNcpspR8,35643
45
45
  mindsdb/api/executor/planner/query_prepare.py,sha256=Wsquc8hsJFDLbW3P_f87YivoIw2_cf1yXHQQXFjYA4s,16565
46
46
  mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
47
47
  mindsdb/api/executor/planner/steps.py,sha256=eAffDFqL0ZpCn1PSFK5gnpsY6eb-gM--lZw2WyadGfo,9511
@@ -51,11 +51,11 @@ mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5
51
51
  mindsdb/api/executor/sql_query/result_set.py,sha256=IZByc32zloCcNzIA3En8cGENVndpzILKrCWc3VDExFQ,14960
52
52
  mindsdb/api/executor/sql_query/sql_query.py,sha256=G6_Et49fgECMC8BGHj8Ig2WnbpIz8wHePIRXUobsme0,11339
53
53
  mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0UxS35mfpeYSL4D_fzqo,795
54
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=NU_Okjioql0iZW1wfYv_IIftOVEjQpW0SOrg1lFJops,17229
54
+ mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=UmCknfR8arIfB4FthqJsyA3GIskaKYPTsPFD3DkY4LI,16909
55
55
  mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
56
56
  mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
57
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=06ldNOI5tzbux5GEX_CTADihuKwlKzORP14wiPsXlaE,4263
58
- mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=-ViiI0UILMcpPjpXAZcODnS3WIPtMNCB1LxIJCSuGLE,7154
57
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=IN0WSBL4nCsaOAZXgbSYiLKCA5GFpa7WXfq3V3ctRBM,4044
58
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=539-wgj-6W_4VmAgF0N9DbfH9DEnIIvYp8jtrcnAA8M,7405
59
59
  mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=oi5q43kzBKKDXh97MbrzQT6qJpp6tcBakfqC6OJ3R0w,4250
60
60
  mindsdb/api/executor/sql_query/steps/join_step.py,sha256=govBGAmZEgFQ4I-QmxNY7nRN81_GF4HAuP-wOTDSrBk,4265
61
61
  mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
@@ -63,38 +63,39 @@ mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSj
63
63
  mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=URXDoE6vuc5mJ-vBkM5RXRYCS92NXs8_Jrlykh9mk6c,1588
64
64
  mindsdb/api/executor/sql_query/steps/project_step.py,sha256=2Hy-b9a3-bJcUHQNhILWSNs17k0JTLrG1aGwTbtJDAM,2868
65
65
  mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=01aDbFrqatM-iX70gU3-ODPBP9F-v0mWZ9BedddBOa8,889
66
- mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=JLLjZyMNcWt-115WjRtdUvPr5200lxY4HDw-JJEtEaQ,8973
66
+ mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=AX2HDrmEHgPrti_S7IJuotlqfKxp4_4Wi4P6z2Z9lZg,8771
67
67
  mindsdb/api/executor/sql_query/steps/union_step.py,sha256=SDCQqLON3NHSbzc2g31xT8CNG5cXu2dSRB7-AELQt6Q,1859
68
68
  mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS5t8SfSo-14ttOd1r0_T8NA,4643
69
69
  mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
70
  mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
71
- mindsdb/api/executor/utilities/sql.py,sha256=WcSw85NtgiF2i5hH3qwwCgXfWlHI3qzTORmRV5Kmg_E,9314
71
+ mindsdb/api/executor/utilities/mysql_to_duckdb_functions.py,sha256=o2oNeB0y4rnXFp7dismSiFxyUnIOfxUu8YfJK1SDiUg,8146
72
+ mindsdb/api/executor/utilities/sql.py,sha256=9YE_7vkIIreUzH3_5jE2hmGCiykZx1-qaTPjYzG3X_w,10354
72
73
  mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
74
  mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
74
75
  mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
75
- mindsdb/api/http/initialize.py,sha256=eZvMgyqYQRbbuykjwVmxxX3LFz6mkFZ2HE8zMQepKEM,16813
76
+ mindsdb/api/http/initialize.py,sha256=aKFYr6Mb6FTCl015fXHEG-epy9v-8-on7Y68njERTXo,16567
76
77
  mindsdb/api/http/start.py,sha256=tD_ImE2kbGAJk3wFX6s5ezCavd2LRJ2qU9U2tOVSQLo,2389
77
78
  mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
78
79
  mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
- mindsdb/api/http/namespaces/agents.py,sha256=s_Vg32YS9O7AhsUqa-SNZrygvAkoX8Vy9jL9BjKv4eM,17829
80
+ mindsdb/api/http/namespaces/agents.py,sha256=c0EtuCq37vDwWYNuH1xg8rO8i_uVoIytgLgJAnMqSzo,17964
80
81
  mindsdb/api/http/namespaces/analysis.py,sha256=maYxI-TP9RswWHgKX3KAZQJK_XSBQfpZMqv0ZH1ZC0k,4295
81
82
  mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
82
- mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
83
+ mindsdb/api/http/namespaces/chatbots.py,sha256=ArEYtqEII8a8MIN9-9kfpHeR7FwTNmrPqzWsHp5MQDg,11519
83
84
  mindsdb/api/http/namespaces/config.py,sha256=Ci_kv906hIA9Ye5c8_MwNW7HQV9kC75DXsSB8nk-WH0,8966
84
85
  mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
85
86
  mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
86
- mindsdb/api/http/namespaces/file.py,sha256=K0gP1rGX32foRABy4JNJNK02f1TBNx1f2AlxBCFKMUw,7837
87
+ mindsdb/api/http/namespaces/file.py,sha256=Z8a_qdJ85l-Eh0JXts2GsQLOeg63QFg24-3alC0_PQA,7845
87
88
  mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
88
- mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
89
+ mindsdb/api/http/namespaces/jobs.py,sha256=4lYmLQolCjDNCV8HMBLyNbdQTkqI_L_N-SuLdKA3Q4A,2818
89
90
  mindsdb/api/http/namespaces/knowledge_bases.py,sha256=RotgaH_Utryxrqm4OUTeinjY1JzQzPQ3t72FVM2GQ0s,16570
90
91
  mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
91
92
  mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
92
93
  mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
93
94
  mindsdb/api/http/namespaces/sql.py,sha256=JjrXxcJr00QpaxYWzvghBLhb78kIkTZg2-OOSbJHz3U,5586
94
95
  mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
95
- mindsdb/api/http/namespaces/tree.py,sha256=_lWGp4wrX19GnqVD36U-ZmZiHfMIwlSAf9fIUYc9LYg,3812
96
+ mindsdb/api/http/namespaces/tree.py,sha256=8UZUZCt4f5EzQYJLRTwraol8RtebYjlyRWeHiOLhPIA,4191
96
97
  mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
97
- mindsdb/api/http/namespaces/views.py,sha256=bSoCOJQq-xyWdOpNRA1YyOSlYHTHHYIZgd8m4E_rvy0,6226
98
+ mindsdb/api/http/namespaces/views.py,sha256=PwNc9ECSbe2yfGZ556wBF6DxK01QVbmW9cwBu3LB_mI,6030
98
99
  mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
99
100
  mindsdb/api/http/namespaces/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
101
  mindsdb/api/http/namespaces/configs/agents.py,sha256=9LKToZNLtQGBhj1nRwIjaTNDeI5PA-TbVVW1qwFdqzc,124
@@ -118,7 +119,7 @@ mindsdb/api/http/namespaces/configs/webhooks.py,sha256=WTZAN2r6GdR8LbhAyh9osFGaF
118
119
  mindsdb/api/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
120
  mindsdb/api/litellm/start.py,sha256=U6gBzQrHNmbPCjCnizPz59jnM0GdYmMx84XTIVzCiww,2761
120
121
  mindsdb/api/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
- mindsdb/api/mcp/start.py,sha256=6QIEMpQlLMC8HmBX2UyFJaGaQ1IrLniOYhysxDFzR0w,6457
122
+ mindsdb/api/mcp/start.py,sha256=Q8wq3M_4Bab6bZ96y9L1-9qKkQyxIGlYyeZr3Qz36Nw,6580
122
123
  mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
124
  mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
124
125
  mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
@@ -200,7 +201,7 @@ mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzp
200
201
  mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
201
202
  mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=yyIDUzzcPU2sTOMCAOUwoRs9ywqak4bLQuCNXelUbqg,42253
202
203
  mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
203
- mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=zLOwvjHb1tDEGnBbi66XO57C9YKBFjYDdBKJqUnT_rk,14645
204
+ mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=1Q32uUguEfjf9JxMdw68UaPlk0j8lRf_XURn98JPpUY,14670
204
205
  mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
205
206
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
206
207
  mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -262,15 +263,6 @@ mindsdb/integrations/handlers/anthropic_handler/__init__.py,sha256=GvT2mykrK0gM1
262
263
  mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py,sha256=_gQD15IETTdssVSIwAqc7BeH9qcCAiXg37pxyaLU1p8,3319
263
264
  mindsdb/integrations/handlers/anthropic_handler/icon.svg,sha256=YqBanC9E0WpQAEC9e8LgOF1vu5S5r58iHox3rBk6fxY,328
264
265
  mindsdb/integrations/handlers/anthropic_handler/requirements.txt,sha256=Q1rkpICQCgBQcAmOyBWXu0r3h7-OvO7-nYVbNjjUtE0,18
265
- mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py,sha256=jFauECyixaq2FZz0bUE1RcO6-dyCn70YjM_TOFp4bYA,372
266
- mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py,sha256=E93atZpIhT_3B08vEbLHuBKG6wRSkTvTIXKGkEeDB3E,597
267
- mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py,sha256=qIu1OxZZ3hzrQGAaQ0_eqNB6sBB-4zNhqfU6XCGHIII,10699
268
- mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py,sha256=RUBy6Cw_gEUXq_7OXPGgeShUgFzPe5uoMhZ6qIFBmt8,374
269
- mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg,sha256=VBWUTscZjn_SpZAC_2i5lvAE-LH6OixgH7KWNPtkpP8,1743
270
- mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
271
- mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py,sha256=5vF3QvzIO8M1g-Kaja1zrpzohl7IM2Tt41VAVR2Kilk,1468
272
- mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
273
- mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py,sha256=gq0GHcJ-d21bqTl5NeIF6clAPlmMEaUniJMkXS4ryw8,7255
274
266
  mindsdb/integrations/handlers/apache_doris_handler/__about__.py,sha256=mv5hhHBYs8v9_hT4TCelKBfYjWsEMumdup3AN_bUD_I,354
275
267
  mindsdb/integrations/handlers/apache_doris_handler/__init__.py,sha256=jvtoYewBNtDYo6KVLDsbTuw5s-iLRZEaoBUDc-pzTJU,504
276
268
  mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py,sha256=26MUB8QF8iCXq_g99wNgSQxKeliFxbL8uWXm3jV8HJk,319
@@ -305,7 +297,7 @@ mindsdb/integrations/handlers/autogluon_handler/__init__.py,sha256=sWRXwYFd9GmcC
305
297
  mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py,sha256=Vd3ZXS0SE4uKXEwfgz3hzOY_oV3V2QZ9FPIYtZ1yM8o,1771
306
298
  mindsdb/integrations/handlers/autogluon_handler/config.py,sha256=0XrzN4IZheuv82Z97FgdBF4GkxWTS8nowoUm2gVm4l8,278
307
299
  mindsdb/integrations/handlers/autogluon_handler/icon.svg,sha256=1DWvvXtPk3CsPNPaGi_LyRm1n2S4uTvPGxBZxCFoymE,956
308
- mindsdb/integrations/handlers/autogluon_handler/requirements.txt,sha256=-YcvGjdvwcaaIS_raNf8mrfYtti3VqBSZ6JzlITtVGI,29
300
+ mindsdb/integrations/handlers/autogluon_handler/requirements.txt,sha256=xobG1xoP7T2fTIqOJWW7uymAAPQEAETiAuKv2hNq-5w,29
309
301
  mindsdb/integrations/handlers/autokeras_handler/__about__.py,sha256=O1GbcYW-3EwU3NGSR1xo-31gc9404Vz5mOalPK48-4s,352
310
302
  mindsdb/integrations/handlers/autokeras_handler/__init__.py,sha256=twksFx9Qgm7syJBsWJMuXmrAnH7ha1cbwIfvDymxE68,560
311
303
  mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py,sha256=xSIf8UAVcP-Sbat6t089j4oc3aH1INYhxpk9PNFpaXs,5772
@@ -316,7 +308,7 @@ mindsdb/integrations/handlers/autosklearn_handler/__init__.py,sha256=KSndjfPj1fG
316
308
  mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=DLK9fcRA4mvXhtvrl_pPIyy5QPEz16ymCFWbYBiwDNA,1678
317
309
  mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=y86RzJ16PSoM8cPFaMLz6siS3336ASiX1hIhDal9N-g,676
318
310
  mindsdb/integrations/handlers/autosklearn_handler/icon.png,sha256=kbcEAnyOFO2mj20-godaONlkzrtK-3Oj-yhQ-kX1O78,15729
319
- mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=M80gYwMHVvAlFBJKtarluQacFmr6etbrUQgKjoX_hNM,32
311
+ mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=2ZnXjLobtAggg2nQnTduqwDYMJcRooaHH_sC_-u9mhE,32
320
312
  mindsdb/integrations/handlers/azure_blob_handler/__about__.py,sha256=qDGv39-0a0ze7k1E3MzW2O_5IMJmXOxzITb1MB8Vslg,365
321
313
  mindsdb/integrations/handlers/azure_blob_handler/__init__.py,sha256=F9z916N_iyz70Cph5N-dGWs-gFkW2AuP0n8Cf3Dr-iE,618
322
314
  mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py,sha256=E2tKRD8gHmRG6z2gl6nsx-77eZZWYa5UKO02j3lxt7o,11216
@@ -332,7 +324,7 @@ mindsdb/integrations/handlers/bedrock_handler/settings.py,sha256=cG_SWH0PfQ6o-ev
332
324
  mindsdb/integrations/handlers/bedrock_handler/utilities.py,sha256=hx8mzWLApZIV-mgp_CJM8qj-X51gX9-hcTXdGxE5fSs,1184
333
325
  mindsdb/integrations/handlers/bigquery_handler/__about__.py,sha256=hRxU4C7TM6ssU3oxS89oDVFfx-p_Wjj_jNh_Y6vq544,349
334
326
  mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNicKAh4FLIX2TX_v6ac2r6djxr_5d9WI,612
335
- mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=QQnEggLjF-aMJoqYZ1kulagLltoQg6c54_c2aHMiFJw,14914
327
+ mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=Xm-pd8QpVpNU7KGLOsJwL_Z1TxBPHANcWM4Y-aVpfDQ,15955
336
328
  mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
337
329
  mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
338
330
  mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=l8BgEzlWWL_88GeLfV3Dp40Am3DUNuDlVkgnH9jJccM,131
@@ -367,7 +359,7 @@ mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py,sha256=47DEQpj
367
359
  mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py,sha256=9MibR3PQlvZzt7Q0rCU6R8dICvqhPA_kxoUp4JiVEVE,1353
368
360
  mindsdb/integrations/handlers/chromadb_handler/__about__.py,sha256=28MPMq-Rjb1tR4SawSItNeGvVRupERgeHUDW7KRiyr4,345
369
361
  mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2JpJT_nUryqEZrRR3TtpAmynMFOfHr4,659
370
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=vW0JlfgBi5Z8z6_zC9irb0qfa1qGVQYKddC3tW1zSrg,19100
362
+ mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=ppa67kViukHwopIhO1lSuInx2uP5JTXS21Nx3jHPmQM,19176
371
363
  mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
372
364
  mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
373
365
  mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=74shT4HXgWhY9USh902gDPUo7SvgHZZ2u9V13jkdC_E,99
@@ -493,7 +485,7 @@ mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py,s
493
485
  mindsdb/integrations/handlers/db2_handler/__about__.py,sha256=rTCKpGiOExZyKA4DYWwR6PEucz2G9YzGJO-wcym3h74,339
494
486
  mindsdb/integrations/handlers/db2_handler/__init__.py,sha256=qisYmWiLYVEv61w_UpA_xDCnyJ5HqjtzS_9Z8vVukLw,622
495
487
  mindsdb/integrations/handlers/db2_handler/connection_args.py,sha256=rpAadcAI1UvVjU4TII361eo1z8Lw1Z7_NcnviHJjrGQ,1430
496
- mindsdb/integrations/handlers/db2_handler/db2_handler.py,sha256=9fxZ4Sq2_M2ryq1JfBnIHltWmQRy92JsnCpiLvXI45Q,8472
488
+ mindsdb/integrations/handlers/db2_handler/db2_handler.py,sha256=h8ozDCc3s48x4zlMwQYNsCTGt1DdghTNm7G76A3EQAw,8789
497
489
  mindsdb/integrations/handlers/db2_handler/icon.svg,sha256=k9vZddOTe0Ze89caW3w6h3VvUnCoJn1K1959qQ-BGY0,56094
498
490
  mindsdb/integrations/handlers/db2_handler/requirements.txt,sha256=aJAgOH3JdjG_8A2nFZhUUvYOkcKHJcdrz0-RchhcGNw,17
499
491
  mindsdb/integrations/handlers/db2_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -649,7 +641,7 @@ mindsdb/integrations/handlers/flaml_handler/__about__.py,sha256=vQJvUYCSJpM2L_K3
649
641
  mindsdb/integrations/handlers/flaml_handler/__init__.py,sha256=MHYGvpWtU8o5izMpv4d0CxBIamoCmP-J9Ti5bq_f2-I,531
650
642
  mindsdb/integrations/handlers/flaml_handler/flaml_handler.py,sha256=qgvXfPEOmf5A4amIGj6LkDLhGVqmJiYWVmNQ_M-Fnn8,1601
651
643
  mindsdb/integrations/handlers/flaml_handler/icon.svg,sha256=L5ADXk0pRN8VFCYew_jeJXjVTP8etzLQsUwAjjuPwIA,3096
652
- mindsdb/integrations/handlers/flaml_handler/requirements.txt,sha256=YbK2xIvGKGeFqBEel014cWFzfgwukPKcloTX4ar3Bpk,32
644
+ mindsdb/integrations/handlers/flaml_handler/requirements.txt,sha256=oRdmerK_sjA4M828BFHNyIyeYDBHikxp6xtrHDduqg8,32
653
645
  mindsdb/integrations/handlers/frappe_handler/__about__.py,sha256=NPBXQAHQGMUoAxc3L0e5Cu_CnccWeyyPEVLe1jNwe4o,345
654
646
  mindsdb/integrations/handlers/frappe_handler/__init__.py,sha256=JTd4ltTHkkVOmZuitOz2GpA3S_cZJxDmlp3A18imeUo,480
655
647
  mindsdb/integrations/handlers/frappe_handler/frappe_client.py,sha256=XbDZ7GJK2MqJq2EdHYCiOkl5uLAgBunVyr-zQkdUpfE,4338
@@ -686,6 +678,14 @@ mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHr
686
678
  mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
687
679
  mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
688
680
  mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py,sha256=wjJHWn2jBFHm4gBtuVSoc4MdFoIy54jkfnCbPz77KHc,1479
681
+ mindsdb/integrations/handlers/gong_handler/__about__.py,sha256=SD08dwdZg4sjqFCkN9_6GffT-GqXFF5HvICp2VMENEw,102
682
+ mindsdb/integrations/handlers/gong_handler/__init__.py,sha256=0oIlIbJDV9FVFwneNNNSIIp27X9AJjVJqe5YzQwKGlY,623
683
+ mindsdb/integrations/handlers/gong_handler/connection_args.py,sha256=poK6Ed-oY3xW8_6Pb2iOnmDJUeGx1NXQHA7llJMOx10,1155
684
+ mindsdb/integrations/handlers/gong_handler/gong_handler.py,sha256=ocRJzVsk1Ibqowot2BXL1mWq-WT0v_A0_8rd2VcSKUo,5522
685
+ mindsdb/integrations/handlers/gong_handler/gong_tables.py,sha256=Hn9_gtqzoSSOEuSFD9iOckM5ljirzx5AVaGEWTN0_N4,19059
686
+ mindsdb/integrations/handlers/gong_handler/icon.svg,sha256=MPamKIRTCFyAAju5BsbtKINjTgpU9zNWHb2btIFi1Jg,1619
687
+ mindsdb/integrations/handlers/gong_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
688
+ mindsdb/integrations/handlers/gong_handler/test_gong_handler.py,sha256=wkVSk2IhwlE1iyz0zm7cqRtJNUmEPpl31C1UC3dCJ8I,3829
689
689
  mindsdb/integrations/handlers/google_analytics_handler/__about__.py,sha256=68QyRQWAMw0MGDM64tuGkSrjepQmQKQea5zvfw0r0Aw,369
690
690
  mindsdb/integrations/handlers/google_analytics_handler/__init__.py,sha256=ynl-z128m2YPF9IOqeCysVdQ8AcSkW6HXISTixyoLok,532
691
691
  mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py,sha256=-u--wXJwBMBfToVa0Vtx_tPPty9q8X4hkCCy_LCV3j4,4706
@@ -706,7 +706,7 @@ mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZ
706
706
  mindsdb/integrations/handlers/google_calendar_handler/__init__.py,sha256=ms_QDVhQf3b_jnweJXDVAUFYuyKkPb6JgEfGEzJ9uzA,580
707
707
  mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=HL1g-EYFULOoR3l874dFRmPGeP5bl0fNwRTftYDeF84,780
708
708
  mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=NV8wWKS8_09flwJmf3X1J2iQ96o-uJ6HKk-e4ODZhCE,10900
709
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=QuY3I05xV_XaqOGV_xtMn2eMkDSZBxTWiYC9ylQ860E,8002
709
+ mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=MLxKilrCF-vZADfxv_cfmNPYSyTi34YLRJ8kXb6nsv8,8179
710
710
  mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
711
711
  mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
712
712
  mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -781,7 +781,7 @@ mindsdb/integrations/handlers/hubspot_handler/__init__.py,sha256=AW1XObHkkRIdszU
781
781
  mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py,sha256=NMYzpBVDxdo10hFFsV_Ybi3JCw3RuftheAOyPOjwMTQ,2784
782
782
  mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py,sha256=Rfu2N3UyT7dRLhdZoHHANHsUf70-j4mAPrHG-V1Yg7k,19943
783
783
  mindsdb/integrations/handlers/hubspot_handler/icon.svg,sha256=FoLHI5CdLMqZLv_M0PvMu_TzlLtt-t-vhoaGIBiC7cY,1453
784
- mindsdb/integrations/handlers/hubspot_handler/requirements.txt,sha256=50SL5fyMnNRccXgKNrQ9UW5zK5iiJWYvNK_yXdJhgV8,19
784
+ mindsdb/integrations/handlers/hubspot_handler/requirements.txt,sha256=1R1O7JBlGTaLdh65pyYkhA4ClQK22hfQdjtYjjQPW7E,27
785
785
  mindsdb/integrations/handlers/huggingface_api_handler/__about__.py,sha256=gUWilT75wrd2aRmL3iK3XXI8XjXu4mpun3pcmVwrZ4A,381
786
786
  mindsdb/integrations/handlers/huggingface_api_handler/__init__.py,sha256=Bs6kqNT2-WSRioNS6kcJxl_DQrC0SH9_QuS6APYTGlE,537
787
787
  mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py,sha256=VNq0dhoiQjVQ1E_-29-9J3-vkJ7dnQ5bpROeKeZKZpg,113
@@ -791,13 +791,13 @@ mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt,sha256=VO
791
791
  mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
792
792
  mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py,sha256=gNbILP3emqqlboEypuaScSkTcjazGGPYql2AD7nK1rg,128
793
793
  mindsdb/integrations/handlers/huggingface_handler/__about__.py,sha256=B1bb52kL0iLViLiewWIK183GOKoe5Q0XJZvD66wXl24,353
794
- mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=gkRr9Plm5imtkJ6utRRfC81CC-7crr35UVrN8IBgrA0,859
795
- mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=GhenLv_QAbh9qjvOdtB4msiL8T6QD0NnsciW7wYrP2g,8455
796
- mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=FExukaCMUf3SBd4xyV_BQTQBtlasQvzePTdJzS_OROw,14214
794
+ mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=iZ_2HFGSf46l_cafHxROIDENLAcrNeL-vmyHAiGJC_4,547
795
+ mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=TJFI_GsIm5GdNic2sjOJ3eojbQHMgbVI03lmvCiYtK8,7921
796
+ mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=GHbMWgTNGCtsOoxHSoa_N4krkHlHa5s5G4JcxGS1rw4,13169
797
797
  mindsdb/integrations/handlers/huggingface_handler/icon.svg,sha256=yU820GpXed8h9CloppHH0D1-EJjrorSLlbjciV91b9k,9064
798
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=1ftzN7HUi0s5DqoCmqEkvI3y014ftejINamwWJcRf2s,197
799
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=_7nN1AvZtSX3L-GLt6Hi0Tb7BV780NhjNhGXDQUF-2k,237
800
- mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1qa9xcOuDlyTjLhnFKu6CNB-cIQtHCxCGWzOhJ4Tb8k,1034
798
+ mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=4Ia-rFlz5dv5WF3WEDrXH7b_DCJUMxT9uLooRleZzaQ,183
799
+ mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=tAU-4yjHPVPW_PtHCohyDZyYZNojRJtJBnNPB3rKCNI,223
800
+ mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1dAcKyjEcuK1LSktqK_5tPLJzQGCNTs0GR9CMe8qTvk,984
801
801
  mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
802
802
  mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
803
803
  mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py,sha256=2DuHEQN03FRK7_-6jC_f-wfNtWRHuWbAdAd8FhdEPcE,1247
@@ -883,7 +883,7 @@ mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py,sha
883
883
  mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkObedPPwbyNl9tB0ygJN6qj0aPwPYI_fqc,345
884
884
  mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
885
885
  mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
886
- mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=8dYeUKwMprSSwDmd5eV0MK_-6_xNqyK3HuhXWoiISGI,12840
886
+ mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=rgFBKcxRzZb-adznTs1qwj0SIYKi4TNJ1YJEbdqWF0k,13012
887
887
  mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=X3GMk6YUemVSiVvr0Rd2P2HerVhXFeL84yzrBgAiWHk,238
888
888
  mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=61Akpoh4m2cRJR7TV5tCChQzr-C0oSdDXJajcVIcAqM,11066
889
889
  mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
@@ -918,7 +918,7 @@ mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfe
918
918
  mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=p3FXxafjrwa2Af6xkMO3MCOVLWxZEWfAmEu1sx0qIb8,9056
919
919
  mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
920
920
  mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=UuN1FUZrB292qZjGriQEbPly7vGBd8S-7DVNjqZAWRA,23596
921
- mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=jEN0TN09G2-yFrr5FSEMjEVZFnkoS7nu2lJrJdjVBLI,91
921
+ mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=nkzTeanhsH1AA4MpYSA0wApfJsF8ceREOVlzZ_pjhYg,91
922
922
  mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
923
923
  mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
924
924
  mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=Mm68eznjSa55qxmbmR6mXtNfvPYAClIghMKJZ94IvE0,10963
@@ -932,9 +932,9 @@ mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha2
932
932
  mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
933
933
  mindsdb/integrations/handlers/litellm_handler/__init__.py,sha256=phvu1-lcM1HovXh4GHunND_ScTON4Yb3s4VXNVd_epU,550
934
934
  mindsdb/integrations/handlers/litellm_handler/icon.png,sha256=mfPLH1-n3D1q3U57hADzl7s2G-W-EDevUHzmvnLTjy8,37122
935
- mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=qOqvUDGtzFDAz28AREfmLJUu7POnN9_0HDV9L4idbsM,6669
935
+ mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=OAEb05czmSFOqR1C363CH4jZKqe-8__mx6ZkSBX1bLk,6740
936
936
  mindsdb/integrations/handlers/litellm_handler/requirements.txt,sha256=dy-zvg7q-XWnmLu6dh1DSphrzDsLZHec2oSRuF-jWmw,18
937
- mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84fLe2AhBWzSzpeHbeoeVNz3T6-Rlk,2301
937
+ mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=eGe2ckW9ZMP5pXhk8TBygD7XAeMQmXBPTnrWGul0tY0,2380
938
938
  mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
939
939
  mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
940
940
  mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
@@ -1133,12 +1133,12 @@ mindsdb/integrations/handlers/ollama_handler/icon.png,sha256=Uetj2OTGPx-taxPKdD3
1133
1133
  mindsdb/integrations/handlers/ollama_handler/ollama_handler.py,sha256=kkIAlQtMq8fiQ0JOP4k-m7AFRBYu86BnK6derw_3YT0,7248
1134
1134
  mindsdb/integrations/handlers/openai_handler/__about__.py,sha256=CHoor6pfv6jc7Lfp8SZYiRlHoCwA-QM0PYRqvIRNSEc,336
1135
1135
  mindsdb/integrations/handlers/openai_handler/__init__.py,sha256=2oicF7rVoEJTh-_p_7bpmh3shHYL2zZr4tPj0ZDXeCI,621
1136
- mindsdb/integrations/handlers/openai_handler/constants.py,sha256=szFwNnhFO8g_XJh8DnqxlrmZh9YTkiTiCpvAI0txZak,1356
1136
+ mindsdb/integrations/handlers/openai_handler/constants.py,sha256=OTd6iZbKYNsidblwotDfGfDy4zJQDbId-VHmpU2jgNg,729
1137
1137
  mindsdb/integrations/handlers/openai_handler/creation_args.py,sha256=v1NHiz-tLvAHrcA_vIe1A6L5UbeGpHBl88XWZVgtric,342
1138
- mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=xEezAE-Pmxxsa878vAtO05AxBhLQkT89ShPjBwyZoEs,6843
1138
+ mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=btydh_cuTeszFiF_b_fiZ4dlN7zdMbU2IuWeTE5ZFtQ,6573
1139
1139
  mindsdb/integrations/handlers/openai_handler/icon.svg,sha256=r5vCiNm9_nL1ZbM1e6PYcTzw9KrgC0hqWT8IAi2pFbE,2625
1140
1140
  mindsdb/integrations/handlers/openai_handler/model_using_args.py,sha256=c5NBe6RGkRGVOLhc7Ksq3M3w96Kd9KECO6T01j7VS90,76
1141
- mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=Pz1Dsp0MiBoo97FowrCpRmhD5I5faoCHiJUApFLdlbQ,47653
1141
+ mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=ZW3Fg7UBBjYQFxpqMJfxRlveqFzkEAxpo8G49os2WMI,47552
1142
1142
  mindsdb/integrations/handlers/openai_handler/requirements.txt,sha256=u06ahGd1EskIW_Yy-5Y_jNLNbN1CtF9N3ylGPPOPBLA,9
1143
1143
  mindsdb/integrations/handlers/openai_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1144
1144
  mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py,sha256=W3b39JCQfCF_IXUS98j7KqTqIzeYne9RDba33AxM774,18651
@@ -1193,7 +1193,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
1193
1193
  mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
1194
1194
  mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
1195
1195
  mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
1196
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=YP9WoaniXSwxW-KS-c8JPtNWEG6XUY61MNAntwyu4m4,27111
1196
+ mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=y518IssS7YTrDrxPPIBLZRrFTZ4u0awEjYInrc5LA4w,27236
1197
1197
  mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1198
1198
  mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
1199
1199
  mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=njwyWqUt8PmCISBN4KjcDnZPakbro1E5lSqTEEZbTO8,607
@@ -1250,7 +1250,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
1250
1250
  mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
1251
1251
  mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
1252
1252
  mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
1253
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=HCOMYxG8Lp6m0JANb-mIiHwBWEdulL-lcs2wu7QLERA,28572
1253
+ mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=7fxNful9UKR5KNw2IDeG7fwQKSH5ZLodoEkBaKni_oU,28455
1254
1254
  mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1255
1255
  mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
1256
1256
  mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
@@ -1345,10 +1345,11 @@ mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py,sha256=WGH7BN3
1345
1345
  mindsdb/integrations/handlers/salesforce_handler/__about__.py,sha256=WLr4oUXEPsawa_y4oDxihsqN2iawkNDCbe4ttcF7WUQ,349
1346
1346
  mindsdb/integrations/handlers/salesforce_handler/__init__.py,sha256=nH_HnnS5cnDadXEy6ZiGuUPByT_JGu2Nrgx3Nzw0JCg,650
1347
1347
  mindsdb/integrations/handlers/salesforce_handler/connection_args.py,sha256=XF20-m222AxVvK751lWKV2tb3I1WkRrmR5AJ7qV9PtI,1498
1348
+ mindsdb/integrations/handlers/salesforce_handler/constants.py,sha256=A9ttqnhBoegOgc8nPS0WVFbKcRz2oKonoEuiPU5NC8I,10067
1348
1349
  mindsdb/integrations/handlers/salesforce_handler/icon.svg,sha256=sL7XX_vF5Y7gLLklV1h17MXILGYz0f79VH915DQXyV0,8594
1349
1350
  mindsdb/integrations/handlers/salesforce_handler/requirements.txt,sha256=JbByk_8_aqTrg45rT_tUbyDgUoDSTK7VVpgUaMen3wU,22
1350
- mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=Q-dA-OuBWTWQolH8HPZ8QVvwXI9dPWnwUBEeq2PKGQw,10652
1351
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=hSsktMf5RAgTVD9rvwYudARmLz8tzfzYoDXDjaBwAhM,10894
1351
+ mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=ZNGbJqLumF_65N6SdVPDlIpHmKWHwU3RSMwZp36OU-E,12930
1352
+ mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=dax9qShUzeR5ZU8PSgfwhdh5hJfJK6L3wPwTr8eQX2E,10893
1352
1353
  mindsdb/integrations/handlers/sap_erp_handler/__about__.py,sha256=yXC_YavBeY0vTZvwkU4EN7DUijGMZ8m3jtQsftKwlhs,340
1353
1354
  mindsdb/integrations/handlers/sap_erp_handler/__init__.py,sha256=2rnUX-yeCkCgh4viBttHdG4o4HKJrVI3m82S8GJFCBU,531
1354
1355
  mindsdb/integrations/handlers/sap_erp_handler/api.py,sha256=tAIqeww34R0N0QyVKYhSE3NRzIDoBn8xepCZIG4tYbg,2168
@@ -1567,7 +1568,7 @@ mindsdb/integrations/handlers/togetherai_handler/togetherai_handler.py,sha256=94
1567
1568
  mindsdb/integrations/handlers/tpot_handler/__about__.py,sha256=UnKylDgzptBz8GP0Az_AnwEtYN7tGTzSkrk8OByt9hg,335
1568
1569
  mindsdb/integrations/handlers/tpot_handler/__init__.py,sha256=In_YSefcrQXPbgqBoTR77fx9sIRpBTBpWaIlhaaHHhA,526
1569
1570
  mindsdb/integrations/handlers/tpot_handler/icon.png,sha256=j1DfF2jF1kWD3dhCET51X26QnSW9rNuLXXG7Tav3M2M,114250
1570
- mindsdb/integrations/handlers/tpot_handler/requirements.txt,sha256=8F0hdotOm6E8Y2Fp7aKkDq1laiAX8CDem43CVybzdm4,32
1571
+ mindsdb/integrations/handlers/tpot_handler/requirements.txt,sha256=mJbUp-XmgU9yy_bGf3Ge-NXykkh_YuPcvTNppyh1ANc,32
1571
1572
  mindsdb/integrations/handlers/tpot_handler/tpot_handler.py,sha256=RQwuvd9ss91dSUiHSvQ-Yt4LNmcQv_pJIkC3XBJ-BDQ,3244
1572
1573
  mindsdb/integrations/handlers/trino_handler/__about__.py,sha256=O-XM6_t3ajkzjNhyI8J5BaVVmwwUCkQARNlJusNoYDk,333
1573
1574
  mindsdb/integrations/handlers/trino_handler/__init__.py,sha256=aj-pP90O6WWCyWBgry5D9URUaUCM5ALoAOQYHbU6gt8,457
@@ -1640,8 +1641,8 @@ mindsdb/integrations/handlers/web_handler/__about__.py,sha256=CxQc3_pLSKuz1AnBj6
1640
1641
  mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE3B900gkZLuQ8QWQEvYFbTUkE,504
1641
1642
  mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
1642
1643
  mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
1643
- mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=dCBqMYKwdQdThqbxeZA0a9z--yBC5vJJ8q8MikIKA2Q,11305
1644
- mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=iLiQQ7CbRhKjnRyfBhhLK2m8EtaNcXIWNSP0BgruVKA,3494
1644
+ mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=1bhujPOu85x0Y-zBUXCWr17UnxaCvK8X6hrBK3PpkOg,11658
1645
+ mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=A5O74YqhNR2x2St0lDMkQyhyl0MbKAmcz5GsckOFhSs,3684
1645
1646
  mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
1646
1647
  mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
1647
1648
  mindsdb/integrations/handlers/webz_handler/icon.svg,sha256=Mvt32fMxE_p294_hTqGVY3vnRkbZOJ2a0n9M72aZjTk,1042
@@ -1715,10 +1716,10 @@ mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmoz
1715
1716
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1716
1717
  mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
1717
1718
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1718
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=7BLFn1wxPbMhUjKp5X3M1DsOJ-puJTmac9HPwjPrAHQ,20467
1719
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=tG30fazN9F4yc3Bx0FjABxmU63_GgL7Y102AxZevWKg,20843
1719
1720
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1720
- mindsdb/integrations/libs/llm/config.py,sha256=p_N1E3b-KB2g-OT2gC66QP1ahh7VftjXublf4k_uLig,4957
1721
- mindsdb/integrations/libs/llm/utils.py,sha256=Wz2aptwngVyPX8tVrNx1yUHffpgnMDHQG-e01LoXFwc,25140
1721
+ mindsdb/integrations/libs/llm/config.py,sha256=v__nmgKifKYCiZVPkBKuATD3GsIMAuoBxyyru44IY0w,4419
1722
+ mindsdb/integrations/libs/llm/utils.py,sha256=sV5_F3whjFQpzDMMAH2x6ntlvusVFHqfKsV4cT9JcBg,24400
1722
1723
  mindsdb/integrations/libs/ml_handler_process/__init__.py,sha256=TW1DslwZTaD8oeGaxPx99uYkPAeDIeHWAturBcnDBFU,756
1723
1724
  mindsdb/integrations/libs/ml_handler_process/create_engine_process.py,sha256=YHbk1x7GEIZXcM0IazB2z2tvu5Yd24Fb4aJPpUg321A,788
1724
1725
  mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256=-69NRhBGnNG0hgNi9O_W5LffIxPBUmuxy4bbQY2Z-_8,444
@@ -1731,7 +1732,7 @@ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=ccz
1731
1732
  mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
1732
1733
  mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1733
1734
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1734
- mindsdb/integrations/utilities/handler_utils.py,sha256=z34PVi3977e8UURfRjLc8nh6pAnbglJ_KdxHsA0_ajE,3763
1735
+ mindsdb/integrations/utilities/handler_utils.py,sha256=C1F3ATH4eb9qA4MismUoXdQgnoJ8nk2VjsTve1VrpfI,4271
1735
1736
  mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
1736
1737
  mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
1737
1738
  mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
@@ -1744,7 +1745,7 @@ mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-
1744
1745
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
1745
1746
  mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
1746
1747
  mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1747
- mindsdb/integrations/utilities/files/file_reader.py,sha256=qkGOH2FqTrdQJEbLINuOep7s50ziY0dtbOT4-PVWZrc,12961
1748
+ mindsdb/integrations/utilities/files/file_reader.py,sha256=p0a7XVjCToAmLqcI2LPBHSGN7VwYaSuHhT4f8VP0IhU,12423
1748
1749
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1749
1750
  mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1750
1751
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
@@ -1783,7 +1784,7 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_load
1783
1784
  mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1784
1785
  mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
1785
1786
  mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1786
- mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=BbenQy3SkaIbHM0RmbLfVfdY7EVd-esQyBW1HHgNELI,15665
1787
+ mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=RSMa6bY83kr6ljrBLvOPk04F5KEv6AoDeNh2LPLf9pE,15665
1787
1788
  mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=IN7R2dtqEtqdhPQh5r62oZOII_4m_ZU-XCpnbvSqjw0,3729
1788
1789
  mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
1789
1790
  mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
@@ -1796,11 +1797,11 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
1796
1797
  mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
1797
1798
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1798
1799
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1799
- mindsdb/interfaces/agents/agents_controller.py,sha256=wFgTWZMqLEEj4xz85uD_ySLMneJW0c4fClor_0exz0U,29405
1800
+ mindsdb/interfaces/agents/agents_controller.py,sha256=nTV6_RSsuK7WiJjHNHFJ_Wj3olyXJrRA6EXazuUXi-s,32203
1800
1801
  mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
1801
- mindsdb/interfaces/agents/constants.py,sha256=W1p2z1iLeY4eC-lOVFaeR8MluVPfWfjMoyAmKjIYyOI,8438
1802
+ mindsdb/interfaces/agents/constants.py,sha256=ZlHTPctEXNKa4OA_Thi46sF4Iiy32GBOJUP3czcaq6k,8422
1802
1803
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1803
- mindsdb/interfaces/agents/langchain_agent.py,sha256=dSyEOD7t0-QEn-AWDe7Ugbjo4ijtC36Ly6f_LWg31_U,30345
1804
+ mindsdb/interfaces/agents/langchain_agent.py,sha256=SzVt1hZ934CHEQ8aaXE9WxHnMovx12zMxa_lDrLzlII,30672
1804
1805
  mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
1805
1806
  mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
1806
1807
  mindsdb/interfaces/agents/mcp_client_agent.py,sha256=8pDHMWJz5aYe7lyyVJYLqlCCKVMT_iqoWJ-XeBXSUz8,10036
@@ -1818,45 +1819,46 @@ mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augj
1818
1819
  mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
1819
1820
  mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1820
1821
  mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
1821
- mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=Ox0Jkj8sfX_xzmxR9OGjru_vz6HV9WR4PpF4XXg0xW4,16111
1822
+ mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=HPUfQZ3Gx8g4kzqAPajc7ju9eG5lBFwu3qOSGDBXn14,16175
1822
1823
  mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=fUSLlpmHo8hrb9zjtwNXzbSAoWRBxUI34cYSaN9vObI,2186
1823
1824
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1824
- mindsdb/interfaces/database/database.py,sha256=xUGax9RhsFRN0DAmPtVLTk1LrNsRxc74hA6nRRX5FfU,5605
1825
- mindsdb/interfaces/database/integrations.py,sha256=3CFTJZmEVcVFgtiP4r1zNr0HBsKq2L3I1YuU5UaJDOc,37031
1825
+ mindsdb/interfaces/database/database.py,sha256=f8KWdPQyAQbFW9paJMK2Vni_ZKtsLcP7CeUXl9cIyAk,6769
1826
+ mindsdb/interfaces/database/integrations.py,sha256=26mGJRlNZ4aSDWrTvvRfG81qaMnb8con9w9-ROP-8-w,37612
1826
1827
  mindsdb/interfaces/database/log.py,sha256=ZpsEKKEtF32KjWRQ5rMtnHZTHqqJiffeaEcUDTx44cs,10305
1827
- mindsdb/interfaces/database/projects.py,sha256=isAnZ8JkTDPAONnV3SqILeCHitP1Er8AcBghRPxuh9w,16460
1828
- mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
1828
+ mindsdb/interfaces/database/projects.py,sha256=Dw5d_mdoGBmt9AYECW91LZb5Qm2Tg6k155d8yOKB0tM,22789
1829
+ mindsdb/interfaces/database/views.py,sha256=kDCYU7C5DISDEehIYYve55ZJcpKbG9bJ2DBhISDm-5E,5754
1829
1830
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1830
1831
  mindsdb/interfaces/file/file_controller.py,sha256=vkxIdR12FLCZkAbwm-0_ZFK56q5bJciRqYwLK_0ooIM,8059
1831
1832
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1832
1833
  mindsdb/interfaces/functions/controller.py,sha256=1nMC-DREpkjeVMKBxvqzNNSidj4-uIFWmuNjYlqZ1gM,7659
1833
1834
  mindsdb/interfaces/functions/to_markdown.py,sha256=sD5iIRlaAsHdrqsyJyqKD5ItnfPY-g5-845K0Y_f6Ac,3901
1834
1835
  mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1835
- mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
1836
+ mindsdb/interfaces/jobs/jobs_controller.py,sha256=HfI2d_yPmMYJLrDlAYG7hm03BiAIPQ1Gl9bWAncvLKk,18437
1836
1837
  mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1837
1838
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1838
- mindsdb/interfaces/knowledge_base/controller.py,sha256=-hA6E8TDEvMzyxOLDcIGhhvhf76QvoHIDyFiKwOej3k,56258
1839
- mindsdb/interfaces/knowledge_base/evaluate.py,sha256=6D2NcEQTWeaC9S49pfl74ZqMiFVcXCLlnjly50_jb5E,21534
1840
- mindsdb/interfaces/knowledge_base/executor.py,sha256=WN6tKDtBBPBjEQdRaX8KS5ypv3DzoEd2dWWBI60py_U,12967
1839
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=AIVmWqburgzLG7IAl5Z5oRPZQ4gHGA8vjpeO432mLCg,57833
1840
+ mindsdb/interfaces/knowledge_base/evaluate.py,sha256=ZXm_op5-n8beY42ikfgIxx9OKhr7P5Bqr9DkGmHaVtE,21574
1841
+ mindsdb/interfaces/knowledge_base/executor.py,sha256=WwMAYHThohojGPm3ANVYRj425UaKo024HL7mIUTzDoo,14037
1841
1842
  mindsdb/interfaces/knowledge_base/llm_client.py,sha256=pZQdoU8TTyMO1b7sa8-Ou4VRFDxR6974cyJkm0IeTIw,2844
1842
1843
  mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
1843
1844
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1844
1845
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1845
1846
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=l_snHg8O6pLu4-TGTd5K3VgWVwlXa7mnLH_NaQdbS6E,3596
1846
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=scF2wtnIWrsOtuPrmLIYlnFPov9z5fLai3jB9Z64Bjg,14942
1847
+ mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=bX2j3xxBq0zFwT5v2GLvtTiBuECBrAQI3g7NReoRUk4,14647
1847
1848
  mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=ciOiEmSN3JalwN9_d-tfJLabD_5etBYIHavCnazI0x8,17333
1848
1849
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=76SO2G6tSqGzE64cnFWR9XtA8YXqf6rEjS24uRp_Nsk,5850
1850
+ mindsdb/interfaces/knowledge_base/preprocessing/text_splitter.py,sha256=sZKAaZ2cfJrGf1oX1rdeW6CEIsOEp31gIQ-d7sQGa5E,2824
1849
1851
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1850
1852
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1851
1853
  mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
1852
1854
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1853
- mindsdb/interfaces/query_context/context_controller.py,sha256=AonESR6kb3kuqT-t_eJJXJfFSr9TWJVnpxdWkenBiuY,19756
1855
+ mindsdb/interfaces/query_context/context_controller.py,sha256=PlcF_-EmCIyfcv5czPtZRg0UTjbtSmEE3gBpswXY6l8,19495
1854
1856
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1855
1857
  mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
1856
1858
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1857
1859
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1858
1860
  mindsdb/interfaces/skills/skill_tool.py,sha256=ciuo9kEWaRvBIhyXBFCfn3fLBzh2Sr7TgPalPxnOilg,20486
1859
- mindsdb/interfaces/skills/skills_controller.py,sha256=ury7v-nns9OHWMouzetCF1bbAZmbpSwSBpOOYZuXJr8,6248
1861
+ mindsdb/interfaces/skills/skills_controller.py,sha256=Xg5E7tWKFw6Sznws2014WGzGg98k35MXZQ0yy6DqJPE,6747
1860
1862
  mindsdb/interfaces/skills/sql_agent.py,sha256=2AEXbUd1ygRHNWFdw6bjnjerCXQl7X4ct3x_sEjtiMU,26591
1861
1863
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1862
1864
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1864,7 +1866,7 @@ mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=upkozOXGLir
1864
1866
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1865
1867
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=9vre6MI_kzDY4lae42EhOvuTdXcTrs9R_oeiuZkMO2o,12352
1866
1868
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1867
- mindsdb/interfaces/storage/db.py,sha256=SLFof1ZrA43t8yiKgIHCi5qp-NAeXX9tHWy714IItCk,28854
1869
+ mindsdb/interfaces/storage/db.py,sha256=lTRMoucUIEHJKw6doSt50zlyWpZId_C5Xx88nrO7yus,29986
1868
1870
  mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
1869
1871
  mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1870
1872
  mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
@@ -1878,7 +1880,7 @@ mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
1878
1880
  mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
1879
1881
  mindsdb/interfaces/triggers/triggers_controller.py,sha256=tmyaI9Pi-EUkaoN5jtRc0aGa_OgDfRRuag0-7mz-VgU,5523
1880
1882
  mindsdb/interfaces/variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1881
- mindsdb/interfaces/variables/variables_controller.py,sha256=UZ9WBL6fJibtP5Ao5Jzz3Lq_Da7ZkuoYhVS1ilLCSkc,2915
1883
+ mindsdb/interfaces/variables/variables_controller.py,sha256=Js7VjA6vU9LUE0OUrHNLdZohoq7tGN0y9O40yJq3f3M,2905
1882
1884
  mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1883
1885
  mindsdb/metrics/metrics.py,sha256=6pV5DO85OF_iIBTma0TXRUrfNHU9a0Ds2RS2u1-XYrU,1956
1884
1886
  mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
@@ -1952,17 +1954,17 @@ mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
1952
1954
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1953
1955
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1954
1956
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1955
- mindsdb/utilities/config.py,sha256=zFEcXDzDdPuNZl54A1j_rJBwnkWGy4gEKRqIiEfFOMI,27913
1957
+ mindsdb/utilities/config.py,sha256=NP1ZjBLzgUBkkpSNx3q4hm02ohjijln2bYo_Gwo911A,28075
1956
1958
  mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1957
1959
  mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
1958
1960
  mindsdb/utilities/exception.py,sha256=Y0-aO54_EQeebBuvR0105qITJc_Jq6bQ5QszmmKmUpE,2688
1959
- mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
1960
- mindsdb/utilities/functions.py,sha256=xAlSAmgWMosCYoBI2mZyEyIrz0RAJaPTiFDq2sQVIeI,5279
1961
+ mindsdb/utilities/fs.py,sha256=wfM2uAjhGUjrrwsoyQ0d4yQ7-d3XUtW6l-VrQdFCbd0,5635
1962
+ mindsdb/utilities/functions.py,sha256=FkLSSge3EYzG-ow6uExQ6GTMfPYeh8NBWRTf6JTuIy8,6366
1961
1963
  mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
1962
1964
  mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY,9528
1963
- mindsdb/utilities/log.py,sha256=fiiPluFEnO_Ud88Bi25yepRKWXr-9oNsJukR1elo7pQ,4818
1965
+ mindsdb/utilities/log.py,sha256=5ZUwh8J_LG9c_EbHghMwV8Xc-tsJTkvf5S_iFsEaHWg,5767
1964
1966
  mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
1965
- mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
1967
+ mindsdb/utilities/ps.py,sha256=6JqJoAMXqPo7rG0BkImF6szghcANx-Xt_4SRYFZ3rUU,2347
1966
1968
  mindsdb/utilities/security.py,sha256=Jcd6v1UKRr4HY7SRkYdvF9zSjcqeKRO10f295XVZNAA,3017
1967
1969
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1968
1970
  mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
@@ -1988,8 +1990,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
1988
1990
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1989
1991
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1990
1992
  mindsdb/utilities/render/sqlalchemy_render.py,sha256=7GYCKCCFIo4UzmPtnRncefZBuUVdcVEo4ICqHxGWPrw,30852
1991
- mindsdb-25.7.3.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1992
- mindsdb-25.7.3.0.dist-info/METADATA,sha256=1NrujoFaTNCwvdFTXfuubb-KdFV8ccgNBxeecY502Bo,44098
1993
- mindsdb-25.7.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1994
- mindsdb-25.7.3.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1995
- mindsdb-25.7.3.0.dist-info/RECORD,,
1993
+ mindsdb-25.8.2.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1994
+ mindsdb-25.8.2.0.dist-info/METADATA,sha256=oOjooOAkMIV2nuJxlqvVFerBm_Fu2RGvHcBGQi1yq5g,44326
1995
+ mindsdb-25.8.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1996
+ mindsdb-25.8.2.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1997
+ mindsdb-25.8.2.0.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- __title__ = 'MindsDB Anyscale Endpoints handler'
2
- __package_name__ = 'mindsdb_anyscale_endpoints_handler'
3
- __version__ = '0.0.1'
4
- __description__ = "MindsDB handler for Anyscale Endpoints"
5
- __author__ = 'MindsDB Inc'
6
- __github__ = 'https://github.com/mindsdb/mindsdb'
7
- __pypi__ = 'https://pypi.org/project/mindsdb/'
8
- __license__ = 'MIT'
9
- __copyright__ = 'Copyright 2023- mindsdb'
@@ -1,20 +0,0 @@
1
- from mindsdb.integrations.libs.const import HANDLER_TYPE
2
-
3
- from .__about__ import __version__ as version, __description__ as description
4
- from .creation_args import creation_args
5
- try:
6
- from .anyscale_endpoints_handler import AnyscaleEndpointsHandler as Handler
7
- import_error = None
8
- except Exception as e:
9
- Handler = None
10
- import_error = e
11
-
12
- title = 'Anyscale Endpoints'
13
- name = 'anyscale_endpoints'
14
- type = HANDLER_TYPE.ML
15
- icon_path = 'icon.svg'
16
- permanent = False
17
-
18
- __all__ = [
19
- 'Handler', 'version', 'name', 'type', 'title', 'description', 'import_error', 'icon_path', 'creation_args'
20
- ]