MindsDB 25.4.5.0__py3-none-any.whl → 25.5.4.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (350) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/__main__.py +215 -185
  3. mindsdb/api/a2a/__init__.py +0 -0
  4. mindsdb/api/a2a/__main__.py +114 -0
  5. mindsdb/api/a2a/a2a_client.py +439 -0
  6. mindsdb/api/a2a/agent.py +308 -0
  7. mindsdb/api/a2a/common/__init__.py +0 -0
  8. mindsdb/api/a2a/common/client/__init__.py +4 -0
  9. mindsdb/api/a2a/common/client/card_resolver.py +21 -0
  10. mindsdb/api/a2a/common/client/client.py +86 -0
  11. mindsdb/api/a2a/common/server/__init__.py +4 -0
  12. mindsdb/api/a2a/common/server/server.py +164 -0
  13. mindsdb/api/a2a/common/server/task_manager.py +287 -0
  14. mindsdb/api/a2a/common/server/utils.py +28 -0
  15. mindsdb/api/a2a/common/types.py +365 -0
  16. mindsdb/api/a2a/constants.py +9 -0
  17. mindsdb/api/a2a/run_a2a.py +129 -0
  18. mindsdb/api/a2a/task_manager.py +594 -0
  19. mindsdb/api/executor/command_executor.py +49 -28
  20. mindsdb/api/executor/datahub/classes/response.py +5 -2
  21. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +8 -0
  22. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +39 -72
  23. mindsdb/api/executor/datahub/datanodes/system_tables.py +10 -13
  24. mindsdb/api/executor/planner/query_planner.py +14 -2
  25. mindsdb/api/executor/sql_query/result_set.py +185 -52
  26. mindsdb/api/executor/sql_query/sql_query.py +1 -1
  27. mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +11 -13
  28. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +8 -10
  29. mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py +5 -44
  30. mindsdb/api/executor/sql_query/steps/insert_step.py +24 -15
  31. mindsdb/api/executor/sql_query/steps/join_step.py +1 -1
  32. mindsdb/api/executor/sql_query/steps/project_step.py +1 -1
  33. mindsdb/api/executor/sql_query/steps/sql_steps.py +1 -1
  34. mindsdb/api/executor/sql_query/steps/subselect_step.py +4 -8
  35. mindsdb/api/executor/sql_query/steps/union_step.py +1 -3
  36. mindsdb/api/http/initialize.py +118 -85
  37. mindsdb/api/http/namespaces/analysis.py +17 -4
  38. mindsdb/api/http/namespaces/file.py +8 -2
  39. mindsdb/api/http/namespaces/sql.py +13 -27
  40. mindsdb/api/http/namespaces/tree.py +1 -1
  41. mindsdb/api/http/start.py +7 -2
  42. mindsdb/api/mcp/start.py +42 -5
  43. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +0 -1
  44. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +52 -19
  45. mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +8 -10
  46. mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +54 -38
  47. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +86 -123
  48. mindsdb/api/mysql/mysql_proxy/utilities/dump.py +351 -0
  49. mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -4
  50. mindsdb/api/postgres/postgres_proxy/executor/executor.py +1 -1
  51. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +2 -2
  52. mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +5 -6
  53. mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +26 -27
  54. mindsdb/integrations/handlers/altibase_handler/connection_args.py +13 -13
  55. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +8 -8
  56. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +13 -13
  57. mindsdb/integrations/handlers/anthropic_handler/__init__.py +2 -2
  58. mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +1 -3
  59. mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +1 -0
  60. mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +1 -1
  61. mindsdb/integrations/handlers/autosklearn_handler/config.py +0 -1
  62. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +1 -1
  63. mindsdb/integrations/handlers/bigquery_handler/requirements.txt +1 -0
  64. mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +1 -1
  65. mindsdb/integrations/handlers/binance_handler/binance_handler.py +1 -0
  66. mindsdb/integrations/handlers/binance_handler/binance_tables.py +3 -4
  67. mindsdb/integrations/handlers/byom_handler/__init__.py +0 -1
  68. mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
  69. mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +3 -0
  70. mindsdb/integrations/handlers/clickhouse_handler/__init__.py +1 -1
  71. mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +0 -2
  72. mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +0 -1
  73. mindsdb/integrations/handlers/cohere_handler/__init__.py +1 -1
  74. mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +11 -13
  75. mindsdb/integrations/handlers/confluence_handler/confluence_tables.py +6 -0
  76. mindsdb/integrations/handlers/databend_handler/connection_args.py +1 -1
  77. mindsdb/integrations/handlers/databend_handler/databend_handler.py +4 -4
  78. mindsdb/integrations/handlers/databend_handler/tests/__init__.py +0 -1
  79. mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +1 -1
  80. mindsdb/integrations/handlers/derby_handler/connection_args.py +1 -1
  81. mindsdb/integrations/handlers/derby_handler/derby_handler.py +14 -22
  82. mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +6 -6
  83. mindsdb/integrations/handlers/discord_handler/discord_handler.py +5 -5
  84. mindsdb/integrations/handlers/discord_handler/discord_tables.py +3 -3
  85. mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +5 -3
  86. mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +3 -3
  87. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +2 -2
  88. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +57 -54
  89. mindsdb/integrations/handlers/dremio_handler/__init__.py +2 -2
  90. mindsdb/integrations/handlers/druid_handler/__init__.py +1 -1
  91. mindsdb/integrations/handlers/druid_handler/druid_handler.py +2 -2
  92. mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +9 -9
  93. mindsdb/integrations/handlers/email_handler/email_client.py +1 -1
  94. mindsdb/integrations/handlers/email_handler/email_ingestor.py +1 -1
  95. mindsdb/integrations/handlers/email_handler/email_tables.py +0 -1
  96. mindsdb/integrations/handlers/email_handler/settings.py +0 -1
  97. mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +2 -1
  98. mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +1 -1
  99. mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +9 -9
  100. mindsdb/integrations/handlers/frappe_handler/frappe_client.py +5 -5
  101. mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +6 -5
  102. mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +2 -2
  103. mindsdb/integrations/handlers/github_handler/connection_args.py +2 -2
  104. mindsdb/integrations/handlers/github_handler/github_handler.py +1 -8
  105. mindsdb/integrations/handlers/github_handler/github_tables.py +13 -24
  106. mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +2 -1
  107. mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +1 -4
  108. mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +6 -13
  109. mindsdb/integrations/handlers/gmail_handler/requirements.txt +1 -0
  110. mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -1
  111. mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +2 -1
  112. mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +0 -3
  113. mindsdb/integrations/handlers/google_books_handler/requirements.txt +1 -1
  114. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +4 -4
  115. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +2 -6
  116. mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +1 -0
  117. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +3 -2
  118. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +0 -3
  119. mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +1 -1
  120. mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +10 -12
  121. mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +11 -13
  122. mindsdb/integrations/handlers/google_fit_handler/requirements.txt +2 -0
  123. mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +2 -1
  124. mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +0 -3
  125. mindsdb/integrations/handlers/google_search_handler/requirements.txt +1 -1
  126. mindsdb/integrations/handlers/groq_handler/__init__.py +3 -3
  127. mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +5 -7
  128. mindsdb/integrations/handlers/hackernews_handler/hn_table.py +6 -7
  129. mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +1 -1
  130. mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +6 -6
  131. mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +4 -3
  132. mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +1 -1
  133. mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +1 -8
  134. mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +6 -6
  135. mindsdb/integrations/handlers/huggingface_handler/requirements.txt +1 -1
  136. mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +1 -1
  137. mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +2 -1
  138. mindsdb/integrations/handlers/impala_handler/impala_handler.py +9 -12
  139. mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +11 -11
  140. mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +10 -13
  141. mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +20 -20
  142. mindsdb/integrations/handlers/informix_handler/__about__.py +8 -8
  143. mindsdb/integrations/handlers/informix_handler/__init__.py +12 -5
  144. mindsdb/integrations/handlers/informix_handler/informix_handler.py +99 -133
  145. mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +13 -11
  146. mindsdb/integrations/handlers/ingres_handler/__about__.py +0 -1
  147. mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +1 -0
  148. mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py +75 -0
  149. mindsdb/integrations/handlers/jira_handler/jira_handler.py +113 -38
  150. mindsdb/integrations/handlers/jira_handler/jira_tables.py +229 -0
  151. mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
  152. mindsdb/integrations/handlers/kinetica_handler/__init__.py +0 -1
  153. mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +4 -4
  154. mindsdb/integrations/handlers/langchain_handler/tools.py +9 -10
  155. mindsdb/integrations/handlers/leonardoai_handler/__init__.py +1 -1
  156. mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
  157. mindsdb/integrations/handlers/lightwood_handler/functions.py +2 -2
  158. mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +0 -3
  159. mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -4
  160. mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +11 -11
  161. mindsdb/integrations/handlers/lindorm_handler/requirements.txt +1 -0
  162. mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +4 -4
  163. mindsdb/integrations/handlers/llama_index_handler/settings.py +10 -9
  164. mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +8 -10
  165. mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +4 -4
  166. mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +8 -9
  167. mindsdb/integrations/handlers/maxdb_handler/connection_args.py +25 -25
  168. mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +1 -0
  169. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +3 -2
  170. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +1 -1
  171. mindsdb/integrations/handlers/mendeley_handler/__about__.py +1 -1
  172. mindsdb/integrations/handlers/mendeley_handler/__init__.py +2 -2
  173. mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +48 -56
  174. mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +24 -29
  175. mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +19 -17
  176. mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +5 -4
  177. mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +3 -3
  178. mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +58 -36
  179. mindsdb/integrations/handlers/monetdb_handler/__about__.py +8 -8
  180. mindsdb/integrations/handlers/monetdb_handler/__init__.py +15 -5
  181. mindsdb/integrations/handlers/monetdb_handler/connection_args.py +17 -18
  182. mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +40 -57
  183. mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +7 -8
  184. mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +13 -14
  185. mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +1 -1
  186. mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +1 -1
  187. mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +2 -5
  188. mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +1 -0
  189. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +1 -1
  190. mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt +2 -0
  191. mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py +23 -23
  192. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +3 -3
  193. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +10 -5
  194. mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +3 -1
  195. mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +73 -8
  196. mindsdb/integrations/handlers/mysql_handler/__about__.py +8 -8
  197. mindsdb/integrations/handlers/mysql_handler/__init__.py +15 -5
  198. mindsdb/integrations/handlers/mysql_handler/connection_args.py +43 -47
  199. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +101 -34
  200. mindsdb/integrations/handlers/mysql_handler/settings.py +15 -13
  201. mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +1 -1
  202. mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +1 -1
  203. mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +4 -4
  204. mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +2 -2
  205. mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +28 -36
  206. mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +5 -5
  207. mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +0 -1
  208. mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +8 -10
  209. mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +3 -3
  210. mindsdb/integrations/handlers/openai_handler/openai_handler.py +5 -4
  211. mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +1 -2
  212. mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +7 -7
  213. mindsdb/integrations/handlers/oracle_handler/connection_args.py +6 -0
  214. mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +77 -11
  215. mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +8 -10
  216. mindsdb/integrations/handlers/palm_handler/__about__.py +1 -1
  217. mindsdb/integrations/handlers/palm_handler/__init__.py +1 -1
  218. mindsdb/integrations/handlers/palm_handler/palm_handler.py +1 -3
  219. mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +2 -2
  220. mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +15 -14
  221. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +53 -10
  222. mindsdb/integrations/handlers/phoenix_handler/__init__.py +1 -1
  223. mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +1 -0
  224. mindsdb/integrations/handlers/pinot_handler/__init__.py +1 -1
  225. mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +3 -2
  226. mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +13 -13
  227. mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +10 -12
  228. mindsdb/integrations/handlers/plaid_handler/utils.py +4 -6
  229. mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +1 -4
  230. mindsdb/integrations/handlers/portkey_handler/__init__.py +2 -2
  231. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +105 -24
  232. mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +11 -6
  233. mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +1 -2
  234. mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +2 -3
  235. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +6 -8
  236. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +10 -10
  237. mindsdb/integrations/handlers/rag_handler/ingest.py +2 -2
  238. mindsdb/integrations/handlers/rag_handler/rag_handler.py +1 -1
  239. mindsdb/integrations/handlers/rag_handler/settings.py +1 -1
  240. mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +2 -7
  241. mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +2 -3
  242. mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +6 -6
  243. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +1 -2
  244. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +0 -3
  245. mindsdb/integrations/handlers/rockset_handler/connection_args.py +14 -14
  246. mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +1 -0
  247. mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +6 -5
  248. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +2 -1
  249. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +16 -16
  250. mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +1 -1
  251. mindsdb/integrations/handlers/sheets_handler/connection_args.py +1 -1
  252. mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +7 -6
  253. mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +38 -41
  254. mindsdb/integrations/handlers/singlestore_handler/__about__.py +1 -1
  255. mindsdb/integrations/handlers/singlestore_handler/__init__.py +0 -1
  256. mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +1 -0
  257. mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +3 -3
  258. mindsdb/integrations/handlers/slack_handler/__init__.py +3 -3
  259. mindsdb/integrations/handlers/snowflake_handler/requirements.txt +1 -1
  260. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +100 -6
  261. mindsdb/integrations/handlers/solr_handler/connection_args.py +7 -7
  262. mindsdb/integrations/handlers/solr_handler/solr_handler.py +2 -1
  263. mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +2 -1
  264. mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +3 -2
  265. mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +1 -0
  266. mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +1 -1
  267. mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +15 -20
  268. mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +4 -4
  269. mindsdb/integrations/handlers/stabilityai_handler/__init__.py +1 -1
  270. mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +0 -1
  271. mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +8 -10
  272. mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +2 -2
  273. mindsdb/integrations/handlers/strava_handler/strava_handler.py +4 -8
  274. mindsdb/integrations/handlers/strava_handler/strava_tables.py +22 -30
  275. mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +3 -2
  276. mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +11 -27
  277. mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +1 -1
  278. mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +4 -4
  279. mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +25 -27
  280. mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +8 -8
  281. mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +1 -2
  282. mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +5 -5
  283. mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +21 -26
  284. mindsdb/integrations/handlers/trino_handler/trino_handler.py +14 -14
  285. mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +2 -4
  286. mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +7 -8
  287. mindsdb/integrations/handlers/unify_handler/unify_handler.py +9 -9
  288. mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
  289. mindsdb/integrations/handlers/vertex_handler/vertex_client.py +1 -1
  290. mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +11 -11
  291. mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +11 -14
  292. mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +9 -11
  293. mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +0 -1
  294. mindsdb/integrations/handlers/web_handler/web_handler.py +1 -0
  295. mindsdb/integrations/handlers/whatsapp_handler/__init__.py +3 -3
  296. mindsdb/integrations/handlers/writer_handler/evaluate.py +1 -1
  297. mindsdb/integrations/handlers/writer_handler/settings.py +0 -1
  298. mindsdb/integrations/handlers/writer_handler/writer_handler.py +1 -0
  299. mindsdb/integrations/handlers/youtube_handler/requirements.txt +1 -0
  300. mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +5 -5
  301. mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +26 -27
  302. mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +3 -3
  303. mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +0 -6
  304. mindsdb/integrations/libs/response.py +67 -52
  305. mindsdb/integrations/libs/vectordatabase_handler.py +6 -0
  306. mindsdb/integrations/utilities/files/file_reader.py +5 -2
  307. mindsdb/integrations/utilities/handler_utils.py +15 -3
  308. mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +0 -1
  309. mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +0 -2
  310. mindsdb/integrations/utilities/utils.py +3 -3
  311. mindsdb/interfaces/agents/agents_controller.py +164 -1
  312. mindsdb/interfaces/agents/constants.py +29 -2
  313. mindsdb/interfaces/agents/langchain_agent.py +18 -8
  314. mindsdb/interfaces/agents/mindsdb_database_agent.py +101 -2
  315. mindsdb/interfaces/database/projects.py +1 -7
  316. mindsdb/interfaces/functions/controller.py +11 -14
  317. mindsdb/interfaces/functions/to_markdown.py +9 -124
  318. mindsdb/interfaces/knowledge_base/controller.py +47 -19
  319. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +41 -15
  320. mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +434 -0
  321. mindsdb/interfaces/knowledge_base/preprocessing/models.py +54 -0
  322. mindsdb/interfaces/knowledge_base/utils.py +10 -15
  323. mindsdb/interfaces/model/model_controller.py +0 -2
  324. mindsdb/interfaces/query_context/context_controller.py +66 -10
  325. mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +190 -0
  326. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +92 -0
  327. mindsdb/interfaces/skills/skill_tool.py +202 -57
  328. mindsdb/interfaces/skills/sql_agent.py +238 -28
  329. mindsdb/interfaces/storage/fs.py +1 -0
  330. mindsdb/interfaces/variables/__init__.py +0 -0
  331. mindsdb/interfaces/variables/variables_controller.py +97 -0
  332. mindsdb/migrations/env.py +5 -7
  333. mindsdb/migrations/migrate.py +47 -9
  334. mindsdb/migrations/versions/2025-05-21_9f150e4f9a05_checkpoint_1.py +360 -0
  335. mindsdb/utilities/config.py +333 -220
  336. mindsdb/utilities/context.py +1 -1
  337. mindsdb/utilities/functions.py +0 -36
  338. mindsdb/utilities/langfuse.py +19 -10
  339. mindsdb/utilities/otel/__init__.py +9 -193
  340. mindsdb/utilities/otel/metric_handlers/__init__.py +5 -1
  341. mindsdb/utilities/otel/prepare.py +198 -0
  342. mindsdb/utilities/sql.py +83 -0
  343. mindsdb/utilities/starters.py +13 -0
  344. {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.4.0.dist-info}/METADATA +351 -338
  345. {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.4.0.dist-info}/RECORD +348 -322
  346. {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.4.0.dist-info}/WHEEL +1 -1
  347. mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +0 -151
  348. mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +0 -1
  349. {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.4.0.dist-info}/licenses/LICENSE +0 -0
  350. {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.4.0.dist-info}/top_level.txt +0 -0
@@ -1,11 +1,27 @@
1
- mindsdb/__about__.py,sha256=NQxSDL0_zMThoH2Fzamf4GShkFLpwGtKvwycDjP0LRY,456
1
+ mindsdb/__about__.py,sha256=qdyLrPJthOack70IzRcKOJ9is1w28JD60cFxanFX8sQ,456
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
- mindsdb/__main__.py,sha256=UwHgxc2X0jVFXoD4Xtx_SuzhGuNFyoeDgWRtSX8xmvQ,24281
3
+ mindsdb/__main__.py,sha256=bkLqiYLsx1KyCyi6tJjyMBkpMvO3g37wOC0PymMbiHU,24037
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ mindsdb/api/a2a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ mindsdb/api/a2a/__main__.py,sha256=x8-7l-S3j6DpxQUrg6Y9yOGG2vC77DqYNi2gPNy25EE,3592
7
+ mindsdb/api/a2a/a2a_client.py,sha256=Lyw7CFj031pZNK_wvY4MAR1ptZoDRaitbCi0jmN4wQA,13634
8
+ mindsdb/api/a2a/agent.py,sha256=DN3VCsdFuoFBXyQDeH4C9pNGnHSEM-KnHSCjL-HY4ls,13007
9
+ mindsdb/api/a2a/constants.py,sha256=1BmvDneWzNG6YJFUc-gZ9CNCO4wq2_12vFe6aw23yX4,2292
10
+ mindsdb/api/a2a/run_a2a.py,sha256=7uvTtc6Te4qBiF9I0_48dVBZmY4YmKrMT0jbBwnGGhE,4347
11
+ mindsdb/api/a2a/task_manager.py,sha256=7zYsAizpZlE4WlsEotpRSos742dZbzpVyeKvuTaUXLs,24620
12
+ mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ mindsdb/api/a2a/common/types.py,sha256=EYBpqEj-nZapSKe2jI8BcNDfSlTXXTbw8RcSA1DII9Q,8787
14
+ mindsdb/api/a2a/common/client/__init__.py,sha256=V8lbSEpOWNM2XjG5ky7NIUM0Q2HZTexzL3I8WqZfo-w,117
15
+ mindsdb/api/a2a/common/client/card_resolver.py,sha256=yCDxwNAgAz-6lDWGr8uhj8V0DGs9kSiybPsmhK3vh8Y,671
16
+ mindsdb/api/a2a/common/client/client.py,sha256=VLZaBTf1vhbLq_4Wr5Z4o1PMMW2NsCdTTVQDlGJklA8,3346
17
+ mindsdb/api/a2a/common/server/__init__.py,sha256=Bl7Qa3Pk4QWY4yDPRNyHeTzNJpAe9HgUJd8-oTnMPv8,152
18
+ mindsdb/api/a2a/common/server/server.py,sha256=ymnM0HblF9iH1Htay-LfFu-_CQjXieN_ZEgyHYkHPfk,6352
19
+ mindsdb/api/a2a/common/server/task_manager.py,sha256=NnKO2ZcI-KBWiX4wNc8FbLmnVsb5KeIm62B4jdX73IU,10189
20
+ mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
5
21
  mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
22
  mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
7
23
  mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
8
- mindsdb/api/executor/command_executor.py,sha256=Gfn29_Cq-B4sZFTGxN6zHylw8zFhroIVNqVPkHD29zE,79808
24
+ mindsdb/api/executor/command_executor.py,sha256=uaKdegKhR4cswXE0uN3zuIFlJD8MnohRQ1HSGfFIwag,80825
9
25
  mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
10
26
  mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
11
27
  mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
@@ -14,44 +30,44 @@ mindsdb/api/executor/data_types/answer.py,sha256=bvCpI-Tji2kgTzyzFaw-EgstMdssZvF
14
30
  mindsdb/api/executor/data_types/response_type.py,sha256=u9cqvtoAE_ozNJr2YsBLYW0BMGUdaqp8IWn6ZLxO2NA,209
15
31
  mindsdb/api/executor/datahub/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
16
32
  mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- mindsdb/api/executor/datahub/classes/response.py,sha256=sCGFeOscRWi7f0SPvS1P3IzKFJwCUGmjRUR2SxKnfcs,299
33
+ mindsdb/api/executor/datahub/classes/response.py,sha256=1JLErGOSwcgYeSlCOBaEDjkXUPtpmjq4SXtVijLkeUs,419
18
34
  mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
19
35
  mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
20
36
  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
22
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=pTPPjSaAI4IuSNdz4xpbguZoxRt7WBNMhvsffalowvw,11907
37
+ mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=q6Mu80zwL7yoA1HstiVHm7jQMrspQQdVnjiPSW8KTek,8472
38
+ mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=avxO_6IkIcdDSBrqIXFly2fjGz7g-7XTuqySH3KOXHI,10610
23
39
  mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=inOQtLa-nP0sbyDtwvFGuxZsvWClQDhhNrA-bjFmWP4,14120
24
40
  mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=j2dJHT09FJOq76ORSkgGMtZxtE8kSB4VY6UrRce-KBc,8080
25
- mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=lE72MHKk7yLbbvGvwVThczen290ShpkgXT7L82gvRJs,16982
41
+ mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=_lIL6h8rTXYBzpLQBi_-IjR2BmCoNERafhdI4AYGoFY,16750
26
42
  mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
27
43
  mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
28
44
  mindsdb/api/executor/planner/plan_join.py,sha256=QuwrM2Ck8jQmHMzo3eU768v1QqNtaLCZQ4cKfj2IkwA,22549
29
45
  mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
30
46
  mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
31
- mindsdb/api/executor/planner/query_planner.py,sha256=v1eqHTnGLKunN8LUKzjrxcdLPC1D7Julerj3NNDD0_s,34618
47
+ mindsdb/api/executor/planner/query_planner.py,sha256=9rmsoA_IcXIn-AEOFHKkFC5IOKvnpQpLMIlpTdMKtHk,35152
32
48
  mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
33
49
  mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
34
50
  mindsdb/api/executor/planner/steps.py,sha256=8BV3dGf5Yi3jbq_2XPapr5nPyL0KqgPFtWxqX95Mcyw,9352
35
51
  mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
36
52
  mindsdb/api/executor/planner/utils.py,sha256=pCec75lLc5V84LYMheprYxT7RGeJPKiNZrqA_bYmco0,3838
37
53
  mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5V25G_SdsNIYZI,32
38
- mindsdb/api/executor/sql_query/result_set.py,sha256=cX5Mp5BRYzsZ7avbIALVcrZgAs4w-c8O08JOQoQH-nM,9789
39
- mindsdb/api/executor/sql_query/sql_query.py,sha256=NEDZmaASFZFuUHWc7BUqWW4jzY1yMUnzyJD1mDwaz1o,11341
54
+ mindsdb/api/executor/sql_query/result_set.py,sha256=HDbs17lL0DeZUIKsulmj_ki86BQSzKLbq8cxx2r_zEg,15063
55
+ mindsdb/api/executor/sql_query/sql_query.py,sha256=G6_Et49fgECMC8BGHj8Ig2WnbpIz8wHePIRXUobsme0,11339
40
56
  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=q98j7Gx6hs9kbp5jbd5LkN8WqcfQnJsleLOwo8Ukc4U,17151
57
+ mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=NU_Okjioql0iZW1wfYv_IIftOVEjQpW0SOrg1lFJops,17229
42
58
  mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
43
59
  mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
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=D0sqnX3n7e2eLbJzq-pgEpdfVIcTLBSgnk6nI84bk-I,8445
46
- mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=nu1D6Lx6zQ0_OKT1LG-cfwedSNwT_Pg6TTCfUBKcPjM,3817
47
- mindsdb/api/executor/sql_query/steps/join_step.py,sha256=8wW7AmIMhMinpMovSgl-2CGujV3mDX5kTFLxuI1KZfQ,4261
60
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=YgVkXit8mKDb7FS0EIoyxClpnIOF68MhePY2ick19qY,4052
61
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=wGyns_c1RdbnVvOfidb3pgu6vvTaTvYtjePOWXfG-f0,7134
62
+ mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=VrzAbUmlwq8X9kstMChbmYx1SiiBpkn-EvCcrq1ioDM,4395
63
+ mindsdb/api/executor/sql_query/steps/join_step.py,sha256=govBGAmZEgFQ4I-QmxNY7nRN81_GF4HAuP-wOTDSrBk,4265
48
64
  mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
49
65
  mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSjjHmPpNLMVPX4adAU-PoHJBuY,656
50
66
  mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=URXDoE6vuc5mJ-vBkM5RXRYCS92NXs8_Jrlykh9mk6c,1588
51
- mindsdb/api/executor/sql_query/steps/project_step.py,sha256=WQ23VkfWrVHKRnyy91Kh9uRI7Twb-IBvSQl2TZy_21w,2854
52
- mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=RXZ1L05H_MHwVNdf6qDbIStsDjG_3QxEr3wPuFtZMdM,891
53
- mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=J9aVzChLxIoI8QwykdqDKYCObW5_ZhYQPvv7oBRDXo8,8120
54
- mindsdb/api/executor/sql_query/steps/union_step.py,sha256=wT_cRVE0vGFAXYcdTsm3P8TdfEgU-eHeNfFllR6OJ7U,1791
67
+ mindsdb/api/executor/sql_query/steps/project_step.py,sha256=2Hy-b9a3-bJcUHQNhILWSNs17k0JTLrG1aGwTbtJDAM,2868
68
+ mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=01aDbFrqatM-iX70gU3-ODPBP9F-v0mWZ9BedddBOa8,889
69
+ mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=XCMMFvNOinspR9HQr_iviOKOtiP_5RvzAxFG_8xan7I,8072
70
+ mindsdb/api/executor/sql_query/steps/union_step.py,sha256=p9OABRTbcIkDx62kK8zLfhYpmNXt8opSrBdj56Xy3b4,1774
55
71
  mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS5t8SfSo-14ttOd1r0_T8NA,4643
56
72
  mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
73
  mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
@@ -59,27 +75,27 @@ mindsdb/api/executor/utilities/sql.py,sha256=vULbEMKN3ZB5RULqC_VPRhuROQ0_CotHYqA
59
75
  mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
76
  mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
61
77
  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
78
+ mindsdb/api/http/initialize.py,sha256=eZvMgyqYQRbbuykjwVmxxX3LFz6mkFZ2HE8zMQepKEM,16813
79
+ mindsdb/api/http/start.py,sha256=tD_ImE2kbGAJk3wFX6s5ezCavd2LRJ2qU9U2tOVSQLo,2389
64
80
  mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
65
81
  mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
82
  mindsdb/api/http/namespaces/agents.py,sha256=H3C4MmNCsrk3Dv8Cw1kx0j7EvNOia5PfyfQYuElgczE,18984
67
- mindsdb/api/http/namespaces/analysis.py,sha256=Dp3izdLkG35cSAKNUPJfuGoFSRe34CzFPKk2CEVjDoI,3821
83
+ mindsdb/api/http/namespaces/analysis.py,sha256=maYxI-TP9RswWHgKX3KAZQJK_XSBQfpZMqv0ZH1ZC0k,4295
68
84
  mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
69
85
  mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
70
86
  mindsdb/api/http/namespaces/config.py,sha256=tC7MItEt_hjpG1O8-y85sEqPtwX_iPj7mNdTQ6zSg-0,8785
71
87
  mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
72
88
  mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
73
- mindsdb/api/http/namespaces/file.py,sha256=u6xYa_moAMb0UXWGkNtErGw9nk-FbloRuLHrLCANjoU,6644
89
+ mindsdb/api/http/namespaces/file.py,sha256=ONMsQDDC2Ug-O38cbPKSL8UpQ78soQKsPHOfzUj-Bfo,6933
74
90
  mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
75
91
  mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
76
92
  mindsdb/api/http/namespaces/knowledge_bases.py,sha256=ZwzSXn_6DNn3awCnMlvCbZfCOTPM3VcsQNotMM05v3U,16653
77
93
  mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
78
94
  mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
79
95
  mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
80
- mindsdb/api/http/namespaces/sql.py,sha256=oLBc1DHQS9aTb5jy4jxg5WYQQe40aqohr6Yr_1St5vY,6073
96
+ mindsdb/api/http/namespaces/sql.py,sha256=JjrXxcJr00QpaxYWzvghBLhb78kIkTZg2-OOSbJHz3U,5586
81
97
  mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
82
- mindsdb/api/http/namespaces/tree.py,sha256=8I_X7Uhn6OAEsgWOfneF1UBif0T0YFmj-SG_iT20C3E,3807
98
+ mindsdb/api/http/namespaces/tree.py,sha256=_lWGp4wrX19GnqVD36U-ZmZiHfMIwlSAf9fIUYc9LYg,3812
83
99
  mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
84
100
  mindsdb/api/http/namespaces/views.py,sha256=bSoCOJQq-xyWdOpNRA1YyOSlYHTHHYIZgd8m4E_rvy0,6226
85
101
  mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
@@ -105,7 +121,7 @@ mindsdb/api/http/namespaces/configs/webhooks.py,sha256=WTZAN2r6GdR8LbhAyh9osFGaF
105
121
  mindsdb/api/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
122
  mindsdb/api/litellm/start.py,sha256=U6gBzQrHNmbPCjCnizPz59jnM0GdYmMx84XTIVzCiww,2761
107
123
  mindsdb/api/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
