MindsDB 25.4.4.0__py3-none-any.whl → 25.5.3.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (86) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/__main__.py +107 -125
  3. mindsdb/api/executor/command_executor.py +14 -3
  4. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +8 -0
  5. mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +2 -1
  6. mindsdb/api/executor/datahub/datanodes/system_tables.py +10 -13
  7. mindsdb/api/executor/planner/query_plan.py +1 -0
  8. mindsdb/api/executor/planner/query_planner.py +9 -1
  9. mindsdb/api/executor/sql_query/sql_query.py +24 -8
  10. mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +21 -3
  11. mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py +3 -1
  12. mindsdb/api/http/initialize.py +20 -3
  13. mindsdb/api/http/namespaces/analysis.py +14 -1
  14. mindsdb/api/http/namespaces/config.py +19 -11
  15. mindsdb/api/http/namespaces/tree.py +1 -1
  16. mindsdb/api/http/start.py +7 -2
  17. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +4 -8
  18. mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -4
  19. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +2 -2
  20. mindsdb/integrations/handlers/bigquery_handler/requirements.txt +1 -0
  21. mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
  22. mindsdb/integrations/handlers/gmail_handler/requirements.txt +1 -0
  23. mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -1
  24. mindsdb/integrations/handlers/google_books_handler/requirements.txt +1 -1
  25. mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +1 -0
  26. mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +1 -1
  27. mindsdb/integrations/handlers/google_fit_handler/requirements.txt +2 -0
  28. mindsdb/integrations/handlers/google_search_handler/requirements.txt +1 -1
  29. mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py +75 -0
  30. mindsdb/integrations/handlers/jira_handler/jira_handler.py +113 -38
  31. mindsdb/integrations/handlers/jira_handler/jira_tables.py +229 -0
  32. mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
  33. mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
  34. mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +0 -2
  35. mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -4
  36. mindsdb/integrations/handlers/lindorm_handler/requirements.txt +1 -0
  37. mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt +2 -0
  38. mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +3 -1
  39. mindsdb/integrations/handlers/openai_handler/helpers.py +3 -5
  40. mindsdb/integrations/handlers/openai_handler/openai_handler.py +25 -12
  41. mindsdb/integrations/handlers/snowflake_handler/requirements.txt +1 -1
  42. mindsdb/integrations/handlers/togetherai_handler/__about__.py +9 -0
  43. mindsdb/integrations/handlers/togetherai_handler/__init__.py +20 -0
  44. mindsdb/integrations/handlers/togetherai_handler/creation_args.py +14 -0
  45. mindsdb/integrations/handlers/togetherai_handler/icon.svg +15 -0
  46. mindsdb/integrations/handlers/togetherai_handler/model_using_args.py +5 -0
  47. mindsdb/integrations/handlers/togetherai_handler/requirements.txt +2 -0
  48. mindsdb/integrations/handlers/togetherai_handler/settings.py +33 -0
  49. mindsdb/integrations/handlers/togetherai_handler/togetherai_handler.py +234 -0
  50. mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
  51. mindsdb/integrations/handlers/youtube_handler/requirements.txt +1 -0
  52. mindsdb/integrations/utilities/files/file_reader.py +5 -2
  53. mindsdb/integrations/utilities/handler_utils.py +4 -0
  54. mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +360 -0
  55. mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +6 -346
  56. mindsdb/interfaces/agents/constants.py +14 -2
  57. mindsdb/interfaces/agents/langchain_agent.py +2 -4
  58. mindsdb/interfaces/database/projects.py +1 -7
  59. mindsdb/interfaces/functions/controller.py +14 -16
  60. mindsdb/interfaces/functions/to_markdown.py +9 -124
  61. mindsdb/interfaces/knowledge_base/controller.py +109 -92
  62. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +28 -5
  63. mindsdb/interfaces/knowledge_base/utils.py +10 -15
  64. mindsdb/interfaces/model/model_controller.py +0 -2
  65. mindsdb/interfaces/query_context/context_controller.py +55 -15
  66. mindsdb/interfaces/query_context/query_task.py +19 -0
  67. mindsdb/interfaces/skills/sql_agent.py +33 -11
  68. mindsdb/interfaces/storage/db.py +2 -2
  69. mindsdb/interfaces/tasks/task_monitor.py +5 -1
  70. mindsdb/interfaces/tasks/task_thread.py +6 -0
  71. mindsdb/migrations/migrate.py +0 -2
  72. mindsdb/migrations/versions/2025-04-22_53502b6d63bf_query_database.py +27 -0
  73. mindsdb/utilities/config.py +15 -3
  74. mindsdb/utilities/context.py +2 -1
  75. mindsdb/utilities/functions.py +0 -36
  76. mindsdb/utilities/langfuse.py +19 -10
  77. mindsdb/utilities/otel/__init__.py +9 -193
  78. mindsdb/utilities/otel/metric_handlers/__init__.py +5 -1
  79. mindsdb/utilities/otel/prepare.py +198 -0
  80. mindsdb/utilities/sql.py +83 -0
  81. {mindsdb-25.4.4.0.dist-info → mindsdb-25.5.3.0.dist-info}/METADATA +662 -592
  82. {mindsdb-25.4.4.0.dist-info → mindsdb-25.5.3.0.dist-info}/RECORD +85 -69
  83. {mindsdb-25.4.4.0.dist-info → mindsdb-25.5.3.0.dist-info}/WHEEL +1 -1
  84. mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +0 -151
  85. {mindsdb-25.4.4.0.dist-info → mindsdb-25.5.3.0.dist-info}/licenses/LICENSE +0 -0
  86. {mindsdb-25.4.4.0.dist-info → mindsdb-25.5.3.0.dist-info}/top_level.txt +0 -0
@@ -1,11 +1,11 @@
1
- mindsdb/__about__.py,sha256=xMpov7jKITeklcDPHjR3WILrQ1IQSPGviN0W95KFY-g,456
1
+ mindsdb/__about__.py,sha256=fgszsf1fQ3wdqen-zsbCIiCvv-94qebnHJUI9h-Q1Jw,456
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
- mindsdb/__main__.py,sha256=UwHgxc2X0jVFXoD4Xtx_SuzhGuNFyoeDgWRtSX8xmvQ,24281
3
+ mindsdb/__main__.py,sha256=4sBR3Md22Ry4iLKcqiN5BtfdgDE15BRFnz48wM4fCjE,22859
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
7
7
  mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
8
- mindsdb/api/executor/command_executor.py,sha256=8LIF0CQkpbI1WsVa4u1kyEQkxRHy1dFyKCAMtHziyKc,79432
8
+ mindsdb/api/executor/command_executor.py,sha256=f_mrZH_CzlBbNQqOjlHsAcwnYwTrCFlqS6LM944LTAc,79867
9
9
  mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
10
10
  mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
11
11
  mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
@@ -18,17 +18,17 @@ mindsdb/api/executor/datahub/classes/response.py,sha256=sCGFeOscRWi7f0SPvS1P3IzK
18
18
  mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
19
19
  mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
20
20
  mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qfgrebm2pwJYOy3zgZi4mQI,594
21
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=R2vFk13fIFvQDd_JP6g7cqPJq3BTNW4CpXZY5jY704w,8260
21
+ mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=q6Mu80zwL7yoA1HstiVHm7jQMrspQQdVnjiPSW8KTek,8472
22
22
  mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=pTPPjSaAI4IuSNdz4xpbguZoxRt7WBNMhvsffalowvw,11907