- mindsdb/api/mcp/start.py,sha256=zcWD70agZp9oUAXiSo0HJ0uwkxTwSsTQRQFknpLAhHw,4089
124
+ mindsdb/api/mcp/start.py,sha256=Gp_DGpigwvC680FUUoL4U0QF3u6_oCYHKNW53vgp7Kw,5251
109
125
  mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
110
126
  mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
111
127
  mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
@@ -154,18 +170,17 @@ mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaD
154
170
  mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
171
  mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
156
172
  mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=qQbQxwoP61wuqlmeGcvu4loNpN7fgKs6hBXeRamcUgs,35849
173
+ mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=4fwVZFMKhI-qAHRlsFmeHnmB6JmcoJ0065D-x5q9xwA,34524
158
174
  mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
175
  mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
160
176
  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
177
  mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py,sha256=TxhoWBkpVJShG-tPLDd4_7xhz-CtjoWBtq83k5U4oEc,75
163
178
  mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=uUOaAJfmSIcZYLT4dppnbRun7Uawd5x_09bJfIN2EUs,1003
164
179
  mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
180
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py,sha256=a8Gi2hcTPYSTtqscMcEW2R-1Qu_YmMcP1CN9DOfavo0,6246
166
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py,sha256=3jjsF8bs9EJga-miiIElMZegi_-IRApeneer4AzawsA,4913
181
+ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py,sha256=Z6aQ9VMh3Ta2m4qs5hU5-LaiBHhan91NstUQlChMUnI,4891
167
182
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py,sha256=OusdXUJI3gD62ewP4z3UH_VHrbfX7u2eSwDdL7Z0Ois,1550
168
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py,sha256=jlmxpn-SIZs35jHgaQySRXUFWewX5VYYbpa_k8VlYik,4683
183
+ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py,sha256=bJMlydvCpcwFMq7zLBfURBDs3pfWDXSFAwvtCeJQmhM,6058
169
184
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py,sha256=uG8HKkYSbFRadDOu18OVDhV7wgGy-dXwTYFXxgwRqDg,1097
170
185
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py,sha256=V6eXSr2NuRjyTjF25D5o9jG0_0R1Ry1nGJ6W2-NCMww,2982
171
186
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py,sha256=I5kuON2Jh7V8k7o5xxeO7IUII6-DsGrYrrmkgiMMBBE,5765
@@ -181,26 +196,27 @@ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py,sh
181
196
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py,sha256=ykZJyhvw8iDq8CwVHW0RW5SWbTbfqyX1aD9dOo5Y9MA,1494
182
197
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py,sha256=cm2f1fjPy0nfKWCPARMvq92smMij_X4WTjOdxRlMXOM,521
183
198
  mindsdb/api/mysql/mysql_proxy/executor/__init__.py,sha256=U4cWmxMMtOYdK4a3OvSyy-VzICWiURroIAKMKMoRcnM,38
184
- mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=5WvY3XHn_BCRTCveeNOQU_H4UtobotSsLBn29HYCmbY,3443
199
+ mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=Bm8Gu77u7HPcLM8oyUsiGdmnoD7Xz1ksB5QFiSbl5iY,3502
185
200
  mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
201
  mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py,sha256=k5ZmduhQW2E3Mf_jns-dyVLsRxXUAJE1b3Qbr1FkHKo,4116
187
202
  mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
188
203
  mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
189
- mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=eCDaSXJJIZ45V24OUk9tlnXVUmlNtRyECraddhFXRiQ,42062
204
+ mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=28982dbx0OrjRfT7LCv_zwIympVuBLUkqq3zvX_C7Gk,43712
190
205
  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
206
+ mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=T8mSSBo-jaYrUMjAgVPkJtGwkEpS3U6nCbFUI87ySf4,13060
207
+ mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
192
208
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
193
209
  mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
210
  mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
195
211
  mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
196
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=Nus9OqgLaNd43iPQ3ses49muyi6CtQMBDY0V8GQeJGE,19360
212
+ mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=D5B-lpuAggWkq9Aw81ngJGMl7rzMmoT04bw2CIXecv8,19323
197
213
  mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
198
- mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=aV9tuhflppO919B7HQGFyxeMuyv3XaGz2t-fwHLqVJI,6441
214
+ mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=hm0opUcUNadTIyJl50sZADUU8S-u30hev7r4jXoMq4Q,6441
199
215
  mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
200
216
  mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
201
217
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
202
218
  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
219
+ mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256=LB1zEgsI0U_9rLdwVED0VQRz7AWR1EuCLDsR-WF1CTw,40739
204
220
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py,sha256=3qpSK3UWHW-Uo1qjgnz51aGPDCcVDfvQBcsmE932A8Y,626
205
221
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py,sha256=VDdUFydhXPrDyFD4iy_BHF4e9COXElcqmTBRqwYofKU,8422
206
222
  mindsdb/api/postgres/postgres_proxy/utilities/__init__.py,sha256=3RdLBT2FuJ1jzjysirDmfzQ0ocRcrhKONrJw2XQB2PQ,259
@@ -231,13 +247,13 @@ mindsdb/integrations/handlers/airtable_handler/tests/__init__.py,sha256=47DEQpj8
231
247
  mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py,sha256=qeo4RXcD1tUekJBWy80FCzGkcZnUMujaAlpjpzug_dY,1072
232
248
  mindsdb/integrations/handlers/altibase_handler/__about__.py,sha256=ZY1RPt9CD2wMP8RGsKLZs8NbEl9Yy53kPc1RzMmvMYY,342
233
249
  mindsdb/integrations/handlers/altibase_handler/__init__.py,sha256=rK6V3BzcoGDJjd35j9KDF61YYex00gztc2aD7HlzM0g,604
234
- mindsdb/integrations/handlers/altibase_handler/altibase_handler.py,sha256=bmMqX9KFb4D8yFCKmS0M0cZONa18LuI_lVgW3d0CmAs,8469
235
- mindsdb/integrations/handlers/altibase_handler/connection_args.py,sha256=ZhKFsT_RWmgQ4qrZ6Cj2ZVfWRDEN1rct0NnfGwyokqw,1631
250
+ mindsdb/integrations/handlers/altibase_handler/altibase_handler.py,sha256=1NQ0CCBroVScb9khA7F2GlmLemqJpbEb2yN1zzVDpD4,8397
251
+ mindsdb/integrations/handlers/altibase_handler/connection_args.py,sha256=3EZg38ZbypI5QLZpPNr1kIAhwW5Cf0mpRtepmPbdN2M,1605
236
252
  mindsdb/integrations/handlers/altibase_handler/icon.svg,sha256=J257YKU1qoLHhxcrgHRI87TsbsUCgdnM-GBc2UEa318,182
237
253
  mindsdb/integrations/handlers/altibase_handler/requirements.txt,sha256=twiDQB9BlXYcOCWeh7dfpnk6_mGveQJ9vAiOpCMWLpU,18
238
254
  mindsdb/integrations/handlers/altibase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py,sha256=lMhjT8Zd_L1nWVRAV3VzQ25jThqVfxAcQW6xGMp1i38,2025
240
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py,sha256=jMlO4RnnArBBm2Ub_Y_io04v8UbvXmKsNLUiXHAe_0A,2054
255
+ mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py,sha256=Owxru0esZ4WQB0fQu_FkYNUzSlBJWV9V09YsbMAshqs,1998
256
+ mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py,sha256=8oy-9J8Om1m0dAuSoA7kjP4rN5aSRbDjLoJ4sa-OfwI,2032
241
257
  mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py,sha256=IBOgrwQqNcJL_VvH1XsVRAUSveSxBBH5ua4ahQa_plo,377
242
258
  mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py,sha256=UYxqRaBOgLmT8uZOu4iVQbW821ZdsrPrYeBaMBu-9nY,518
243
259
  mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py,sha256=1WC6r2vUVCuRWzXIvaUVZMLKPr3m5g7OlfbsCJKXE74,7556
@@ -245,8 +261,8 @@ mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg,sha256=q8G2Qws-
245
261
  mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt,sha256=JP68nJ1w5HbQlikWyYDNhFb8fpC66xbOkBv7_C-3lbE,39
246
262
  mindsdb/integrations/handlers/anomaly_detection_handler/utils.py,sha256=X6mKCvRvIsRWhefL6KxJBRKbsYEJKMPGnZ7N28717JI,649
247
263
  mindsdb/integrations/handlers/anthropic_handler/__about__.py,sha256=BOpGrNVVqgxZkoDI7YdR8TAulmniOiheh3NlVVD1OEM,354
248
- mindsdb/integrations/handlers/anthropic_handler/__init__.py,sha256=vDmuCqYx-DtIhKdTs86wprg1W06qFMGu6l0opqagQOc,589
249
- mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py,sha256=40VQRMqF_hSYdHpONhWjHvsEXO5TlqMOIpx7H1THY58,3398
264
+ mindsdb/integrations/handlers/anthropic_handler/__init__.py,sha256=GvT2mykrK0gM1WoTopESOkxMhx129Jih1BOzTulEIfA,589
265
+ mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py,sha256=_gQD15IETTdssVSIwAqc7BeH9qcCAiXg37pxyaLU1p8,3319
250
266
  mindsdb/integrations/handlers/anthropic_handler/icon.svg,sha256=YqBanC9E0WpQAEC9e8LgOF1vu5S5r58iHox3rBk6fxY,328
251
267
  mindsdb/integrations/handlers/anthropic_handler/requirements.txt,sha256=Q1rkpICQCgBQcAmOyBWXu0r3h7-OvO7-nYVbNjjUtE0,18
252
268
  mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py,sha256=jFauECyixaq2FZz0bUE1RcO6-dyCn70YjM_TOFp4bYA,372
@@ -280,7 +296,7 @@ mindsdb/integrations/handlers/athena_handler/tests/__init__.py,sha256=47DEQpj8HB
280
296
  mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py,sha256=0K7WV2fEX5DF6PSVVWOkqhZT7j_E9RvU36Yq92n8BLA,2362
281
297
  mindsdb/integrations/handlers/aurora_handler/__about__.py,sha256=c03paiA025o6lc11MIXcPMdmWFGW5mSCz6rHAbGayo8,365
282
298
  mindsdb/integrations/handlers/aurora_handler/__init__.py,sha256=wxUTZ0jcSk4363zRWZrUxdneaxLmpClLrBm3lVn3_6k,603
283
- mindsdb/integrations/handlers/aurora_handler/aurora_handler.py,sha256=IY4TuFD3k4lNGara6xU6h3cp2CVpgbo_zPodOxHreYM,4469
299
+ mindsdb/integrations/handlers/aurora_handler/aurora_handler.py,sha256=_Seh9hyrSdJzD4EY4vpglk_vS4TNGm24Fu_cHne_-Ps,4470
284
300
  mindsdb/integrations/handlers/aurora_handler/connection_args.py,sha256=Stt-pEG6p3wwJ85Qd9EqMI8o_9kUo-XqDMb3jIP_Eok,1932
285
301
  mindsdb/integrations/handlers/aurora_handler/icon.svg,sha256=R4hw2PSmlsmPyQ2460GBGichg7rhwvIWCQmt2kN8-zk,690
286
302
  mindsdb/integrations/handlers/aurora_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
@@ -300,8 +316,8 @@ mindsdb/integrations/handlers/autokeras_handler/icon.svg,sha256=EBz7nZ-VyXT7Ps3e
300
316
  mindsdb/integrations/handlers/autokeras_handler/requirements.txt,sha256=Tt8vuUUNRP6fvafQQ7E80xO-kcZnzGWn6Zdasxb2swQ,21
301
317
  mindsdb/integrations/handlers/autosklearn_handler/__about__.py,sha256=5MLlCXNdhytRAHGaROfNZ6ZIS9u8bKFoYtSeDG1jvEI,359
302
318
  mindsdb/integrations/handlers/autosklearn_handler/__init__.py,sha256=KSndjfPj1fG_m1lFEEC_W4CR0PEphrtj-x4r-Fg-Stw,562
303
- mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=hyfSKZGR_bMxgKLkGoQQ0XFLWevdAbtI-rmlJqlek1k,1684
304
- mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=COLDouTPwcSqxxLNAEd28h7IAcbWEKT61nZbz24dD0o,710
319
+ mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=DLK9fcRA4mvXhtvrl_pPIyy5QPEz16ymCFWbYBiwDNA,1678
320
+ mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=y86RzJ16PSoM8cPFaMLz6siS3336ASiX1hIhDal9N-g,676
305
321
  mindsdb/integrations/handlers/autosklearn_handler/icon.png,sha256=kbcEAnyOFO2mj20-godaONlkzrtK-3Oj-yhQ-kX1O78,15729
306
322
  mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=M80gYwMHVvAlFBJKtarluQacFmr6etbrUQgKjoX_hNM,32
307
323
  mindsdb/integrations/handlers/azure_blob_handler/__about__.py,sha256=qDGv39-0a0ze7k1E3MzW2O_5IMJmXOxzITb1MB8Vslg,365
@@ -319,16 +335,16 @@ mindsdb/integrations/handlers/bedrock_handler/settings.py,sha256=cG_SWH0PfQ6o-ev
319
335
  mindsdb/integrations/handlers/bedrock_handler/utilities.py,sha256=hx8mzWLApZIV-mgp_CJM8qj-X51gX9-hcTXdGxE5fSs,1184
320
336
  mindsdb/integrations/handlers/bigquery_handler/__about__.py,sha256=hRxU4C7TM6ssU3oxS89oDVFfx-p_Wjj_jNh_Y6vq544,349
321
337
  mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNicKAh4FLIX2TX_v6ac2r6djxr_5d9WI,612
322
- mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=TaRObxvb1tlcCWVvMpA8n5axAhHKX6U9_OrGCBY00fs,6896
338
+ mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=ZxFfZIUwnM7hJcZRTjyPY5_q2tonmVOuj_It8lxIOKY,6903
323
339
  mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
324
340
  mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
325
- mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=rV1GskvFDvRL5nxRw8ZWFPnOm9OSP-TvdnDFZH2nsSU,50
341
+ mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=l8BgEzlWWL_88GeLfV3Dp40Am3DUNuDlVkgnH9jJccM,131
326
342
  mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
- mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py,sha256=NIKmL53wA4AjWxd3BgR7GYAfoYYvVjPGa6Owvpy0WuA,7489
343
+ mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py,sha256=SUc6oCCMKrxHAx60ID_-9hu4Lp2_aBrYIXkYfGl9V3c,7496
328
344
  mindsdb/integrations/handlers/binance_handler/__about__.py,sha256=sRDhFENBpGgEy14erGnc-_KecQcR6O7yAGSUIY_ZWfQ,348
329
345
  mindsdb/integrations/handlers/binance_handler/__init__.py,sha256=Bpc_CzIOl54rF2k4VXWOsTi5vp5NcdWnDVKbnD79nJI,484
330
- mindsdb/integrations/handlers/binance_handler/binance_handler.py,sha256=ddjhQl-IwuyBlj5qw-j_H4dGD1B3mfhn9de5A-MY-v8,5322
331
- mindsdb/integrations/handlers/binance_handler/binance_tables.py,sha256=y0UYLFRuLsZ2wNx15k_7C3DNRfZX0phMK84KSFf76yE,7458
346
+ mindsdb/integrations/handlers/binance_handler/binance_handler.py,sha256=tl01q4-bNhVJM7bPFDxTduQXoiD2Ucm0I0kimvrL1tk,5323
347
+ mindsdb/integrations/handlers/binance_handler/binance_tables.py,sha256=lO-xaKMzhdIYsLqML_HdUyIePZZgI3RgJZ3NMebc2hU,7359
332
348
  mindsdb/integrations/handlers/binance_handler/icon.svg,sha256=POoCRcSxpPDhqcDIQtEzugAi_Ib4H6zwIbB7uEqZVl8,1020
333
349
  mindsdb/integrations/handlers/binance_handler/requirements.txt,sha256=1c_Bkv-FK_40YWyOZvBIAHG73Hw7h3RFc14N1XWLPcU,17
334
350
  mindsdb/integrations/handlers/box_handler/__about__.py,sha256=5Tc5cScsS47jvOk5sFEL34M2YKY7yy7bifRpYeEkcTA,329
@@ -338,7 +354,7 @@ mindsdb/integrations/handlers/box_handler/connection_args.py,sha256=QJqJgDe9RrzD
338
354
  mindsdb/integrations/handlers/box_handler/icon.svg,sha256=LhDX_Yikte5esxe9qOtHNn4dk1VT_PsiPcx3UAe1gew,1383
339
355
  mindsdb/integrations/handlers/box_handler/requirements.txt,sha256=FQc6GqJL5eYYA9-oPcRQbmJR0HrSmnSz-5Q82yiR2sE,11
340
356
  mindsdb/integrations/handlers/byom_handler/__about__.py,sha256=5MMwfPjVWxerbcXI564QKIUaYW43COokSWU8KBBlOEg,330
341
- mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=Z7tZblShNgUwwbfWQrhQGIGJOcAIaJKd5TaWmRTk64c,503
357
+ mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=vp4o5UA9txxJSa9RLE8UwioAR5yFOnnZHtxHX5XuBag,502
342
358
  mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=uI-UN2XLx7jAx7PxqOO_vlWcluUpPJJ4GEYZ5jP9jno,24818
343
359
  mindsdb/integrations/handlers/byom_handler/connection_args.py,sha256=chqPtpiEBtko8kxS15ImkZ6Q3kuhv7vwOzV3JeyU4cU,522
344
360
  mindsdb/integrations/handlers/byom_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
@@ -357,19 +373,19 @@ mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2J
357
373
  mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=zBQ-Nl1aQqZFJbVo1W8-cxuLsPkqP6W01edZ1IXUByo,18704
358
374
  mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
359
375
  mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
360
- mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=xDi58Geqkth3WtJFFFD20zyutNzmtrKu9cQOSNNzx9A,16
376
+ mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=74shT4HXgWhY9USh902gDPUo7SvgHZZ2u9V13jkdC_E,99
361
377
  mindsdb/integrations/handlers/chromadb_handler/settings.py,sha256=X2InXMtGB5rwTgPIhKCw7h83dzH2n89P0QjsoZv8p0Q,1994
362
378
  mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
363
379
  mindsdb/integrations/handlers/ckan_handler/__about__.py,sha256=asp1VEDXJCLipP3uoPK7Q_qXIODhH89pJqQyjv6P3WE,337
364
380
  mindsdb/integrations/handlers/ckan_handler/__init__.py,sha256=ERm0z1dxntDJfeAyYMKbzmKB48LmZC03o_g5gh9GXC4,621
365
- mindsdb/integrations/handlers/ckan_handler/ckan_handler.py,sha256=Ax91L41oyd0Yd6pL4Gg24KxkunU1K5xeRdHY0n1HJXY,10885
381
+ mindsdb/integrations/handlers/ckan_handler/ckan_handler.py,sha256=1-nXrWbVRWJYcei-bwci7O90E8TLLiLX1BMwYxL3l8w,10888
366
382
  mindsdb/integrations/handlers/ckan_handler/connection_args.py,sha256=ZSr6LCPYAGfwWl0lB8K9j7AsbzgUNNG4i8TvpyZtc6g,721
367
383
  mindsdb/integrations/handlers/ckan_handler/icon.png,sha256=bak0o_aTqEg7quWFRGvTt_0jKfLu5JupRjVQ7Zj45R8,8453
368
384
  mindsdb/integrations/handlers/ckan_handler/requirements.txt,sha256=OA1uNuLzCdHtHEXFxGFdMnbGKYTrLWl9AmOFLtBvlUM,7
369
385
  mindsdb/integrations/handlers/ckan_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
386
  mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py,sha256=k6FNozFZw3Sy6VeL-HU1l_nvLe4XFbeeLYRIFbXvRy4,5210
371
387
  mindsdb/integrations/handlers/clickhouse_handler/__about__.py,sha256=bcgP1184NBCWVD8DSJ18Y-BR2vvT4ESzhOa9fHQVC7E,347
372
- mindsdb/integrations/handlers/clickhouse_handler/__init__.py,sha256=tfXb-LepNm3ftmcEc28HHrXmNTZlv67gbdDXmYEhy-g,611
388
+ mindsdb/integrations/handlers/clickhouse_handler/__init__.py,sha256=MR0-Mxh7ofbRLFGQZPFk5s2gKdSYAHuCr-QQ6mxhQIw,612
373
389
  mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py,sha256=wYrIRuxSwcWpYtMiVOPpZmiV_iX6gBWiZ7SfaZuMbYI,5608
374
390
  mindsdb/integrations/handlers/clickhouse_handler/connection_args.py,sha256=vLcdjuhOT8N4eFLlz5WBUaC9IF53uztuEnzYaDd0eoU,1594
375
391
  mindsdb/integrations/handlers/clickhouse_handler/icon.svg,sha256=KIUu8bJwUyhJQArja0Vf8nEKsLnskVSnIwe6V5DDA1g,387
@@ -388,10 +404,10 @@ mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py,sha256=5G
388
404
  mindsdb/integrations/handlers/cloud_spanner_handler/icon.png,sha256=401gDIndTS_b_1KzDnoqgSpzEjZBLTA91-yU6KRWISA,75313
389
405
  mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt,sha256=SxP9VNIudLA-kKwZF57LeWjWaGEyhnUJQIa6mtq_Swg,39
390
406
  mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
391
- mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py,sha256=qRCqnbHeG_BughmJJamLaTT0dGyEk6ZbZCc80Sk1ghU,1592
407
+ mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py,sha256=5bEzBMzaIK8fkFmA5bBfivwZTBknfWBXus0AqTg_cL4,1590
392
408
  mindsdb/integrations/handlers/cloud_sql_handler/__about__.py,sha256=yhGv3W7rjxMgWatT6V36PqpaQ6o-y-acgfqHItqxl6c,366
393
409
  mindsdb/integrations/handlers/cloud_sql_handler/__init__.py,sha256=c7KlYhFuWKlu52Com-cwTTPoX0QP19Qdzf0K5rBQyTM,614
394
- mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py,sha256=lbw8oMAYW0nOxVtghmFrT-t9UE9hMtaniWq9jmpy3gs,3901
410
+ mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py,sha256=48iJk95Q0YdSsKYmjTp1Z6LWxVcgz42QJLlj7GeA-L8,3867
395
411
  mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py,sha256=5KIYS2P555wodGUezO8xT-kLcLRTCTFT387EeM6r3Kc,1278
396
412
  mindsdb/integrations/handlers/cloud_sql_handler/icon.png,sha256=ySspFcclAbho0P_mFb57wAnawtk92XToRRHBlO7BmJk,27975
397
413
  mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt,sha256=nUotYA64SxizF23uAEoMqvbWsNJNehQeNEikI25wdVk,128
@@ -405,8 +421,8 @@ mindsdb/integrations/handlers/cockroach_handler/icon.svg,sha256=wmbJ8ohZjonsKFBz
405
421
  mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
406
422
  mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py,sha256=27akhmCYkbVtYP4rxb5wBnresmg90jC8Tu2C4Z-kUJM,1187
407
423
  mindsdb/integrations/handlers/cohere_handler/__about__.py,sha256=X4Et6UwjebxXaX6dkXcvmTgd4QtfDZPCzT7izAiN6i4,345
408
- mindsdb/integrations/handlers/cohere_handler/__init__.py,sha256=-Hf005uTMDYyZKQUcg-GwpN5HpwliDxzggjfWMi-wEA,542
409
- mindsdb/integrations/handlers/cohere_handler/cohere_handler.py,sha256=8t9IjQUWwJ93vSlJYBPHga2I5KYNxVJcYnQ6GYAwrc8,2635
424
+ mindsdb/integrations/handlers/cohere_handler/__init__.py,sha256=cyFurbxhvsB83yooeo3cqcevlLRuhO4kMxsa7HjUAJw,542
425
+ mindsdb/integrations/handlers/cohere_handler/cohere_handler.py,sha256=A-FIDXT0judldheHeMn_4My0SWPmli_pwi3l-VzONpU,2549
410
426
  mindsdb/integrations/handlers/cohere_handler/icon.svg,sha256=kEpvJyEbO4rn816mPouHGZpz00aCQSsDsggX7W91GPc,1163
411
427
  mindsdb/integrations/handlers/cohere_handler/requirements.txt,sha256=3t7MDeOrgNzjAXw6oE0wZrb_Z7ja8xPmy1PkozpBsvc,14
412
428
  mindsdb/integrations/handlers/coinbase_handler/__about__.py,sha256=xTttDB5JtPIrUnMfXLTqyoL4hPocuAAqKuy9LJPaoiA,349
@@ -420,7 +436,7 @@ mindsdb/integrations/handlers/confluence_handler/__about__.py,sha256=0U9j9CfAa3m
420
436
  mindsdb/integrations/handlers/confluence_handler/__init__.py,sha256=68yvHlrf7xrRjrOqkzYIXfr4mFEQKs2GtCQKBhvuuWU,646
421
437
  mindsdb/integrations/handlers/confluence_handler/confluence_api_client.py,sha256=pyMVsQwSB-j03AP5RXgFQxyEE5hK3aIkmiW2pwOZJo8,5512
422
438
  mindsdb/integrations/handlers/confluence_handler/confluence_handler.py,sha256=BntGCIyGcZQAe8Uz8TZZsXP3Bs9g4hb6pEtoWNMg4zs,3381
423
- mindsdb/integrations/handlers/confluence_handler/confluence_tables.py,sha256=m0MEItwvz2Xj7J0NECKvHgKJFphsUrtdOplNABvyDaI,24079
439
+ mindsdb/integrations/handlers/confluence_handler/confluence_tables.py,sha256=p11oz0xtvzZp1Ug-f9WopyjqO9HAe7xeE9RYCImAHJQ,24085
424
440
  mindsdb/integrations/handlers/confluence_handler/connection_args.py,sha256=RZOuI3CbJ3VZmWJ5SDQ2vgppFRF42FUhfNAfpHgEdVM,852
425
441
  mindsdb/integrations/handlers/confluence_handler/icon.svg,sha256=Piz_ZFABS16FgHfePv3-6yBU2c-h7yeX1bZ5JXFJ_Fk,2500
426
442
  mindsdb/integrations/handlers/confluence_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -456,12 +472,12 @@ mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py,sha256=47DEQpj8HBSa
456
472
  mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py,sha256=e1WXfEqrL9i5nKh4ezJscNhq6tPenu9bIC8XlhCh1U8,1687
457
473
  mindsdb/integrations/handlers/databend_handler/__about__.py,sha256=7JUx-OSm5Mchr34W5b1uhO-dk8Zcv2S4QsEajk6_8yk,348
458
474
  mindsdb/integrations/handlers/databend_handler/__init__.py,sha256=CC0lyRAxEqvn8NFb6_S5fAcxEHQl0j6yLK74dOfdMkQ,604
459
- mindsdb/integrations/handlers/databend_handler/connection_args.py,sha256=TxJUFN8JBEHe3OlGHgFxYtkQ7IhjP8SWrzWuFqD4Xhg,1103
460
- mindsdb/integrations/handlers/databend_handler/databend_handler.py,sha256=YkPGljMN__YrWhBscPR8mcImY5bteGwXI6OtGZcDpNE,6080
475
+ mindsdb/integrations/handlers/databend_handler/connection_args.py,sha256=rQgVWTYTTn4RkinaZxi4n4sRWTDuNc4vdn_q584y4co,1104
476
+ mindsdb/integrations/handlers/databend_handler/databend_handler.py,sha256=XRw-irzekrsJZeMpGQIVQBIGGRDFIoqPYWZkAO9YzsE,6064
461
477
  mindsdb/integrations/handlers/databend_handler/icon.svg,sha256=oNgKNWZpC3VrRF06IfAfxPCDqegdb_pbVLrHHJmfsgk,2675
462
478
  mindsdb/integrations/handlers/databend_handler/requirements.txt,sha256=Gep4uTns63iLl3hVM8uvDdVRu6WHxHHE9E4F1drJEQY,19
463
- mindsdb/integrations/handlers/databend_handler/tests/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
464
- mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py,sha256=iNr_jkRHbUhY1SrtFG2jGl_RYrNekNHW70XXF-gpa9g,1231
479
+ mindsdb/integrations/handlers/databend_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
480
+ mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py,sha256=4iOaKMgDzkqi2glPAV5iQ1q5_sVfvZ1OmcMiL1lStAQ,1232
465
481
  mindsdb/integrations/handlers/databricks_handler/__about__.py,sha256=_DJsf3lXMtRb-c9tlUQesBW5_Vinsvd7uGjcDHaQhwE,363
466
482
  mindsdb/integrations/handlers/databricks_handler/__init__.py,sha256=go72eMqUWKLj4j7wnUbf3znTL4TQXrLfc1hTpxBxumc,675
467
483
  mindsdb/integrations/handlers/databricks_handler/connection_args.py,sha256=tdHFSNaXlAUFkM-FX7cMXEfdF6UtEgcNPSaRhFXuSUg,1885
@@ -487,26 +503,26 @@ mindsdb/integrations/handlers/db2_handler/tests/__init__.py,sha256=47DEQpj8HBSa-
487
503
  mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py,sha256=Ozp6YSf2ixihKGg-JS_7SJjoG9mgMYhrjMSijtjoNFE,1439
488
504
  mindsdb/integrations/handlers/derby_handler/__about__.py,sha256=TuqZrWJwnJT68J4uDLsQRbr59rDeT2R-ljATO9fh_0I,351
489
505
  mindsdb/integrations/handlers/derby_handler/__init__.py,sha256=EhaDomgWqB_JLo761BIMh0YsvOKP5KUT9Em4zZ9u12o,603
490
- mindsdb/integrations/handlers/derby_handler/connection_args.py,sha256=WQa1eZFFGzEcWEbUYn6HK87UTYcb6WBJQbV2rUogWHI,2046
491
- mindsdb/integrations/handlers/derby_handler/derby_handler.py,sha256=oEUeHXlYHf1PfIhkwFovr-twtsXEoqRsgSYm-VMgN6I,6860
506
+ mindsdb/integrations/handlers/derby_handler/connection_args.py,sha256=wk4Jq3GERieqr76-b2UMz42aqq7-BEcYxhbGtPW2co4,2047
507
+ mindsdb/integrations/handlers/derby_handler/derby_handler.py,sha256=90N1xnWqv7K1WUTLEOV8PjsE7DFCKWLfMpSKCwGCSCI,6813
492
508
  mindsdb/integrations/handlers/derby_handler/icon.svg,sha256=Q571Chfv-Mo8BM6S1-pNZFBY-FjpZmTAnQ0R0pes7ZM,2278
493
509
  mindsdb/integrations/handlers/derby_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
494
510
  mindsdb/integrations/handlers/derby_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
495
- mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py,sha256=bnu2Q1RnDYDt5s95HZfDIF4LUYhpBm5XpWiw8J3EGEQ,1513
511
+ mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py,sha256=taJFzTeh9q7C40OkPZsdNwdAzAurqWNEQOHwC2vyZA4,1478
496
512
  mindsdb/integrations/handlers/discord_handler/__about__.py,sha256=wxrgI1w9DRxdDHlBX68xY1pIJqFt4Bks-Ea1hTGfviQ,342