23
- mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=kYKJWwzwXiNcOTytArtafPX3jJQ9iEdrzyQdo42Eyw0,14093
23
+ mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=inOQtLa-nP0sbyDtwvFGuxZsvWClQDhhNrA-bjFmWP4,14120
24
24
  mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=j2dJHT09FJOq76ORSkgGMtZxtE8kSB4VY6UrRce-KBc,8080
25
- mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=lE72MHKk7yLbbvGvwVThczen290ShpkgXT7L82gvRJs,16982
25
+ mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=_lIL6h8rTXYBzpLQBi_-IjR2BmCoNERafhdI4AYGoFY,16750
26
26
  mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
27
27
  mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
28
28
  mindsdb/api/executor/planner/plan_join.py,sha256=QuwrM2Ck8jQmHMzo3eU768v1QqNtaLCZQ4cKfj2IkwA,22549
29
29
  mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
30
- mindsdb/api/executor/planner/query_plan.py,sha256=_ykXHlvqsaZRv2dEuyYk2W46hj2PRVxDERg9UKRy6bE,750
31
- mindsdb/api/executor/planner/query_planner.py,sha256=P5X4Qja32if1f-DAAOaUMBET8fM0q1D5_FawkiWecKc,34497
30
+ mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
31
+ mindsdb/api/executor/planner/query_planner.py,sha256=Y6eHxlw1bP9FY7ktECDFGYv2Qz6Lc8s1I31rwKKI1Wc,34788
32
32
  mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
33
33
  mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
34
34
  mindsdb/api/executor/planner/steps.py,sha256=8BV3dGf5Yi3jbq_2XPapr5nPyL0KqgPFtWxqX95Mcyw,9352
@@ -36,13 +36,13 @@ mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIg
36
36
  mindsdb/api/executor/planner/utils.py,sha256=pCec75lLc5V84LYMheprYxT7RGeJPKiNZrqA_bYmco0,3838
37
37
  mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5V25G_SdsNIYZI,32
38
38
  mindsdb/api/executor/sql_query/result_set.py,sha256=cX5Mp5BRYzsZ7avbIALVcrZgAs4w-c8O08JOQoQH-nM,9789
39
- mindsdb/api/executor/sql_query/sql_query.py,sha256=NUXAsttNgnbkJUDfLp0dKxo394j25HhCT7p-UfpY9k8,10697
39
+ mindsdb/api/executor/sql_query/sql_query.py,sha256=NEDZmaASFZFuUHWc7BUqWW4jzY1yMUnzyJD1mDwaz1o,11341
40
40
  mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0UxS35mfpeYSL4D_fzqo,795
41
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=ACLQ3LLcZPdzZWqzCdAiX8vvTm6fMlMOlVqluT9-13Y,16313
41
+ mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=OLDgmacimWQAVup3AwBbWu4BYiL65Bk3JkwekTAMWBo,17233
42
42
  mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
43
43
  mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
44
44
  mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=-1CE0KIEY3IZjMfSoVCNUpe_yASU7rBnpVvEmpU13AQ,3941
45
- mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=AJS_AcCPE8zKbogqo2ZFGyi8LPYbQ_avvB92WMNYkpw,8246
45
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=D0sqnX3n7e2eLbJzq-pgEpdfVIcTLBSgnk6nI84bk-I,8445
46
46
  mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=nu1D6Lx6zQ0_OKT1LG-cfwedSNwT_Pg6TTCfUBKcPjM,3817
47
47
  mindsdb/api/executor/sql_query/steps/join_step.py,sha256=8wW7AmIMhMinpMovSgl-2CGujV3mDX5kTFLxuI1KZfQ,4261
48
48
  mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
@@ -59,15 +59,15 @@ mindsdb/api/executor/utilities/sql.py,sha256=vULbEMKN3ZB5RULqC_VPRhuROQ0_CotHYqA
59
59
  mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
60
  mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
61
61
  mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
62
- mindsdb/api/http/initialize.py,sha256=pWQCv7YicvU7rmqh0w5r-12iWHOtdNChKWID-bxzvXU,16174
63
- mindsdb/api/http/start.py,sha256=3F2iob1EHNh9cCeuxD1RjlVp0wnRw-ybh7lU5KaYGK8,2350
62
+ mindsdb/api/http/initialize.py,sha256=DSj6m1mgNay3JNYwWsmvQ1-CKy0xfc8e8TkYMU-Wzlw,16605
63
+ mindsdb/api/http/start.py,sha256=tD_ImE2kbGAJk3wFX6s5ezCavd2LRJ2qU9U2tOVSQLo,2389
64
64
  mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
65
65
  mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
66
  mindsdb/api/http/namespaces/agents.py,sha256=H3C4MmNCsrk3Dv8Cw1kx0j7EvNOia5PfyfQYuElgczE,18984
67
- mindsdb/api/http/namespaces/analysis.py,sha256=Dp3izdLkG35cSAKNUPJfuGoFSRe34CzFPKk2CEVjDoI,3821
67
+ mindsdb/api/http/namespaces/analysis.py,sha256=5MyWZ40VCVoeHNF46DhIu-gQ2TDU_EJiqSEtc9n1oX0,4290
68
68
  mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
69
69
  mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
70
- mindsdb/api/http/namespaces/config.py,sha256=-OZaCf32lHIi1hZ3gt6nuR0XF1gxkh3zv-oU28Z9Tfs,8382
70
+ mindsdb/api/http/namespaces/config.py,sha256=tC7MItEt_hjpG1O8-y85sEqPtwX_iPj7mNdTQ6zSg-0,8785
71
71
  mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
72
72
  mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
73
73
  mindsdb/api/http/namespaces/file.py,sha256=u6xYa_moAMb0UXWGkNtErGw9nk-FbloRuLHrLCANjoU,6644
@@ -79,7 +79,7 @@ mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-
79
79
  mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
80
80
  mindsdb/api/http/namespaces/sql.py,sha256=oLBc1DHQS9aTb5jy4jxg5WYQQe40aqohr6Yr_1St5vY,6073
81
81
  mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
82
- mindsdb/api/http/namespaces/tree.py,sha256=8I_X7Uhn6OAEsgWOfneF1UBif0T0YFmj-SG_iT20C3E,3807
82
+ mindsdb/api/http/namespaces/tree.py,sha256=_lWGp4wrX19GnqVD36U-ZmZiHfMIwlSAf9fIUYc9LYg,3812
83
83
  mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
84
84
  mindsdb/api/http/namespaces/views.py,sha256=bSoCOJQq-xyWdOpNRA1YyOSlYHTHHYIZgd8m4E_rvy0,6226
85
85
  mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
@@ -154,11 +154,10 @@ mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaD
154
154
  mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
155
  mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
156
156
  mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=qQbQxwoP61wuqlmeGcvu4loNpN7fgKs6hBXeRamcUgs,35849
157
+ mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=Onj9IlD_lZgm6Wc5IE2aW9YXzTIOQrkk7odT-mSKU_k,35694
158
158
  mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
159
  mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
160
160
  mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
161
- mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py,sha256=EPdgPoazneHngvbeBcAHzK3kLmUOOeZoGyJepYDO_P4,4436
162
161
  mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py,sha256=TxhoWBkpVJShG-tPLDd4_7xhz-CtjoWBtq83k5U4oEc,75
163
162
  mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=uUOaAJfmSIcZYLT4dppnbRun7Uawd5x_09bJfIN2EUs,1003
164
163
  mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -188,7 +187,7 @@ mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzp
188
187
  mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
189
188
  mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=eCDaSXJJIZ45V24OUk9tlnXVUmlNtRyECraddhFXRiQ,42062
190
189
  mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
191
- mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=6iKdCaPRytM2uk9F0fXEl7Xl89wU-_28K0CtndChvfU,407
190
+ mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
192
191
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
193
192
  mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
193
  mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
@@ -200,7 +199,7 @@ mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8
200
199
  mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
201
200
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
202
201
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py,sha256=YzwqqOdkSqdWp_E_IY-UIkPpv0SakABZ7EsUdYtKFKo,1093
203
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256=-c3u1LOiZQm8auH-decAC1FX0Qc7ziGQHYVN04nJG0s,40804
202
+ mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256=LB1zEgsI0U_9rLdwVED0VQRz7AWR1EuCLDsR-WF1CTw,40739
204
203
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py,sha256=3qpSK3UWHW-Uo1qjgnz51aGPDCcVDfvQBcsmE932A8Y,626
205
204
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py,sha256=VDdUFydhXPrDyFD4iy_BHF4e9COXElcqmTBRqwYofKU,8422
206
205
  mindsdb/api/postgres/postgres_proxy/utilities/__init__.py,sha256=3RdLBT2FuJ1jzjysirDmfzQ0ocRcrhKONrJw2XQB2PQ,259
@@ -322,7 +321,7 @@ mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNic
322
321
  mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=TaRObxvb1tlcCWVvMpA8n5axAhHKX6U9_OrGCBY00fs,6896
323
322
  mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
324
323
  mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
325
- mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=rV1GskvFDvRL5nxRw8ZWFPnOm9OSP-TvdnDFZH2nsSU,50
324
+ mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=l8BgEzlWWL_88GeLfV3Dp40Am3DUNuDlVkgnH9jJccM,131
326
325
  mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
326
  mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py,sha256=NIKmL53wA4AjWxd3BgR7GYAfoYYvVjPGa6Owvpy0WuA,7489
328
327
  mindsdb/integrations/handlers/binance_handler/__about__.py,sha256=sRDhFENBpGgEy14erGnc-_KecQcR6O7yAGSUIY_ZWfQ,348
@@ -357,7 +356,7 @@ mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2J
357
356
  mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=zBQ-Nl1aQqZFJbVo1W8-cxuLsPkqP6W01edZ1IXUByo,18704
358
357
  mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
359
358
  mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
360
- mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=xDi58Geqkth3WtJFFFD20zyutNzmtrKu9cQOSNNzx9A,16
359
+ mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=74shT4HXgWhY9USh902gDPUo7SvgHZZ2u9V13jkdC_E,99
361
360
  mindsdb/integrations/handlers/chromadb_handler/settings.py,sha256=X2InXMtGB5rwTgPIhKCw7h83dzH2n89P0QjsoZv8p0Q,1994
362
361
  mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
363
362
  mindsdb/integrations/handlers/ckan_handler/__about__.py,sha256=asp1VEDXJCLipP3uoPK7Q_qXIODhH89pJqQyjv6P3WE,337
@@ -670,7 +669,7 @@ mindsdb/integrations/handlers/gmail_handler/__init__.py,sha256=2Ed7Pfbdz56spFnl9
670
669
  mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=ICSjOPrCxpOQEpXLkyjm-osa-9fhm_tf77iekhqAsTo,780
671
670
  mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=IEsMHrzgyWEiiLYN1oJGOg4uEtvqw_1TdwoaJE98JuM,18088
672
671
  mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHrma_Ho8dyXNTAgXnQK25hYD4,862
673
- mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=CE8Tu4MYTFbjPoVIYlwI55wCWl22Re5B2Sr4rDLiHKE,25
672
+ mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
674
673
  mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
675
674
  mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py,sha256=wjJHWn2jBFHm4gBtuVSoc4MdFoIy54jkfnCbPz77KHc,1479
676
675
  mindsdb/integrations/handlers/google_analytics_handler/__about__.py,sha256=68QyRQWAMw0MGDM64tuGkSrjepQmQKQea5zvfw0r0Aw,369
@@ -678,7 +677,7 @@ mindsdb/integrations/handlers/google_analytics_handler/__init__.py,sha256=ynl-z1
678
677
  mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py,sha256=-u--wXJwBMBfToVa0Vtx_tPPty9q8X4hkCCy_LCV3j4,4706
679
678
  mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py,sha256=ya4ZEvj4piomTQhICWLG-GIMUzZwiXvmsdT7ZTNaylU,10186
680
679
  mindsdb/integrations/handlers/google_analytics_handler/icon.svg,sha256=wDK8PISrdQpdaPBZZpzkC-tXNlxKccBtYRUy99mvDvY,1066
681
- mindsdb/integrations/handlers/google_analytics_handler/requirements.txt,sha256=HAn-QtKytgMh31qMGR4YZA2pQIK8Nmh-rB4M5dLrau8,47
680
+ mindsdb/integrations/handlers/google_analytics_handler/requirements.txt,sha256=8-uBXk0JSITMEupHUDVG4iyYu7o3G_Krfepp-uleXpQ,59
682
681
  mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
683
682
  mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py,sha256=cHXwGAuWmuroN-x_b0YKWgGD4ax0Vad3V4xzgHDgqSU,1815
684
683
  mindsdb/integrations/handlers/google_books_handler/__about__.py,sha256=O5UgmDgG_LDRCZi_Jyc4wZLcYsWzPL6BJIkRFxjm2Do,379
@@ -686,7 +685,7 @@ mindsdb/integrations/handlers/google_books_handler/__init__.py,sha256=6qKoU8qvFL
686
685
  mindsdb/integrations/handlers/google_books_handler/google_books_handler.py,sha256=_GGQMKamWOaTpKn0NS-A27RNjfYVKvRoefm74Y-xZdY,6901
687
686
  mindsdb/integrations/handlers/google_books_handler/google_books_tables.py,sha256=knoFrJ1fo6lvDCywk5QbM21ohrgcEHZFd2BwTAE5eDU,6268
688
687
  mindsdb/integrations/handlers/google_books_handler/icon.svg,sha256=PNUyfFJEaEAgCxmomXG_1SYW9VaSF5zilZi6X9Xuhls,962
689
- mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
688
+ mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
690
689
  mindsdb/integrations/handlers/google_books_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
691
690
  mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py,sha256=tuww8tSsOPizyjPEcHcu7E73q08ErErQbXBSKxw9fWY,1487
692
691
  mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZz9sTlrSoW5FIUbFZqmW4WD1BNe-66IC1hj6Vs,388
@@ -695,7 +694,7 @@ mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=
695
694
  mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=o-iXM8SNuRmoFxJJt8RlRVMqhbjqSYlT3xALifsZLfw,10851
696
695
  mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=SWioh20npLHBTJu8XsYIImdWZ2mgs34pcvPrudCmOjs,8111