497
513
  mindsdb/integrations/handlers/discord_handler/__init__.py,sha256=SyPHPhB_V079zA_cyXCj45ei6lichsPqRP10LyBr8fk,511
498
- mindsdb/integrations/handlers/discord_handler/discord_handler.py,sha256=7IZnygHlBsCMIcFYSVLmUvsQW5-BJCTI3IPrrGzc9i0,5600
499
- mindsdb/integrations/handlers/discord_handler/discord_tables.py,sha256=i2_6VSZT8jdZTEXNfOe8a6K4Z3lb25Xd5IkfbmGiM4Q,5899
514
+ mindsdb/integrations/handlers/discord_handler/discord_handler.py,sha256=F7x7N-uQaVtcJbCo4PaGfJaQVPII_NnEn_vaYPrpa8A,5573
515
+ mindsdb/integrations/handlers/discord_handler/discord_tables.py,sha256=Hg2MAEhJEgUsyLbCfWh96Ss87fHXhGLPDuTVS5dq6OA,5878
500
516
  mindsdb/integrations/handlers/discord_handler/icon.svg,sha256=BzH2QWqsSOjWBf1H7nJys7koDyV6BsSMheyK1i0hMgI,1330
501
517
  mindsdb/integrations/handlers/discord_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
502
518
  mindsdb/integrations/handlers/discord_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
503
- mindsdb/integrations/handlers/discord_handler/tests/test_discord.py,sha256=WcvAe1HBYgHQYiTTH5livuWeLSOaFRrvRoAVA6BS-rA,2172
519
+ mindsdb/integrations/handlers/discord_handler/tests/test_discord.py,sha256=2Sehu-z2uiHjnqaeDUVlFBAWKodNKF2rxknlKcwuHZI,2159
504
520
  mindsdb/integrations/handlers/dockerhub_handler/__about__.py,sha256=UcCZ97wGHWne4UosDBcpGWtvSKQ5lsmBSqrMto-f6bQ,347
505
521
  mindsdb/integrations/handlers/dockerhub_handler/__init__.py,sha256=abNDl-TCh_MZlLgtZ7YK79j6qnXSMH1TBbXljxBjNFA,641
506
522
  mindsdb/integrations/handlers/dockerhub_handler/connection_args.py,sha256=X-mvTlTXI4dZeE8PcjVbghQpDaa8Cg5D3XUvMGYn4i8,572
507
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py,sha256=4xb08iI-B0YpiDbOzC-urzInQSM9BE-DoATJNu8Is_U,2277
508
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py,sha256=bJWYNLM3fwUvrWY-QSt-a6hIwmCJoeHJBOWRLME60mk,3661
509
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py,sha256=zGGEGeNP1zP8sEMv6oJXp157zjwhs00ENFK5_icQYXw,16832
523
+ mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py,sha256=Mdq5PmxHZe0pElM9eUQZ7qCANGk_zfcJSUadnsmRsqw,2261
524
+ mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py,sha256=eR8iL9BftISam8f87fQfTN5CSXmz391aT-M731V2FV4,3645
525
+ mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py,sha256=uP3BMXeVDp_88dFufdENVWu02QESeDplOOSWcomHd7k,17383
510
526
  mindsdb/integrations/handlers/dockerhub_handler/icon.svg,sha256=50v7YRsy6q8H58p7CMNSAN7LwKzRGifEIgblLev4s3c,3562
511
527
  mindsdb/integrations/handlers/documentdb_handler/__about__.py,sha256=Rt-G8q9KTwAaFdsfTKRieXvp7JnaJGPJUe2WeLGocgw,350
512
528
  mindsdb/integrations/handlers/documentdb_handler/__init__.py,sha256=i3J0cPOg7QqkP15-2seahXI1xILvPthpmxClhqAq1d8,620
@@ -514,7 +530,7 @@ mindsdb/integrations/handlers/documentdb_handler/connection_args.py,sha256=ajm9e
514
530
  mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py,sha256=oJi8FH59c0jyZ_6Lxj7KygC_koXA110EC3m-k16gbqw,1378
515
531
  mindsdb/integrations/handlers/documentdb_handler/icon.svg,sha256=pKDMFy1Ivlwa6Bp2_SEiCF5HQoGy4c6wtd9XfdOI2Is,3512
516
532
  mindsdb/integrations/handlers/dremio_handler/__about__.py,sha256=Q_m7a8g1uswUxT09spU-FGLw3c4fIsBKsBlC4iLZFLU,351
517
- mindsdb/integrations/handlers/dremio_handler/__init__.py,sha256=HYjTdxnhiy3JVW-0CzqvM14Or5qAJEIxeRtpd9xyxXY,587
533
+ mindsdb/integrations/handlers/dremio_handler/__init__.py,sha256=kUUd_B8mdKfPSu9dMfqKD-0buVhlZwcc_TgFwdl0iHU,571
518
534
  mindsdb/integrations/handlers/dremio_handler/connection_args.py,sha256=3PIE05Jl7mkF_9KL_Kjx0rwjpZI5U7vpYq2ojd5BgYk,814
519
535
  mindsdb/integrations/handlers/dremio_handler/dremio_handler.py,sha256=pSuaEZCCn8hsVCPYGKXScbkVPmLfPC-hlQR6HANGCyk,6798
520
536
  mindsdb/integrations/handlers/dremio_handler/icon.svg,sha256=fs5ugLp1d0xMQUoAHcOV-5XEX6u0uADR_GC1A0SBjIo,5946
@@ -530,9 +546,9 @@ mindsdb/integrations/handlers/dropbox_handler/requirements.txt,sha256=dRcFk9VZ8i
530
546
  mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
531
547
  mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py,sha256=M6jrM1f991HCRQC15KlNm5xZ6TN1fpkGzut8ZGM8RZk,611
532
548
  mindsdb/integrations/handlers/druid_handler/__about__.py,sha256=psafZg7bMoHnSdx4ThYNV5hFZiq1Y8ZB06SqzAPvabw,362
533
- mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=NLIjL_lH0cVF7PV3jaE76Lv9CJXYskuNVWRC9S98tow,598
549
+ mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=eUEHsfHUYrqYnNzj_YKHAYQb8iDTdRkoamLITQvEEMM,599
534
550
  mindsdb/integrations/handlers/druid_handler/connection_args.py,sha256=dlwEAIswp5kkBIiHGXGe_AkI06W6RukP5QPT4BxKvoI,1401
535
- mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=prguxSB2AmoeVkCxCtIsHe7_OGNqFGfRE3Ahxrn1FxI,6405
551
+ mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=ln1kMx7CvkBlRUwY9ykBtJX57yWGt4CWPU1mBmWu6Y4,6406
536
552
  mindsdb/integrations/handlers/druid_handler/icon.svg,sha256=ak7qaXWafkb6MvCGtG5wAfVcffKNuARcUtF74uqVDEw,2823
537
553
  mindsdb/integrations/handlers/druid_handler/requirements.txt,sha256=dahrkIufqj8IX1uzmprfLUzgIAKmeJYmrvcEhwOpdJI,8
538
554
  mindsdb/integrations/handlers/druid_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -567,7 +583,7 @@ mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py,sha256=fR
567
583
  mindsdb/integrations/handlers/edgelessdb_handler/icon.svg,sha256=bkgVNzOgmtUSz3_9P74YBBLE5577nQlcHqJLKpy8d_8,742
568
584
  mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
569
585
  mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
570
- mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py,sha256=diwhvsyDddLZl0utBKgUufQkW-bogIEEkinOw8SKWBQ,2005
586
+ mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py,sha256=JNKaHZips1Zy7Y0PBy9l2GZgeyao7Q508h_970zPAMk,1979
571
587
  mindsdb/integrations/handlers/elasticsearch_handler/__about__.py,sha256=yRczUDJEBZh4uQfJodmmmSLc-W8Ytk5HkpXK7Ev2VeY,363
572
588
  mindsdb/integrations/handlers/elasticsearch_handler/__init__.py,sha256=ExwZlMAOr1ODX3ihoCeME8on-tzmb2ENRLipG5xzlhA,659
573
589
  mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py,sha256=G7VApBaBz8GNzxY7TURE_UpLs6x8knlfywa5tyzWTXo,1296
@@ -578,13 +594,13 @@ mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py,sha256=47D
578
594
  mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py,sha256=CVTDvLoshAP-JZbuc-Sc3xWNKvtarxUTE6U0NZYRpqs,1107
579
595
  mindsdb/integrations/handlers/email_handler/__about__.py,sha256=_gKp2yLFTagL1ArgnqbFmG_9ESO4dCQl3Ze3UEI2KMo,333
580
596
  mindsdb/integrations/handlers/email_handler/__init__.py,sha256=uzS0asjT5GArzwJQ5T6WjAEcg154q1zcSaThn_uhWK0,492
581
- mindsdb/integrations/handlers/email_handler/email_client.py,sha256=IG-YsPqEtAenMExOTe01BdGqIWUJP-LiaIvDCDSb1nA,6334
597
+ mindsdb/integrations/handlers/email_handler/email_client.py,sha256=pxi-VKTNOeVQeoL5xUoS50JFA8J7ioXQM7Wbbefc6I8,6326
582
598
  mindsdb/integrations/handlers/email_handler/email_handler.py,sha256=ZskExJjNT3FVlpgSJReKvAgFoQsMwy_niX6u-7IV7P4,2722
583
- mindsdb/integrations/handlers/email_handler/email_ingestor.py,sha256=uBHhhK1ffAb4RK77PblUQrfzUuCnMh3lcOIuBVDfApI,3385
584
- mindsdb/integrations/handlers/email_handler/email_tables.py,sha256=XKQozrHwQGCktGCeFXo6lbSMpcy1f0_23AnlSJVrRUo,5203
599
+ mindsdb/integrations/handlers/email_handler/email_ingestor.py,sha256=vuMz2BYLTOlxAm-fCByLEhf_tjNMk1cL6f0-3ySImug,3385
600
+ mindsdb/integrations/handlers/email_handler/email_tables.py,sha256=ppT43BMariRjqFW3_WJcX1aSCA_nasaDeNbugXjqTEQ,5192
585
601
  mindsdb/integrations/handlers/email_handler/icon.png,sha256=3gOB-brv6-jfOqqkCxW-loNPKNgj326ixKoiqEOHxsA,32416
586
602
  mindsdb/integrations/handlers/email_handler/requirements.txt,sha256=d2_KpNooVtDHqxLWDNluZrthOh9Fh8zieJvvkJWzV8c,12
587
- mindsdb/integrations/handlers/email_handler/settings.py,sha256=H-c3-h01gHjDLwbqdiMYq2MsoWrk4yz6t0LbC16UygA,1642
603
+ mindsdb/integrations/handlers/email_handler/settings.py,sha256=TXagY4NDBGg38PP5Yi1nxwPQ7dMnwqv8FazXVrNCsFk,1641
588
604
  mindsdb/integrations/handlers/empress_handler/__about__.py,sha256=IRkXh-2mR6-bdwmnZuuDPcLpVTPpZPefflnuNYkrs6o,399
589
605
  mindsdb/integrations/handlers/empress_handler/__init__.py,sha256=332JGOh5TY7yl2rKrKVyHTnZapqM4iD5Y5tWfahL6h8,609
590
606
  mindsdb/integrations/handlers/empress_handler/connection_args.py,sha256=frb3E7UmeJhviNF60G4sW1XeZIYei0YiK1_4hG1UamA,1173
@@ -601,7 +617,7 @@ mindsdb/integrations/handlers/eventbrite_handler/icon.png,sha256=gJdi1iZr7NJlgsN
601
617
  mindsdb/integrations/handlers/eventbrite_handler/requirements.txt,sha256=tkujt3jIsMXBs5zpqLJSvKSMxs0F1sFpxWNr-uN3ozo,17
602
618
  mindsdb/integrations/handlers/eventstoredb_handler/__about__.py,sha256=IkNIOvJEgwl45RZfbzqonIIDgyU5XzWGsfgtK0hWp8g,359
603
619
  mindsdb/integrations/handlers/eventstoredb_handler/__init__.py,sha256=25J3hSo3__Z-XpLuEuVGFtFp9DO7UYw9piixPkt1kPQ,523
604
- mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py,sha256=RQ73Z5brrYwGtGpwPikXLL4pqm1zsKTYI330Usa-Ms8,9134
620
+ mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py,sha256=55ZedpM_e-CcMM0QQyfF7l2kWfuuYafQHaiQvJBiu34,9289
605
621
  mindsdb/integrations/handlers/eventstoredb_handler/icon.svg,sha256=IAuS_Ev-9EYH7H9lhrBC3wdN8IycizZGohiB4kyqeeU,2404
606
622
  mindsdb/integrations/handlers/faunadb_handler/__about__.py,sha256=pOnuQTkQK37OzOgA_r71Gzfpc6F0SIPnu-VHTv0w3yk,337
607
623
  mindsdb/integrations/handlers/faunadb_handler/__init__.py,sha256=8y_tC2s3Bqr8uGFQiwSC3-gIjATv242SPjJGZP0eHCo,656
@@ -627,21 +643,21 @@ mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg,sha256=nx
627
643
  mindsdb/integrations/handlers/firebird_handler/__about__.py,sha256=XsNT56zjORbC-Zdl6JZ7PSHrm80LPHjKmVgYJ_BjLy4,357
628
644
  mindsdb/integrations/handlers/firebird_handler/__init__.py,sha256=aH6jiir9NpFnFtsM0X-z-m6ifrE3oLDEbHVrcDw_RRg,624
629
645
  mindsdb/integrations/handlers/firebird_handler/connection_args.py,sha256=dnksNcYLtaOJWi_knMO5TaRMAduRgNUYXDSNYa3eylc,976
630
- mindsdb/integrations/handlers/firebird_handler/firebird_handler.py,sha256=FWPzt9f2qyzYkgcg3jst8B85ieNAhHR98VB20VMtqnw,8672
646
+ mindsdb/integrations/handlers/firebird_handler/firebird_handler.py,sha256=SclABBqp1wvsFes8fBFOXAHXlhe0reR14qHlQ0q0uig,8671
631
647
  mindsdb/integrations/handlers/firebird_handler/icon.svg,sha256=krIiRyzwtZf8wzdt3QQhFMBAZ25JwgJF6mGJm8ku7H4,4207
632
648
  mindsdb/integrations/handlers/firebird_handler/requirements.txt,sha256=8uUhkMD0GvdwVt6WhNaBVVBeiedhNEHNdkTXZJudoDA,41
633
649
  mindsdb/integrations/handlers/firebird_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
634
650
  mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py,sha256=Hkjr4lz0oWzUupvaT-1-DXaCxQMNFwFdz1VBu_2tJ1w,1243
635
651
  mindsdb/integrations/handlers/flaml_handler/__about__.py,sha256=vQJvUYCSJpM2L_K3BpZIf2wPg0O6gwMZb8hwtGDFJEk,338
636
652
  mindsdb/integrations/handlers/flaml_handler/__init__.py,sha256=MHYGvpWtU8o5izMpv4d0CxBIamoCmP-J9Ti5bq_f2-I,531
637
- mindsdb/integrations/handlers/flaml_handler/flaml_handler.py,sha256=M3A5cl46SulSqbdAUmuDApYHqj1RdR6aRoPUN4PtAoM,1617
653
+ mindsdb/integrations/handlers/flaml_handler/flaml_handler.py,sha256=qgvXfPEOmf5A4amIGj6LkDLhGVqmJiYWVmNQ_M-Fnn8,1601
638
654
  mindsdb/integrations/handlers/flaml_handler/icon.svg,sha256=L5ADXk0pRN8VFCYew_jeJXjVTP8etzLQsUwAjjuPwIA,3096
639
655
  mindsdb/integrations/handlers/flaml_handler/requirements.txt,sha256=YbK2xIvGKGeFqBEel014cWFzfgwukPKcloTX4ar3Bpk,32
640
656
  mindsdb/integrations/handlers/frappe_handler/__about__.py,sha256=NPBXQAHQGMUoAxc3L0e5Cu_CnccWeyyPEVLe1jNwe4o,345
641
657
  mindsdb/integrations/handlers/frappe_handler/__init__.py,sha256=JTd4ltTHkkVOmZuitOz2GpA3S_cZJxDmlp3A18imeUo,480
642
- mindsdb/integrations/handlers/frappe_handler/frappe_client.py,sha256=gBcMlUf-Gj8Jkj0Ggv-WZ3t9eoWroUigzCFI12hrWGY,4374
643
- mindsdb/integrations/handlers/frappe_handler/frappe_handler.py,sha256=hI6s-rBRS-GV8RLKDiS5sWWYLKZ--2vsgK-50tZ2iLo,7976
644
- mindsdb/integrations/handlers/frappe_handler/frappe_tables.py,sha256=yQpL0zTv2P9soboTp7S9nKdmNvUOgRZjB-zVSLRIPNg,2648
658
+ mindsdb/integrations/handlers/frappe_handler/frappe_client.py,sha256=XbDZ7GJK2MqJq2EdHYCiOkl5uLAgBunVyr-zQkdUpfE,4338
659
+ mindsdb/integrations/handlers/frappe_handler/frappe_handler.py,sha256=KNm_kKUdkpMWCM6fKCuC6UxCdsrvrAIpk7GhI-PAW9w,7974
660
+ mindsdb/integrations/handlers/frappe_handler/frappe_tables.py,sha256=iVVb1KrnkJNp5y4wggZfuN8H73XUI5uU18InJFzzWtY,2640
645
661
  mindsdb/integrations/handlers/frappe_handler/icon.svg,sha256=UsWb6k9kIQ1zO4xkf8GM_VaW6xGs_Xb_f1I9TuitBSI,920
646
662
  mindsdb/integrations/handlers/frappe_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
647
663
  mindsdb/integrations/handlers/gcs_handler/__about__.py,sha256=A4HdOx9Tf186tzO0P3Z-qanuiBQwHnS0VNPLzuf-fzY,345
@@ -653,24 +669,24 @@ mindsdb/integrations/handlers/gcs_handler/icon.svg,sha256=56wtNuOB923CuGU-TPsYRx
653
669
  mindsdb/integrations/handlers/gcs_handler/requirements.txt,sha256=zLZXjAKF7BzZXlUq0fXrTQqzUsxV1nO_fsHaXTSowF8,46
654
670
  mindsdb/integrations/handlers/github_handler/__about__.py,sha256=bDVOGS37C6HVRgSOekhxUcvW2Eg0Z5k2bq558mUM07M,339
655
671
  mindsdb/integrations/handlers/github_handler/__init__.py,sha256=ov-CvC4-1IbwvuKykY7i3wJxHnYenbU8KtNZUSRzB-0,629
656
- mindsdb/integrations/handlers/github_handler/connection_args.py,sha256=jnJKzK-5UI5-GZVh57iWaYXkAlhnc8p_4vUn357wXow,911
672
+ mindsdb/integrations/handlers/github_handler/connection_args.py,sha256=zecMKM96NjxbneM66tb8QuGg6EVvukl9GJRBCL27UsA,909
657
673
  mindsdb/integrations/handlers/github_handler/generate_api.py,sha256=GRIhxpUKQ_zazZDWqiUWu_fdXOztKF6c4ne1AgjE3qg,7089
658
- mindsdb/integrations/handlers/github_handler/github_handler.py,sha256=6Xk5piMuafTvfPGvJ5U0WabE4W_Je75nZVUlfzMeRvE,3795
659
- mindsdb/integrations/handlers/github_handler/github_tables.py,sha256=ICt2HmrE0TSI_dEFgVMA00INoL5z5jhA8aKH9C_EiiA,30970
674
+ mindsdb/integrations/handlers/github_handler/github_handler.py,sha256=ekIhKLkixe1bg1t8pqp1Wp4A7SPBvITwCSN-ghftoDI,3614
675
+ mindsdb/integrations/handlers/github_handler/github_tables.py,sha256=x6PHhZYRQjwzw6cQ23Fs0uBDqagVyqoSssgSE6szf80,30710
660
676
  mindsdb/integrations/handlers/github_handler/icon.svg,sha256=c1j3IrEwYsGXPwW-hjZDpOceLhVCW_0tT8Aba5PdF5c,1198
661
677
  mindsdb/integrations/handlers/github_handler/requirements.txt,sha256=BJz2OYblSD2RZAV7csj2UIyRfuSQmstGWB3flUgFOk4,16
662
678
  mindsdb/integrations/handlers/gitlab_handler/__about__.py,sha256=2uH49-_UriKLYrfBa8yIU6j1L9Bxpyp5Gqm7zsTT7eA,341
663
679
  mindsdb/integrations/handlers/gitlab_handler/__init__.py,sha256=MleI0P8FKMYzbzd_XPkTbCjT1_Ub21hreu56QhXQuy8,481
664
- mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=fSj7r7irmC2WEOWGKM9An3V-gs-U1Ub5HommbwPdBDs,2575
665
- mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py,sha256=efbt7uGL5sKZvu5gvsqr8W-guyoZpZBUEncJabTztJY,15320
680
+ mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=2aI5V86NUsolt31AINviwe368XpdaKfdUxBupMOXUb4,2575
681
+ mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py,sha256=qgIcwzLQLByzBEMga9EIqsGuEVgF1LECLsC_L4w3xg4,15283
666
682
  mindsdb/integrations/handlers/gitlab_handler/icon.svg,sha256=bQ1whEb3IObHqMiZAHomuekYicpYFVnD7W0y-4JyzKc,1995
667
683
  mindsdb/integrations/handlers/gitlab_handler/requirements.txt,sha256=1W6ZjjUzciSZ0BX4yJ7C54BWdhWYLCw5ASu-VQohWro,13
668
684
  mindsdb/integrations/handlers/gmail_handler/__about__.py,sha256=uj5U9JF0CynCH3ZE858VyDrJUiFgnTSZQcIbEhwnMbw,355
669
685
  mindsdb/integrations/handlers/gmail_handler/__init__.py,sha256=2Ed7Pfbdz56spFnl9WGf1vcRdL73LBjBr5lG_-dje38,540
670
686
  mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=ICSjOPrCxpOQEpXLkyjm-osa-9fhm_tf77iekhqAsTo,780
671
- mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=IEsMHrzgyWEiiLYN1oJGOg4uEtvqw_1TdwoaJE98JuM,18088
687
+ mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=V0T4Mrm30Fb8kkBSjktV1NkJYE2ezDsawZ2n5uugMmo,17746
672
688
  mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHrma_Ho8dyXNTAgXnQK25hYD4,862
673
- mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=CE8Tu4MYTFbjPoVIYlwI55wCWl22Re5B2Sr4rDLiHKE,25
689
+ mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
674
690
  mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
675
691
  mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py,sha256=wjJHWn2jBFHm4gBtuVSoc4MdFoIy54jkfnCbPz77KHc,1479
676
692
  mindsdb/integrations/handlers/google_analytics_handler/__about__.py,sha256=68QyRQWAMw0MGDM64tuGkSrjepQmQKQea5zvfw0r0Aw,369
@@ -678,41 +694,41 @@ mindsdb/integrations/handlers/google_analytics_handler/__init__.py,sha256=ynl-z1
678
694
  mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py,sha256=-u--wXJwBMBfToVa0Vtx_tPPty9q8X4hkCCy_LCV3j4,4706
679
695
  mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py,sha256=ya4ZEvj4piomTQhICWLG-GIMUzZwiXvmsdT7ZTNaylU,10186
680
696
  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
697
+ mindsdb/integrations/handlers/google_analytics_handler/requirements.txt,sha256=8-uBXk0JSITMEupHUDVG4iyYu7o3G_Krfepp-uleXpQ,59
682
698
  mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
683
699
  mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py,sha256=cHXwGAuWmuroN-x_b0YKWgGD4ax0Vad3V4xzgHDgqSU,1815
684
700
  mindsdb/integrations/handlers/google_books_handler/__about__.py,sha256=O5UgmDgG_LDRCZi_Jyc4wZLcYsWzPL6BJIkRFxjm2Do,379
685
701
  mindsdb/integrations/handlers/google_books_handler/__init__.py,sha256=6qKoU8qvFL6a-GPqPW_IPa2IYIhQJzOuf2T8AKOKM6A,504
686
- mindsdb/integrations/handlers/google_books_handler/google_books_handler.py,sha256=_GGQMKamWOaTpKn0NS-A27RNjfYVKvRoefm74Y-xZdY,6901
687
- mindsdb/integrations/handlers/google_books_handler/google_books_tables.py,sha256=knoFrJ1fo6lvDCywk5QbM21ohrgcEHZFd2BwTAE5eDU,6268
702
+ mindsdb/integrations/handlers/google_books_handler/google_books_handler.py,sha256=wQwZ-UsEvSE4SSyxi-0N1TO70ozHgdQyWOCJFRmmr9E,6892
703
+ mindsdb/integrations/handlers/google_books_handler/google_books_tables.py,sha256=wsMwbrbp8pPyB98snrn9fi2np968DEcNxsONctyFNAY,6184
688
704
  mindsdb/integrations/handlers/google_books_handler/icon.svg,sha256=PNUyfFJEaEAgCxmomXG_1SYW9VaSF5zilZi6X9Xuhls,962
689
- mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
705
+ mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
690
706
  mindsdb/integrations/handlers/google_books_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
691
707
  mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py,sha256=tuww8tSsOPizyjPEcHcu7E73q08ErErQbXBSKxw9fWY,1487
692
708
  mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZz9sTlrSoW5FIUbFZqmW4WD1BNe-66IC1hj6Vs,388
693
709
  mindsdb/integrations/handlers/google_calendar_handler/__init__.py,sha256=ms_QDVhQf3b_jnweJXDVAUFYuyKkPb6JgEfGEzJ9uzA,580
694
710
  mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=HL1g-EYFULOoR3l874dFRmPGeP5bl0fNwRTftYDeF84,780
695
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=o-iXM8SNuRmoFxJJt8RlRVMqhbjqSYlT3xALifsZLfw,10851
696
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=SWioh20npLHBTJu8XsYIImdWZ2mgs34pcvPrudCmOjs,8111
711
+ mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=NV8wWKS8_09flwJmf3X1J2iQ96o-uJ6HKk-e4ODZhCE,10900
712
+ mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=QuY3I05xV_XaqOGV_xtMn2eMkDSZBxTWiYC9ylQ860E,8002
697
713
  mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
698
- mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=CE8Tu4MYTFbjPoVIYlwI55wCWl22Re5B2Sr4rDLiHKE,25
714
+ mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
699
715
  mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
700
716
  mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py,sha256=Tv1O__exOy2k58VNAG3LQgOUKICIUt_-RpqAzuGiiRA,2215
701
717
  mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py,sha256=kUidXzaoLPxNOiywhLPrUFjG4JZl8krOHzS0QMWl7Tg,424
702
718
  mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py,sha256=5WMq9JHkNT9EHmedLyt5wru80V2NxMeNSvemsiTpUEk,662
703
719
  mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py,sha256=NdwKKW8VAMNiInueKkXoX0QP8Fu9ECXq0tTBdpGc_Zo,563
704
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py,sha256=iRAdruNYOo7Qo7_RxccRD9sO35hZp1RUUgYneLoLAkM,15706
705
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py,sha256=KnTbG2iq2IzTKu0LWBZXCKw5xRRBqG9VawKwy1csFKc,14279
720
+ mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py,sha256=yGt7F-_-w-wWk-2Ijzsbb0pbvB4S7sOJTseZ8hzGkz8,15650
721
+ mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py,sha256=1o8yzOgzHx0g4N_lfoNhH_WZfVUfAmsw-LwUOnwZoh4,14195
706
722
  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
723
+ mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
708
724
  mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
709
725
  mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py,sha256=0yOsRSpKCGiHAKpe9m7g7HENYY2vcCPVk6sP1k5wLsI,2436
710
726
  mindsdb/integrations/handlers/google_fit_handler/__about__.py,sha256=f6IFxoETFim29W0z7BPQG57SWBNyy838DTuBY_68I6k,358
711
727
  mindsdb/integrations/handlers/google_fit_handler/__init__.py,sha256=ZzcJSVhfMTx5CqAjRCydCB7Mc2ERPT7GtQ8FOtZkXFQ,495
712
- mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py,sha256=w2tKHb9SR6bvH_4-Xys-Xzpep7vWgxVKnHt-8sZI6vA,6619
713
- mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py,sha256=H9_iidTDuqh5vonMbxaNSqUZ3xnRZcdjKRzN1gm9bjU,2496
728
+ mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py,sha256=c5DWijWNdeXxv_tYaz1TdfaTF7j_ArQwixt6-_YDjhY,6572
729
+ mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py,sha256=RNl_qiPHcyNrtBrkmbTDE2uGUJ0l8mwHX1z9c5T1mrU,2394
714
730
  mindsdb/integrations/handlers/google_fit_handler/icon.svg,sha256=3ZgBVbln5KXnYpVLDTbYDGfQp_hUGW3W0GJGVJUjQ98,1511
715
- mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=QGBNRuyeerx46dPHS7zSgFtC0LD6JuGUY97WlIJtpp0,48
731
+ mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=XAgJL2biwLXpTpn7NBWXVYxtpUTh0zKHFm2bgjhXAWU,80
716
732
  mindsdb/integrations/handlers/google_gemini_handler/__about__.py,sha256=6wu9JKGI5scaFTcO59kcrQ1F6ooVaaPeS3-sYxOYojI,374
717
733
  mindsdb/integrations/handlers/google_gemini_handler/__init__.py,sha256=EUCAGAXFNB-VuxjGG-knqIVPIAZ_ujj57rd_1yxr0Gk,617
718
734
  mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py,sha256=9wsvVDBdcB39_vpYxZNzqY5C2cC3iNv1KORV9abBK1A,14235
@@ -721,10 +737,10 @@ mindsdb/integrations/handlers/google_gemini_handler/requirements.txt,sha256=uPpL
721
737
  mindsdb/integrations/handlers/google_search_handler/__about__.py,sha256=EPaDjDJvD7XZjKVF8kcxylyhDldS9MzxcHlkD51hufY,382
722
738
  mindsdb/integrations/handlers/google_search_handler/__init__.py,sha256=w5PUmHFndJkZtMrfrf3ruBtqvE6tNY_SswSBmJowU7s,630
723
739
  mindsdb/integrations/handlers/google_search_handler/connection_args.py,sha256=HShiT9T2GITGncYL8t2PsN8m6PUMQeqjCdn_mizNfY8,408
724
- mindsdb/integrations/handlers/google_search_handler/google_search_handler.py,sha256=IYGAuZUcOKriVkRFCyXPtIgT87rteXnxTYB_qVlpDkk,7682
725
- mindsdb/integrations/handlers/google_search_handler/google_search_tables.py,sha256=faXQl06-MdO3EzzyQh4PQjag6g30VyFvbGGd6699Cio,7375
740
+ mindsdb/integrations/handlers/google_search_handler/google_search_handler.py,sha256=E28ekX9d5ra2QdZjfkHJ9UwA746GAkkTPerI9yx6ebc,7673
741
+ mindsdb/integrations/handlers/google_search_handler/google_search_tables.py,sha256=p53CalNcKaLUb0NWJYXJXTfqlD-M1Q577D74puWBRpo,7291
726
742
  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