697
696
  mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
698
- mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=CE8Tu4MYTFbjPoVIYlwI55wCWl22Re5B2Sr4rDLiHKE,25
697
+ mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
699
698
  mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
700
699
  mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py,sha256=Tv1O__exOy2k58VNAG3LQgOUKICIUt_-RpqAzuGiiRA,2215
701
700
  mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py,sha256=kUidXzaoLPxNOiywhLPrUFjG4JZl8krOHzS0QMWl7Tg,424
@@ -704,7 +703,7 @@ mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py
704
703
  mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py,sha256=iRAdruNYOo7Qo7_RxccRD9sO35hZp1RUUgYneLoLAkM,15706
705
704
  mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py,sha256=KnTbG2iq2IzTKu0LWBZXCKw5xRRBqG9VawKwy1csFKc,14279
706
705
  mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg,sha256=q8FcSns7BbYLiMtErVngNMkLGXbjxeeP8IuKIGhKKJA,2651
707
- mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
706
+ mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
708
707
  mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
709
708
  mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py,sha256=0yOsRSpKCGiHAKpe9m7g7HENYY2vcCPVk6sP1k5wLsI,2436
710
709
  mindsdb/integrations/handlers/google_fit_handler/__about__.py,sha256=f6IFxoETFim29W0z7BPQG57SWBNyy838DTuBY_68I6k,358
@@ -712,7 +711,7 @@ mindsdb/integrations/handlers/google_fit_handler/__init__.py,sha256=ZzcJSVhfMTx5
712
711
  mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py,sha256=w2tKHb9SR6bvH_4-Xys-Xzpep7vWgxVKnHt-8sZI6vA,6619
713
712
  mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py,sha256=H9_iidTDuqh5vonMbxaNSqUZ3xnRZcdjKRzN1gm9bjU,2496
714
713
  mindsdb/integrations/handlers/google_fit_handler/icon.svg,sha256=3ZgBVbln5KXnYpVLDTbYDGfQp_hUGW3W0GJGVJUjQ98,1511
715
- mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=QGBNRuyeerx46dPHS7zSgFtC0LD6JuGUY97WlIJtpp0,48
714
+ mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=XAgJL2biwLXpTpn7NBWXVYxtpUTh0zKHFm2bgjhXAWU,80
716
715
  mindsdb/integrations/handlers/google_gemini_handler/__about__.py,sha256=6wu9JKGI5scaFTcO59kcrQ1F6ooVaaPeS3-sYxOYojI,374
717
716
  mindsdb/integrations/handlers/google_gemini_handler/__init__.py,sha256=EUCAGAXFNB-VuxjGG-knqIVPIAZ_ujj57rd_1yxr0Gk,617
718
717
  mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py,sha256=9wsvVDBdcB39_vpYxZNzqY5C2cC3iNv1KORV9abBK1A,14235
@@ -724,7 +723,7 @@ mindsdb/integrations/handlers/google_search_handler/connection_args.py,sha256=HS
724
723
  mindsdb/integrations/handlers/google_search_handler/google_search_handler.py,sha256=IYGAuZUcOKriVkRFCyXPtIgT87rteXnxTYB_qVlpDkk,7682
725
724
  mindsdb/integrations/handlers/google_search_handler/google_search_tables.py,sha256=faXQl06-MdO3EzzyQh4PQjag6g30VyFvbGGd6699Cio,7375
726
725
  mindsdb/integrations/handlers/google_search_handler/icon.svg,sha256=Dsio_gu-jTENejm6qPAAfAvarnRDUocgqmMtjCuyw6U,3303
727
- mindsdb/integrations/handlers/google_search_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
726
+ mindsdb/integrations/handlers/google_search_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
728
727
  mindsdb/integrations/handlers/google_search_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
729
728
  mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py,sha256=V-jX_GbRwpu7lq8l-4Kf5x-PTxyXL5TaWsnX5nfIkUM,2178
730
729
  mindsdb/integrations/handlers/greptimedb_handler/__about__.py,sha256=dqfX5vPUkk2ilQY9jy3BO0WN3pwcqTRa8mCNnQKg6CA,345
@@ -843,7 +842,10 @@ mindsdb/integrations/handlers/intercom_handler/intercom_tables.py,sha256=GKEJEhu
843
842
  mindsdb/integrations/handlers/jira_handler/__about__.py,sha256=qP5rGBzzyFBTJnGNCeyOjiBlzfYjt26PU6bw_8MJQOQ,337
844
843
  mindsdb/integrations/handlers/jira_handler/__init__.py,sha256=-WxcLvQvLWii6lNY6-nlNwwkMBSMg8n97pleTAflrQY,509
845
844
  mindsdb/integrations/handlers/jira_handler/icon.svg,sha256=mv8Ee-sh3YbNrGHgdQdgazMICVjU1StIu1Y41H9SjRc,1246
846
- mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=UXlwCX728lR_YZg4ipb7hkCyUcH710nIpPirR7s_xdA,2266
845
+ mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py,sha256=UXlwCX728lR_YZg4ipb7hkCyUcH710nIpPirR7s_xdA,2266
846
+ mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=9ruKV-RRjQWTfrx8bRCg64_cvYifwytmfjihNGy0p8g,5365
847
+ mindsdb/integrations/handlers/jira_handler/jira_tables.py,sha256=_9ZfQwQkH4z5ZIW0oJ3KX_90FIVsTr72xK7bQXw4-pw,7419
848
+ mindsdb/integrations/handlers/jira_handler/requirements.txt,sha256=vVWJtxeUJEMAttQBlw2Sd7la-QjEo7Vb1yfIKWighOs,20
847
849
  mindsdb/integrations/handlers/kinetica_handler/__about__.py,sha256=t4T3AR68hK91GASSzoP8aWSbbtmszFC0-i7Nb8UVIgs,344
848
850
  mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=xGpX3Z4sE32AqOPHJ09Vhh-9tvjusZACBCAUwTv8hDI,683
849
851
  mindsdb/integrations/handlers/kinetica_handler/connection_args.py,sha256=3AaekEw24nX7mmRsqrYfs0M4jCVQ4VvdRHQDFRBosxs,1682
@@ -895,14 +897,14 @@ mindsdb/integrations/handlers/lightfm_handler/__init__.py,sha256=f-fMTNsGErwLMvj
895
897
  mindsdb/integrations/handlers/lightfm_handler/helpers.py,sha256=N7hYwxcyjPxlVf2G4c2KTtlxQaBet1lbHiR5kNwFG8M,5263
896
898
  mindsdb/integrations/handlers/lightfm_handler/icon.svg,sha256=_KcxXXP005uyyLsAIHfRahtW82RkNnfw2L1ywQIuV3A,1678
897
899
  mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py,sha256=CECVhsWFGAyXQjsKGPPOwQQjjnB0KSOQSLbG9WjRLCc,6794
898
- mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=KMMF1queeogn0PaPxqIdRAfK2dS7ZGeRzHpJcIVI8rM,14
900
+ mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=byOltfkHeBtVGbjzPwloIwDTQoIBDjSrCychMh8GUJo,36
899
901
  mindsdb/integrations/handlers/lightfm_handler/settings.py,sha256=0iwjsbfzYwBsCizVymXn-vwhOYrES7Hm0MEmiviGP4I,143