743
+ mindsdb/integrations/handlers/google_search_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
728
744
  mindsdb/integrations/handlers/google_search_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
729
745
  mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py,sha256=V-jX_GbRwpu7lq8l-4Kf5x-PTxyXL5TaWsnX5nfIkUM,2178
730
746
  mindsdb/integrations/handlers/greptimedb_handler/__about__.py,sha256=dqfX5vPUkk2ilQY9jy3BO0WN3pwcqTRa8mCNnQKg6CA,345
@@ -733,15 +749,15 @@ mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py,sha256=aT
733
749
  mindsdb/integrations/handlers/greptimedb_handler/icon.svg,sha256=Gos2jNeTXp0y9wiFkV_PNR2ZSBuoWOcOani7uDN6zP8,1298
734
750
  mindsdb/integrations/handlers/greptimedb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
735
751
  mindsdb/integrations/handlers/groq_handler/__about__.py,sha256=wnuD05vkrrFPXlJ7AR9f2a88KzcmdSsuLbOisvZdwOc,330
736
- mindsdb/integrations/handlers/groq_handler/__init__.py,sha256=iAQYzb8aVi5FSThNLWVwvNsNbHoyHHMR_lcxYKNulHY,569
752
+ mindsdb/integrations/handlers/groq_handler/__init__.py,sha256=FDKRw30RjMk9bJKiV_Elcr3-dZgtxInaxjDUUD_FRO0,570
737
753
  mindsdb/integrations/handlers/groq_handler/groq_handler.py,sha256=IbQlHpR-0_6cGNJFlVJbxiIMD9jaz_VP8vShA65PHuQ,4823
738
754
  mindsdb/integrations/handlers/groq_handler/icon.svg,sha256=S923SyjHSrjPJBzvHvYVDMFQYNh9AqjzZtzOd41ePlg,2495
739
755
  mindsdb/integrations/handlers/groq_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
740
756
  mindsdb/integrations/handlers/groq_handler/settings.py,sha256=-ro_v2nGmx_5S3CS2RHAr5f8BvbDN-ACYnpyBsV4dAo,723
741
757
  mindsdb/integrations/handlers/hackernews_handler/__about__.py,sha256=xCBY8u73sc_PHT5gj0PGygqxJkBymwyFlUxb85bC81o,340
742
758
  mindsdb/integrations/handlers/hackernews_handler/__init__.py,sha256=8qw3ZBMLKmpUHE1N2rWeQGCNkGc0Q8EyEfszMoYfGUk,505
743
- mindsdb/integrations/handlers/hackernews_handler/hn_handler.py,sha256=pOAX1Hd5uBMTjvlN5dhbTdFl75KhIrpEYAsBNkVbR44,3722
744
- mindsdb/integrations/handlers/hackernews_handler/hn_table.py,sha256=fTXAc-AX4cfDHzFv5eamIxST3ky2jezCAe7HzDWC6Wg,5281
759
+ mindsdb/integrations/handlers/hackernews_handler/hn_handler.py,sha256=zxYBbk7_fceYjIL6cogHgSbV4Mdj99Yz_fMtRsu7FaE,3634
760
+ mindsdb/integrations/handlers/hackernews_handler/hn_table.py,sha256=L9BQ3ak40qh6PFYZgf3nzdsyDNuHa454B3HkXueROFU,5242
745
761
  mindsdb/integrations/handlers/hackernews_handler/icon.svg,sha256=w7g3BTaZJroLn0KfbT9SYBtcJMCNws4s3djy6LxIqRc,611
746
762
  mindsdb/integrations/handlers/hana_handler/__about__.py,sha256=lU0KWojOUkMWjzARuZP9qLWn3LblHSjUBuZV8Ewfy1E,341
747
763
  mindsdb/integrations/handlers/hana_handler/__init__.py,sha256=FvP0UIPGS7APeAorBgBe5_QybJ4kKm9E_gdlUCasAFM,592
@@ -756,11 +772,11 @@ mindsdb/integrations/handlers/hive_handler/hive_handler.py,sha256=VziWof6giCClHC
756
772
  mindsdb/integrations/handlers/hive_handler/icon.svg,sha256=g07RaULUyoFzFpk2S9o5cwww__dB8YTS2bGvRtUpROI,17076
757
773
  mindsdb/integrations/handlers/hive_handler/requirements.txt,sha256=KsI9Z7vv9d8vCEOyR4uO8R9I1ZTe84mW6kD0pZwJ-Fg,26
758
774
  mindsdb/integrations/handlers/hive_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
759
- mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py,sha256=Zvm3CXu9A86Jmh-mTX8WVYI_ceLciLJYFs9_mKV3Kas,1638
775
+ mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py,sha256=o4_iBDZdkIthPLSew_dzqVhsD3LPn5n1KepCy_42aj0,1639
760
776
  mindsdb/integrations/handlers/hsqldb_handler/__about__.py,sha256=8bNNZpNOyuFnwjUzcyXY5PXJRt0TxuaiVn5uGVTJB9Q,348
761
777
  mindsdb/integrations/handlers/hsqldb_handler/__init__.py,sha256=jkLVMUxIKVPD0Wk6_ehi8Vg-jbAts4A2gbFAz3w4qQ8,620
762
- mindsdb/integrations/handlers/hsqldb_handler/connection_args.py,sha256=PJVN6oDs0pjpE8TBW6TCRPK_4gWUi-LBMycqBLSKDc8,942
763
- mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py,sha256=TucJGFkrOqyVWfZKtCaj_XBPUMogbtzc10JJjQiTdXQ,6580
778
+ mindsdb/integrations/handlers/hsqldb_handler/connection_args.py,sha256=QFAIgfxnHCixaIl8GhvO6JZev7Py59e0CnK1O-R-Kbk,927
779
+ mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py,sha256=SBniWwafqSxS66RET2C7J9TcBCl9WXDRgSuwAxcV-9E,6583
764
780
  mindsdb/integrations/handlers/hsqldb_handler/icon.png,sha256=OYVUi8q-tKafOg0Evg2GY_UYuGxa9lUJ93KSNfPB464,41120
765
781
  mindsdb/integrations/handlers/hsqldb_handler/requirements.txt,sha256=K8ZUSiKPbTlaT2Yd895mW4_uKNc3k9e_N_Xd0pMc6uE,14
766
782
  mindsdb/integrations/handlers/hubspot_handler/__about__.py,sha256=XoRC9G5UEVYBF2NlqyVqk4H9431bafGacrirhcBPqmA,349
@@ -771,8 +787,8 @@ mindsdb/integrations/handlers/hubspot_handler/icon.svg,sha256=FoLHI5CdLMqZLv_M0P
771
787
  mindsdb/integrations/handlers/hubspot_handler/requirements.txt,sha256=50SL5fyMnNRccXgKNrQ9UW5zK5iiJWYvNK_yXdJhgV8,19
772
788
  mindsdb/integrations/handlers/huggingface_api_handler/__about__.py,sha256=gUWilT75wrd2aRmL3iK3XXI8XjXu4mpun3pcmVwrZ4A,381
773
789
  mindsdb/integrations/handlers/huggingface_api_handler/__init__.py,sha256=Bs6kqNT2-WSRioNS6kcJxl_DQrC0SH9_QuS6APYTGlE,537
774
- mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py,sha256=I_B7veduC6daBX3c-XAGQdlxFKs5In1MwoKy-sDGJWU,112
775
- mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py,sha256=xa_DwxhfH3K2-K89GP0XAoVg7bWY_XDsCSQFlx1q8-s,8773
790
+ mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py,sha256=VNq0dhoiQjVQ1E_-29-9J3-vkJ7dnQ5bpROeKeZKZpg,113
791
+ mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py,sha256=eyThmyTxKr8vI5BUu8sE4NjPxoFrh6CYrC6QcHW9cVY,8714
776
792
  mindsdb/integrations/handlers/huggingface_api_handler/icon.svg,sha256=whd-gZx9HMMl9EvhQk0VK9p45RQD5PiJlv7Le3K3ORo,9064
777
793
  mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt,sha256=VOb0WF-xUjIE1a7j3kUqIAzdFix4_0fp0E8zQK31poo,32
778
794
  mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -780,10 +796,10 @@ mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api
780
796
  mindsdb/integrations/handlers/huggingface_handler/__about__.py,sha256=B1bb52kL0iLViLiewWIK183GOKoe5Q0XJZvD66wXl24,353
781
797
  mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=f-LxhPOlZsXjLDk7kgQZTwX49umR1z9QK2yUB3F5_EU,550
782
798
  mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=gDf5yC-ot2IZdONMIcQ5bEvKMtk-nci5OcSYmvmEGQg,8085
783
- mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=2wSfHCnAFbiHco37Eq_1f71vwSfoZ_ntz9f-d7pmlvI,13620
799
+ mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=G12oo9QkYxjfri-Kv87ibYUFepkXWut5xQsw7T5KmdM,13602
784
800
  mindsdb/integrations/handlers/huggingface_handler/icon.svg,sha256=yU820GpXed8h9CloppHH0D1-EJjrorSLlbjciV91b9k,9064
785
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=BRdNg-JVvnwtNNk-b633J-GJRivCCi_CtStF2SjH3Qg,159
786
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=xJEc47qOOZ97_ctibvXlOynB0llxN_zzKCb9yDyhuSs,199
801
+ mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=2G4Oe8xrMH9m7lWTVAiNNh6PxoG-yCQbgGlGAgWtnRU,160
802
+ mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=5sarPnbe9SBzXhUJdW2a62g5SPFouS8Y-fylV-v6Juo,200
787
803
  mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1dAcKyjEcuK1LSktqK_5tPLJzQGCNTs0GR9CMe8qTvk,984
788
804
  mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
789
805
  mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
@@ -797,7 +813,7 @@ mindsdb/integrations/handlers/ignite_handler/__about__.py,sha256=JCbuC9y4O67kV2W
797
813
  mindsdb/integrations/handlers/ignite_handler/__init__.py,sha256=aOkkbYJsf_Lx8Mchu1P9qcuVlM2l3xLKMgcCFmtJGCE,603
798
814
  mindsdb/integrations/handlers/ignite_handler/connection_args.py,sha256=vUXKE6OGKgOpmfcTO-btzDxiU6T6lJo0hbKkL8kxDNI,1432
799
815
  mindsdb/integrations/handlers/ignite_handler/icon.svg,sha256=cWiLZ9OhSr8xaQOdvWA7olhSTVMVhosFecqhgkeOpvo,761
800
- mindsdb/integrations/handlers/ignite_handler/ignite_handler.py,sha256=oJwGiZuZLR6WI2Qo8KrKjDg-ZIf7njfIKz5fjKwRV7I,6191
816
+ mindsdb/integrations/handlers/ignite_handler/ignite_handler.py,sha256=gsOG4vcXuORIkG9ia0ecTkZsCFQ57IGWDBHffiaCiqs,6191
801
817
  mindsdb/integrations/handlers/ignite_handler/requirements.txt,sha256=m7u5LbpqU24wb5b-DIZwt5JrhUEA89V3rEJpCxvOo5s,8
802
818
  mindsdb/integrations/handlers/ignite_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
803
819
  mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py,sha256=XB8VKfVcSogqCH0qLLuHFtKv9zvJijl8ppyodDa0bh8,1013
@@ -805,28 +821,28 @@ mindsdb/integrations/handlers/impala_handler/__about__.py,sha256=QGCeIOj7d-zhiZ2
805
821
  mindsdb/integrations/handlers/impala_handler/__init__.py,sha256=UUqzynhwjdtR3C15SlEk4l1gWmcY2rwRZav4A-u6mBg,603
806
822
  mindsdb/integrations/handlers/impala_handler/connection_args.py,sha256=7kEss06khoj028LHa5BJX_J98AzHWa6XsSHJl4bxhKM,1014
807
823
  mindsdb/integrations/handlers/impala_handler/icon.svg,sha256=7B1XK3fvSTD9Qgt0BPC1VVZ3mT4-VJDee9-a5i5SLpM,3532
808
- mindsdb/integrations/handlers/impala_handler/impala_handler.py,sha256=gz3hliQZHpfa6yFEtMXe47sdJcPwH-d0pomODy1iaBI,4668
824
+ mindsdb/integrations/handlers/impala_handler/impala_handler.py,sha256=yIw4mbgNN22O8VAjzWh_spXzi_zM0JEZEHNxTSoSxh0,4609
809
825
  mindsdb/integrations/handlers/impala_handler/requirements.txt,sha256=zcKPuzs5i3hgQysOipGvPtdT9AeSdLXZ6CVeAOJ9vIk,6
810
826
  mindsdb/integrations/handlers/impala_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
811
- mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py,sha256=d2vP8uKDkfzMlX_LvVJ1Q0Zt1xhlto_ZK_AKq6AOPTg,1559
827
+ mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py,sha256=nulFJCLGAxQ6nlcfmQHCUorF7DuDcQzKLUjg1SDfsXs,1552
812
828
  mindsdb/integrations/handlers/influxdb_handler/__about__.py,sha256=egazk3dcKssZ-2IAe9Eg8Jt_3XHrp0biwnhxdViaPP4,350
813
829
  mindsdb/integrations/handlers/influxdb_handler/__init__.py,sha256=-ElkaT108WoD5ubpZn0RM8aMRsi76JejqEUlzHc_sZA,514
814
830
  mindsdb/integrations/handlers/influxdb_handler/icon.svg,sha256=pSGrm1cPk9DkoVdTNlX2gLvVYiWc14tpB3W6MVx1_zw,2681
815
- mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py,sha256=sgTyWPCrqbNs8BbDM7RGOly6jAkcduZiPsGeocJzVnI,3053
816
- mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py,sha256=YEqFxKAuy6S67-WDsQcoTk0mknMPb25-VsUR72mm-YA,2998
831
+ mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py,sha256=r8IZVgLIllb7x1kW4zIkbd2iKmwrT58ROjk1z04Qp7Q,3018
832
+ mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py,sha256=-K5BI7vge5KeLvaSVWmzetjsk74PtrewmHZxHbUpXPc,2926
817
833
  mindsdb/integrations/handlers/influxdb_handler/requirements.txt,sha256=pnabyssMXTG6qyb-zFqe_n7PO62qTbVqCuAGGRsy5zM,16
818
- mindsdb/integrations/handlers/informix_handler/__about__.py,sha256=L393rkaVbfovY3vNSN2co7ByMS8DxYWzqLC9gy4ZimI,354
819
- mindsdb/integrations/handlers/informix_handler/__init__.py,sha256=N7bAxq3j1f3b_sBJfD1hoS-OyHGWz4UuKXKqB-Waruk,493
834
+ mindsdb/integrations/handlers/informix_handler/__about__.py,sha256=4n25Q-5vIbtv_KuxRmmruhpc8yq2KzWvuCWUJgmbfrY,354
835
+ mindsdb/integrations/handlers/informix_handler/__init__.py,sha256=s7fptJ1Z5EpEckg_J4fca4UCM_kNicTKZdfY9M8_hgk,519
820
836
  mindsdb/integrations/handlers/informix_handler/icon.svg,sha256=tDk36rxKSHxTWTgjJMKr2UZArLv52AVO55WwycxMRcw,3200
821
- mindsdb/integrations/handlers/informix_handler/informix_handler.py,sha256=_hRa_S802VRSMd2lYUhgFKFvyzn4Fy83Dg4pT3Nf97E,9639
837
+ mindsdb/integrations/handlers/informix_handler/informix_handler.py,sha256=uersEm-4Wbx9ZzVKfQRt4AM39UKeR7G3oPeAhRyoRmc,9474
822
838
  mindsdb/integrations/handlers/informix_handler/requirements.txt,sha256=5FT1SNHRoxRCeEJzbulBeqnF3nwaE3yLbEmzbe07qYM,20
823
839
  mindsdb/integrations/handlers/informix_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
824
- mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py,sha256=RI5OpLzSnk-tzejdGvjfGLPgjfnvyAXQHaaimHViXws,1702
825
- mindsdb/integrations/handlers/ingres_handler/__about__.py,sha256=25tgcaHrt3ii120Ph9ETLOBf7Rlh97EpyY6WSJBYyQM,389
840
+ mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py,sha256=jrSKsgEtrtZWdWsUYF5IeWHp4-5pEdCUM-jG-LX_0po,1693
841
+ mindsdb/integrations/handlers/ingres_handler/__about__.py,sha256=jI6Q2QYOVWknPKsGN45YBgzkrRQPzJM7ixSOGv32Pfk,387
826
842
  mindsdb/integrations/handlers/ingres_handler/__init__.py,sha256=CqmW9XrhEWgtP4p3Bzl-iHCbfbij1ymARg2RYxpNP4g,616
827
843
  mindsdb/integrations/handlers/ingres_handler/connection_args.py,sha256=JPOvqMtKn8kZC9rCkVTYJKa-wMXg4AC3sAncUioRmXM,984
828
844
  mindsdb/integrations/handlers/ingres_handler/icon.svg,sha256=0uFQrEkfHJjg5zryeUMvmiLJu_js5XtpI6bwu_QJBxo,2321
829
- mindsdb/integrations/handlers/ingres_handler/ingres_handler.py,sha256=Kx2CM7i7Dwb05CaJU40HNhyZ0j-jdqtVGSzz5l7xsmg,6629
845
+ mindsdb/integrations/handlers/ingres_handler/ingres_handler.py,sha256=ULIQIY2OCLHqAyIkNnwchGxrHIloXxcWMqmK7Vnki9g,6631
830
846
  mindsdb/integrations/handlers/ingres_handler/requirements.txt,sha256=XxjyLM894_H9S0ORs3IwhWw8N4TN8pKZ7G3h834U6J0,30
831
847
  mindsdb/integrations/handlers/ingres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
832
848
  mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py,sha256=QOZsHp3SYvlH71sxXseQa63teRSukAmV44svwxObA_s,1817
@@ -843,9 +859,12 @@ mindsdb/integrations/handlers/intercom_handler/intercom_tables.py,sha256=GKEJEhu
843
859
  mindsdb/integrations/handlers/jira_handler/__about__.py,sha256=qP5rGBzzyFBTJnGNCeyOjiBlzfYjt26PU6bw_8MJQOQ,337
844
860
  mindsdb/integrations/handlers/jira_handler/__init__.py,sha256=-WxcLvQvLWii6lNY6-nlNwwkMBSMg8n97pleTAflrQY,509
845
861
  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
862
+ mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py,sha256=UXlwCX728lR_YZg4ipb7hkCyUcH710nIpPirR7s_xdA,2266
863
+ mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=GCluOKeW8fe2ZyRljUENcbebVhLgj9vsSOmxpWYazHc,5334
864
+ mindsdb/integrations/handlers/jira_handler/jira_tables.py,sha256=xXx9t-EszV9CBDqZbjzgaYiPogDw9J7I_eVhy1WxlE0,7372
865
+ mindsdb/integrations/handlers/jira_handler/requirements.txt,sha256=vVWJtxeUJEMAttQBlw2Sd7la-QjEo7Vb1yfIKWighOs,20
847
866
  mindsdb/integrations/handlers/kinetica_handler/__about__.py,sha256=t4T3AR68hK91GASSzoP8aWSbbtmszFC0-i7Nb8UVIgs,344
848
- mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=xGpX3Z4sE32AqOPHJ09Vhh-9tvjusZACBCAUwTv8hDI,683
867
+ mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=A7cHYBXBpQUOqwEEmdbt93bnTbkRq37w_C5VKYxtpZA,605
849
868
  mindsdb/integrations/handlers/kinetica_handler/connection_args.py,sha256=3AaekEw24nX7mmRsqrYfs0M4jCVQ4VvdRHQDFRBosxs,1682
850
869
  mindsdb/integrations/handlers/kinetica_handler/icon.svg,sha256=nx3pfKWVp3gcwAxzVjosbSfjkciYSOBuNlhYXXsrg60,758
851
870
  mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py,sha256=ilRmQSwjeyOcHJNQgZYy1Mr3ZHtVcbRjX5kAsW4Au9Q,327
@@ -867,11 +886,11 @@ mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py,sha
867
886
  mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkObedPPwbyNl9tB0ygJN6qj0aPwPYI_fqc,345
868
887
  mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
869
888
  mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
870
- mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=pY2PKw__CJdVi5OU8CzCj7NOl9BwbAtUAuH36kHVjlA,12833
889
+ mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=8dYeUKwMprSSwDmd5eV0MK_-6_xNqyK3HuhXWoiISGI,12840
871
890
  mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=X3GMk6YUemVSiVvr0Rd2P2HerVhXFeL84yzrBgAiWHk,238
872
- mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=lb0zKsVpTafWi5QSVTbQ0hgvVx1Yr1rLg_i6rTHcVsQ,11385
891
+ mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=61Akpoh4m2cRJR7TV5tCChQzr-C0oSdDXJajcVIcAqM,11066
873
892
  mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
874
- mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=qoDI2PYu2Kw5TapUlHC1QUIfufxvzuJ1RpLBEpd_woE,512
893
+ mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=BUu04qSc8FUVVXAlsAV74Dc4AppYJbuA-FiWd8ncciY,511
875
894
  mindsdb/integrations/handlers/leonardoai_handler/icon.svg,sha256=KEKKFuyndNcw3pjatLgw2HL8qfoxTyKU1fl4821j04E,99151
876
895
  mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py,sha256=O5QAZPLnotBtYWCZC8kIM11nMK79vBy09AFIZxWWHIc,8339
877
896
  mindsdb/integrations/handlers/leonardoai_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -895,22 +914,22 @@ mindsdb/integrations/handlers/lightfm_handler/__init__.py,sha256=f-fMTNsGErwLMvj
895
914
  mindsdb/integrations/handlers/lightfm_handler/helpers.py,sha256=N7hYwxcyjPxlVf2G4c2KTtlxQaBet1lbHiR5kNwFG8M,5263
896
915
  mindsdb/integrations/handlers/lightfm_handler/icon.svg,sha256=_KcxXXP005uyyLsAIHfRahtW82RkNnfw2L1ywQIuV3A,1678
897
916
  mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py,sha256=CECVhsWFGAyXQjsKGPPOwQQjjnB0KSOQSLbG9WjRLCc,6794
898
- mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=KMMF1queeogn0PaPxqIdRAfK2dS7ZGeRzHpJcIVI8rM,14
917
+ mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=byOltfkHeBtVGbjzPwloIwDTQoIBDjSrCychMh8GUJo,36
899
918
  mindsdb/integrations/handlers/lightfm_handler/settings.py,sha256=0iwjsbfzYwBsCizVymXn-vwhOYrES7Hm0MEmiviGP4I,143
900
919
  mindsdb/integrations/handlers/lightwood_handler/__about__.py,sha256=9SiT20BQuKEgzGSxhDunieyX33S5XS0cst9MxDfw-1o,345
901
920
  mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfef9lCHd7293J6GEEZRXLP5Jp07KkvOc,504
902
- mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=WkeI0J19WPh_36wZvezpnV2SW6wc9tEkumKil3qTB-4,9139
921
+ mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=p3FXxafjrwa2Af6xkMO3MCOVLWxZEWfAmEu1sx0qIb8,9056
903
922
  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
923
+ mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=UuN1FUZrB292qZjGriQEbPly7vGBd8S-7DVNjqZAWRA,23596
924
+ mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=jEN0TN09G2-yFrr5FSEMjEVZFnkoS7nu2lJrJdjVBLI,91
906
925
  mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
907
926
  mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
908
- mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=kQlcLZqpZEgn03-SMGOxHS5Z-2ayOO-wyaU_r4d-754,10985
927
+ mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=Mm68eznjSa55qxmbmR6mXtNfvPYAClIghMKJZ94IvE0,10963
909
928
  mindsdb/integrations/handlers/lindorm_handler/__about__.py,sha256=2V9KbVFWmQ2v98va5Rz1dpmhgDWOZAYOF-wCy3cDQx0,338
910
929
  mindsdb/integrations/handlers/lindorm_handler/__init__.py,sha256=jZNxAhQpnXT6u7E72ZFPugYsbH5Fw-TH_JbHWRDWEY4,534
911
930
  mindsdb/integrations/handlers/lindorm_handler/icon.svg,sha256=Zj6gBi36Sf8YPQP0mYWr0YMznOeHdMNECasW_-C4o7g,1293
912
931
  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
932
+ mindsdb/integrations/handlers/lindorm_handler/requirements.txt,sha256=gnFyFuCLPdeDlN9PlotCbHNKyeVb9xR2ptVKxezuWa8,36
914
933
  mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
915
934
  mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha256=odnriKTV2M0T-dExrDM2iZFmDyVXXnfqznHWFAQOMco,1037
916
935
  mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
@@ -922,9 +941,9 @@ mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84
922
941
  mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
923
942
  mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
924
943
  mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
925
- mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py,sha256=GJvKsXkFnrkCg1A6MZJApe9IQDC7g0n_aSSOWPZkG7s,7859
944
+ mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py,sha256=7QxPi037d4O1RSoJQGpPWVg0ZAJU4mAZl1NOjh4t2MQ,7844
926
945
  mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=xoOq5UyUuLyAbii-dIMeUoLts_iloEsv6qM9KBe4cvs,101
927
- mindsdb/integrations/handlers/llama_index_handler/settings.py,sha256=4L4-EJn_D6z_DcVaQ3o22BpPwSsdmyG1ayRIrIaMTsU,2156
946
+ mindsdb/integrations/handlers/llama_index_handler/settings.py,sha256=BnnqbiH7_kYe8al1O8Lw_p3Vfuvjhd6ccCtf8URQQks,2125
928
947
  mindsdb/integrations/handlers/ludwig_handler/__about__.py,sha256=5pC8567sj_ZZW70dm7Chkc4He6-F8l5oUKE1W9V98Ck,343
929
948
  mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7rK_zPFFAIHGjEsGR_rc2FK8r8HyM,536
930
949
  mindsdb/integrations/handlers/ludwig_handler/functions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -951,42 +970,42 @@ mindsdb/integrations/handlers/materialize_handler/__init__.py,sha256=qmqjhRT_tlQ
951
970
  mindsdb/integrations/handlers/materialize_handler/icon.svg,sha256=eW4-LaqQNx5EafDYyIQ5Pbb5BRukc_ucVznSaNl9kxI,2689
952
971
  mindsdb/integrations/handlers/materialize_handler/materialize_handler.py,sha256=Rcrm-agBunQvS169phBqcAYjaPdbf-Z5k_4ewChaadg,1285
953
972
  mindsdb/integrations/handlers/materialize_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
954
- mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py,sha256=MSp3amK6DYRWziwWkutXSHYz9-j7Hf5CpB67PvXUyNo,1774
973
+ mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py,sha256=SDzmHE6za1rvfokfFg5NG9Shb4hhXW6F6YS5SNF_8Fk,1743
955
974
  mindsdb/integrations/handlers/matrixone_handler/__about__.py,sha256=KOZEaZHRuygfVIaMa6eLg1JVc1Q1I29NTMUKEcUeWyQ,349
956
975
  mindsdb/integrations/handlers/matrixone_handler/__init__.py,sha256=L03K4CVKdm39mrmHsU69VSlUvcMTWwFyS6hm3JVMIUc,608
957
976
  mindsdb/integrations/handlers/matrixone_handler/connection_args.py,sha256=opm2teKIjCkiu3g_y7yBhVSfDjhm-1AWQ2k1M3tQWcw,1514
958
977
  mindsdb/integrations/handlers/matrixone_handler/icon.svg,sha256=cK7b_17ULqrgVpt25DIxysj66Uvy7NavFgCsFIVztpg,1573
959
- mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py,sha256=RFsD2MRP5MVuVsTBy8Q5e17hGoR4e87k4X28nAYqdvE,5421
978
+ mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py,sha256=1tlj7hJb4yCtIrhlO3aFE410RjFECa1BNLeW-2KxiAs,5426
960
979
  mindsdb/integrations/handlers/matrixone_handler/requirements.txt,sha256=IKlV-f4o90sOdnMd6HBvo0l2nqfJOGUzkwZeaEEGuRg,8
961
980
  mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
962
- mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py,sha256=w1X4B9kD_PEOkOl94xEDhiMXxPxDSm1tm4jNNK9P9yA,1776
981
+ mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py,sha256=TR6lwB-RkAL5zL5kTtisSiQIULJWkxmdjNvhFd7tWJE,1764
963
982
  mindsdb/integrations/handlers/maxdb_handler/__about__.py,sha256=nDz8qDfeQKaF0HKC9IVxYyHlOrXTsL7n9jbn195frF0,355
964
983
  mindsdb/integrations/handlers/maxdb_handler/__init__.py,sha256=XCc-TQtkecXdDnYN7_vq_Fy4ZB8SJOJTf0bKpDTjOxY,629
965
- mindsdb/integrations/handlers/maxdb_handler/connection_args.py,sha256=3Rzv8MuVqOD8zTj07nwMgjQDwT5i2dsSMeBYyoOnzHs,1297
984
+ mindsdb/integrations/handlers/maxdb_handler/connection_args.py,sha256=EklXmJRXp3dyPLoicbdCLat7jXRZosQBkf0cVMFQON8,1197
966
985
  mindsdb/integrations/handlers/maxdb_handler/icon.svg,sha256=7jODNJNSaNSUNoYan37vYjmlcxW_vKEjihtAlYALfvs,2141
967
- mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py,sha256=fKViKO9Dkc6Camu1kA8SkAEsxkXFSSG99pFuoitAUGY,6273
986
+ mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py,sha256=k39A9Doq0bfP1puBRjaNCGmGYaVAKh730uNSN3EBT0M,6274
968
987
  mindsdb/integrations/handlers/maxdb_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
969
988
  mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
970
989
  mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py,sha256=SCan0bNQflgAI8TkLaB2fDthVvLD782hfKjk5MBVZe8,1905
971
990
  mindsdb/integrations/handlers/mediawiki_handler/__about__.py,sha256=Im8ti6Uspe9wQMPKlL-vIDcpbn1fnK6fpIGP1OafMxI,352
972
991
  mindsdb/integrations/handlers/mediawiki_handler/__init__.py,sha256=v8i-YPI6G8RTEoHBWYmo8dOotG5GjMW2wO_J9LAbNF8,519
973
992
  mindsdb/integrations/handlers/mediawiki_handler/icon.svg,sha256=Z4jCs-VpTi_pE42tWpR17KMnsqCFqLdRo1xohIQ03jw,18250
974
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py,sha256=Xj4jVCsBhPbm3QocNCuZCTOX94RmBhoHxVwi25yaeG0,2170
975
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py,sha256=JbF2dFj1cwle_vCDJa_uYTFZUVpO1GTdOwRArwYLhbg,3299
993
+ mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py,sha256=iCwaaHH_1PPb_mbB5Gjw5b6wZSevXl6DwsASDbd1p-8,2171
994
+ mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py,sha256=aUxwScoGep_WRDT3folNKw4ibKy4WYhQpO5-0ODl4vU,3300
976
995
  mindsdb/integrations/handlers/mediawiki_handler/requirements.txt,sha256=f-jsIxP6w7iNJXPZPprQWJt8TJdUF8t-rd8LPI6BdGI,12