900
902
  mindsdb/integrations/handlers/lightwood_handler/__about__.py,sha256=9SiT20BQuKEgzGSxhDunieyX33S5XS0cst9MxDfw-1o,345
901
903
  mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfef9lCHd7293J6GEEZRXLP5Jp07KkvOc,504
902
904
  mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=WkeI0J19WPh_36wZvezpnV2SW6wc9tEkumKil3qTB-4,9139
903
905
  mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
904
- mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=H-Xq0Zxc3hfGHGmmWSXkAmT79V_8R6DQ00nnPRUl-3M,23643
905
- mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=vB2o7KbynVd_ePEfXGvBZZ-EOsy-KsYOcm82qQ5S8c0,91
906
+ mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=hCqycB1NzQi33gXvpigy4Q1IYy-z2sCq6Eq4UiMXOro,23607
907
+ mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=jEN0TN09G2-yFrr5FSEMjEVZFnkoS7nu2lJrJdjVBLI,91
906
908
  mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
907
909
  mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
908
910
  mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=kQlcLZqpZEgn03-SMGOxHS5Z-2ayOO-wyaU_r4d-754,10985
@@ -910,7 +912,7 @@ mindsdb/integrations/handlers/lindorm_handler/__about__.py,sha256=2V9KbVFWmQ2v98
910
912
  mindsdb/integrations/handlers/lindorm_handler/__init__.py,sha256=jZNxAhQpnXT6u7E72ZFPugYsbH5Fw-TH_JbHWRDWEY4,534
911
913
  mindsdb/integrations/handlers/lindorm_handler/icon.svg,sha256=Zj6gBi36Sf8YPQP0mYWr0YMznOeHdMNECasW_-C4o7g,1293
912
914
  mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py,sha256=OWKgOVxsVHA6TyhCXfKTh5Q1fLh4-GCkwrDuw507_Eg,6707
913
- mindsdb/integrations/handlers/lindorm_handler/requirements.txt,sha256=eqUy51tMW_d06Cs2sRDz8sHCF5yHOC1XcMFwthsKDfc,20
915
+ mindsdb/integrations/handlers/lindorm_handler/requirements.txt,sha256=gnFyFuCLPdeDlN9PlotCbHNKyeVb9xR2ptVKxezuWa8,36
914
916
  mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
915
917
  mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha256=odnriKTV2M0T-dExrDM2iZFmDyVXXnfqznHWFAQOMco,1037
916
918
  mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
@@ -1038,13 +1040,14 @@ mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z
1038
1040
  mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=wncgJ7BXsFNRMn3aJLhtwZIaDCeoeHdBpCmg_dzm_Vg,3516
1039
1041
  mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8Xi8rKFWpEsDw5mzqgR7IW4wEbk-TBNqNqOj4350gL4,9333
1040
1042
  mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=rBD6sEli8XP-cxTogFu2J7ScO_WTw1gM-6gZm2P8lsc,2802
1043
+ mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt,sha256=8R8PuNfdoud8HqxiFGWQGPxloaJqw_qmF0a8blYJPIs,89
1041
1044
  mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
1042
1045
  mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
1043
1046
  mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
1044
1047
  mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=QBB_0aQKbjTq0Y9nHX9Xk3QTRF4Bp-owHrkpxHj4SAg,15855
1045
1048
  mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=yljq2o0ajFCP_Nnxhe6iG033l_L8VRXKPl_iQIlquLI,9827
1046
1049
  mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py,sha256=zsrQCrqSKt5JedR2T1q89NvCoZUvD46-3bzWAeXaVs4,13072
1047
- mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=On99gSLUaYbgUGenm0cRwUf-C-pPune9zbcHkRtdoLU,40
1050
+ mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=6jx_GtaB_5uRpqmcNBJwBgPzPMMe9ygj4bRLE2zkwCw,130
1048
1051
  mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWRxOrMuktBneTm9JRLeGkZiSSH-EQ,363
1049
1052
  mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
1050
1053
  mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
@@ -1119,10 +1122,10 @@ mindsdb/integrations/handlers/openai_handler/__about__.py,sha256=CHoor6pfv6jc7Lf
1119
1122
  mindsdb/integrations/handlers/openai_handler/__init__.py,sha256=2oicF7rVoEJTh-_p_7bpmh3shHYL2zZr4tPj0ZDXeCI,621
1120
1123
  mindsdb/integrations/handlers/openai_handler/constants.py,sha256=szFwNnhFO8g_XJh8DnqxlrmZh9YTkiTiCpvAI0txZak,1356
1121
1124
  mindsdb/integrations/handlers/openai_handler/creation_args.py,sha256=v1NHiz-tLvAHrcA_vIe1A6L5UbeGpHBl88XWZVgtric,342
1122
- mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=Tp-4KQQTCfYl5UYGQFBbP3hiqhmfLMnQzpiaCcA8LTk,6978
1125
+ mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=xEezAE-Pmxxsa878vAtO05AxBhLQkT89ShPjBwyZoEs,6843
1123
1126
  mindsdb/integrations/handlers/openai_handler/icon.svg,sha256=r5vCiNm9_nL1ZbM1e6PYcTzw9KrgC0hqWT8IAi2pFbE,2625
1124
1127
  mindsdb/integrations/handlers/openai_handler/model_using_args.py,sha256=c5NBe6RGkRGVOLhc7Ksq3M3w96Kd9KECO6T01j7VS90,76
1125
- mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=Dx_5vrNLX02gTXERT9_oWzziDJ45EWp1EzyqIdaU8aU,48686
1128
+ mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=NjHJQzCFgTd3QZpdtvr7CMMxtyUbcnvavBcQ5RvzX5s,49206
1126
1129
  mindsdb/integrations/handlers/openai_handler/requirements.txt,sha256=u06ahGd1EskIW_Yy-5Y_jNLNbN1CtF9N3ylGPPOPBLA,9
1127
1130
  mindsdb/integrations/handlers/openai_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1128
1131
  mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py,sha256=W3b39JCQfCF_IXUS98j7KqTqIzeYne9RDba33AxM774,18651
@@ -1407,7 +1410,7 @@ mindsdb/integrations/handlers/snowflake_handler/__about__.py,sha256=O2reZn6Jc5N1
1407
1410
  mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DIgRy6XdrGgBjTf_H5G514XYH0fGFYsw,609
1408
1411
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1409
1412
  mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
1410
- mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=iTXmeBgeK_eFwxQM-1Lpv4MCy6_Nd7RWD6FpE6P9WA8,71
1413
+ mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=jPONiX7mUekXJMK0Tv1A5fhSAR2Vkc-_4E_pCDJo068,71
1411
1414
  mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=B_QRuLXo-5YBg2294bifAd3asN_sHt8EdXVfYYsud1E,14715
1412
1415
  mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
1413
1416
  mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
@@ -1540,6 +1543,14 @@ mindsdb/integrations/handlers/timescaledb_handler/__about__.py,sha256=joUHMPBAiy
1540
1543
  mindsdb/integrations/handlers/timescaledb_handler/__init__.py,sha256=ynMpLqCRlYomZEFEinXmtYYGr0DPIMQZ9HtsytOpe6c,497
1541
1544
  mindsdb/integrations/handlers/timescaledb_handler/icon.svg,sha256=sZHwvwAJ5SiTLSHhjdm_2YazVz0KEDQj-5KYR7cBTxo,6197