977
- mindsdb/integrations/handlers/mendeley_handler/__about__.py,sha256=9spcYcoyqEO9kYdtueEGSPLqKliXKsA6q4yQ_mPFzFY,351
978
- mindsdb/integrations/handlers/mendeley_handler/__init__.py,sha256=tazgghupHHkiWEDp_cATge2HAknrAaVkdSKsNuWAvZU,500
996
+ mindsdb/integrations/handlers/mendeley_handler/__about__.py,sha256=xxFjvdXr1iURhudTMYiJjmMoGjNCdRgqWeRuIEHBeP0,352
997
+ mindsdb/integrations/handlers/mendeley_handler/__init__.py,sha256=TWDZxQ2PxOPRo1iSHHRAAnr-M40ZzbHY6RZ2kon2obA,502
979
998
  mindsdb/integrations/handlers/mendeley_handler/icon.svg,sha256=Y23EUrpYDjFkcfS3Skymo95cljxFfvWmFxpgC6pEmqY,2721
980
- mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py,sha256=tQTh25nlhV3jkC5NDEh_PhCsi9WRVChVA6VGQwN9wRM,8684
981
- mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py,sha256=M_vfXRH6caBdmHYF5VlUViMDrr21hda8n5jvQvDEIpY,4456
999
+ mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py,sha256=OOCmDZFbCQTey6ny38jL41_rVtP-PKePLdSq2YgWabc,8642
1000
+ mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py,sha256=K8pql75hTLX8OTxH22-WvAuXDujvKT1wa-LFup-w_h8,4305
982
1001
  mindsdb/integrations/handlers/mendeley_handler/requirements.txt,sha256=5NtTuM0F-GT1vXQ9TOHefy9jOMekxjCj1CTE_4R77H4,8
983
1002
  mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
984
- mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py,sha256=UOPSSx_Sepg6Bm8zQ9u0ctRBog1eyc3oIACGF2Huh3o,4330
1003
+ mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py,sha256=O-bC4bOxEqcJQrM4ow5kdP3viCCIJtwsFmM3x16ZFnM,4256
985
1004
  mindsdb/integrations/handlers/merlion_handler/__about__.py,sha256=GTZx3ozWF2-uL8K-jkgoTQfa1oubMo6cta8q9_KUr28,340
986
1005
  mindsdb/integrations/handlers/merlion_handler/__init__.py,sha256=Vnsx6LfB2MjP74BOFz3hh9gwx9mUwCcGE8pa59rU5WA,496
987
1006
  mindsdb/integrations/handlers/merlion_handler/adapters.py,sha256=AHJTqMaeZccLdSPJJL8-z_7hW9yvWduKsKMx7AmagVw,8498
988
1007
  mindsdb/integrations/handlers/merlion_handler/icon.svg,sha256=aKxzmbIlD4LQFGcK88UjXGKw4e6ijOe3y0h3JiebtCc,2657
989
- mindsdb/integrations/handlers/merlion_handler/merlion_handler.py,sha256=xps_fs5OP53iD5nBBKMpJM5Z_A2YeGtEOWAlCUQi3gg,8238
1008
+ mindsdb/integrations/handlers/merlion_handler/merlion_handler.py,sha256=hC9pptlqcTXRsntiHvlaj8Uq1KHFRv0pBodgbP4nVd4,8234
990
1009
  mindsdb/integrations/handlers/merlion_handler/requirements.txt,sha256=LVD7uiS37M3s5euOJpdQ9PMWMSup4fa4l6SWkYZjx3k,40
991
1010
  mindsdb/integrations/handlers/milvus_handler/__about__.py,sha256=x0vzyNeIFW7xPkANac4OjathpNcegTJGSKntWMgejE8,337
992
1011
  mindsdb/integrations/handlers/milvus_handler/__init__.py,sha256=taILRcHeskllVItoKEXNbBBEHaxL4s3naNmx7p7Jt6Y,651
@@ -996,7 +1015,7 @@ mindsdb/integrations/handlers/milvus_handler/milvus_handler.py,sha256=m4RZFC2rgJ
996
1015
  mindsdb/integrations/handlers/milvus_handler/requirements.txt,sha256=wP47AN-TxIWEvcmbiJPpShjUYg5dl2MMzdsoO_ZxmKo,14
997
1016
  mindsdb/integrations/handlers/milvus_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
998
1017
  mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py,sha256=y5XNkeYH2InRNiN_9DRnVCOBy79mX99W9wVffmFeo2Q,349
999
- mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py,sha256=wAUj-gCe6wpVVmmPUP-dnHbu7AboonHw8PJRVx5DyOY,608
1018
+ mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py,sha256=zmRTKYCBZGkC83QGO9yCIilHOtHQ5cwXhlNiWyQxXxw,609
1000
1019
  mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
1001
1020
  mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py,sha256=sNWU03rca17GkgdMi_UFEuzo6ATDqwIe2k1uJZuRC0g,4757
1002
1021
  mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
@@ -1006,18 +1025,18 @@ mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_h
1006
1025
  mindsdb/integrations/handlers/mlflow_handler/__about__.py,sha256=RwGes8LTCMNXSgxng8eFSvVnQdYuM3f8fBdooQ_WW6U,336
1007
1026
  mindsdb/integrations/handlers/mlflow_handler/__init__.py,sha256=xSY2LlXwQe30h_8sHSjqIDyrUON4jV6xaUHj7qO8fZs,579
1008
1027
  mindsdb/integrations/handlers/mlflow_handler/icon.svg,sha256=-K-ZAaguq8fBoIUzBtmPjmfFQYneuoqaF4E1tMPox5w,1154
1009
- mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py,sha256=GMts5NOrMl4k988i_PLjXEU_keTbVOnHgQBEA_TKPmc,3802
1028
+ mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py,sha256=rvzOnMuK46FuBwsHRBD0DNxTqx3o2cHqRFl4ZHl1On0,4123
1010
1029
  mindsdb/integrations/handlers/mlflow_handler/requirements.txt,sha256=wm8UqYyUHI21EvrTDHb3eYICy0dOVDLBhAL-jp5zbuI,7
1011
- mindsdb/integrations/handlers/monetdb_handler/__about__.py,sha256=6wVwdwZ96Sf1BfKwotS8FpPtdp_ewwd5TiOmDH6qp6Q,343
1012
- mindsdb/integrations/handlers/monetdb_handler/__init__.py,sha256=BrZ71DgILOJ3OTpU7kCeQmzG1JkaWnW_7XfYkxsp9es,600
1013
- mindsdb/integrations/handlers/monetdb_handler/connection_args.py,sha256=zknLKW4pi-DIMzYP_EsMCBi5nssMqmqgtfZRUJgymLQ,1166
1030
+ mindsdb/integrations/handlers/monetdb_handler/__about__.py,sha256=aWjion1UbVN_C-K9gxydLJiZpv2TfrAJHLSrxO4Xw3c,343
1031
+ mindsdb/integrations/handlers/monetdb_handler/__init__.py,sha256=_T-6GpzgzI9bbuqKKtIUcmBfRncPCeKSvHNliPdaNhw,635
1032
+ mindsdb/integrations/handlers/monetdb_handler/connection_args.py,sha256=tYHHm8FPTQWlRSxArJPGyFLcAzC-u-z3b5LeVjTrois,1171
1014
1033
  mindsdb/integrations/handlers/monetdb_handler/icon.svg,sha256=_Yrcx_2YctQ_UYUCha5xUxo8AF2gJhMXSKXajROJbhA,611
1015
- mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py,sha256=lamrnbcWHwwUNW6PZ7o_jb6yd80Les_YYUUU1UOqgE0,6989
1034
+ mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py,sha256=A0BV1xzH2aZYHSMK0hJmIjNb3D5nWKk6N5neAvzIQmA,6872
1016
1035
  mindsdb/integrations/handlers/monetdb_handler/requirements.txt,sha256=3fXn4kTvoUNAZ3Lf65ApFHB4tCgYUVXY_rOEiHKc7sw,28
1017
1036
  mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1018
- mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py,sha256=bkByuUIykWAGiMsSce3U1LmdVBeRJ29_Rc3z5YtioQE,1622
1037
+ mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py,sha256=SIJY1GlhpkfV8CvPLayuQhRhSeGJAFUKv-9sgztaaFY,1603
1019
1038
  mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1020
- mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py,sha256=wSz9AvPWR1TQI-1pgZO5nXKXZWIJ1sderGAjKJfk5EU,1134
1039
+ mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py,sha256=Gmtj12Lq11VBFnk485jRXxAE7q3IIJ638Q-XEV5EVKQ,1129
1021
1040
  mindsdb/integrations/handlers/mongodb_handler/__about__.py,sha256=umKxXuUAypdohvLd96NtqFO1JJ8Wjl6xqOo2W0jOcA4,339
1022
1041
  mindsdb/integrations/handlers/mongodb_handler/__init__.py,sha256=iENrcoLHevbky-eZHcnKRqyZbg3DvPmSMlQtf1KyshQ,601
1023
1042
  mindsdb/integrations/handlers/mongodb_handler/connection_args.py,sha256=kqrTEM14g291rR0SlgsNyHc-leRuSIw2fi1iLR0oQbI,1347
@@ -1027,53 +1046,53 @@ mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py,sha256=47DEQpj8H
1027
1046
  mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py,sha256=764dX8lCUGjkoZgu8CXvVvg9SuLXiMIuspQV0cxX07Y,3868
1028
1047
  mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1029
1048
  mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py,sha256=W1LzgaH60dJr9HWhgIY6P3EttuttOPxcozNQvEY9azk,8923
1030
- mindsdb/integrations/handlers/monkeylearn_handler/__about__.py,sha256=5h1Isb76xRHtMCTrsge8OMOHSt5UDspcxHxiRYj50FM,355
1031
- mindsdb/integrations/handlers/monkeylearn_handler/__init__.py,sha256=V0pLvgoy3VglPGnkaB5vdiU0qfWaiXNuHNJ0dF8dSkw,511
1049
+ mindsdb/integrations/handlers/monkeylearn_handler/__about__.py,sha256=Hp2Vfuhlac2IketBCHU82XTg1s5svR5PdbeTXX9D9x4,356
1050
+ mindsdb/integrations/handlers/monkeylearn_handler/__init__.py,sha256=55jADklA9zLFmTtoBtAPWYegsgluG6WzFomoh5vkKQM,512
1032
1051
  mindsdb/integrations/handlers/monkeylearn_handler/icon.png,sha256=RuKBcb_iTZoldGb3U5GDxemB49E9ALC8uZbIoMY54BI,14734
1033
- mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py,sha256=8lcomJA8gF88XPmk8sMu7rVnO_EMXsQL_Ob5IfwGTog,3565
1034
- mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt,sha256=T_nkUvOkkl0BSWXQAIDqh4a3gNW8aVTYuhMGYDnJ1jE,19
1052
+ mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py,sha256=99zEzCFP-_lBHnpXaUsp6RJOR-XvZPFONQlcXUkEj2c,3530
1035
1053
  mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py,sha256=rUQ0p9bqHSjpEgXe9T-Hq-bfGrMHIU5Rmiwt-orDOCk,369
1036
1054
  mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py,sha256=vraI6WlfpNk0C_D0wQH7Wxxy7zpI57rOp2t2XPgHuSk,533
1037
1055
  mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z2hQUMEyyP8DUmhgUtjvsfN3HU2EBes,2430
1038
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=wncgJ7BXsFNRMn3aJLhtwZIaDCeoeHdBpCmg_dzm_Vg,3516
1039
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8Xi8rKFWpEsDw5mzqgR7IW4wEbk-TBNqNqOj4350gL4,9333
1056
+ mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=BE_33QGV5BDRJ55HQben-PCpzI55Ns4DKYKW3QnLLYA,3517
1057
+ mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=uzJz0O7ofHcsICFE-fsQS10UrqnVvDjXk1ul3FsQb6s,9343
1040
1058
  mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=rBD6sEli8XP-cxTogFu2J7ScO_WTw1gM-6gZm2P8lsc,2802
1059
+ mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt,sha256=8R8PuNfdoud8HqxiFGWQGPxloaJqw_qmF0a8blYJPIs,89
1041
1060
  mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
1042
1061
  mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
1043
1062
  mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
1044
- mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=QBB_0aQKbjTq0Y9nHX9Xk3QTRF4Bp-owHrkpxHj4SAg,15855
1045
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=yljq2o0ajFCP_Nnxhe6iG033l_L8VRXKPl_iQIlquLI,9827
1046
- 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
1063
+ mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=nrBxokTdhD3-2J8Wvxl6wSULfgHp77Zt6eEwrharGgY,15734
1064
+ mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=XYsB-iQa11j-MctJlSyDUj-TZkPpGCaAGRgEPo_oOkc,9823
1065
+ mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py,sha256=hkhu2rhB8Nz0zdt5cHbuQX5CmB2njdpE1_Nukse37W0,13054
1066
+ mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=6jx_GtaB_5uRpqmcNBJwBgPzPMMe9ygj4bRLE2zkwCw,130
1048
1067
  mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWRxOrMuktBneTm9JRLeGkZiSSH-EQ,363
1049
1068
  mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
1050
1069
  mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
1051
1070
  mindsdb/integrations/handlers/mssql_handler/icon.svg,sha256=CMPDc66jCYyao_ui5eRds92raysDIMNuhIs59Tvbk_8,11944
1052
- mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=p6ZU7ua6Oy_YJ6nobDmK_pqY1qEX6zCMvXfZHqeM1UA,9130
1071
+ mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=1kuYNAAm_OjsblBiZLEQlEA2tli9rjEIO7vSijdAuQM,11758
1053
1072
  mindsdb/integrations/handlers/mssql_handler/requirements.txt,sha256=U59auV3ZAxBGXdMbyXxdRI3LTfCICvZVZWKWMnLUlwA,17
1054
1073
  mindsdb/integrations/handlers/mssql_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1055
1074
  mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py,sha256=gh8t3ft5Xy-EZ3Rfk1oopojQTrbc_DDE-uAlWpeH-8E,6010
1056
- mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=UCFLhlYJ-_DenwFcqPKiVUA8C1-4Q0z1ygM1rzq-TZU,333
1057
- mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=ikcK9oIUFjMfyRDAUKKvb8JQ4Fw-P1zLBeEHo2ZMPY8,592
1058
- mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=--9ZuX6QSTbWPcRQuptMElStU6p_wkYAUGuxVhRi9JU,2288
1075
+ mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=6kvzqW7nBK7T6fWasLd0kSRXltGkk6xH2PTkxZ46GgA,333
1076
+ mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=vE9F5Fi6Xgpfpsy6ABbIdeHMbD0do4nHqvq8B94IvJU,627
1077
+ mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=btTVpawoIuruXOjAI7Ycmcega2Xgu7P8gSr1iz4lUew,2278
1059
1078
  mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
1060
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=KcxIt6OJNbSzyhaGI2TNVIZ-BXY7NMwSKIfq70EQpKg,8288
1079
+ mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=Ck5R0vV9EBbRFifjrVb8BrOEBndryI4o8QCNlmEGNXo,10981
1061
1080
  mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
1062
- mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=3a6VexTd2nD72WiXYG_IGeZ-n59ANggeE3X5OkdxHI8,1692
1081
+ mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=lC3KC5pr_IDeM9_hkAFkdui1INrin5ab_zKLOITxWbM,1722
1063
1082
  mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
1064
1083
  mindsdb/integrations/handlers/neuralforecast_handler/__init__.py,sha256=0SNrc82F2GXSyAjgTW8hg7w4DeOv_5FRgPpqLXAOJmE,520
1065
1084
  mindsdb/integrations/handlers/neuralforecast_handler/icon.svg,sha256=HKtmkuQG4MUNFXbPtRvDi5E83rEFV9jrCB0dllAY78M,587
1066
- mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py,sha256=QPvqLKu8Jm3ytpuxQ4qHOd5j2ceGjkjVTivqNpqLfRA,6374
1085
+ mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py,sha256=bpkyDASHKXbvK8bLWpqlyap-xmNXc4qYwomqR9VEACE,6369
1067
1086
  mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt,sha256=QqpZHr3q1Sa0nKkAP6wUTL8t09509U_ZM08AzB7r6NQ,47
1068
1087
  mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt,sha256=sZ8ZY1L1kcdEkQh5pFcTdhRv4GFg9d0KhbkNnR1dliw,47
1069
1088
  mindsdb/integrations/handlers/newsapi_handler/__about__.py,sha256=_gzxz-dUmjrc5xXwMJIViKH1OfnYlc7QdhWB2G98TyY,348
1070
1089
  mindsdb/integrations/handlers/newsapi_handler/__init__.py,sha256=IRtuDlckj4oizdLfMnTgg5XPKF0WiJ2t_DqC6qZ8T4c,656
1071
1090
  mindsdb/integrations/handlers/newsapi_handler/connection_args.py,sha256=JWc8heNZZiSCUJwfFZwHwsAyymMPPjvM-4OzYaqXwuo,351
1072
1091
  mindsdb/integrations/handlers/newsapi_handler/icon.png,sha256=wL8QtDMhHOTX34hnWhCK3N0fRnz6HE_OQHJoVWB5wKs,2790
1073
- mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py,sha256=ZsXZEohWRLpD6-4zikfgVCTIncW3gf7h2obJFs7vUk0,6862
1092
+ mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py,sha256=6BaK-xWp-ChLysetelS4jYkuUb-2vE3VWhv6PsM1uGc,6861
1074
1093
  mindsdb/integrations/handlers/newsapi_handler/requirements.txt,sha256=ZMZx7R-ofhzidSHeGcVTwBPe4M-2uV2DhgqEzkMggAI,14
1075
1094
  mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1076
- mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py,sha256=CgMWu9V_uSSO7M3f71v6rsx1jAM94qdOKf4j1-And7Q,3188
1095
+ mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py,sha256=vK1bDzGFe6xv49GaGg5KxMi4aqfucELCDy0TOGKvWZ4,3164
1077
1096
  mindsdb/integrations/handlers/notion_handler/__about__.py,sha256=8PzWcQ8EwUJJP85c0ULZiqA7yJ_ORag4s24Zb_LoCRU,332
1078
1097
  mindsdb/integrations/handlers/notion_handler/__init__.py,sha256=g7OgmHmkIkFSVVRj2p2qC0moiMJojYhR6zeUlICpFPM,575
1079
1098
  mindsdb/integrations/handlers/notion_handler/icon.svg,sha256=SjnxMq53m3RYhjSpFTgCHqsyjfAPug7icx4pDesx_7c,2157
@@ -1091,19 +1110,19 @@ mindsdb/integrations/handlers/npm_handler/npm_tables.py,sha256=MzIZoLtxP8hPbP8iy
1091
1110
  mindsdb/integrations/handlers/npm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1092
1111
  mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py,sha256=-FwuMgPnwPq-V_KO9FYoEF2o3haiPwvrVlJs3q5r0Vw,336
1093
1112
  mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py,sha256=paftrrmbebUGH5cIoDhZa4rZaeC2U30_qMhmx367W9E,597
1094
- mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py,sha256=TF489Lt13dBJwe8MLZH4J5RVf_34FXZzUpqI1IeAkII,2296
1113
+ mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py,sha256=nv4T7nIfb7eVkWcYTZ8PFbev1FwlZwaqBxxpl1uCHcA,2294
1095
1114
  mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg,sha256=ZDedx7Q5AiSvVkgsmUp7e_0nA_pMmV4oIq9PySEwy8U,430
1096
- mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py,sha256=-GOqY5sYGF7NYF77tu8kPK-19rBYbwwXeKn8oySAZko,7577
1115
+ mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py,sha256=jlTgIdClmO0wEKY_1iTa2J4nsHBsnJPl1EBkkFxtWBQ,7516
1097
1116
  mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
1098
1117
  mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1099
- mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py,sha256=atCfHk1JYFVKLwDg5IfuQGhwH3Yn5dv4NXWEUTvM_5U,1626
1118
+ mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py,sha256=jf3aGFmjoZMKy-27-GYwnEhTto6XqNx9xEjiAuqZT1Q,1607
1100
1119
  mindsdb/integrations/handlers/oceanbase_handler/__about__.py,sha256=S_N-F0kLk-rHk5cFhaBoxoefgNyCVROw9m-AhnqIfPg,349
1101
1120
  mindsdb/integrations/handlers/oceanbase_handler/__init__.py,sha256=yu63QADQtwN8sSl-tOm0mmtj6xuQE4y5W3paYwJrwNA,493
1102
1121
  mindsdb/integrations/handlers/oceanbase_handler/icon.svg,sha256=Qn_vch2K3SZ4_AIboy6YJviOh2jy12ayL3wlxqNe_Eo,2615
1103
- mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py,sha256=3nq1-2_68nrK3HeSguWanBJa16nAtBeGOFraJO5i394,1293
1122
+ mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py,sha256=dgRDDDjTQJ2UO3qlNxpSGmtj08t7xPyFz1buhHGgTqk,1292
1104
1123
  mindsdb/integrations/handlers/oceanbase_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1105
1124
  mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1106
- mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py,sha256=8A7LUGAc1-uq7Y0-2xOLhihIfxh3I6w56qhwU5H9p8Y,1741
1125
+ mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py,sha256=2HAV-2VjoBfuTp4wpRbjvA7iaooYDXsNfI9Khixicdw,1710
1107
1126
  mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py,sha256=GRLp7ZSDZhp79nBWuiL2q9iAzXCt2K5ET183uUTURWs,353
1108
1127
  mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py,sha256=QBbvBtdXouX1ycjlnmSe-2s2BQqxjFpN0l405Xav6m0,651
1109
1128
  mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py,sha256=Zs5TByom5GYzon8q6LlpACtwT1LRhtr9oVItLheiTJU,409
@@ -1114,7 +1133,7 @@ mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py,sha256=P
1114
1133
  mindsdb/integrations/handlers/ollama_handler/__about__.py,sha256=iMlpDUjfee6lBQ7ceSf__Idg-1KDWYfN4dlq0LzQuQg,336
1115
1134
  mindsdb/integrations/handlers/ollama_handler/__init__.py,sha256=imwsmeuGX1gkPAzQJR-ZYXKGmV16_yybIWM0PiwALCo,492
1116
1135
  mindsdb/integrations/handlers/ollama_handler/icon.png,sha256=Uetj2OTGPx-taxPKdD33uuVttZO62o9zB1IW6PxiVPE,113588
1117
- mindsdb/integrations/handlers/ollama_handler/ollama_handler.py,sha256=X-eLSoGg6Hg3xLdr_eAHrYTfWnO_SLm9R-SJahRz6PM,7268
1136
+ mindsdb/integrations/handlers/ollama_handler/ollama_handler.py,sha256=kkIAlQtMq8fiQ0JOP4k-m7AFRBYu86BnK6derw_3YT0,7248
1118
1137
  mindsdb/integrations/handlers/openai_handler/__about__.py,sha256=CHoor6pfv6jc7Lfp8SZYiRlHoCwA-QM0PYRqvIRNSEc,336
1119
1138
  mindsdb/integrations/handlers/openai_handler/__init__.py,sha256=2oicF7rVoEJTh-_p_7bpmh3shHYL2zZr4tPj0ZDXeCI,621
1120
1139
  mindsdb/integrations/handlers/openai_handler/constants.py,sha256=szFwNnhFO8g_XJh8DnqxlrmZh9YTkiTiCpvAI0txZak,1356
@@ -1122,7 +1141,7 @@ mindsdb/integrations/handlers/openai_handler/creation_args.py,sha256=v1NHiz-tLvA
1122
1141
  mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=xEezAE-Pmxxsa878vAtO05AxBhLQkT89ShPjBwyZoEs,6843
1123
1142
  mindsdb/integrations/handlers/openai_handler/icon.svg,sha256=r5vCiNm9_nL1ZbM1e6PYcTzw9KrgC0hqWT8IAi2pFbE,2625
1124
1143
  mindsdb/integrations/handlers/openai_handler/model_using_args.py,sha256=c5NBe6RGkRGVOLhc7Ksq3M3w96Kd9KECO6T01j7VS90,76
1125
- mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=z7OM8uj1keOPYzgZX2vmC5D7gDUVV7p52TIhfDxZC1s,49255
1144
+ mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=NjHJQzCFgTd3QZpdtvr7CMMxtyUbcnvavBcQ5RvzX5s,49206
1126
1145
  mindsdb/integrations/handlers/openai_handler/requirements.txt,sha256=u06ahGd1EskIW_Yy-5Y_jNLNbN1CtF9N3ylGPPOPBLA,9
1127
1146
  mindsdb/integrations/handlers/openai_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1128
1147
  mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py,sha256=W3b39JCQfCF_IXUS98j7KqTqIzeYne9RDba33AxM774,18651
@@ -1138,9 +1157,9 @@ mindsdb/integrations/handlers/opengauss_handler/connection_args.py,sha256=djyHDw
1138
1157
  mindsdb/integrations/handlers/opengauss_handler/icon.svg,sha256=8BPamScxKmfX5Z8fOLHLfClhLvHOq8bHG8BDzGIUD1s,1758
1139
1158
  mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py,sha256=NnWs_KPO_YwZerErE7pHS-WddF64wwFgjO9ZJ9YgX34,329
1140
1159
  mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1141
- mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py,sha256=qeAP2A4OmVEg7t8z7prIM3EOcFcHSI3B3Csqqoyt-TM,1379
1160
+ mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py,sha256=TYV-jzdujQLWEUc1G8e_5onxF9sK8UMOeXlDoqDPuKE,1350
1142
1161
  mindsdb/integrations/handlers/openstreetmap_handler/__about__.py,sha256=3RDQ9NOdLjcvJPu_L2jMUt_8DzBta_xrczUOuTDlc_E,365
1143
- mindsdb/integrations/handlers/openstreetmap_handler/__init__.py,sha256=mqy_Qi3_PKIwgBafNd1KMHRIMt69vvfMLWr8KhRt5Ig,545
1162
+ mindsdb/integrations/handlers/openstreetmap_handler/__init__.py,sha256=n0iCCdhTDJzpgVRTTGpZzNlw0oHWS9mYRfPqmtR8QF0,535
1144
1163
  mindsdb/integrations/handlers/openstreetmap_handler/icon.svg,sha256=5hoDC6qGLkl9sx_MYWHZrPvdInB7AGUNrjDoIOh9Qoo,4496
1145
1164
  mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py,sha256=7WGZ2vPr35ROcXLSYQSkgHspDqJj31mVrvaq_i1gA6I,2657
1146
1165
  mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py,sha256=U8DxNHv0Kiw14qIQBcMRuU8jUJMRZlsKP1IkIiDHgH0,7765
@@ -1149,9 +1168,9 @@ mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py,sha256=47D
1149
1168
  mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py,sha256=Y54Bmy0WEMtWuA8tLEuqYisytrrctanPEFgeuQ_b1dQ,1228
1150
1169
  mindsdb/integrations/handlers/oracle_handler/__about__.py,sha256=IIt4NVwQ52K79l7v7lc4andzcy6iiodvfjlAvQdHiCQ,354
1151
1170
  mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=9U8p9zE7yi32hWtWEQTFcVz5CSgAGlu6E9C-hPf_tBE,629
1152
- mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=6NbwAdFz7OBNIaaWH-uAF8sVcixRuRf6Srna-Mk20kk,1966
1171
+ mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=EXsizLXCjKijmhqu8QM77QuhMrUiYuAg_jarKOTE_Kc,2191
1153
1172
  mindsdb/integrations/handlers/oracle_handler/icon.svg,sha256=43yVX7g6fI4SLk9h23xsJvzLl9fMOfiKlQ4aNyQ3yxU,537
1154
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=u7aNmkzQdME35xKZipcjZP6_HuHzr9byEEeYM_Yzlug,11586
1173
+ mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=nTjTftUura00bxtlJ4Q3M4A3VKguyVuUSvzN52Ln6fw,14287
1155
1174
  mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=6My_yqlFsKIvJvanjJc8usHiQ5Ax_rKaHrzNYNKC71c,16
1156
1175
  mindsdb/integrations/handlers/oracle_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1157
1176
  mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py,sha256=TjY4cZHMPUaLyusCTTHCRGC30pXDUqqM2vEjw2UqB1Q,1064
@@ -1161,29 +1180,29 @@ mindsdb/integrations/handlers/orioledb_handler/connection_args.py,sha256=JFKd8Cq
1161
1180
  mindsdb/integrations/handlers/orioledb_handler/icon.svg,sha256=khiifOJbVeBcwWiQwHLp6QMuaX4i5NOTiFZ5ZQW4ECU,810
1162
1181
  mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py,sha256=Zwn-t6gmnTsaV4QWQJ4_A7CWFTLBPmHpxaF0mMk7H-U,326
1163
1182
  mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1164
- mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py,sha256=MpiPmn8cf670a_KX-OJSPdoxQxdkItn6P_m0vV8Cgy4,1747
1165
- mindsdb/integrations/handlers/palm_handler/__about__.py,sha256=bbRNRDg58h_M4aBD6LA5MYKr0XI3RfUy-29ievNUzNI,329
1166
- mindsdb/integrations/handlers/palm_handler/__init__.py,sha256=AjNux4_0Lhv6wRVykH49yFQFYBqB-mlvD7fXqeAA5VM,490
1183
+ mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py,sha256=np4FasdVouzaut3VStZ-3Sqs1JiHXSA0PI_b3qJUH1o,1716
1184
+ mindsdb/integrations/handlers/palm_handler/__about__.py,sha256=dYiciWuNZmYUD2TQ4INdwPJJiVoxMxzq8rJKJktv6wY,330
1185
+ mindsdb/integrations/handlers/palm_handler/__init__.py,sha256=u6FOilJhaeXRl770VxMq3oawwNI29hv4krTRri3_DIU,491
1167
1186
  mindsdb/integrations/handlers/palm_handler/icon.svg,sha256=Xb82wnFVYT0l5faztB3oTYTfi-rIGkcvRDetK81nbJg,1485
1168
- mindsdb/integrations/handlers/palm_handler/palm_handler.py,sha256=iTGIUgswqas0zNYLowAwFACX9gzmMmefTy3qBELVnVw,16731
1187
+ mindsdb/integrations/handlers/palm_handler/palm_handler.py,sha256=06G26sgMCVgCtHwk1cUJW0D6U5lBQjfyOV-bYFWCt_w,16685
1169
1188
  mindsdb/integrations/handlers/palm_handler/requirements.txt,sha256=wKp4vDYyCwYpn1Dfpo-ahLr7zCLvydBkK-Hwv3MH52c,29
1170
1189
  mindsdb/integrations/handlers/paypal_handler/__about__.py,sha256=eJUqtTCdMRDCDc0e22MPWbBV53QCuAtSIKmQPgcp0sU,343
1171
1190
  mindsdb/integrations/handlers/paypal_handler/__init__.py,sha256=d5CYHhab_iHFnfz0ZSP9D8C-26K9uN11CCoJ4M0F-Y0,507
1172
1191
  mindsdb/integrations/handlers/paypal_handler/icon.svg,sha256=M6piOj2CGQzqA24es1eEGNqMqNyavUO0JnAQQJo2Xn0,1833
1173
- mindsdb/integrations/handlers/paypal_handler/paypal_handler.py,sha256=2g0hE2VCKL9Jrk7UZUxisFu51wPKPMMnEqStj67XKTo,3803
1174
- mindsdb/integrations/handlers/paypal_handler/paypal_tables.py,sha256=p8U0jI3k3s0R5S7BKm2NplQlmRW3H6r_AbFxHZHS1Lw,9866
1192
+ mindsdb/integrations/handlers/paypal_handler/paypal_handler.py,sha256=K5Fvegf4BAP0j6e0RYCmp_hcFJINX1E8sfrCVkeMTFE,3804
1193
+ mindsdb/integrations/handlers/paypal_handler/paypal_tables.py,sha256=btQaKoIQtI0v51-eVsfJ7dxXHcbf7JStUtNf8sRmgNQ,9865
1175
1194
  mindsdb/integrations/handlers/paypal_handler/requirements.txt,sha256=-j6LjRFgj3aSEEyaARzXn95dQjJxjtyXRX0uKOGKSUg,13
1176
1195
  mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8BhcEkBX8zHZASRKHTsD04JnTTYyFaWA5A,345
1177
1196
  mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
1178
1197
  mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
1179
1198
  mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
1180
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=IvIeivzzWfmCcLRpJUmNEh1LvCJKYHX0hM1CH95q0Jg,20811
1199
+ mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=2Z_lEXByoLC2jluoKP1lD0YJn3PVpLnMDSXGeUtYgHE,23053
1181
1200
  mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1182
1201
  mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
1183
- mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=dguuDcpGTUdL7KHbLPv3OLY9fmvJrQj5I_CsfmuQdKk,606
1202
+ mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=njwyWqUt8PmCISBN4KjcDnZPakbro1E5lSqTEEZbTO8,607
1184
1203
  mindsdb/integrations/handlers/phoenix_handler/connection_args.py,sha256=ql5detlrKQP6ZePgYK6QnPjPJrpmw_GQBqgA8-LR5xA,1784
1185
1204
  mindsdb/integrations/handlers/phoenix_handler/icon.png,sha256=8lmaL2c4b6wPtGyEhBY_x11cNWUUfWyGO7btp1iRqpM,43812
1186
- mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py,sha256=SSkE6wJW0VQs73rqT14EhWctX1O3BB89N3HD41QDBtE,6993
1205
+ mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py,sha256=xW7HL0EC0T4XJcD6LMHwgLzt6GqnuR3Xr5oLPgDfL1g,6994
1187
1206
  mindsdb/integrations/handlers/phoenix_handler/requirements.txt,sha256=eqUy51tMW_d06Cs2sRDz8sHCF5yHOC1XcMFwthsKDfc,20
1188
1207
  mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1189
1208
  mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py,sha256=4CrciavIFEvjDLRDZ8xKQo96QpTWzKalSBBiQpH5BRU,1037
@@ -1195,10 +1214,10 @@ mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py,sha256=mRjWgH
1195
1214
  mindsdb/integrations/handlers/pinecone_handler/requirements.txt,sha256=9VvkJSZPyG8l8V0QYvhOXRd7cj1EHVKji8zpdKvR-Vk,22
1196
1215
  mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1197
1216
  mindsdb/integrations/handlers/pinot_handler/__about__.py,sha256=CxF5ZlieeDDW0W8POUfJVq1XlMavk9q2zEn9PXbgjs4,353
1198
- mindsdb/integrations/handlers/pinot_handler/__init__.py,sha256=_iKmsOaetC2HbqCLgOdqRNPDK67U7RmgWuQ0nFwFiMs,598
1217
+ mindsdb/integrations/handlers/pinot_handler/__init__.py,sha256=YjB9ir-F0pHf3z4NrJOnAhv61PAsg2TzUyr9Jh1g0hM,599
1199
1218
  mindsdb/integrations/handlers/pinot_handler/connection_args.py,sha256=9oWFtv5vfZf_HsgSZGkuFn358Twmn4vTFfN4qYFrcSA,1595
1200
1219
  mindsdb/integrations/handlers/pinot_handler/icon.svg,sha256=AZlN-V4za1cZSJgHcDiSxnHAGfHWURJngDI31Zt4-Mk,10555
1201
- mindsdb/integrations/handlers/pinot_handler/pinot_handler.py,sha256=hscRU7VD_04Qwt5CZ5gHoOSwghMABbna1jf0-_71p3c,7003
1220
+ mindsdb/integrations/handlers/pinot_handler/pinot_handler.py,sha256=mFmHVmWBgFUwp4StwjFDFcViEKi8fLcretFCVPPKGVA,6995
1202
1221
  mindsdb/integrations/handlers/pinot_handler/requirements.txt,sha256=jxLeePj-OklKWl1qyG7CpGrxluIl0RFrGtFAniWKXwc,7
1203
1222
  mindsdb/integrations/handlers/pinot_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1204
1223
  mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py,sha256=iyKkN2KXZQO1faw2z-C0-UCiLLo5b91h_LceM9-_5lA,1132
@@ -1210,15 +1229,15 @@ mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py,sha
1210
1229
  mindsdb/integrations/handlers/plaid_handler/__about__.py,sha256=8TBy0mepwizi0HF6P1NePAbBHyQNzGeq3CQY6Ep96uI,337
1211
1230
  mindsdb/integrations/handlers/plaid_handler/__init__.py,sha256=uboEmuYGsEOf5VsvXgMhWG3LyfHHjwXd3SgijtNnS9w,492
1212
1231
  mindsdb/integrations/handlers/plaid_handler/icon.svg,sha256=atBMW32ERpCOyYNoA361LeYNx79PydyGPB3_KRjIgOc,1389
1213
- mindsdb/integrations/handlers/plaid_handler/plaid_handler.py,sha256=fIHubw33lgvwL5O5a879WHxKx48d6BzgphMl7NL_frI,8110
1214
- mindsdb/integrations/handlers/plaid_handler/plaid_tables.py,sha256=25LAvLqM2sw03oYLzHTbb8ofTMlgU4q_BUSDWHX7E8c,5151
1232
+ mindsdb/integrations/handlers/plaid_handler/plaid_handler.py,sha256=DkFliw1xZTghJ9DJ_V4TGsMazdEqyAoRCKajQjlthXs,8035
1233
+ mindsdb/integrations/handlers/plaid_handler/plaid_tables.py,sha256=Dog_oQPiv6W4M2knRgr5adsWJrPE5B4loPZQfN8EXvo,5099
1215
1234
  mindsdb/integrations/handlers/plaid_handler/requirements.txt,sha256=wNOPb2f61Lp9XAk0-rmqUr4xhlJFs-I7VBNS02wuPoo,12
1216
- mindsdb/integrations/handlers/plaid_handler/utils.py,sha256=NkIHwkE7vFYu0FdrXqFmdH_oKA7YAIsdJs2sPjol6RA,149
1235
+ mindsdb/integrations/handlers/plaid_handler/utils.py,sha256=U0SJ01F3Xv4mS3sVAEv7J7jawIrSO9hiRFTHLL0pOUg,144
1217
1236
  mindsdb/integrations/handlers/planetscale_handler/__about__.py,sha256=ZFE7rrd6Os1ep3a49zBpkMCFazDtvI_K7_EGHRa2tSY,351
1218
1237
  mindsdb/integrations/handlers/planetscale_handler/__init__.py,sha256=cuM2ry8CRoMxejl7FjqH13YQfI04TMEiBK4AqOCHnkU,617
1219
1238
  mindsdb/integrations/handlers/planetscale_handler/connection_args.py,sha256=5z7GXhlTy0H_9OZM4VL7jcPJLyVwN4iSbYe4epj72wA,1016
1220
1239
  mindsdb/integrations/handlers/planetscale_handler/icon.svg,sha256=PNowYe4GZh4X-NTBx3Uu8oXfrTcy3spU_iwcn0a942c,391
1221
- mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py,sha256=hRpqBAm2k0yIf30_AGKOxlDcJVSGoZuwvsF7Nqf8Nzg,457
1240
+ mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py,sha256=8OzLDd9lXsPpvBKWLION0br0zwHMubVxCtiVM0oGjRw,332
1222
1241
  mindsdb/integrations/handlers/planetscale_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1223
1242
  mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py,sha256=mJIqeNmkUTDg54Vipz6piPH5p2YoP5A07Ns8ZhBtjQo,388
1224
1243
  mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py,sha256=i4yXTcit_hAOEcrnxL8nM8frP81zf4wXq4MbdVUCTiA,563
@@ -1226,7 +1245,7 @@ mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg,sha256=RnN
1226
1245
  mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py,sha256=cZWfB3hBCoNOhrZ--aYBczI8cYbrrybvTgNzGMX4hRo,3117
1227
1246
  mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt,sha256=vIzgVNcxRpbMMJtEjTxm_7TVHy7_v6atr3v-R4pw78k,7
1228
1247
  mindsdb/integrations/handlers/portkey_handler/__about__.py,sha256=9x2OD2B_XjPHEtU9WgknXRZEN79nAO70UKYvjEKAwPY,343
1229
- mindsdb/integrations/handlers/portkey_handler/__init__.py,sha256=bjmefRkOAwE28pb6-0wqAYDsLHVdb9CigzzOYXhwNzg,581
1248
+ mindsdb/integrations/handlers/portkey_handler/__init__.py,sha256=dOUsR5Vacl5rfNB6HkBVbRmdVP32fL-EwgfUnM0oS_k,581
1230
1249
  mindsdb/integrations/handlers/portkey_handler/icon.svg,sha256=CqWYmE-XNzkWUYUvDUMy92aF2Jy1dqlOKLI3ZbvYAWA,1511
1231
1250
  mindsdb/integrations/handlers/portkey_handler/portkey_handler.py,sha256=TrcJfF5yeJIpRhAycNRmJ_fi1Hd5RS_nbbz4OoQZq2U,2054
1232
1251
  mindsdb/integrations/handlers/portkey_handler/requirements.txt,sha256=wjzruG3CMIRu7Vn-lTmSRbI9Dn8Je9STtMzkdb00Ljk,18
@@ -1234,9 +1253,9 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
1234
1253
  mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
1235
1254
  mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
1236
1255
  mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
1237
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=0seOFkaWTqS2wulM0NDBVq8UE7uJaQS9vgS1dTyXqFs,16567
1256
+ mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=GkggjAIMJ9WGJ4ord1y7FdECpyl3LySagr91Jy7WD9U,19648
1238
1257
  mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1239
- mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=IwUYXO3aVCsIunHl5cPsf1nndZj3W-wkp5naH_vPb9Q,5825
1258
+ mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
1240
1259
  mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
1241
1260
  mindsdb/integrations/handlers/pycaret_handler/__init__.py,sha256=U93z3BWS-ntj4nhuHjnZunw3K3oEgqHh5l18hA_DyIo,564
1242
1261
  mindsdb/integrations/handlers/pycaret_handler/icon.png,sha256=zALpK46ynoWZAVadSu-vMrVA5jbpsGUY4-2ackLwOk4,10283
@@ -1259,25 +1278,25 @@ mindsdb/integrations/handlers/qdrant_handler/requirements.txt,sha256=5PoI_uItTqB
1259
1278
  mindsdb/integrations/handlers/questdb_handler/__about__.py,sha256=weXXIZ9HI8thG0RfEVQGIK7cEUGxfEh2wElImcJhAhc,339
1260
1279
  mindsdb/integrations/handlers/questdb_handler/__init__.py,sha256=JZAKIojr65atHm3V_hpDNtB7yT1qYnJLjt-ADeM6Rgs,485
1261
1280
  mindsdb/integrations/handlers/questdb_handler/icon.svg,sha256=t0dSnSPKN2mv0ciNWsKETBgPgGmboxEq7yHdDOAmFBA,2029
1262
- mindsdb/integrations/handlers/questdb_handler/questdb_handler.py,sha256=gULLADPgP373CveDERNFhE83uZxvSuPm6aaaq7Kux-c,2202
1281
+ mindsdb/integrations/handlers/questdb_handler/questdb_handler.py,sha256=bbpFvzXpHaCeI1qKuWhp14VElO52BoEClPVMj7OQr10,2156
1263
1282
  mindsdb/integrations/handlers/questdb_handler/requirements.txt,sha256=HGuEvKvrA6CsAGIzg_BbIUwsy_YWi87tzsCvqcX1ajs,8
1264
1283
  mindsdb/integrations/handlers/questdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1265
- mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py,sha256=B5yR4RK0QtJzQVcVeTCF9L4yL5RxJlXMInMD4b3FkGU,1172
1284
+ mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py,sha256=mBvQmBq2klrPd5ATMu7Aqo52O1_A42nUeMUjUQkpmBw,1163
1266
1285
  mindsdb/integrations/handlers/quickbooks_handler/__about__.py,sha256=UeCTBvtHTGR0Xabsn4wkx0doUKJPRfaIH3WgHM_6rgY,348
1267
1286
  mindsdb/integrations/handlers/quickbooks_handler/__init__.py,sha256=gG215ZGlhdBM3UJkt9VmbENaefQCaIQL9AXWjqyaqeI,512
1268
1287
  mindsdb/integrations/handlers/quickbooks_handler/icon.svg,sha256=LwOkRzgobIrDcToWQo_ProJ2u1ai0OYgwjiF4Exli-w,1289
1269
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py,sha256=yyOgOatvkEtM6CXZYQSBU4m-XMLhJBVZBye63dtLwJg,3383
1270
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py,sha256=PA8ZjEklLLez0RSo_CgEHNsnskCXe4MGJJ9gChN2cvU,13384
1288
+ mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py,sha256=v5oo2p7EKBWqUFYSvgxYgi1aIJLgMirX7UJJ96j_HH8,3309
1289
+ mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py,sha256=QZgLx1WBD2-ZeeLk1aLjBLVpEKMZ5cfQf5vh72dMUCo,13275
1271
1290
  mindsdb/integrations/handlers/quickbooks_handler/requirements.txt,sha256=bkFLX7l8c7R9-fZFnxgKDON3rqNxV503j3PXW-BQ_og,6
1272
1291
  mindsdb/integrations/handlers/rag_handler/__about__.py,sha256=L6sE0_ZF9S4f5pmJjt5qa974dmekriF7876FZdXnvcU,369
1273
1292
  mindsdb/integrations/handlers/rag_handler/__init__.py,sha256=mfFU3tWa66-hWoih8YRdr6FrF7KNv2xUsHs6Z326Mko,517
1274
1293
  mindsdb/integrations/handlers/rag_handler/exceptions.py,sha256=uRHei8e_2oa7uBgMXQyEM9oTDjczBbyTODeu6R426v8,337
1275
1294
  mindsdb/integrations/handlers/rag_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
1276
- mindsdb/integrations/handlers/rag_handler/ingest.py,sha256=E45U_5LnWcHJznxjAjPtgVBjk_02l4czBA-WqI8WJKE,5877
1295
+ mindsdb/integrations/handlers/rag_handler/ingest.py,sha256=oLUFPhILDU4BK1mtpio72CKktkJxod3FsQQ7iymmLiQ,5875
1277
1296
  mindsdb/integrations/handlers/rag_handler/rag.py,sha256=4PtyArS3tt4hzvjejR_9hq_W37MKop3h9XVkSFgqe2o,4764
1278
- mindsdb/integrations/handlers/rag_handler/rag_handler.py,sha256=9VISfF6rRn6N3s_NMZTVo8So2aG49AH-A0-qZqAuE7E,5400
1297
+ mindsdb/integrations/handlers/rag_handler/rag_handler.py,sha256=zfBiNmPs_OG9d1OHi79S4jVoThfPrFZbPUlLFZOu79g,5401
1279
1298
  mindsdb/integrations/handlers/rag_handler/requirements.txt,sha256=_7K_npewsQgRtUH_S-COwkUJ35urOaKDSEJsZZItr20,185
1280
- mindsdb/integrations/handlers/rag_handler/settings.py,sha256=5T4_oZt9dUD67AJXeZrzaftMnv4I4uL-XlzhO5kTYSY,15627
1299
+ mindsdb/integrations/handlers/rag_handler/settings.py,sha256=rnn4jMyS427EAYN63b9-PTqAKjm2FVm6P4xMN2RuIRE,15626
1281
1300
  mindsdb/integrations/handlers/ray_serve_handler/__about__.py,sha256=42oqKM1C-nIisvPvAL5fIxBDP-rxEduXnGrUUjrfLIU,345
1282
1301
  mindsdb/integrations/handlers/ray_serve_handler/__init__.py,sha256=MYDLydWeimQ74znwnrrgnh9S6YgtE7UnJcYBVlWv6r8,596
1283
1302
  mindsdb/integrations/handlers/ray_serve_handler/icon.svg,sha256=spxNMpiGLzxt46VM70-m-z4xButrIQ_dzLTarJKYSOA,1990
@@ -1285,8 +1304,8 @@ mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=TvaO
1285
1304
  mindsdb/integrations/handlers/reddit_handler/__about__.py,sha256=Xp4s3kJp-REycH83S1RLSaPZHpFqbn-MjRuQZ5BpBuQ,336
1286
1305
  mindsdb/integrations/handlers/reddit_handler/__init__.py,sha256=n3dhcPIHT_89hQxEXKQbHApOGBGQxtvWxp-fvFL083s,496
1287
1306
  mindsdb/integrations/handlers/reddit_handler/icon.svg,sha256=JAhHkvjiEfOz_BSbBVosQs8VXegNanxdnNUNz1bHyRM,3986
1288
- mindsdb/integrations/handlers/reddit_handler/reddit_handler.py,sha256=KQoiWm7nw473cEwgQusMXbTRxoXOKbJdzTmgj40hZ3I,3265
1289
- mindsdb/integrations/handlers/reddit_handler/reddit_tables.py,sha256=SBaOkm-Va7HF-u9MKHBlTEOS9PNI2S1iEvEpUD-18o0,6558
1307
+ mindsdb/integrations/handlers/reddit_handler/reddit_handler.py,sha256=NaNmhIWHTUfbCF6XaIWnQPrtFOymtVlmxQhPVtEnQKA,3221
1308
+ mindsdb/integrations/handlers/reddit_handler/reddit_tables.py,sha256=fTkwwrgFCptkfhssPr_7nM5yvt-H-3t9HQcmXqdwzSY,6549
1290
1309
  mindsdb/integrations/handlers/reddit_handler/requirements.txt,sha256=fr-1_smtJ1skff4zL826Kumcy_XKQ_THIPJ1lwTPqIM,4
1291
1310
  mindsdb/integrations/handlers/redshift_handler/__about__.py,sha256=l9Ri3bz7eW3C5cp1UdSylSkLs8iWAoSH8H4foxb0Lb8,357
1292
1311
  mindsdb/integrations/handlers/redshift_handler/__init__.py,sha256=CwcbbRYbQLXROfpRN3KOjqle2oEfOVkB1y-4h2HUOTs,631
@@ -1298,7 +1317,7 @@ mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py,sh
1298
1317
  mindsdb/integrations/handlers/replicate_handler/__about__.py,sha256=2_18jFKOFO_515IYxchEJYQG77sR5MJTvOPUfZ_pjnU,349
1299
1318
  mindsdb/integrations/handlers/replicate_handler/__init__.py,sha256=zQ9LKlq8v86y64-gjITtCsVuYO2cmOKZ39f3RlK_EYs,551
1300
1319
  mindsdb/integrations/handlers/replicate_handler/icon.svg,sha256=56p1aqrvUXjoBcNd29dI5ZttA7IV7om95rDylErIzko,371
1301
- mindsdb/integrations/handlers/replicate_handler/replicate_handler.py,sha256=TGmoZYFUagMWqKJEY3MKuE10ihyOslwUcPOUvsbYZUk,6893
1320
+ mindsdb/integrations/handlers/replicate_handler/replicate_handler.py,sha256=MgX78U7ce-t7JJ32rCSQU0xaYjvTj5-WndmlYIHKJNs,6873
1302
1321
  mindsdb/integrations/handlers/replicate_handler/requirements.txt,sha256=sjsGjIFCY5tCRuDpJJVIactIpN5fqbc5NaTEcjHOhKM,9
1303
1322
  mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png,sha256=crRGtMnf3xzPy7U1fh9-2gqc52QhzNs1DlQkMx6TRtg,355320
1304
1323
  mindsdb/integrations/handlers/replicate_handler/assets/groot.png,sha256=TxwVa0APOhGRQD8Ut36xnBgeFiReIxOKeqzjJrFKk9k,1314584
@@ -1307,18 +1326,18 @@ mindsdb/integrations/handlers/rocket_chat_handler/__about__.py,sha256=FdPpY1CH5g
1307
1326
  mindsdb/integrations/handlers/rocket_chat_handler/__init__.py,sha256=Lfa_w0jgfGLpdlYbLf5YWS1DKJrEktvUF8JVvkydTe4,499
1308
1327
  mindsdb/integrations/handlers/rocket_chat_handler/icon.svg,sha256=PXczKYqazHgTvOI_jbWbd8b0SWirVt7OVS3OJzMn8Eg,2492
1309
1328
  mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt,sha256=iDoxDNf9uWvVT4X-a3kz4MLEqacKzCmd5mtV1eTmQ14,14
1310
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py,sha256=sw0IiT4tgfmy05fu4LfD7WdrKGknPHGms_NUmGLabZI,5281
1311
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py,sha256=doEN9RG95nAWOvi4U-9UqdxRQ6ZSZR5df7MZPrnJQNw,6298
1329
+ mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py,sha256=x6thVWvE3E0FVk2vobNylnqf1DoLIBCH_myejkKAJHM,5251
1330
+ mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py,sha256=nlmFowKqiFDPsNraa7qokl2KtK8LoYBstM-hCKWIhUs,6272
1312
1331
  mindsdb/integrations/handlers/rockset_handler/__about__.py,sha256=HCXICDPS1kDFOFXzRgD7eHKcJOjQCrc-RVf1ArGMEQU,342
1313
1332
  mindsdb/integrations/handlers/rockset_handler/__init__.py,sha256=c3soxU78fuJzO0tQRZIwwOZIifTQXeiSq6Ez6zYZJ-k,601
1314
- mindsdb/integrations/handlers/rockset_handler/connection_args.py,sha256=yd83qhfwK5xAvNYY7bW0PIsGE8NZCCwfn3MSswrhL4A,1073
1333
+ mindsdb/integrations/handlers/rockset_handler/connection_args.py,sha256=rYvw8MgsHJmLppcv2ZhFARWX__0cCM-IwF4jXBPzmt0,1045
1315
1334
  mindsdb/integrations/handlers/rockset_handler/icon.svg,sha256=duxHx1t4AN_ggwucppIBTdgmcRH6yO5Ru84xU-wioX4,539
1316
1335
  mindsdb/integrations/handlers/rockset_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1317
1336
  mindsdb/integrations/handlers/rockset_handler/rockset_handler.py,sha256=DbaGbWFhzHB1o0VNTUOyp9Hu79MqwuffzGZbcjdBnGA,314
1318
1337
  mindsdb/integrations/handlers/rockset_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1319
1338
  mindsdb/integrations/handlers/rockset_handler/tests/test.png,sha256=foksCl8DjyzOxikbkTP_AdFEk3VHai6UJgQIzPihvpY,194064
1320
1339
  mindsdb/integrations/handlers/rockset_handler/tests/test2.png,sha256=u4OFmvGERdC_7e91njNwQ44Yd46hNtaQ-yhpVIXSPOw,108141
1321
- mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py,sha256=wZA0IUwoJHCaz4JZDSu2rOPLHYkNQNHPcfDAJXHJPQI,1062
1340
+ mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py,sha256=HkZCijNeQ5idzUQf3pwj9I09EmOlb3_vd1uUcUToFwE,1063
1322
1341
  mindsdb/integrations/handlers/s3_handler/__about__.py,sha256=5_5F8HudwW0tS4NJfkodjzu0NmOfdLcw9eMPFj5aXP8,330
1323
1342
  mindsdb/integrations/handlers/s3_handler/__init__.py,sha256=_tcu60ouXkbhS42OVG9UUSTbujkPiA7fzzu5QS-4iKM,587
1324
1343
  mindsdb/integrations/handlers/s3_handler/connection_args.py,sha256=2zNyZx2ly5BZOfcoGRer-KvUyqN81BdQGy-v0UDfe2I,1531
@@ -1345,17 +1364,17 @@ mindsdb/integrations/handlers/scylla_handler/__init__.py,sha256=1Hn_nUReOm-KBULI
1345
1364
  mindsdb/integrations/handlers/scylla_handler/connection_args.py,sha256=s93jwcTAMKjANKcevJHM86nshheVIoHdTTNEIYfu-Ss,1332
1346
1365
  mindsdb/integrations/handlers/scylla_handler/icon.svg,sha256=yAOhsR8j8qQ_mwNGv22OwGQp553qg-IXqAXr3JOpeTE,9670
1347
1366
  mindsdb/integrations/handlers/scylla_handler/requirements.txt,sha256=oak5VzU4W2taxZgdL4URrh_MJaYaNozZS3Amyk9vbT0,13
1348
- mindsdb/integrations/handlers/scylla_handler/scylla_handler.py,sha256=dQDU5DN9Cur3UMpUBKGHxf8DJDSLXRqF9NJeL_i3pZQ,7450
1367
+ mindsdb/integrations/handlers/scylla_handler/scylla_handler.py,sha256=YdDnuIccLCxRL70PqeVYxbNAEOBM4tNdQHeXsPCjaXE,7437
1349
1368
  mindsdb/integrations/handlers/scylla_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1350
1369
  mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py,sha256=GNCPWgfvKjik--BMF4tn4w0azPmNOTvHymKugnhML24,1290
1351
1370
  mindsdb/integrations/handlers/sendinblue_handler/__about__.py,sha256=mNrBV_1MfkupAJVeDMrCR6lBUfXpRwn6XXmBQ922hGU,355
1352
1371
  mindsdb/integrations/handlers/sendinblue_handler/__init__.py,sha256=9GNW50IOpUczJgBwFwUkIxAwHgcF_QnzvIm_M3vcPQU,523
1353
1372
  mindsdb/integrations/handlers/sendinblue_handler/icon.svg,sha256=dgYCEWBM6Yj67OQVYaBb-13EucoE2CtQikprO2GanPY,2730
1354
1373
  mindsdb/integrations/handlers/sendinblue_handler/requirements.txt,sha256=u6iN5asBaZDyg9vOw6OWq8dCvVV7w5fcli0dLedgilA,14
1355
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py,sha256=Omr3eeZmo3q9h6YihqveK_Rz6XMtJauN-0f0Q5iFfVI,2589
1356
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py,sha256=K2gBdyC3hKs46ntT2JsbgRCcFiJ0APc5_vl6_v7aLjY,10852
1374
+ mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py,sha256=4Ce7Y1XoDus4h2OyV2QtGkm8g90ChZKL2Uhi87B9X3g,2589
1375
+ mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py,sha256=6jfOevdBSl5KL1QfVvOIkfPu8CBGK7IwxmLP17LarGA,10823
1357
1376
  mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py,sha256=gnGsZj1RtQnkRqj225n83FiyMhoifRg2t0-zUhZSz6M,394
1358
- mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py,sha256=zIf8JUELB24Bc2t9CqTC3hL8o-cfQqg55nTj1H3aguE,605
1377
+ mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py,sha256=evSAH_KalqpI3Wlx59HdDDvXLiwIDQhmRfapwdRmNzs,606
1359
1378
  mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg,sha256=Di1nWIp9lQK9xqiyU4XttTIB9bQj44JNRPbUG05xOGE,2691
1360
1379
  mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt,sha256=YQ5L-FeZum2bJwIetXy8w0DVmriE3puvTJwsYIswXm8,61
1361
1380
  mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py,sha256=9Tw-saClJANaocCdvWyf6Za6BI13VE7xq65SLxEmQdM,2692
@@ -1376,7 +1395,7 @@ mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py,sha256=47DEQp
1376
1395
  mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py,sha256=xQ2ahguYDRXm_xuEiGVMa8uknJdgEyaBnocRxZ6t38o,1896
1377
1396
  mindsdb/integrations/handlers/sheets_handler/__about__.py,sha256=9Sayal4tNbITvTgskEmn01QRvmeucON1435o0IKzSSI,356
1378
1397
  mindsdb/integrations/handlers/sheets_handler/__init__.py,sha256=yTemBTQ6ptZ-WpFzaKL95MvHf5m1KoGk7M7lWJE_gUs,603
1379
- mindsdb/integrations/handlers/sheets_handler/connection_args.py,sha256=xHPG6-djFcUN9ck2K0L9quQq0iuIzZf2E9BvOw8S3pE,529
1398
+ mindsdb/integrations/handlers/sheets_handler/connection_args.py,sha256=07sRCoh0XZHsqTCbsDKuUyuzXEAlArBbLrai1OvFEGA,530
1380
1399
  mindsdb/integrations/handlers/sheets_handler/icon.svg,sha256=Wz4CS_9u6_zaouNSS-ePCRUnwpUZUn9hJ2J04BEksvs,5628
1381
1400
  mindsdb/integrations/handlers/sheets_handler/sheets_handler.py,sha256=q_Md27HqvDQk9vZh9JT1E6NPuckaveEDVYfYQeb7O1U,5264
1382
1401
  mindsdb/integrations/handlers/sheets_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1385,17 +1404,17 @@ mindsdb/integrations/handlers/shopify_handler/__about__.py,sha256=w70w9xG4laoJ6f
1385
1404
  mindsdb/integrations/handlers/shopify_handler/__init__.py,sha256=VeIeMd6vofxyaAkLPX6X63Ye0of6s768mZ7gLvXrQ_8,511
1386
1405
  mindsdb/integrations/handlers/shopify_handler/icon.svg,sha256=-htxdS5C7rsXqiY3H0Y5LVhvHG_cb8Iw7MuJc8Ra2Qo,2452
1387
1406
  mindsdb/integrations/handlers/shopify_handler/requirements.txt,sha256=keRn5kMNcJHM3MBDc26Y-mYR747z5HdsJeURBQ3sygY,11
1388
- mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=SOd0EFwTEq_RjXyhYQ37R-58ExNVA1UqgvnTzcPqmTc,4942
1389
- mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=Jpj-wG3sMv29qpD7TNnKiOML1rzHwshtDRIzK74Agto,38613
1390
- mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=J-SeCseIh0969pPByjhSCMdpTHdvNgdM8w_n2APyd2A,350
1391
- mindsdb/integrations/handlers/singlestore_handler/__init__.py,sha256=WqcldLndyx_OYY-dJAbQFEEKC554culcV8ZxhxLRNPU,515
1407
+ mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=Phcoh8ukUSJQ-RwqV_pp2at4blJHrMDQg6zjP8EXmiw,4935
1408
+ mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=eFxuR6PUx772Oc_LCgDOiDYjBhwS6fcDwiLgOFBhbnM,38545
1409
+ mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=_15qBORkD-oCNaAG43vfOz-8UokwaQlTJMkVPVphWtU,351
1410
+ mindsdb/integrations/handlers/singlestore_handler/__init__.py,sha256=MSAEudTZyL-23T9amF0pU1wJjLYkn34VqJHtOYT1C1A,501
1392
1411
  mindsdb/integrations/handlers/singlestore_handler/icon.svg,sha256=ZHU9Xd8NgO4VADPp3jl42HZ7eqcf8aTAvN7xUCTfMAc,2064