1542
1545
  mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py,sha256=24xdH6WK-EDXmRK_51J-uvsizQcveeRopEtohfgUfqU,1439
1546
+ mindsdb/integrations/handlers/togetherai_handler/__about__.py,sha256=Sj0Z65YQtkWCufv5ucIN1badPvfaMZvG8AYHqBcoabQ,348
1547
+ mindsdb/integrations/handlers/togetherai_handler/__init__.py,sha256=vYINYMgIw3ssDadFUYI3MCUHlBTzJY_J2y9vMI6H2Y8,649
1548
+ mindsdb/integrations/handlers/togetherai_handler/creation_args.py,sha256=h_45u7qld20WfzL241mtIi1l6DTRjmAEUe5pO2ABjLg,355
1549
+ mindsdb/integrations/handlers/togetherai_handler/icon.svg,sha256=_VGYB5C26lzRj1lZN1ky-WGOQez8x2zDmXNtJPyNAaQ,21743
1550
+ mindsdb/integrations/handlers/togetherai_handler/model_using_args.py,sha256=T5kGCBoy_qCq9MuiX88MoleUi8lmB4Iwyut0535lvwg,80
1551
+ mindsdb/integrations/handlers/togetherai_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
1552
+ mindsdb/integrations/handlers/togetherai_handler/settings.py,sha256=jCdx0RNNh0xL-wqmvfKzJEF6ugsC99eVEuGp7qJeg3w,877
1553
+ mindsdb/integrations/handlers/togetherai_handler/togetherai_handler.py,sha256=94K7ZMeEuBtofbiw-bDwHnA2YhwPTAt-llO_mTf40zE,8259
1543
1554
  mindsdb/integrations/handlers/tpot_handler/__about__.py,sha256=UnKylDgzptBz8GP0Az_AnwEtYN7tGTzSkrk8OByt9hg,335
1544
1555
  mindsdb/integrations/handlers/tpot_handler/__init__.py,sha256=In_YSefcrQXPbgqBoTR77fx9sIRpBTBpWaIlhaaHHhA,526
1545
1556
  mindsdb/integrations/handlers/tpot_handler/icon.png,sha256=j1DfF2jF1kWD3dhCET51X26QnSW9rNuLXXG7Tav3M2M,114250
@@ -1588,7 +1599,7 @@ mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py,sha256=Q
1588
1599
  mindsdb/integrations/handlers/vertex_handler/__about__.py,sha256=SCffhHdeD6ZuszymGrBBPfoo-k2Yj8-Yx4PzjW855XQ,350
1589
1600
  mindsdb/integrations/handlers/vertex_handler/__init__.py,sha256=LJCNEoHxKyxi4FzyqwIxPXZXfuBX7-FEGlROGEtEbnI,498
1590
1601
  mindsdb/integrations/handlers/vertex_handler/icon.png,sha256=EWxLkZkclLeq83BfYAy8OV8ijKPPXmAKWJ3ltMpbLRs,23708
1591
- mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=40crm7gp9aqkiWzROcakrCUuaz9ELam50bgMXJmLzSk,32
1602
+ mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=iTc66wzuOVy_ugDXcckpDrPiey9CY5UVWB8e4Wte01Q,113
1592
1603
  mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=5a1H4QzhnCnBsPdiHdR-zN-B4Gjkt6BzXdHzZKbibwU,3903
1593
1604
  mindsdb/integrations/handlers/vertex_handler/vertex_handler.py,sha256=9MmbCzJrXtMlSis9LpjlNsamuSWQ9PhTTl5D0WhHTXk,3924
1594
1605
  mindsdb/integrations/handlers/vertica_handler/__about__.py,sha256=11Aa7YF_-bkqrVZ4D2tNwZpfa-kEt5QpaLKKVnS_WYA,343
@@ -1649,7 +1660,7 @@ mindsdb/integrations/handlers/youtube_handler/__about__.py,sha256=mhUWf5rM8hmHZs
1649
1660
  mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=wz69UgXa3njxAci8Srh7FaIW2eLNuz45LR0sNiCux3I,583
1650
1661
  mindsdb/integrations/handlers/youtube_handler/connection_args.py,sha256=08xO6KHfAlFvgSq9QU6PxWDk9AmmPgXdx41ayKxHGAI,923
1651
1662
  mindsdb/integrations/handlers/youtube_handler/icon.svg,sha256=uvNffuRPGVzPxWkbZzkSrw2SHm8M8c4GbeypiHPWDss,954
1652
- mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=Hx27M_gHLgyZBIsNQZAcXYcnFtRgqlHvEgPnWhdisns,48
1663
+ mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=1TSFkd3bOkjfohLD9ZRIynuQGqAyyL-qZjZC_BWapJU,129
1653
1664
  mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=FewpJAHZyYJItt2qKaHjXpZwajpxMAWAD6DibVWic5Y,4217
1654
1665
  mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=-PiJbjpqoWjh-sdf-EiJ9nyan7DfmkNmPvROzHYgZjA,16797
1655
1666
  mindsdb/integrations/handlers/yugabyte_handler/__about__.py,sha256=tVimKqXLHCbBZFeVs2_LfbwaXt3oOBx2k_fTbiu4uwU,350
@@ -1706,7 +1717,7 @@ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=ccz
1706
1717
  mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
1707
1718
  mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1708
1719
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1709
- mindsdb/integrations/utilities/handler_utils.py,sha256=UEgEckWFDZXLcu5AbBFrqPJuFFXgejDmDRkr6622CPc,2272
1720
+ mindsdb/integrations/utilities/handler_utils.py,sha256=r_EBkrgf6dmkHmH12ANOFIw6aS03mTeSU_tWa9p3yVc,2404
1710
1721
  mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
1711
1722
  mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
1712
1723
  mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
@@ -1719,7 +1730,7 @@ mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-
1719
1730
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
1720
1731
  mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
1721
1732
  mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1722
- mindsdb/integrations/utilities/files/file_reader.py,sha256=r9Eb86eRSF-vi5sU0E9FNJIKJdlMEl2n0yRDt0ykNvk,11298
1733
+ mindsdb/integrations/utilities/files/file_reader.py,sha256=rqL4XgeLRaBE3B0rFfMm6zNctMJs-IHV5_tTqnqqpww,11508
1723
1734
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1724
1735
  mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=zkvVb54zxtn4_NSwqCD-SVQG_5JI9EYRygb6EABQu7g,43
1725
1736
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
@@ -1758,7 +1769,8 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_load
1758
1769
  mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1759
1770
  mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
1760
1771
  mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1761
- mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=w0w8j_4Wt7jiCfJaTyfpY5NJhCaWLuJAzjm0xyUzFXo,21317
1772
+ mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=dtXKri1RHsjhbfkgsKDTvrx0MedhFxc6iwlARpJDQ0c,17998
1773
+ mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=IN7R2dtqEtqdhPQh5r62oZOII_4m_ZU-XCpnbvSqjw0,3729
1762
1774
  mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
1763
1775
  mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
1764
1776
  mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoTWz6OlhRG-GzqdPPoAR6XyPtk,264