1393
1412
  mindsdb/integrations/handlers/singlestore_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1394
- mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py,sha256=ZRrMpNhX-ELdqJLT-aHJixWmhtG5sC41E0JbVjmvQlk,434
1413
+ mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py,sha256=h4OrRQmX0LVJj9RkS5-MikNbwFnNtKZp-NQx6SKmlIA,435
1395
1414
  mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1396
- mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py,sha256=o2nKep5ZoqFV9n77jE0qcYsfiFWJmQow55YXldhJMvo,1446
1415
+ mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py,sha256=lyEa50BGn8ISmKuo1oqIfvisVoNCbqZ6REQhpV3rxEU,1442
1397
1416
  mindsdb/integrations/handlers/slack_handler/__about__.py,sha256=ykbgm6frTOTB8b-PtZrQEv_jMijGD2e-GIziyygILZM,335
1398
- mindsdb/integrations/handlers/slack_handler/__init__.py,sha256=1C8z9FrWQHIk2Dg5fBGA0c9E_EXw8eBXkG8gz-Yshm0,518
1417
+ mindsdb/integrations/handlers/slack_handler/__init__.py,sha256=2GZF65ujVCePlbVWsC-0lCmlcUyfP0hQQ57pqiXYy44,517
1399
1418
  mindsdb/integrations/handlers/slack_handler/connection_args.py,sha256=mzsx968FZZ3gVFXcTimbegcSucYcKzdRnj9FWj1SZ3s,637
1400
1419
  mindsdb/integrations/handlers/slack_handler/icon.svg,sha256=bPzub2wQkTiV8nFCoy8TCSAXxYjjg65S7jQT1_yGduM,2005
1401
1420
  mindsdb/integrations/handlers/slack_handler/requirements.txt,sha256=92G8Qt34iNKtS1FzKMKUHZp6r8CPz-3TZLn_dD9nY7M,18
@@ -1407,8 +1426,8 @@ mindsdb/integrations/handlers/snowflake_handler/__about__.py,sha256=O2reZn6Jc5N1
1407
1426
  mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DIgRy6XdrGgBjTf_H5G514XYH0fGFYsw,609
1408
1427
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1409
1428
  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
1411
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=B_QRuLXo-5YBg2294bifAd3asN_sHt8EdXVfYYsud1E,14715
1429
+ mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=jPONiX7mUekXJMK0Tv1A5fhSAR2Vkc-_4E_pCDJo068,71
1430
+ mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=46q9FH31HgdQ9P5K_iPrfH9Stn8KGolDKJr0xy0ua8M,18802
1412
1431
  mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
1413
1432
  mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
1414
1433
  mindsdb/integrations/handlers/solace_handler/icon.svg,sha256=rzGNiCdLWu9OJ3j8ilXrOTwRupMp3n3RQrfm2D_Nx5A,152
@@ -1416,12 +1435,12 @@ mindsdb/integrations/handlers/solace_handler/requirements.txt,sha256=kOMDzRkpyVS
1416
1435
  mindsdb/integrations/handlers/solace_handler/solace_handler.py,sha256=h82SqnLbGsgblVQgFrcMf2KejaqQPjjYv2bUWR5Tcrg,5635
1417
1436
  mindsdb/integrations/handlers/solr_handler/__about__.py,sha256=YGongZaOYWVBJtgIf8Kzj9Iz9W8V7yYlzedzWzqKoFM,332
1418
1437
  mindsdb/integrations/handlers/solr_handler/__init__.py,sha256=J3kSqn15RC6mruLlv2OQFtk7dgAb3qk1ss4oaDmgwYo,595
1419
- mindsdb/integrations/handlers/solr_handler/connection_args.py,sha256=9vkyeKg5x5E1XedoJBVqpO4lPJ-IW_b49kGChh_EAFs,1457
1438
+ mindsdb/integrations/handlers/solr_handler/connection_args.py,sha256=q_zcEDLDMb14b9GwBXDmM8VamleYUISllmuI-0xe3Y0,1442
1420
1439
  mindsdb/integrations/handlers/solr_handler/icon.svg,sha256=oMJbF8KYAXMLJFqq1X4UDjz0pToxKEDL8sCnD3SAGJU,1215
1421
1440
  mindsdb/integrations/handlers/solr_handler/requirements.txt,sha256=5BJdrNsaD-Sw4ZWEvrST-fPHbPAxVfTINMlOnRzMfe8,15
1422
- mindsdb/integrations/handlers/solr_handler/solr_handler.py,sha256=UZ39at_WKZ7r8F2msJPsLfL1WeFUydmOENseQlnpvng,5481
1441
+ mindsdb/integrations/handlers/solr_handler/solr_handler.py,sha256=3EnWmXgfuxmnuFrXs7WFOCpwNeSHHybDlEZogpil1C0,5480
1423
1442
  mindsdb/integrations/handlers/solr_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1424
- mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py,sha256=lE_8IPogUOXQ9EvT5T50y-bfnD2JAXWFCLfkHbKP_nI,1215
1443
+ mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py,sha256=uW7yETt0P9cvxxzNQMwJ-quf_whHXt0Yzitu9CwnqLo,1217
1425
1444
  mindsdb/integrations/handlers/spacy_handler/__about__.py,sha256=jd6QQQ6sSZ5yoYvxSWPynn_Olt5n-ylQo5vGyZ3aqyc,345
1426
1445
  mindsdb/integrations/handlers/spacy_handler/__init__.py,sha256=zY48kMbG9iQmG2FyFKVCFw0JpdFDb-_1caLHh5pXdDo,488
1427
1446
  mindsdb/integrations/handlers/spacy_handler/icon.svg,sha256=wvPUPjGqsBiOaOg5gGQjnc2lw8yyF4qR8CcxhagwtkU,3544
@@ -1432,24 +1451,24 @@ mindsdb/integrations/handlers/sqlany_handler/__init__.py,sha256=qJlQ_ZZ4Ni6kHtUi
1432
1451
  mindsdb/integrations/handlers/sqlany_handler/connection_args.py,sha256=I50L0E4Zq8BeJvsgRTwvIxxmyBdljWi3p3zM6tiQZ24,1334
1433
1452
  mindsdb/integrations/handlers/sqlany_handler/icon.svg,sha256=Y2lmewh0cBgJP_8SyDgjcxrN6AG-U1_uBo-VF0xkgPg,2146
1434
1453
  mindsdb/integrations/handlers/sqlany_handler/requirements.txt,sha256=Y0gnZVmzYd3QEf6TvdXSasgY0FkOTo-RKRbTtq2zVaE,27
1435
- mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py,sha256=dq7O8UsFel2_sLnlY8tJbR9pN4maNPVKtU-E4vdzs10,5699
1454
+ mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py,sha256=QztrVfyzAeMqpMCdiEZTWnbAJIUL7QzblKD8jMTXrpQ,5691
1436
1455
  mindsdb/integrations/handlers/sqlite_handler/__about__.py,sha256=lWd9EgLYvUjLUUylfnVrPnBFF64v5WUJk0sKOaaSMT4,351
1437
1456
  mindsdb/integrations/handlers/sqlite_handler/__init__.py,sha256=x5LSxJLjgFy461oFuc7EkIICYFjwbkR3nxRjUXD39aw,616
1438
1457
  mindsdb/integrations/handlers/sqlite_handler/connection_args.py,sha256=fkHQz2pMUYYls0SH3QWyVRZC9EQpub8Tqogu0IMPN1w,459
1439
1458
  mindsdb/integrations/handlers/sqlite_handler/icon.svg,sha256=_vrqIxTfukZKHbwInyi8_NXkvY7gaXmmlhBpvkizBwc,3379
1440
- mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py,sha256=R8jP0bznyNtAcdZriOjSPvc4bPZDXkPNw886WpK0D78,5794
1459
+ mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py,sha256=Uq7YJCDa9VRtV1oF6tWpPd00pxfADbydzAmNvh7vnA8,5796
1441
1460
  mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1442
1461
  mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py,sha256=uwdM4niujj3VPWvNZWMImOWgB0tppoYYPm7KW_V4-HM,1033
1443
1462
  mindsdb/integrations/handlers/sqreamdb_handler/__about__.py,sha256=n99f9F2MFzGvCa-nZJWgyDolrEd9wBd2Iir71bfcvpc,346
1444
1463
  mindsdb/integrations/handlers/sqreamdb_handler/__init__.py,sha256=CwLXvfxGQe24ArIUtDfSwKSvZdEr0XtC_AsA7wsFrJ8,604
1445
- mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py,sha256=t3ZJsob7MNNLkvcIkgTO9KQrgDDQARG5DJt_JyLBsT4,1383
1464
+ mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py,sha256=jVH0FunqHDhlQp0djRNU38KCRLQkX62nw8qmQua-90o,1382
1446
1465
  mindsdb/integrations/handlers/sqreamdb_handler/icon.svg,sha256=ahjvGh5halSk2-D7dx4ZEYzdS9-8R2YN7bA6opumpik,19052
1447
1466
  mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt,sha256=J0WEmaOHnBO7pofu2y7pwtBEM8CajuqxW32Gx-clg5c,40
1448
- mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py,sha256=96P-3E7uBl-FqapQ0zbr5rSJ-mwXwmRLL5Gb02q6zAE,4902
1467
+ mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py,sha256=kMe64tBDCeqs638KvUXBhyskfhLSxxyRcjosVtPdj1E,4846
1449
1468
  mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1450
- mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py,sha256=7mHIpSxyoDMtkpbmInVF60m2In-TiYKO1yas_qgNOJk,1434
1469
+ mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py,sha256=b14lkOaCGGPME_sjKsc0QzvjFag38_K1kCLC08IGpZY,1425
1451
1470
  mindsdb/integrations/handlers/stabilityai_handler/__about__.py,sha256=oUkOwYjexl28Y0r0oeAKALZKrjU4hl_g5nCQBZ_o_DQ,355
1452
- mindsdb/integrations/handlers/stabilityai_handler/__init__.py,sha256=I7ZPo3LOsBNDLq_Jw7X7Flsble-tr6X3xdeLU9VveT8,512
1471
+ mindsdb/integrations/handlers/stabilityai_handler/__init__.py,sha256=guNpEVaDx14_vhszE-LN4PUaf_Zhb4XrwqQmx66PGYQ,513
1453
1472
  mindsdb/integrations/handlers/stabilityai_handler/icon.svg,sha256=ZpGpqOrCHEnu6bEKUZeBBjZiOQmHdurWMs_knbfzF-Y,1284
1454
1473
  mindsdb/integrations/handlers/stabilityai_handler/requirements.txt,sha256=3rD2bEMgLiyhsQHPbojpz07ZWrUgIW4QENkN3kWnov8,21
1455
1474
  mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py,sha256=NZqNRDcaMaUGhuFGTUiXA5P2LtJ0BGJSKJ1LlNb5Ba4,6901
@@ -1458,15 +1477,15 @@ mindsdb/integrations/handlers/starrocks_handler/__about__.py,sha256=pkApZqHghl4G
1458
1477
  mindsdb/integrations/handlers/starrocks_handler/__init__.py,sha256=SMee9IZM4-ADJKXB-GlOkf2laHNSiE3sZlSJ3Lj-piQ,493
1459
1478
  mindsdb/integrations/handlers/starrocks_handler/icon.svg,sha256=AlnqpxH93ohQSQcItJU5-t9xgoHBjzvZSBzyyP4ryfk,1945
1460
1479
  mindsdb/integrations/handlers/starrocks_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1461
- mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py,sha256=VlNq-kuVvsbythqxAESoMqBDa0FYLMIx6A4jBliDT9c,1301
1480
+ mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py,sha256=tOdQuNu_SQWoil4NAfIERX382Ogzkd6Hl_DQXTFzKzU,1300
1462
1481
  mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1463
- mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,sha256=sIYAE9rwD54CYDz0L7a2BSB1YivGz0BcSOMiuZlb7UQ,1746
1482
+ mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,sha256=BvJOd4sdSN4d5roPYqJd1DxF8G_ITP_pcf9HIcP0GxM,1715
1464
1483
  mindsdb/integrations/handlers/statsforecast_handler/__about__.py,sha256=1X1F2LyKSugvGa7VZco3R4fDZTM1ED3Ku-ys2evcczY,374
1465
1484
  mindsdb/integrations/handlers/statsforecast_handler/__init__.py,sha256=LYYrtDMAW5aFPLPyIp-rOxO2O6izWi7pNtQGAsRmmdY,516
1466
1485
  mindsdb/integrations/handlers/statsforecast_handler/icon.svg,sha256=dg5efvtY54Q70QS8a1FGc3-RbH9vbsWoOCmHtPjANRE,590
1467
1486
  mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=17INZW5OfTUqbRKt-gcljYlwFUCyW3PjTSkiNrm_VtQ,21
1468
1487
  mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=17INZW5OfTUqbRKt-gcljYlwFUCyW3PjTSkiNrm_VtQ,21
1469
- mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=kTmm5bKnduvJYQ4dN8r_Zj5LJ-rsoHDwny6DG8LCzq4,8418
1488
+ mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=jPo3yj5nuxi6WP8xrEFx4lI1pGJbKQs-uHJLtBrLz_k,8408
1470
1489
  mindsdb/integrations/handlers/strapi_handler/__about__.py,sha256=pCZCrsIQ2_9QSAfpIY8se9QDvIE2kP9_a5N0DnRMO6k,344
1471
1490
  mindsdb/integrations/handlers/strapi_handler/__init__.py,sha256=TnZspPGgLSMgWxJkY0oUd6EiPl16Xo7spn0Oswok8-o,529
1472
1491
  mindsdb/integrations/handlers/strapi_handler/icon.svg,sha256=-00G-8wAFYndz5z04zdKnskPASN8-O-8HtrPkoI4r9M,1073
@@ -1478,26 +1497,26 @@ mindsdb/integrations/handlers/strava_handler/__about__.py,sha256=zYeH3wGTPWdK2Kd
1478
1497
  mindsdb/integrations/handlers/strava_handler/__init__.py,sha256=fpoXQgaNScX27rxkNbjyY-JDCG6q0rZHNKH9XpaeoRM,507
1479
1498
  mindsdb/integrations/handlers/strava_handler/icon.svg,sha256=WWcpMlFlIGRXqq3PUAsDzK5ShEr-UwteLWuQHzH0894,628
1480
1499
  mindsdb/integrations/handlers/strava_handler/requirements.txt,sha256=zmg1tZLIYt6P2O_IaXMghPa0eB-mvaltye2A7xuPN1A,10
1481
- mindsdb/integrations/handlers/strava_handler/strava_handler.py,sha256=vt9aveT_iFgKRzGaby0AnPXdK1PUyzpIWJkAb0kOs_Q,3421
1482
- mindsdb/integrations/handlers/strava_handler/strava_tables.py,sha256=1JZv4qX_gFwDhLvjIuhRuXbbBYiDWRikwapUpUw6vf0,8188
1500
+ mindsdb/integrations/handlers/strava_handler/strava_handler.py,sha256=dTtvUypo2vyQjMr7VMAN6v7dRRuZldDLDND7CiSfdZs,3170
1501
+ mindsdb/integrations/handlers/strava_handler/strava_tables.py,sha256=FDo6xabpJ-QSekFcCqj0XNkiAC6inzbV7QZw2p1mgxY,8103
1483
1502
  mindsdb/integrations/handlers/stripe_handler/__about__.py,sha256=Uknc7T0dq-_3jvCTIHC2Fq6ds-RNewF-5m8vge-LeS0,343
1484
1503
  mindsdb/integrations/handlers/stripe_handler/__init__.py,sha256=uyLgbv2G8ZOkcQAq_PJfTceuUCIzIpszCRA-XCj_-ag,507
1485
1504
  mindsdb/integrations/handlers/stripe_handler/icon.svg,sha256=BdCx7kc4Np-P6ceICXzaBEH0TBOyxqLLL1zCqSZInJE,704
1486
1505
  mindsdb/integrations/handlers/stripe_handler/requirements.txt,sha256=K-0gMu09gwC3cU_3cQHmxDY3WXl3M3xpkZHdhEyGpy0,6
1487
- mindsdb/integrations/handlers/stripe_handler/stripe_handler.py,sha256=r_0-IaY7xdaQUC1SjotfWKFFyfr8nzFK9EAQUFBddIg,2846
1488
- mindsdb/integrations/handlers/stripe_handler/stripe_tables.py,sha256=6nEUwkDNG6HQlAoRU14j5gF4njpQNcyRfyV-2JUjXvk,16193
1506
+ mindsdb/integrations/handlers/stripe_handler/stripe_handler.py,sha256=pASyHf6VxOZpUcsQoZHe6gMZjr6QGmYSuTJ4cdt4o34,2838
1507
+ mindsdb/integrations/handlers/stripe_handler/stripe_tables.py,sha256=i6DJq5rauKdLLqWK73yu6eFrYSWGi9q_e1na_0kzm5k,15693
1489
1508
  mindsdb/integrations/handlers/supabase_handler/__about__.py,sha256=mvRq0yRA_Zt-0_dP5WEkuiM1k-2hcL9aBcDw30PcCE8,342
1490
1509
  mindsdb/integrations/handlers/supabase_handler/__init__.py,sha256=7m-tY9p52UrXA5WVWDAZgoiWS1p4s4-jthx4jyx4g0E,489
1491
1510
  mindsdb/integrations/handlers/supabase_handler/icon.svg,sha256=raGqT1S4xpEQLeHj3OEWU6W_8vVlql-R7flMBiOttnY,1174
1492
1511
  mindsdb/integrations/handlers/supabase_handler/supabase_handler.py,sha256=hi1Ndqskeb7dDhoL71Y3eHfvzHIWCyEFY2ZZB29S2bQ,326
1493
1512
  mindsdb/integrations/handlers/supabase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1494
- mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py,sha256=xAfmn-PLeGX4iyAsOCNFJw19acakGK0iTds6Dl1UWzg,1408
1513
+ mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py,sha256=TFpoZL1Dnbqu-of8EAPJuw8IXMOWfzXiyQd5myp1BrM,1399
1495
1514
  mindsdb/integrations/handlers/surrealdb_handler/__about__.py,sha256=HU-MfMC6d2oWZZANntvc2ZJRL9sdRctDgpa0IF_2-Fc,376
1496
1515
  mindsdb/integrations/handlers/surrealdb_handler/__init__.py,sha256=Y_DOxm1PderYV8_VidjJlPgB2QivfugI245a3SOSCTk,608
1497
1516
  mindsdb/integrations/handlers/surrealdb_handler/connection_args.py,sha256=nbBhHClh582l4KIR8u9e5Bo7gMPwU4qDvZrrj3W6HFE,1463
1498
1517
  mindsdb/integrations/handlers/surrealdb_handler/icon.svg,sha256=A6hrNrewVOKtHwAUherAF3mIPYijqRH4NofZYG_6f3Y,1449
1499
1518
  mindsdb/integrations/handlers/surrealdb_handler/requirements.txt,sha256=P1aJoTZNUH39vh-kIhW1ioAFBkerI9dUdbdtxHgFH-w,12
1500
- mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py,sha256=QTga0igT4v4tiED2iOJf1YiTKlpSfaTG244ucNM3ZBU,6063
1519
+ mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py,sha256=k9Y5rGTbie2yyIH72Tkm8Sh8fnb6IPAlxn-KitJM4Rk,6086
1501
1520
  mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1502
1521
  mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py,sha256=POOXBiNfNNaO0Ac0K5XlIZOVp47qN1bFofVixrFbnMM,1891
1503
1522
  mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1514,9 +1533,9 @@ mindsdb/integrations/handlers/tdengine_handler/__init__.py,sha256=xPvtQ7Rw7wbVJX
1514
1533
  mindsdb/integrations/handlers/tdengine_handler/connection_args.py,sha256=OPH5NEDSPxZ6iPIDBor7gHb5aDs2JhskEf7zF0S8RiQ,982
1515
1534
  mindsdb/integrations/handlers/tdengine_handler/icon.svg,sha256=n9TFbxQXmgulHJ9xe-jv07hXVVzUVs8WUoW9i6r3vsk,4903
1516
1535
  mindsdb/integrations/handlers/tdengine_handler/requirements.txt,sha256=Hd60uoHTQmZiGt55R7KWc-WRt0pun0sx8XJiTtC9rn4,6
1517
- mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py,sha256=LrzjraaSzO4V0a_u9N_nqlnk2qr_UZkRL64VWVDOaTY,4424
1536
+ mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py,sha256=XQgbMA3F_Lz5qpKwXGnbp3uMTmB2ILmukY2jSRXJAcE,4299
1518
1537
  mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1519
- mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py,sha256=6pCI0vBOjF0FWZjQOXEAjsoibE9aTAq2w_-TcPoj9f0,1564
1538
+ mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py,sha256=LCKfs5QaTzDaqdK3MSSojZr7fqExZ6GZLcRdoJzMkNQ,1559
1520
1539
  mindsdb/integrations/handlers/teradata_handler/__about__.py,sha256=IDbZpk---hxwg_GaxnMmesQJUaDXnNkigrNDFpoVQUE,345
1521
1540
  mindsdb/integrations/handlers/teradata_handler/__init__.py,sha256=g2iNycfebnlIMvxLpfkgAP69q58LMmTjAdUBGxN8cXc,604
1522
1541
  mindsdb/integrations/handlers/teradata_handler/connection_args.py,sha256=0XFNxt7yZxyi2nj2H93qCG0D46MKBnGH376CQroiLEA,1040
@@ -1530,12 +1549,12 @@ mindsdb/integrations/handlers/tidb_handler/icon.svg,sha256=AYauw0wMLbfLYyXBYUw5d
1530
1549
  mindsdb/integrations/handlers/tidb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1531
1550
  mindsdb/integrations/handlers/tidb_handler/tidb_handler.py,sha256=WLmvnEFpXGhf7VXg2Vhmw7b3SK2CKtGqEQdh1AxCX4w,305
1532
1551
  mindsdb/integrations/handlers/tidb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1533
- mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py,sha256=2jW1qDpWVK2N6inTvgPqhPfbVVH9BzFuVgbq2wN9pjI,1334
1552
+ mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py,sha256=Rh96gh61nP3ebpjUV2BeyHBcNrTZDOOfH3LqxRGY-ug,1305
1534
1553
  mindsdb/integrations/handlers/timegpt_handler/__about__.py,sha256=wBHyAM5O7yWVgUKBGJwRM6gpy8FUWzcBxL048e4yjhA,390
1535
1554
  mindsdb/integrations/handlers/timegpt_handler/__init__.py,sha256=lMvw91ghkXJj2RuXSi1om4KYc8xbNik3YwXcYA-Hld8,491
1536
1555
  mindsdb/integrations/handlers/timegpt_handler/icon.svg,sha256=CfkLqkeZTKSjsQMKTx_KqkCqXvnHRyAAa1DVs-R1qiA,590
1537
1556
  mindsdb/integrations/handlers/timegpt_handler/requirements.txt,sha256=AfBYvR80CShVm2CPUOonQgDHgcTxApeX5OTKgfkjB-I,14
1538
- mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py,sha256=rdAQhmGP_hqguShfHPNj5r5pBXZEla8A-4ErTQ0_LbY,9868
1557
+ mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py,sha256=c0krE2oG9jJi6z3x4zvG6Jm7nvCINjhiUQszHRKl--o,9868
1539
1558
  mindsdb/integrations/handlers/timescaledb_handler/__about__.py,sha256=joUHMPBAiylB7Uc7sipeFVWlWDZ_wqVqyyy_MivkNFI,355
1540
1559
  mindsdb/integrations/handlers/timescaledb_handler/__init__.py,sha256=ynMpLqCRlYomZEFEinXmtYYGr0DPIMQZ9HtsytOpe6c,497
1541
1560
  mindsdb/integrations/handlers/timescaledb_handler/icon.svg,sha256=sZHwvwAJ5SiTLSHhjdm_2YazVz0KEDQj-5KYR7cBTxo,6197
@@ -1552,13 +1571,13 @@ mindsdb/integrations/handlers/tpot_handler/__about__.py,sha256=UnKylDgzptBz8GP0A
1552
1571
  mindsdb/integrations/handlers/tpot_handler/__init__.py,sha256=In_YSefcrQXPbgqBoTR77fx9sIRpBTBpWaIlhaaHHhA,526
1553
1572
  mindsdb/integrations/handlers/tpot_handler/icon.png,sha256=j1DfF2jF1kWD3dhCET51X26QnSW9rNuLXXG7Tav3M2M,114250
1554
1573
  mindsdb/integrations/handlers/tpot_handler/requirements.txt,sha256=8F0hdotOm6E8Y2Fp7aKkDq1laiAX8CDem43CVybzdm4,32
1555
- mindsdb/integrations/handlers/tpot_handler/tpot_handler.py,sha256=SLKdLIxTRF2fTjziNOXXN0idArLMsRSuMaDUlsJdHKs,3335
1574
+ mindsdb/integrations/handlers/tpot_handler/tpot_handler.py,sha256=RQwuvd9ss91dSUiHSvQ-Yt4LNmcQv_pJIkC3XBJ-BDQ,3244
1556
1575
  mindsdb/integrations/handlers/trino_handler/__about__.py,sha256=O-XM6_t3ajkzjNhyI8J5BaVVmwwUCkQARNlJusNoYDk,333
1557
1576
  mindsdb/integrations/handlers/trino_handler/__init__.py,sha256=aj-pP90O6WWCyWBgry5D9URUaUCM5ALoAOQYHbU6gt8,457
1558
1577
  mindsdb/integrations/handlers/trino_handler/icon.svg,sha256=2zBJqtv37OVRHmR4HnL-Y3vPbxWf3sMvpVXGi8XkZzw,9363
1559
1578
  mindsdb/integrations/handlers/trino_handler/requirements.txt,sha256=yd3vzlgASeU_7on8yH3NZznzB5CkHf5mZ4FQK_LQw38,22
1560
1579
  mindsdb/integrations/handlers/trino_handler/trino_config_provider.py,sha256=FZ0xbSJTUDWR9Dj5n7qIv-KVgx49fMzGw-WcDe-aqcE,359
1561
- mindsdb/integrations/handlers/trino_handler/trino_handler.py,sha256=54Oi9lLzryZ9xO4tUDpq9mR4l6Ba4gymLuE12Wi__Ng,6826
1580
+ mindsdb/integrations/handlers/trino_handler/trino_handler.py,sha256=FJxctdwK62aWdHnJVAcsmjs4VDPMPXnTOB_DtLCC4RI,6762
1562
1581
  mindsdb/integrations/handlers/trino_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1563
1582
  mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py,sha256=raI6x2ZTxd1_37CA22o4fPJLyBpQtkUGl1jaCkpR8U0,1630
1564
1583
  mindsdb/integrations/handlers/tripadvisor_handler/__about__.py,sha256=I3b_Vfuym1IL8kq5MzUpKhQauM6Eh_YxPf0-jRJe7xQ,363
@@ -1583,37 +1602,37 @@ mindsdb/integrations/handlers/twitter_handler/__about__.py,sha256=7BS3uP0wt9Awep
1583
1602
  mindsdb/integrations/handlers/twitter_handler/__init__.py,sha256=iD7po6ZUKvkmhiq7qLgHMNc4m0hR43ks1u9p6qx0Zdw,500
1584
1603
  mindsdb/integrations/handlers/twitter_handler/icon.svg,sha256=2lLcQ9w8XO6H5M_Kl_TitCOUjkfKMOdUL2_1rLrN32s,471
1585
1604
  mindsdb/integrations/handlers/twitter_handler/requirements.txt,sha256=ZJDRss3q7Ym5B2ECTFXYw-4yz1iu9odZpRI03-eD2xc,7
1586
- mindsdb/integrations/handlers/twitter_handler/twitter_handler.py,sha256=7JBsc5iv7__FLWhI3JxQ_15rMsEbTBxBbi6Z-3cbxVM,16111
1605
+ mindsdb/integrations/handlers/twitter_handler/twitter_handler.py,sha256=2vpRqiagCB86Mvtirj215yfAXB4VfsbQFst8keAe7IY,16087
1587
1606
  mindsdb/integrations/handlers/unify_handler/__about__.py,sha256=nHZmpAWcHrN8R4R2QzTX2z4ZyMOJTvh80zGhvth57sg,357
1588
1607
  mindsdb/integrations/handlers/unify_handler/__init__.py,sha256=gGgCjnQRlM6GnhVeGHHNxda-294CXHLh8eGHDYVp0Ig,617
1589
1608
  mindsdb/integrations/handlers/unify_handler/creation_args.py,sha256=V2eVKJzWeTQg_Kr3zjJauGHrF760RlUssfUgDsStclI,339
1590
1609
  mindsdb/integrations/handlers/unify_handler/icon.svg,sha256=AfxEQzqUj_C__zWFdMUFDnAwurZHRQNQ7DvFHHZ8Tqs,10460
1591
1610
  mindsdb/integrations/handlers/unify_handler/model_using_args.py,sha256=LgYS_busKCzzDKIcqeO2i9mv_viWuAJcTkrnpWy-_Ss,75
1592
1611
  mindsdb/integrations/handlers/unify_handler/requirements.txt,sha256=HFlgdvYk-Z0_oTUGpvPXRzDSYiKj7AgifVW2XRhOpTk,14
1593
- mindsdb/integrations/handlers/unify_handler/unify_handler.py,sha256=7bScQZZTAZ7CHkuCBwHapLiIos5FpU_Fq9I6IM8SIic,2458
1612
+ mindsdb/integrations/handlers/unify_handler/unify_handler.py,sha256=F3ibxOSIL8X93i8-yHvpBl1F16gERJSSOrNwrP0K8q0,2400
1594
1613
  mindsdb/integrations/handlers/unify_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1595
- mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py,sha256=QVAIIHkG8XhmcNtseqFlym58K-ufpKr8Db4pJBXxYbI,1622
1614
+ mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py,sha256=i9GbueTvl03z-XQV1awifib4kE9FtJto7rvjyB4SwXY,1597
1596
1615
  mindsdb/integrations/handlers/vertex_handler/__about__.py,sha256=SCffhHdeD6ZuszymGrBBPfoo-k2Yj8-Yx4PzjW855XQ,350
1597
1616
  mindsdb/integrations/handlers/vertex_handler/__init__.py,sha256=LJCNEoHxKyxi4FzyqwIxPXZXfuBX7-FEGlROGEtEbnI,498
1598
1617
  mindsdb/integrations/handlers/vertex_handler/icon.png,sha256=EWxLkZkclLeq83BfYAy8OV8ijKPPXmAKWJ3ltMpbLRs,23708
1599
- mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=40crm7gp9aqkiWzROcakrCUuaz9ELam50bgMXJmLzSk,32
1600
- mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=5a1H4QzhnCnBsPdiHdR-zN-B4Gjkt6BzXdHzZKbibwU,3903
1618
+ mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=iTc66wzuOVy_ugDXcckpDrPiey9CY5UVWB8e4Wte01Q,113
1619
+ mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=I--3_5IYiSrb0WvSy9Kswq7O8yQKGmjFBSu0nZkin5Y,3910
1601
1620
  mindsdb/integrations/handlers/vertex_handler/vertex_handler.py,sha256=9MmbCzJrXtMlSis9LpjlNsamuSWQ9PhTTl5D0WhHTXk,3924