@@ -1772,9 +1784,9 @@ mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVG
1772
1784
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1773
1785
  mindsdb/interfaces/agents/agents_controller.py,sha256=NwqgRlZ1XyZggxLI98x0xVt2vyqrefqrzN6ZvXoU6kU,18318
1774
1786
  mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
1775
- mindsdb/interfaces/agents/constants.py,sha256=xBiIyfjVBggMBm78fvrssyDJwci0T8YP01lGxzHd3iw,4810
1787
+ mindsdb/interfaces/agents/constants.py,sha256=2UD4YaxhkDkwqAqCbIRGQH53vuOWq8Khjb_Y99Ijtn8,5022
1776
1788
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1777
- mindsdb/interfaces/agents/langchain_agent.py,sha256=ElPKeJW7mLOEMFdJKHE7FTTMu_Lijjn6_stJRslBaHg,27743
1789
+ mindsdb/interfaces/agents/langchain_agent.py,sha256=1yWg_vTSG-kQkBV5wV7stySVgBBLqY2Zq3ByW1UhsRs,27682
1778
1790
  mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
1779
1791
  mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
1780
1792
  mindsdb/interfaces/agents/mcp_client_agent.py,sha256=9oki-GDsN1H6fYsNLBQWTMYSHGpWliYF9I5AZSuXS8U,9814
@@ -1794,41 +1806,42 @@ mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
1794
1806
  mindsdb/interfaces/database/database.py,sha256=ax8GlviJpdTyufQvBfy0ft4H8pxH7w4hp_ejNY_aYHM,4356
1795
1807
  mindsdb/interfaces/database/integrations.py,sha256=B4dfcOCsUMKgX5teNEGrXwUBnrX5L2sUP34XvbUaSdk,36825
1796
1808
  mindsdb/interfaces/database/log.py,sha256=lRfYgAAeKXT6f8S-b_-sjqn99lZOgSCDAazLeJgXdF4,11076
1797
- mindsdb/interfaces/database/projects.py,sha256=N6BOCIr3nq2PSSpYzwIUuL4O_8Sr8vmD0FIoY4K11P0,16731
1809
+ mindsdb/interfaces/database/projects.py,sha256=Kgi2PJmKQ9AVqnjpNhomSJCcmucSAXj9qE7XMIydtOk,16463
1798
1810
  mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
1799
1811
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1800
1812
  mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2uARKGp_NWBkKY,8626
1801
1813
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1802
- mindsdb/interfaces/functions/controller.py,sha256=N9gD8tLp7J19_qeIaN4dyng-0993WDRoQKqWHBq_MZ8,7428
1803
- mindsdb/interfaces/functions/to_markdown.py,sha256=Gs-rMBfMsdau-0FbQZpvV7_Aeg_vw9Aj25lh6SHGInE,7408
1814
+ mindsdb/interfaces/functions/controller.py,sha256=jFzu8Glz8CyeOFYiLMAEqetW6feV9XCENUW66lBBGQI,7400
1815
+ mindsdb/interfaces/functions/to_markdown.py,sha256=labr_DTrl8dDKNgusZM0Nf6ISXkemeSAlSR04ddI_rU,2847
1804
1816
  mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1805
1817
  mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
1806
1818
  mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1807
1819
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1808
- mindsdb/interfaces/knowledge_base/controller.py,sha256=VhUji-VV1R4egk1E8BMm78YrKk0FAicLyCQXT9LVGOA,44821
1809
- mindsdb/interfaces/knowledge_base/utils.py,sha256=KGIbP8n5bx6JpL0jtFGeGd3lvDkFmZQnpIG9VbUmStU,1074
1820
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=0Eiq2vig_05azth4zI4UO7ygqYAkx3u-2ab7rxckPCw,45496
1821
+ mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
1810
1822
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1811
1823
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1812
1824
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
1813
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=w1JWYhpRhV7gyHuJgyE2cKGBh6U4x_T4lp0h3Ay9MLU,13261
1825
+ mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=dWcsNNMHntcVcbUKnbFhtjDGLxZwVVjGO5Ao-q7TsWQ,14477
1814
1826
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
1815
1827
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1816
1828
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1817
- mindsdb/interfaces/model/model_controller.py,sha256=o84VBCAqr6ecfl9ms0enetZxC30w7pGHzfYkrkZ0x_U,20306
1829
+ mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
1818
1830
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1819
- mindsdb/interfaces/query_context/context_controller.py,sha256=JfYpmHI2hvi4m-pogKeFYuuooCjAAyjguSSzcXp1-R0,16291
1831
+ mindsdb/interfaces/query_context/context_controller.py,sha256=PlC4skYCQpEbNKkbcNgcPhSmf4uT03We58FYbGtUMvE,17564
1820
1832
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1833
+ mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
1821
1834
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1822
1835
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1823
1836
  mindsdb/interfaces/skills/skill_tool.py,sha256=jRZmgGiPMS5R7sanW_XtfT-hS_Y_7kJt67-VeGvpnds,13305
1824
1837
  mindsdb/interfaces/skills/skills_controller.py,sha256=cNblNQNOJXQkuXq0q2g7-OmAFG-QoBbRign6gHt6NLg,6319
1825
- mindsdb/interfaces/skills/sql_agent.py,sha256=pLC4qeVsA4j6O3UJ4kHbe6_hF-NqRxYiI947d2uZ68w,14995
1838
+ mindsdb/interfaces/skills/sql_agent.py,sha256=60Kqic-6Hj5YxLCqAqD7LPUPgNqcLnUC8DVeMpiRQcQ,16042
1826
1839
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1827
1840
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1828
1841
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1829
1842
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=08WyJXYJ_hP7JYLvwaSWuJN6Q1PLgIAvh7bcgsV-0XU,7962
1830
1843
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1831
- mindsdb/interfaces/storage/db.py,sha256=lskAyQMjMMdz0_b8dRW8bZ_Ii4kMjjZiKlrp3H7QvG4,20342
1844
+ mindsdb/interfaces/storage/db.py,sha256=tIbODmfE6YkFup2PfVhT6lgTWNkwkJK42evSNWn52Ns,20309
1832
1845
  mindsdb/interfaces/storage/fs.py,sha256=4Nyo-h23UtZc2nz_LWyVzboC_e1jlU58aph1_en8MdE,21155
1833
1846
  mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1834
1847
  mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
@@ -1836,8 +1849,8 @@ mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
1836
1849
  mindsdb/interfaces/tabs/tabs_controller.py,sha256=TZltOnr0DAjhrW2u-bzIVfjPHgh4bxdkitExr9sCNYE,8761
1837
1850
  mindsdb/interfaces/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1838
1851
  mindsdb/interfaces/tasks/task.py,sha256=KQZ9rtD7mE6qeCtA14arMIP-gEnPzMBvIUvmGSzqTH8,401
1839
- mindsdb/interfaces/tasks/task_monitor.py,sha256=OD_XRuPDcXEkt0KYg4mqyJW5wwIZ4FZhfW__k3sB49s,3863
1840
- mindsdb/interfaces/tasks/task_thread.py,sha256=G2Ouh75uacCdOnGuMBKmHjFGWdCIbilRkCAUKz7Py6M,1666
1852
+ mindsdb/interfaces/tasks/task_monitor.py,sha256=zGRUEUDM7b1A5oCUBYsotpYyEuyfFg7ns-remRSLnbY,4004
1853
+ mindsdb/interfaces/tasks/task_thread.py,sha256=RJfPF8BUpwS95M-ytDyq35-1RUp2_Q4K3Vb08TYZCLg,1924
1841
1854
  mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1842
1855
  mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
1843
1856
  mindsdb/interfaces/triggers/triggers_controller.py,sha256=tmyaI9Pi-EUkaoN5jtRc0aGa_OgDfRRuag0-7mz-VgU,5523
@@ -1847,7 +1860,7 @@ mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
1847
1860
  mindsdb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1848
1861
  mindsdb/migrations/alembic.ini,sha256=NdEIqmmxo5mIPQYbimTMVJ3VRay5BBs0PM1XsaAr1Gw,2193
1849
1862
  mindsdb/migrations/env.py,sha256=Nb4LF9rwlONJSoJOm8A3oMCblLuoQ7bszubgBUYj9f8,2219
1850
- mindsdb/migrations/migrate.py,sha256=SWVZAFdzJUyBDM56rWG49plGliTpqIsQbVfBhkwqgMA,1769
1863
+ mindsdb/migrations/migrate.py,sha256=8Hfgjd7swAEAdqOIioNTxOzxQBLTcQMd3vE2JeRwMzg,1692
1851
1864
  mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py,sha256=SdJFsF-awdH0vvyJ_cku-QggiSZAn0x1PHNF_3YgMFk,5871
1852
1865
  mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py,sha256=VKgouePcADnmsp-AyxILjOhPVTvIZccorsH_UJN0V7E,1050
1853
1866
  mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py,sha256=ZBqlmRK3mqvLtzFaA1AqF-rlXCPyc45wG3l1S1COs5A,10817
@@ -1906,23 +1919,25 @@ mindsdb/migrations/versions/2025-02-10_6ab9903fc59a_del_log_table.py,sha256=V46G
1906
1919
  mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_json_storage.py,sha256=ypMSb0IApik_sjmG1ibII6fRH4KdWHFaLQHQro0mgV8,883
1907
1920
  mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py,sha256=5I6Zs75EzHCAEvRPbjnCEhgT-YfXJU1fHR4GeZxMyVY,1087
1908
1921
  mindsdb/migrations/versions/2025-03-21_fda503400e43_queries.py,sha256=rZ0oj2DTLxz4sRWVElZ4YfSzEK19fIcLuRfS_3LX0rY,1418
1922
+ mindsdb/migrations/versions/2025-04-22_53502b6d63bf_query_database.py,sha256=z_RcbWyUz88jc-qFS--G49Cyfb5xY0-fH7aI9r5_2qg,633
1909
1923
  mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1910
1924
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1911
1925
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1912
1926
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1913
- mindsdb/utilities/config.py,sha256=uSi7vLwwpA5j_yAPOCgAbeMBMKn8LT0padCvzQ9FNSM,21697
1914
- mindsdb/utilities/context.py,sha256=LyKNgtavQnAfZpaPHINhrA_9L_SjfURUBD9fZNtuQMQ,1813
1927
+ mindsdb/utilities/config.py,sha256=mboQUo8eFQvYVF4v4h3A394D0fiyL1I7dwFy41TEVQM,22240
1928
+ mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1915
1929
  mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
1916
1930
  mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
1917
1931
  mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
1918
- mindsdb/utilities/functions.py,sha256=tSAmY6zYUzhsEUXvRPEtgU1yIPKGKLDRtPT1hMuUOv0,6675
1932
+ mindsdb/utilities/functions.py,sha256=xAlSAmgWMosCYoBI2mZyEyIrz0RAJaPTiFDq2sQVIeI,5279
1919
1933
  mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
1920
- mindsdb/utilities/langfuse.py,sha256=SzJ7db-BZIiYiOs27jxmeUAp554W9jFFiuiWy87FNs4,9270
1934
+ mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY,9528
1921
1935
  mindsdb/utilities/log.py,sha256=krqJoAsKrrg9bk8X0QfCbbk7CN_f7BS6wm-0aVjkrGc,4401
1922
1936
  mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
1923
1937
  mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
1924
1938
  mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
1925
1939
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1940
+ mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
1926
1941
  mindsdb/utilities/starters.py,sha256=S9GXhgGCAgqyvxxP-Fqj_LCTRqAK5FdNyVi8Ele6ywE,1104
1927
1942
  mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
1928
1943
  mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
@@ -1935,17 +1950,18 @@ mindsdb/utilities/ml_task_queue/consumer.py,sha256=jYORLKMdWKYGUgIIRcnY-RSI3JSA2
1935
1950
  mindsdb/utilities/ml_task_queue/producer.py,sha256=x0s1_xcqtUaT5Og0TdErgWmN1Jp236byzvd2N2HMO34,2764
1936
1951
  mindsdb/utilities/ml_task_queue/task.py,sha256=h6PimSa_AXFo_xvEJGvhDhxiCI54VN2VebVQn0QpAsQ,3166
1937
1952
  mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
1938
- mindsdb/utilities/otel/__init__.py,sha256=l6OLKIeTmRPxtCRsrV27w7vFSfqQAj22BBMT7T-f1Ys,7744
1953
+ mindsdb/utilities/otel/__init__.py,sha256=XjZOMBZxyU6mK-NSb8fdrJcxlByVI8Qf6WZuqGy3Lm8,838
1939
1954
  mindsdb/utilities/otel/logger.py,sha256=o-bWPUinZS0yz2G89oxVD4qXgi0oo5gXHJI4aT7sejY,892
1940
1955
  mindsdb/utilities/otel/meter.py,sha256=oJDoBaU76kF6nenJxZIS08IIz-7GFM3enSKQoeJ6oqI,597
1956
+ mindsdb/utilities/otel/prepare.py,sha256=CK4ra8SV9VOOa70w2CqVvcxoA-EbvmX-LBDLjc6kldM,7145
1941
1957
  mindsdb/utilities/otel/tracer.py,sha256=BBdVTwxpF0gP6uDbwJSj49OjIJOF-giyVRd0yR9p8Tc,679
1942
- mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=3jGsLt5KkdhqaAUUw8ALxERjlPFq9JclOIedXlS-baY,711
1958
+ mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=4YH6YwclsYLjBPBM-e9OAfzFDIxzV8WfqJTueV-TRj8,885
1943
1959
  mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
1944
1960
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1945
1961
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1946
1962
  mindsdb/utilities/render/sqlalchemy_render.py,sha256=6NqOcfz19dhd0PEyNfOtNHsBt1fGjq2E3nFNUad5HOk,31444
1947
- mindsdb-25.4.4.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1948
- mindsdb-25.4.4.0.dist-info/METADATA,sha256=U5ndFkV14y6vcSLnfk6B1YgtxcbCzwTmJm0DA3adOok,42224
1949
- mindsdb-25.4.4.0.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
1950
- mindsdb-25.4.4.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1951
- mindsdb-25.4.4.0.dist-info/RECORD,,
1963
+ mindsdb-25.5.3.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1964
+ mindsdb-25.5.3.0.dist-info/METADATA,sha256=k9FCIeu9ylUemIY1bKvDVGLkniG5esFGQHdhIUkSoBc,46306
1965
+ mindsdb-25.5.3.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
1966
+ mindsdb-25.5.3.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1967
+ mindsdb-25.5.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.0)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5