1602
1621
  mindsdb/integrations/handlers/vertica_handler/__about__.py,sha256=11Aa7YF_-bkqrVZ4D2tNwZpfa-kEt5QpaLKKVnS_WYA,343
1603
1622
  mindsdb/integrations/handlers/vertica_handler/__init__.py,sha256=AHg3kPYNZ5BV8-t_AHyfP5pRw7ker1-JCAnaImmIyyc,600
1604
1623
  mindsdb/integrations/handlers/vertica_handler/connection_args.py,sha256=1Gf9hLDrMkVGuoliiTx5JrxGHOpZKsb54KXiDC-adWg,1268
1605
1624
  mindsdb/integrations/handlers/vertica_handler/icon.svg,sha256=T9aDBMWile8EWwMaQjXcWzjRAnN18PtG0Z4xT8rRtPU,1482
1606
1625
  mindsdb/integrations/handlers/vertica_handler/requirements.txt,sha256=Gt_4VkgNTpeUohDXQP_kbLXcVw_uLf91hC8NrKPtMTw,40
1607
- mindsdb/integrations/handlers/vertica_handler/vertica_handler.py,sha256=I2F6_iOMsQquBsdV-_0lJqlchY-6IVE5UbpqPgm2PKQ,4807
1626
+ mindsdb/integrations/handlers/vertica_handler/vertica_handler.py,sha256=TS-SSAZr44CQYMm595PQTNclaXQKbdi-_oK3KC3BvTk,4747
1608
1627
  mindsdb/integrations/handlers/vertica_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1609
- mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py,sha256=dPMvzZ6L9LYkQznusBErpuTJZm0pUwEP6uty25hDyis,1663
1628
+ mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py,sha256=ajai8sl7FlHLsCZ5jdBQQ_q1i7MxlRhXS07-dU-0rSw,1658
1610
1629
  mindsdb/integrations/handlers/vitess_handler/__about__.py,sha256=gu0GmNcKVxMVHYbe9GhBNJ8X_s_9-DrImVUQxll-rU4,340
1611
1630
  mindsdb/integrations/handlers/vitess_handler/__init__.py,sha256=D2IoTFIK2_28Y0EW4LZmE9hVn58Gt9iISxA-nOpMN1c,481
1612
1631
  mindsdb/integrations/handlers/vitess_handler/icon.svg,sha256=Ru4YAcun-wgPpfILPcqGw7QwRFXZhEntYslkzkz6jQY,2834
1613
1632
  mindsdb/integrations/handlers/vitess_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1614
- mindsdb/integrations/handlers/vitess_handler/vitess_handler.py,sha256=xj_50v21j25dkiGEcAn69GKis33LviIBq8V11bME-ME,1277
1633
+ mindsdb/integrations/handlers/vitess_handler/vitess_handler.py,sha256=HpSdFwN9TFUR03IUgFzPhIDIGaxglXLbuoeJfGmb50k,1276
1615
1634
  mindsdb/integrations/handlers/vitess_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1616
- mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py,sha256=0fhrT7PYij47bR9B4tTOVjgPeVmr5NTTVNZlASLLlag,1727
1635
+ mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py,sha256=QCu4Yq6fKSwJ3U0OUrmvIEXvDbyowejfHrXt3cEE7Lk,1695
1617
1636
  mindsdb/integrations/handlers/weaviate_handler/__about__.py,sha256=KVr6a_8bmKvHgs_lDmhxstO5HWChFGd-mxlw3jEE5Fc,343
1618
1637
  mindsdb/integrations/handlers/weaviate_handler/__init__.py,sha256=57wDF-H1g4I09beDPFqUEPycLcdarstPXr2dEJe-fhk,661
1619
1638
  mindsdb/integrations/handlers/weaviate_handler/connection_args.py,sha256=R9iG_4m5HUxZDVHKtR4XTSsOF5q5ABEszpG2uMTXHDA,755
@@ -1625,7 +1644,7 @@ mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE
1625
1644
  mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
1626
1645
  mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
1627
1646
  mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=dCBqMYKwdQdThqbxeZA0a9z--yBC5vJJ8q8MikIKA2Q,11305
1628
- mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=XjM_hJTTjaA2MLjX0pCJpY4gpejICjme89K63Ghrr-U,3493
1647
+ mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=iLiQQ7CbRhKjnRyfBhhLK2m8EtaNcXIWNSP0BgruVKA,3494
1629
1648
  mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
1630
1649
  mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
1631
1650
  mindsdb/integrations/handlers/webz_handler/icon.svg,sha256=Mvt32fMxE_p294_hTqGVY3vnRkbZOJ2a0n9M72aZjTk,1042
@@ -1633,19 +1652,19 @@ mindsdb/integrations/handlers/webz_handler/requirements.txt,sha256=OFXmQCjEWHwfH
1633
1652
  mindsdb/integrations/handlers/webz_handler/webz_handler.py,sha256=Oxtx_V-EFL9u7mr5qv1WaPP6TrddSoHlk_lbVNDDwWE,5765
1634
1653
  mindsdb/integrations/handlers/webz_handler/webz_tables.py,sha256=w5PKcG62_HQA_8m1W4xIiQJ6eJKTXq-GjQ8_deUdAwU,6219
1635
1654
  mindsdb/integrations/handlers/whatsapp_handler/__about__.py,sha256=TVjX_hyWXjHSGd_VgGztlHFCCJMD5a1XSMpROpTIxj4,344
1636
- mindsdb/integrations/handlers/whatsapp_handler/__init__.py,sha256=Cp0i-Cfox-j7HjzBSqHCU59tnf_83C4W763WMAZhqi4,533
1655
+ mindsdb/integrations/handlers/whatsapp_handler/__init__.py,sha256=_NwgjGtXWfSP7S7V9JXr-GbWYz5b2z4Erqz3lpqLcp8,529
1637
1656
  mindsdb/integrations/handlers/whatsapp_handler/icon.svg,sha256=0eWNgJq2Oru3XokxTDokZUFzgx-phehzXn5XeWokXKM,3521
1638
1657
  mindsdb/integrations/handlers/whatsapp_handler/requirements.txt,sha256=idAcm6c8tcT72EnGmYdd27H9MCytrxzuRVLpLnNnaDU,6
1639
1658
  mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py,sha256=2TLKbQv9h2LnBBoLUQxi0Wb01raXiJkrbh-it_nTo6g,14477
1640
1659
  mindsdb/integrations/handlers/writer_handler/__about__.py,sha256=fi8lkAE-e3p6dDhPmBtGI3nWaScrgeJ96YFEzpyyx0Y,336
1641
1660
  mindsdb/integrations/handlers/writer_handler/__init__.py,sha256=4g7e_HuLGt2pHD0KPTU9zSQdfR9ANEdJEBOkXYurIgA,545
1642
- mindsdb/integrations/handlers/writer_handler/evaluate.py,sha256=NWXfHO6YutIJ4tuMCbAic1QS1-W3VEq72foLLRlr_B0,12498
1661
+ mindsdb/integrations/handlers/writer_handler/evaluate.py,sha256=mfn33gUcDm60v7gbFOnQJ2_4JXQDjbwkYGj9KRedXhI,12497
1643
1662
  mindsdb/integrations/handlers/writer_handler/icon.svg,sha256=nx6KAU1Genn-XnAPvrucTZqU2MQC4WOBTaiImAP04Vg,1814
1644
1663
  mindsdb/integrations/handlers/writer_handler/ingest.py,sha256=4N783Eg2nqKwmt0Hf7Mgp_ieycw9mYuwMN_V52gJC18,338
1645
1664
  mindsdb/integrations/handlers/writer_handler/rag.py,sha256=KSkMYPZ9gRRGP4C47yhhRTsDJ7bqJ_FPUm9tI0-5WAY,415
1646
1665
  mindsdb/integrations/handlers/writer_handler/requirements.txt,sha256=lNCsHd4W-UUS9lDEAcO9QkCK9CWYV3eGbCjnHTl5YHI,97
1647
- mindsdb/integrations/handlers/writer_handler/settings.py,sha256=dwihPL0hGY3AEcA_THVyG6mM3s99PYcID_JRV114iLU,2835
1648
- mindsdb/integrations/handlers/writer_handler/writer_handler.py,sha256=cnwoyq1XIcvIaX5Zgm1SrWFJCIz0h6qiw1HJzix0wbI,6885
1666
+ mindsdb/integrations/handlers/writer_handler/settings.py,sha256=XYCPO7OlV9RGOFveOieF2_nngNpwvF7Xhjv3IfnuLsQ,2805
1667
+ mindsdb/integrations/handlers/writer_handler/writer_handler.py,sha256=KPBEpvmF7_U_3Ov_33cPUrvLD93WhasHgKGVscYW8q0,6886
1649
1668
  mindsdb/integrations/handlers/xata_handler/__about__.py,sha256=g-EqC8OMmbjncIYQnLG-kaiLahhKCJZmBJCzLfUKLbY,331
1650
1669
  mindsdb/integrations/handlers/xata_handler/__init__.py,sha256=73nSEn5d_gRnjI3U92XLfjfKiik7EuSvtpOZ7L2LOYg,643
1651
1670
  mindsdb/integrations/handlers/xata_handler/connection_args.py,sha256=V1fIbrnoNo1AQ_KjX1wN-Ve5NYplDIBqa5QtbtjZ7Fo,1010
@@ -1657,15 +1676,15 @@ mindsdb/integrations/handlers/youtube_handler/__about__.py,sha256=mhUWf5rM8hmHZs
1657
1676
  mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=wz69UgXa3njxAci8Srh7FaIW2eLNuz45LR0sNiCux3I,583
1658
1677
  mindsdb/integrations/handlers/youtube_handler/connection_args.py,sha256=08xO6KHfAlFvgSq9QU6PxWDk9AmmPgXdx41ayKxHGAI,923
1659
1678
  mindsdb/integrations/handlers/youtube_handler/icon.svg,sha256=uvNffuRPGVzPxWkbZzkSrw2SHm8M8c4GbeypiHPWDss,954
1660
- mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=Hx27M_gHLgyZBIsNQZAcXYcnFtRgqlHvEgPnWhdisns,48
1661
- mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=FewpJAHZyYJItt2qKaHjXpZwajpxMAWAD6DibVWic5Y,4217
1662
- mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=-PiJbjpqoWjh-sdf-EiJ9nyan7DfmkNmPvROzHYgZjA,16797
1679
+ mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=1TSFkd3bOkjfohLD9ZRIynuQGqAyyL-qZjZC_BWapJU,129
1680
+ mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=UPdeh6cznyxN8e8jtO-OxkmEGoqbUB7wGR8XaoozXkg,4225
1681
+ mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=aH3ykMHwPmfaLyB0v7eD7KnkKC7PKkO6KB9c0mK4qY8,16621
1663
1682
  mindsdb/integrations/handlers/yugabyte_handler/__about__.py,sha256=tVimKqXLHCbBZFeVs2_LfbwaXt3oOBx2k_fTbiu4uwU,350
1664
1683
  mindsdb/integrations/handlers/yugabyte_handler/__init__.py,sha256=ZaXZKRnnzUOGLvydpoeSjOxlLx8L_ymcXdEydokAh28,490
1665
1684
  mindsdb/integrations/handlers/yugabyte_handler/icon.svg,sha256=9EWkdK9d1nWu45_dFleLLh3qWPf7eZLj2cwB2kwhIH4,3292
1666
- mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py,sha256=wNEVAgPzxKXkTffTAyspORJ1iEanm3bEfeQKjiRpJM4,1982
1685
+ mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py,sha256=UZz9RDFPbBXOUnba6Ft0Y_lggPTenQJmLex4MsMD5mA,1763
1667
1686
  mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1668
- mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py,sha256=LluD-CZBKm24pKje-mFOcFvkuD8-o7ycG7AnFXeuUws,1612
1687
+ mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py,sha256=GaiuIuRgJaHBX9pIjgAC3p3vUaaQK8MAFYbZHVAr37c,1604
1669
1688
  mindsdb/integrations/handlers/zendesk_handler/__about__.py,sha256=-gcxH59ewAdZcRHOVNOKdOoU2pkWS2fc7w3liM0rPnE,341
1670
1689
  mindsdb/integrations/handlers/zendesk_handler/__init__.py,sha256=Kaq_K9rpEuBJOMhlijWzkk6NRxk86G7Kpx0RbjAAsNk,633
1671
1690
  mindsdb/integrations/handlers/zendesk_handler/connection_args.py,sha256=xlvJDA5gpIKrf7gciQ_RR57Z4sxG82QSU5p2x3KLymI,735
@@ -1696,9 +1715,9 @@ mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4Se
1696
1715
  mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
1697
1716
  mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
1698
1717
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1699
- mindsdb/integrations/libs/response.py,sha256=aWIzWrZ6RQkeN9-YS-iaq1q4if6YLd0icnQKBC4YvcI,5886
1718
+ mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
1700
1719
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1701
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=NuILtarU7TSRCWidb1GWh7BxiWy-wrFHDUSFTJzvArY,18227
1720
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=p4wWZIl1fq6PnCiHSjTPW5Jlrmdw9MzU7RzKvpDUXVA,18445
1702
1721
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1703
1722
  mindsdb/integrations/libs/llm/config.py,sha256=FH5ODdNmiqdwTLHpXmEla0zwEPlitNactTm_i2UUmC0,4337
1704
1723
  mindsdb/integrations/libs/llm/utils.py,sha256=K5jc9NyME4MZWyVyirhgQA_Dq6HRvP4lhJqnlrcjWy0,25101
@@ -1714,25 +1733,25 @@ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=ccz
1714
1733
  mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
1715
1734
  mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1716
1735
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1717
- mindsdb/integrations/utilities/handler_utils.py,sha256=r_EBkrgf6dmkHmH12ANOFIw6aS03mTeSU_tWa9p3yVc,2404
1736
+ mindsdb/integrations/utilities/handler_utils.py,sha256=QbAUGgeyXr5fAJZqyrqtl59Re8Ze0ER5h8zK5ITrOYQ,3055
1718
1737
  mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
1719
1738
  mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
1720
1739
  mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
1721
1740
  mindsdb/integrations/utilities/sql_utils.py,sha256=zPXrG3pI-wbrrBTM9WXMwt66zsQHw2RZ1qXUX58rJ9Q,6777
1722
1741
  mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
1723
1742
  mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
1724
- mindsdb/integrations/utilities/utils.py,sha256=TuIgAbuZVkCRUSgLmqJ2STZ1CxVgBGrEnajW68SsKg0,972
1743
+ mindsdb/integrations/utilities/utils.py,sha256=sM2WfOrlIyliSm2lXaPyU21l4kQZVoSv1yLsBDKv90k,972
1725
1744
  mindsdb/integrations/utilities/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1726
1745
  mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-8BNfeUJshGz4_MFrIDYBQ,1665
1727
1746
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
1728
1747
  mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
1729
1748
  mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1730
- mindsdb/integrations/utilities/files/file_reader.py,sha256=r9Eb86eRSF-vi5sU0E9FNJIKJdlMEl2n0yRDt0ykNvk,11298
1749
+ mindsdb/integrations/utilities/files/file_reader.py,sha256=rqL4XgeLRaBE3B0rFfMm6zNctMJs-IHV5_tTqnqqpww,11508
1731
1750
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1732
- mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=zkvVb54zxtn4_NSwqCD-SVQG_5JI9EYRygb6EABQu7g,43
1751
+ mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1733
1752
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
1734
1753
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=JikiOFYkji_7l1ckXn3I8NjrruTjcI7TdpqHxLU-mIE,6292
1735
- mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=Q5ssYUpXtyLsG3aCGi90s5EJVnbO0wPTr0bKY64tYWc,180
1754
+ mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1736
1755
  mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
1737
1756
  mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
1738
1757
  mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py,sha256=Nuug_6Zggj5Q4D01sRLpyHrGLvyLL1ONg3SiZH8i4W4,2400
@@ -1779,16 +1798,16 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
1779
1798
  mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
1780
1799
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1781
1800
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1782
- mindsdb/interfaces/agents/agents_controller.py,sha256=NwqgRlZ1XyZggxLI98x0xVt2vyqrefqrzN6ZvXoU6kU,18318
1801
+ mindsdb/interfaces/agents/agents_controller.py,sha256=l_lC08HnE7F_Iki-hm9VznEY8Afmv1-diO7YJIyqfSo,27106
1783
1802
  mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
1784
- mindsdb/interfaces/agents/constants.py,sha256=xBiIyfjVBggMBm78fvrssyDJwci0T8YP01lGxzHd3iw,4810
1803
+ mindsdb/interfaces/agents/constants.py,sha256=7drGeBdnwJOBnPKgjd8lKhIYu1yYlYrDUxMvStIuEsA,5822
1785
1804
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1786
- mindsdb/interfaces/agents/langchain_agent.py,sha256=ElPKeJW7mLOEMFdJKHE7FTTMu_Lijjn6_stJRslBaHg,27743
1805
+ mindsdb/interfaces/agents/langchain_agent.py,sha256=GUaxPkT7a5qXCKo2j3p-M8qpiJkwLfZv0C3epxbrMAU,28313
1787
1806
  mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
1788
1807
  mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
1789
1808
  mindsdb/interfaces/agents/mcp_client_agent.py,sha256=9oki-GDsN1H6fYsNLBQWTMYSHGpWliYF9I5AZSuXS8U,9814
1790
1809
  mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
1791
- mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=lk7UyE7tK807GXLBDr4-b2VVFUUzDtpMx2GjVtywv3o,2459
1810
+ mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=-BYmUrTejJN9VAxn0OzNIwiopCK-Z5cHkSG0nAq7KAo,6725
1792
1811
  mindsdb/interfaces/agents/run_mcp_agent.py,sha256=4ZXhIGBu3wVIZC9Ys6vTJDxGJzLXppLLqzbg1UFanS8,8689
1793
1812
  mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
1794
1813
  mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
@@ -1803,43 +1822,45 @@ mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
1803
1822
  mindsdb/interfaces/database/database.py,sha256=ax8GlviJpdTyufQvBfy0ft4H8pxH7w4hp_ejNY_aYHM,4356
1804
1823
  mindsdb/interfaces/database/integrations.py,sha256=B4dfcOCsUMKgX5teNEGrXwUBnrX5L2sUP34XvbUaSdk,36825
1805
1824
  mindsdb/interfaces/database/log.py,sha256=lRfYgAAeKXT6f8S-b_-sjqn99lZOgSCDAazLeJgXdF4,11076
1806
- mindsdb/interfaces/database/projects.py,sha256=N6BOCIr3nq2PSSpYzwIUuL4O_8Sr8vmD0FIoY4K11P0,16731
1825
+ mindsdb/interfaces/database/projects.py,sha256=Kgi2PJmKQ9AVqnjpNhomSJCcmucSAXj9qE7XMIydtOk,16463
1807
1826
  mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
1808
1827
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1809
1828
  mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2uARKGp_NWBkKY,8626
1810
1829
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1811
- mindsdb/interfaces/functions/controller.py,sha256=Fsp3INjy8iSm5eyhD_kyxgDMiV7n_Y_q5LOq01kmosQ,7524
1812
- mindsdb/interfaces/functions/to_markdown.py,sha256=Gs-rMBfMsdau-0FbQZpvV7_Aeg_vw9Aj25lh6SHGInE,7408
1830
+ mindsdb/interfaces/functions/controller.py,sha256=jFzu8Glz8CyeOFYiLMAEqetW6feV9XCENUW66lBBGQI,7400
1831
+ mindsdb/interfaces/functions/to_markdown.py,sha256=labr_DTrl8dDKNgusZM0Nf6ISXkemeSAlSR04ddI_rU,2847
1813
1832
  mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1814
1833
  mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
1815
1834
  mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1816
1835
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1817
- mindsdb/interfaces/knowledge_base/controller.py,sha256=Auv3dQKHTrR4AEhqIXqtkMorXdM0FKxW9Lzgl-BcGQc,45386
1818
- mindsdb/interfaces/knowledge_base/utils.py,sha256=KGIbP8n5bx6JpL0jtFGeGd3lvDkFmZQnpIG9VbUmStU,1074
1836
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=UZww7HeADl03JC6GkfjVI8SuoZiylf2B_qqeX_pLiOQ,46617
1837
+ mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
1819
1838
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1820
1839
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1821
1840
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
1822
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=w1JWYhpRhV7gyHuJgyE2cKGBh6U4x_T4lp0h3Ay9MLU,13261
1823
- mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
1841
+ mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=AOFnVTeoOq89sp_9Hr166ric5ti-cWodipdmDMRqCuw,14795
1842
+ mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=ciOiEmSN3JalwN9_d-tfJLabD_5etBYIHavCnazI0x8,17333
1843
+ mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=5TjFLLsocR6DUfjWg1oxtnEplquSi0puPMC7Ij36G-o,6042
1824
1844
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1825
1845
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1826
- mindsdb/interfaces/model/model_controller.py,sha256=o84VBCAqr6ecfl9ms0enetZxC30w7pGHzfYkrkZ0x_U,20306
1846
+ mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
1827
1847
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1828
- mindsdb/interfaces/query_context/context_controller.py,sha256=PlC4skYCQpEbNKkbcNgcPhSmf4uT03We58FYbGtUMvE,17564
1848
+ mindsdb/interfaces/query_context/context_controller.py,sha256=AonESR6kb3kuqT-t_eJJXJfFSr9TWJVnpxdWkenBiuY,19756
1829
1849
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1830
1850
  mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
1831
1851
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1832
1852
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1833
- mindsdb/interfaces/skills/skill_tool.py,sha256=jRZmgGiPMS5R7sanW_XtfT-hS_Y_7kJt67-VeGvpnds,13305
1853
+ mindsdb/interfaces/skills/skill_tool.py,sha256=aC_eaiKT_bJhMoMjmWviFLh84zqDaBvag8DgO1fSQGw,20392
1834
1854
  mindsdb/interfaces/skills/skills_controller.py,sha256=cNblNQNOJXQkuXq0q2g7-OmAFG-QoBbRign6gHt6NLg,6319
1835
- mindsdb/interfaces/skills/sql_agent.py,sha256=pLC4qeVsA4j6O3UJ4kHbe6_hF-NqRxYiI947d2uZ68w,14995
1855
+ mindsdb/interfaces/skills/sql_agent.py,sha256=Zs1WPLencvKfmDFw1aAKJowmGXuNGlOg0merHhGdDbI,24881
1836
1856
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1837
1857
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1858
+ mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=RyckwnehpSofJpfwMJTaRy2zPZlZnpSv_h1odb8HDQU,6855
1838
1859
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1839
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=08WyJXYJ_hP7JYLvwaSWuJN6Q1PLgIAvh7bcgsV-0XU,7962
1860
+ mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=fpOkZDMVihwzXHxMSrHqicVNLMK45RPUyNlTgARVzqI,12072
1840
1861
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1841
1862
  mindsdb/interfaces/storage/db.py,sha256=tIbODmfE6YkFup2PfVhT6lgTWNkwkJK42evSNWn52Ns,20309
1842
- mindsdb/interfaces/storage/fs.py,sha256=4Nyo-h23UtZc2nz_LWyVzboC_e1jlU58aph1_en8MdE,21155
1863
+ mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
1843
1864
  mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1844
1865
  mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
1845
1866
  mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1851,13 +1872,15 @@ mindsdb/interfaces/tasks/task_thread.py,sha256=RJfPF8BUpwS95M-ytDyq35-1RUp2_Q4K3
1851
1872
  mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1852
1873
  mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
1853
1874
  mindsdb/interfaces/triggers/triggers_controller.py,sha256=tmyaI9Pi-EUkaoN5jtRc0aGa_OgDfRRuag0-7mz-VgU,5523
1875
+ mindsdb/interfaces/variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1876
+ mindsdb/interfaces/variables/variables_controller.py,sha256=UZ9WBL6fJibtP5Ao5Jzz3Lq_Da7ZkuoYhVS1ilLCSkc,2915
1854
1877
  mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1855
1878
  mindsdb/metrics/metrics.py,sha256=6pV5DO85OF_iIBTma0TXRUrfNHU9a0Ds2RS2u1-XYrU,1956
1856
1879
  mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
1857
1880
  mindsdb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1858
1881
  mindsdb/migrations/alembic.ini,sha256=NdEIqmmxo5mIPQYbimTMVJ3VRay5BBs0PM1XsaAr1Gw,2193
1859
- mindsdb/migrations/env.py,sha256=Nb4LF9rwlONJSoJOm8A3oMCblLuoQ7bszubgBUYj9f8,2219
1860
- mindsdb/migrations/migrate.py,sha256=SWVZAFdzJUyBDM56rWG49plGliTpqIsQbVfBhkwqgMA,1769
1882
+ mindsdb/migrations/env.py,sha256=mkmVUSL2a107tiE8FPcFFeGxvEiyEwXQ75BNbMNjLG4,2217
1883
+ mindsdb/migrations/migrate.py,sha256=VA0hVz_PaV1VFn5gQ4NZofLHJD8gJyaI4snrHvG0IpY,2989
1861
1884
  mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py,sha256=SdJFsF-awdH0vvyJ_cku-QggiSZAn0x1PHNF_3YgMFk,5871
1862
1885
  mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py,sha256=VKgouePcADnmsp-AyxILjOhPVTvIZccorsH_UJN0V7E,1050
1863
1886
  mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py,sha256=ZBqlmRK3mqvLtzFaA1AqF-rlXCPyc45wG3l1S1COs5A,10817
@@ -1917,24 +1940,26 @@ mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_j
1917
1940
  mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py,sha256=5I6Zs75EzHCAEvRPbjnCEhgT-YfXJU1fHR4GeZxMyVY,1087
1918
1941
  mindsdb/migrations/versions/2025-03-21_fda503400e43_queries.py,sha256=rZ0oj2DTLxz4sRWVElZ4YfSzEK19fIcLuRfS_3LX0rY,1418
1919
1942
  mindsdb/migrations/versions/2025-04-22_53502b6d63bf_query_database.py,sha256=z_RcbWyUz88jc-qFS--G49Cyfb5xY0-fH7aI9r5_2qg,633
1943
+ mindsdb/migrations/versions/2025-05-21_9f150e4f9a05_checkpoint_1.py,sha256=Nb13ralIE2QRHn1I1ZnQWFbATGeaqH3srbpdJ5XL0x0,17470
1920
1944
  mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1921
1945
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1922
1946
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1923
1947
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1924
- mindsdb/utilities/config.py,sha256=ONzy4_Eb-BDkNkSmbi5uJn-9rNzIG-hVcPioNumZuuY,22206
1925
- mindsdb/utilities/context.py,sha256=eLuRvHTwp8ysEr_zqAwdLfHNcBEdHvjjAN5xL_gMoRM,1842
1948
+ mindsdb/utilities/config.py,sha256=qF1Tr1YPz0c2O5GqUbZZkWKci_7kstCkuL-5OXAFJgI,26578
1949
+ mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1926
1950
  mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
1927
1951
  mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
1928
1952
  mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
1929
- mindsdb/utilities/functions.py,sha256=tSAmY6zYUzhsEUXvRPEtgU1yIPKGKLDRtPT1hMuUOv0,6675
1953
+ mindsdb/utilities/functions.py,sha256=xAlSAmgWMosCYoBI2mZyEyIrz0RAJaPTiFDq2sQVIeI,5279
1930
1954
  mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
1931
- mindsdb/utilities/langfuse.py,sha256=SzJ7db-BZIiYiOs27jxmeUAp554W9jFFiuiWy87FNs4,9270
1955
+ mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY,9528
1932
1956
  mindsdb/utilities/log.py,sha256=krqJoAsKrrg9bk8X0QfCbbk7CN_f7BS6wm-0aVjkrGc,4401
1933
1957
  mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
1934
1958
  mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
1935
1959
  mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
1936
1960
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1937
- mindsdb/utilities/starters.py,sha256=S9GXhgGCAgqyvxxP-Fqj_LCTRqAK5FdNyVi8Ele6ywE,1104
1961
+ mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
1962
+ mindsdb/utilities/starters.py,sha256=zSsSwCdO4k2Sv-8Q8to7y-tc2LkP8gwzP6rbdcL06hI,1508
1938
1963
  mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
1939
1964
  mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
1940
1965
  mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
@@ -1946,17 +1971,18 @@ mindsdb/utilities/ml_task_queue/consumer.py,sha256=jYORLKMdWKYGUgIIRcnY-RSI3JSA2
1946
1971
  mindsdb/utilities/ml_task_queue/producer.py,sha256=x0s1_xcqtUaT5Og0TdErgWmN1Jp236byzvd2N2HMO34,2764
1947
1972
  mindsdb/utilities/ml_task_queue/task.py,sha256=h6PimSa_AXFo_xvEJGvhDhxiCI54VN2VebVQn0QpAsQ,3166
1948
1973
  mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
1949
- mindsdb/utilities/otel/__init__.py,sha256=l6OLKIeTmRPxtCRsrV27w7vFSfqQAj22BBMT7T-f1Ys,7744
1974
+ mindsdb/utilities/otel/__init__.py,sha256=XjZOMBZxyU6mK-NSb8fdrJcxlByVI8Qf6WZuqGy3Lm8,838
1950
1975
  mindsdb/utilities/otel/logger.py,sha256=o-bWPUinZS0yz2G89oxVD4qXgi0oo5gXHJI4aT7sejY,892
1951
1976
  mindsdb/utilities/otel/meter.py,sha256=oJDoBaU76kF6nenJxZIS08IIz-7GFM3enSKQoeJ6oqI,597
1977
+ mindsdb/utilities/otel/prepare.py,sha256=CK4ra8SV9VOOa70w2CqVvcxoA-EbvmX-LBDLjc6kldM,7145
1952
1978
  mindsdb/utilities/otel/tracer.py,sha256=BBdVTwxpF0gP6uDbwJSj49OjIJOF-giyVRd0yR9p8Tc,679
1953
- mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=3jGsLt5KkdhqaAUUw8ALxERjlPFq9JclOIedXlS-baY,711
1979
+ mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=4YH6YwclsYLjBPBM-e9OAfzFDIxzV8WfqJTueV-TRj8,885
1954
1980
  mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
1955
1981
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1956
1982
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1957
1983
  mindsdb/utilities/render/sqlalchemy_render.py,sha256=6NqOcfz19dhd0PEyNfOtNHsBt1fGjq2E3nFNUad5HOk,31444
1958
- mindsdb-25.4.5.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1959
- mindsdb-25.4.5.0.dist-info/METADATA,sha256=s4FYLBkRofGLjgwGnRLvH-MNIRUIDYoSK6VdUHFJcG0,42360
1960
- mindsdb-25.4.5.0.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
1961
- mindsdb-25.4.5.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1962
- mindsdb-25.4.5.0.dist-info/RECORD,,
1984
+ mindsdb-25.5.4.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1985
+ mindsdb-25.5.4.0.dist-info/METADATA,sha256=fildVyD-98sD9p-kaIUtYeQlu3EQhWdw5hW8VhWFXPk,44945
1986
+ mindsdb-25.5.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1987
+ mindsdb-25.5.4.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1988
+ mindsdb-25.5.4.0.dist-info/RECORD,,