MindsDB 25.5.3.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 (310) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/__main__.py +127 -79
  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 +47 -27
  20. mindsdb/api/executor/datahub/classes/response.py +5 -2
  21. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +39 -72
  22. mindsdb/api/executor/planner/query_planner.py +10 -1
  23. mindsdb/api/executor/sql_query/result_set.py +185 -52
  24. mindsdb/api/executor/sql_query/sql_query.py +1 -1
  25. mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +9 -12
  26. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +8 -10
  27. mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py +5 -44
  28. mindsdb/api/executor/sql_query/steps/insert_step.py +24 -15
  29. mindsdb/api/executor/sql_query/steps/join_step.py +1 -1
  30. mindsdb/api/executor/sql_query/steps/project_step.py +1 -1
  31. mindsdb/api/executor/sql_query/steps/sql_steps.py +1 -1
  32. mindsdb/api/executor/sql_query/steps/subselect_step.py +4 -8
  33. mindsdb/api/executor/sql_query/steps/union_step.py +1 -3
  34. mindsdb/api/http/initialize.py +99 -83
  35. mindsdb/api/http/namespaces/analysis.py +3 -3
  36. mindsdb/api/http/namespaces/file.py +8 -2
  37. mindsdb/api/http/namespaces/sql.py +13 -27
  38. mindsdb/api/mcp/start.py +42 -5
  39. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +0 -1
  40. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +52 -19
  41. mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +8 -10
  42. mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +54 -38
  43. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +82 -115
  44. mindsdb/api/mysql/mysql_proxy/utilities/dump.py +351 -0
  45. mindsdb/api/postgres/postgres_proxy/executor/executor.py +1 -1
  46. mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +5 -6
  47. mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +26 -27
  48. mindsdb/integrations/handlers/altibase_handler/connection_args.py +13 -13
  49. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +8 -8
  50. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +13 -13
  51. mindsdb/integrations/handlers/anthropic_handler/__init__.py +2 -2
  52. mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +1 -3
  53. mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +1 -0
  54. mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +1 -1
  55. mindsdb/integrations/handlers/autosklearn_handler/config.py +0 -1
  56. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +1 -1
  57. mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +1 -1
  58. mindsdb/integrations/handlers/binance_handler/binance_handler.py +1 -0
  59. mindsdb/integrations/handlers/binance_handler/binance_tables.py +3 -4
  60. mindsdb/integrations/handlers/byom_handler/__init__.py +0 -1
  61. mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +3 -0
  62. mindsdb/integrations/handlers/clickhouse_handler/__init__.py +1 -1
  63. mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +0 -2
  64. mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +0 -1
  65. mindsdb/integrations/handlers/cohere_handler/__init__.py +1 -1
  66. mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +11 -13
  67. mindsdb/integrations/handlers/confluence_handler/confluence_tables.py +6 -0
  68. mindsdb/integrations/handlers/databend_handler/connection_args.py +1 -1
  69. mindsdb/integrations/handlers/databend_handler/databend_handler.py +4 -4
  70. mindsdb/integrations/handlers/databend_handler/tests/__init__.py +0 -1
  71. mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +1 -1
  72. mindsdb/integrations/handlers/derby_handler/connection_args.py +1 -1
  73. mindsdb/integrations/handlers/derby_handler/derby_handler.py +14 -22
  74. mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +6 -6
  75. mindsdb/integrations/handlers/discord_handler/discord_handler.py +5 -5
  76. mindsdb/integrations/handlers/discord_handler/discord_tables.py +3 -3
  77. mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +5 -3
  78. mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +3 -3
  79. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +2 -2
  80. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +57 -54
  81. mindsdb/integrations/handlers/dremio_handler/__init__.py +2 -2
  82. mindsdb/integrations/handlers/druid_handler/__init__.py +1 -1
  83. mindsdb/integrations/handlers/druid_handler/druid_handler.py +2 -2
  84. mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +9 -9
  85. mindsdb/integrations/handlers/email_handler/email_client.py +1 -1
  86. mindsdb/integrations/handlers/email_handler/email_ingestor.py +1 -1
  87. mindsdb/integrations/handlers/email_handler/email_tables.py +0 -1
  88. mindsdb/integrations/handlers/email_handler/settings.py +0 -1
  89. mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +2 -1
  90. mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +1 -1
  91. mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +9 -9
  92. mindsdb/integrations/handlers/frappe_handler/frappe_client.py +5 -5
  93. mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +6 -5
  94. mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +2 -2
  95. mindsdb/integrations/handlers/github_handler/connection_args.py +2 -2
  96. mindsdb/integrations/handlers/github_handler/github_handler.py +1 -8
  97. mindsdb/integrations/handlers/github_handler/github_tables.py +13 -24
  98. mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +2 -1
  99. mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +1 -4
  100. mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +6 -13
  101. mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +2 -1
  102. mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +0 -3
  103. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +4 -4
  104. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +2 -6
  105. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +3 -2
  106. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +0 -3
  107. mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +10 -12
  108. mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +11 -13
  109. mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +2 -1
  110. mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +0 -3
  111. mindsdb/integrations/handlers/groq_handler/__init__.py +3 -3
  112. mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +5 -7
  113. mindsdb/integrations/handlers/hackernews_handler/hn_table.py +6 -7
  114. mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +1 -1
  115. mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +6 -6
  116. mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +4 -3
  117. mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +1 -1
  118. mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +1 -8
  119. mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +6 -6
  120. mindsdb/integrations/handlers/huggingface_handler/requirements.txt +1 -1
  121. mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +1 -1
  122. mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +2 -1
  123. mindsdb/integrations/handlers/impala_handler/impala_handler.py +9 -12
  124. mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +11 -11
  125. mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +10 -13
  126. mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +20 -20
  127. mindsdb/integrations/handlers/informix_handler/__about__.py +8 -8
  128. mindsdb/integrations/handlers/informix_handler/__init__.py +12 -5
  129. mindsdb/integrations/handlers/informix_handler/informix_handler.py +99 -133
  130. mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +13 -11
  131. mindsdb/integrations/handlers/ingres_handler/__about__.py +0 -1
  132. mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +1 -0
  133. mindsdb/integrations/handlers/jira_handler/jira_handler.py +4 -4
  134. mindsdb/integrations/handlers/jira_handler/jira_tables.py +9 -9
  135. mindsdb/integrations/handlers/kinetica_handler/__init__.py +0 -1
  136. mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +4 -4
  137. mindsdb/integrations/handlers/langchain_handler/tools.py +9 -10
  138. mindsdb/integrations/handlers/leonardoai_handler/__init__.py +1 -1
  139. mindsdb/integrations/handlers/lightwood_handler/functions.py +2 -2
  140. mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +0 -1
  141. mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +11 -11
  142. mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +4 -4
  143. mindsdb/integrations/handlers/llama_index_handler/settings.py +10 -9
  144. mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +8 -10
  145. mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +4 -4
  146. mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +8 -9
  147. mindsdb/integrations/handlers/maxdb_handler/connection_args.py +25 -25
  148. mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +1 -0
  149. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +3 -2
  150. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +1 -1
  151. mindsdb/integrations/handlers/mendeley_handler/__about__.py +1 -1
  152. mindsdb/integrations/handlers/mendeley_handler/__init__.py +2 -2
  153. mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +48 -56
  154. mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +24 -29
  155. mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +19 -17
  156. mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +5 -4
  157. mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +3 -3
  158. mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +58 -36
  159. mindsdb/integrations/handlers/monetdb_handler/__about__.py +8 -8
  160. mindsdb/integrations/handlers/monetdb_handler/__init__.py +15 -5
  161. mindsdb/integrations/handlers/monetdb_handler/connection_args.py +17 -18
  162. mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +40 -57
  163. mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +7 -8
  164. mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +13 -14
  165. mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +1 -1
  166. mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +1 -1
  167. mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +2 -5
  168. mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +1 -0
  169. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +1 -1
  170. mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py +23 -23
  171. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +3 -3
  172. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +10 -5
  173. mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +73 -8
  174. mindsdb/integrations/handlers/mysql_handler/__about__.py +8 -8
  175. mindsdb/integrations/handlers/mysql_handler/__init__.py +15 -5
  176. mindsdb/integrations/handlers/mysql_handler/connection_args.py +43 -47
  177. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +101 -34
  178. mindsdb/integrations/handlers/mysql_handler/settings.py +15 -13
  179. mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +1 -1
  180. mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +1 -1
  181. mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +4 -4
  182. mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +2 -2
  183. mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +28 -36
  184. mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +5 -5
  185. mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +0 -1
  186. mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +8 -10
  187. mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +3 -3
  188. mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +1 -2
  189. mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +7 -7
  190. mindsdb/integrations/handlers/oracle_handler/connection_args.py +6 -0
  191. mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +77 -11
  192. mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +8 -10
  193. mindsdb/integrations/handlers/palm_handler/__about__.py +1 -1
  194. mindsdb/integrations/handlers/palm_handler/__init__.py +1 -1
  195. mindsdb/integrations/handlers/palm_handler/palm_handler.py +1 -3
  196. mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +2 -2
  197. mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +15 -14
  198. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +53 -10
  199. mindsdb/integrations/handlers/phoenix_handler/__init__.py +1 -1
  200. mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +1 -0
  201. mindsdb/integrations/handlers/pinot_handler/__init__.py +1 -1
  202. mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +3 -2
  203. mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +13 -13
  204. mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +10 -12
  205. mindsdb/integrations/handlers/plaid_handler/utils.py +4 -6
  206. mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +1 -4
  207. mindsdb/integrations/handlers/portkey_handler/__init__.py +2 -2
  208. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +105 -24
  209. mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +11 -6
  210. mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +1 -2
  211. mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +2 -3
  212. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +6 -8
  213. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +10 -10
  214. mindsdb/integrations/handlers/rag_handler/ingest.py +2 -2
  215. mindsdb/integrations/handlers/rag_handler/rag_handler.py +1 -1
  216. mindsdb/integrations/handlers/rag_handler/settings.py +1 -1
  217. mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +2 -7
  218. mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +2 -3
  219. mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +6 -6
  220. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +1 -2
  221. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +0 -3
  222. mindsdb/integrations/handlers/rockset_handler/connection_args.py +14 -14
  223. mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +1 -0
  224. mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +6 -5
  225. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +2 -1
  226. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +16 -16
  227. mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +1 -1
  228. mindsdb/integrations/handlers/sheets_handler/connection_args.py +1 -1
  229. mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +7 -6
  230. mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +38 -41
  231. mindsdb/integrations/handlers/singlestore_handler/__about__.py +1 -1
  232. mindsdb/integrations/handlers/singlestore_handler/__init__.py +0 -1
  233. mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +1 -0
  234. mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +3 -3
  235. mindsdb/integrations/handlers/slack_handler/__init__.py +3 -3
  236. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +100 -6
  237. mindsdb/integrations/handlers/solr_handler/connection_args.py +7 -7
  238. mindsdb/integrations/handlers/solr_handler/solr_handler.py +2 -1
  239. mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +2 -1
  240. mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +3 -2
  241. mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +1 -0
  242. mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +1 -1
  243. mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +15 -20
  244. mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +4 -4
  245. mindsdb/integrations/handlers/stabilityai_handler/__init__.py +1 -1
  246. mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +0 -1
  247. mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +8 -10
  248. mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +2 -2
  249. mindsdb/integrations/handlers/strava_handler/strava_handler.py +4 -8
  250. mindsdb/integrations/handlers/strava_handler/strava_tables.py +22 -30
  251. mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +3 -2
  252. mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +11 -27
  253. mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +1 -1
  254. mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +4 -4
  255. mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +25 -27
  256. mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +8 -8
  257. mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +1 -2
  258. mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +5 -5
  259. mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +21 -26
  260. mindsdb/integrations/handlers/trino_handler/trino_handler.py +14 -14
  261. mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +2 -4
  262. mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +7 -8
  263. mindsdb/integrations/handlers/unify_handler/unify_handler.py +9 -9
  264. mindsdb/integrations/handlers/vertex_handler/vertex_client.py +1 -1
  265. mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +11 -11
  266. mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +11 -14
  267. mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +9 -11
  268. mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +0 -1
  269. mindsdb/integrations/handlers/web_handler/web_handler.py +1 -0
  270. mindsdb/integrations/handlers/whatsapp_handler/__init__.py +3 -3
  271. mindsdb/integrations/handlers/writer_handler/evaluate.py +1 -1
  272. mindsdb/integrations/handlers/writer_handler/settings.py +0 -1
  273. mindsdb/integrations/handlers/writer_handler/writer_handler.py +1 -0
  274. mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +5 -5
  275. mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +26 -27
  276. mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +3 -3
  277. mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +0 -6
  278. mindsdb/integrations/libs/response.py +67 -52
  279. mindsdb/integrations/libs/vectordatabase_handler.py +6 -0
  280. mindsdb/integrations/utilities/handler_utils.py +15 -3
  281. mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +0 -1
  282. mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +0 -2
  283. mindsdb/integrations/utilities/utils.py +3 -3
  284. mindsdb/interfaces/agents/agents_controller.py +164 -1
  285. mindsdb/interfaces/agents/constants.py +15 -0
  286. mindsdb/interfaces/agents/langchain_agent.py +16 -4
  287. mindsdb/interfaces/agents/mindsdb_database_agent.py +101 -2
  288. mindsdb/interfaces/knowledge_base/controller.py +25 -0
  289. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +13 -10
  290. mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +434 -0
  291. mindsdb/interfaces/knowledge_base/preprocessing/models.py +54 -0
  292. mindsdb/interfaces/query_context/context_controller.py +66 -10
  293. mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +190 -0
  294. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +92 -0
  295. mindsdb/interfaces/skills/skill_tool.py +202 -57
  296. mindsdb/interfaces/skills/sql_agent.py +205 -17
  297. mindsdb/interfaces/storage/fs.py +1 -0
  298. mindsdb/interfaces/variables/__init__.py +0 -0
  299. mindsdb/interfaces/variables/variables_controller.py +97 -0
  300. mindsdb/migrations/env.py +5 -7
  301. mindsdb/migrations/migrate.py +47 -7
  302. mindsdb/migrations/versions/2025-05-21_9f150e4f9a05_checkpoint_1.py +360 -0
  303. mindsdb/utilities/config.py +331 -219
  304. mindsdb/utilities/starters.py +13 -0
  305. {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/METADATA +641 -695
  306. {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/RECORD +309 -288
  307. {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/WHEEL +1 -1
  308. mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +0 -1
  309. {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/licenses/LICENSE +0 -0
  310. {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/top_level.txt +0 -0
@@ -1,11 +1,27 @@
1
- mindsdb/__about__.py,sha256=fgszsf1fQ3wdqen-zsbCIiCvv-94qebnHJUI9h-Q1Jw,456
1
+ mindsdb/__about__.py,sha256=qdyLrPJthOack70IzRcKOJ9is1w28JD60cFxanFX8sQ,456
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
- mindsdb/__main__.py,sha256=4sBR3Md22Ry4iLKcqiN5BtfdgDE15BRFnz48wM4fCjE,22859
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=f_mrZH_CzlBbNQqOjlHsAcwnYwTrCFlqS6LM944LTAc,79867
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,12 +30,12 @@ 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
37
  mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=q6Mu80zwL7yoA1HstiVHm7jQMrspQQdVnjiPSW8KTek,8472
22
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=pTPPjSaAI4IuSNdz4xpbguZoxRt7WBNMhvsffalowvw,11907
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
41
  mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=_lIL6h8rTXYBzpLQBi_-IjR2BmCoNERafhdI4AYGoFY,16750
@@ -28,30 +44,30 @@ mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-
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=Y6eHxlw1bP9FY7ktECDFGYv2Qz6Lc8s1I31rwKKI1Wc,34788
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=OLDgmacimWQAVup3AwBbWu4BYiL65Bk3JkwekTAMWBo,17233
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,25 +75,25 @@ 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=DSj6m1mgNay3JNYwWsmvQ1-CKy0xfc8e8TkYMU-Wzlw,16605
78
+ mindsdb/api/http/initialize.py,sha256=eZvMgyqYQRbbuykjwVmxxX3LFz6mkFZ2HE8zMQepKEM,16813
63
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=5MyWZ40VCVoeHNF46DhIu-gQ2TDU_EJiqSEtc9n1oX0,4290
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
98
  mindsdb/api/http/namespaces/tree.py,sha256=_lWGp4wrX19GnqVD36U-ZmZiHfMIwlSAf9fIUYc9LYg,3812
83
99
  mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
@@ -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,7 +170,7 @@ 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=Onj9IlD_lZgm6Wc5IE2aW9YXzTIOQrkk7odT-mSKU_k,35694
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
@@ -162,9 +178,9 @@ mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py,sha256=TxhoWB
162
178
  mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=uUOaAJfmSIcZYLT4dppnbRun7Uawd5x_09bJfIN2EUs,1003
163
179
  mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
180
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py,sha256=a8Gi2hcTPYSTtqscMcEW2R-1Qu_YmMcP1CN9DOfavo0,6246
165
- 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
166
182
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py,sha256=OusdXUJI3gD62ewP4z3UH_VHrbfX7u2eSwDdL7Z0Ois,1550
167
- 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
168
184
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py,sha256=uG8HKkYSbFRadDOu18OVDhV7wgGy-dXwTYFXxgwRqDg,1097
169
185
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py,sha256=V6eXSr2NuRjyTjF25D5o9jG0_0R1Ry1nGJ6W2-NCMww,2982
170
186
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py,sha256=I5kuON2Jh7V8k7o5xxeO7IUII6-DsGrYrrmkgiMMBBE,5765
@@ -180,21 +196,22 @@ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py,sh
180
196
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py,sha256=ykZJyhvw8iDq8CwVHW0RW5SWbTbfqyX1aD9dOo5Y9MA,1494
181
197
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py,sha256=cm2f1fjPy0nfKWCPARMvq92smMij_X4WTjOdxRlMXOM,521
182
198
  mindsdb/api/mysql/mysql_proxy/executor/__init__.py,sha256=U4cWmxMMtOYdK4a3OvSyy-VzICWiURroIAKMKMoRcnM,38
183
- 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
184
200
  mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
201
  mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py,sha256=k5ZmduhQW2E3Mf_jns-dyVLsRxXUAJE1b3Qbr1FkHKo,4116
186
202
  mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
187
203
  mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
188
- 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
189
205
  mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
206
+ mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=T8mSSBo-jaYrUMjAgVPkJtGwkEpS3U6nCbFUI87ySf4,13060
190
207
  mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
191
208
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
192
209
  mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
193
210
  mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
194
211
  mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=Nus9OqgLaNd43iPQ3ses49muyi6CtQMBDY0V8GQeJGE,19360
212
+ mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=D5B-lpuAggWkq9Aw81ngJGMl7rzMmoT04bw2CIXecv8,19323
196
213
  mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
197
- 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
198
215
  mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
216
  mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
200
217
  mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
@@ -230,13 +247,13 @@ mindsdb/integrations/handlers/airtable_handler/tests/__init__.py,sha256=47DEQpj8
230
247
  mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py,sha256=qeo4RXcD1tUekJBWy80FCzGkcZnUMujaAlpjpzug_dY,1072
231
248
  mindsdb/integrations/handlers/altibase_handler/__about__.py,sha256=ZY1RPt9CD2wMP8RGsKLZs8NbEl9Yy53kPc1RzMmvMYY,342
232
249
  mindsdb/integrations/handlers/altibase_handler/__init__.py,sha256=rK6V3BzcoGDJjd35j9KDF61YYex00gztc2aD7HlzM0g,604
233
- mindsdb/integrations/handlers/altibase_handler/altibase_handler.py,sha256=bmMqX9KFb4D8yFCKmS0M0cZONa18LuI_lVgW3d0CmAs,8469
234
- 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
235
252
  mindsdb/integrations/handlers/altibase_handler/icon.svg,sha256=J257YKU1qoLHhxcrgHRI87TsbsUCgdnM-GBc2UEa318,182
236
253
  mindsdb/integrations/handlers/altibase_handler/requirements.txt,sha256=twiDQB9BlXYcOCWeh7dfpnk6_mGveQJ9vAiOpCMWLpU,18
237
254
  mindsdb/integrations/handlers/altibase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py,sha256=lMhjT8Zd_L1nWVRAV3VzQ25jThqVfxAcQW6xGMp1i38,2025
239
- 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
240
257
  mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py,sha256=IBOgrwQqNcJL_VvH1XsVRAUSveSxBBH5ua4ahQa_plo,377
241
258
  mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py,sha256=UYxqRaBOgLmT8uZOu4iVQbW821ZdsrPrYeBaMBu-9nY,518
242
259
  mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py,sha256=1WC6r2vUVCuRWzXIvaUVZMLKPr3m5g7OlfbsCJKXE74,7556
@@ -244,8 +261,8 @@ mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg,sha256=q8G2Qws-
244
261
  mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt,sha256=JP68nJ1w5HbQlikWyYDNhFb8fpC66xbOkBv7_C-3lbE,39
245
262
  mindsdb/integrations/handlers/anomaly_detection_handler/utils.py,sha256=X6mKCvRvIsRWhefL6KxJBRKbsYEJKMPGnZ7N28717JI,649
246
263
  mindsdb/integrations/handlers/anthropic_handler/__about__.py,sha256=BOpGrNVVqgxZkoDI7YdR8TAulmniOiheh3NlVVD1OEM,354
247
- mindsdb/integrations/handlers/anthropic_handler/__init__.py,sha256=vDmuCqYx-DtIhKdTs86wprg1W06qFMGu6l0opqagQOc,589
248
- 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
249
266
  mindsdb/integrations/handlers/anthropic_handler/icon.svg,sha256=YqBanC9E0WpQAEC9e8LgOF1vu5S5r58iHox3rBk6fxY,328
250
267
  mindsdb/integrations/handlers/anthropic_handler/requirements.txt,sha256=Q1rkpICQCgBQcAmOyBWXu0r3h7-OvO7-nYVbNjjUtE0,18
251
268
  mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py,sha256=jFauECyixaq2FZz0bUE1RcO6-dyCn70YjM_TOFp4bYA,372
@@ -279,7 +296,7 @@ mindsdb/integrations/handlers/athena_handler/tests/__init__.py,sha256=47DEQpj8HB
279
296
  mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py,sha256=0K7WV2fEX5DF6PSVVWOkqhZT7j_E9RvU36Yq92n8BLA,2362
280
297
  mindsdb/integrations/handlers/aurora_handler/__about__.py,sha256=c03paiA025o6lc11MIXcPMdmWFGW5mSCz6rHAbGayo8,365
281
298
  mindsdb/integrations/handlers/aurora_handler/__init__.py,sha256=wxUTZ0jcSk4363zRWZrUxdneaxLmpClLrBm3lVn3_6k,603
282
- 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
283
300
  mindsdb/integrations/handlers/aurora_handler/connection_args.py,sha256=Stt-pEG6p3wwJ85Qd9EqMI8o_9kUo-XqDMb3jIP_Eok,1932
284
301
  mindsdb/integrations/handlers/aurora_handler/icon.svg,sha256=R4hw2PSmlsmPyQ2460GBGichg7rhwvIWCQmt2kN8-zk,690
285
302
  mindsdb/integrations/handlers/aurora_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
@@ -299,8 +316,8 @@ mindsdb/integrations/handlers/autokeras_handler/icon.svg,sha256=EBz7nZ-VyXT7Ps3e
299
316
  mindsdb/integrations/handlers/autokeras_handler/requirements.txt,sha256=Tt8vuUUNRP6fvafQQ7E80xO-kcZnzGWn6Zdasxb2swQ,21
300
317
  mindsdb/integrations/handlers/autosklearn_handler/__about__.py,sha256=5MLlCXNdhytRAHGaROfNZ6ZIS9u8bKFoYtSeDG1jvEI,359
301
318
  mindsdb/integrations/handlers/autosklearn_handler/__init__.py,sha256=KSndjfPj1fG_m1lFEEC_W4CR0PEphrtj-x4r-Fg-Stw,562
302
- mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=hyfSKZGR_bMxgKLkGoQQ0XFLWevdAbtI-rmlJqlek1k,1684
303
- 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
304
321
  mindsdb/integrations/handlers/autosklearn_handler/icon.png,sha256=kbcEAnyOFO2mj20-godaONlkzrtK-3Oj-yhQ-kX1O78,15729
305
322
  mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=M80gYwMHVvAlFBJKtarluQacFmr6etbrUQgKjoX_hNM,32
306
323
  mindsdb/integrations/handlers/azure_blob_handler/__about__.py,sha256=qDGv39-0a0ze7k1E3MzW2O_5IMJmXOxzITb1MB8Vslg,365
@@ -318,16 +335,16 @@ mindsdb/integrations/handlers/bedrock_handler/settings.py,sha256=cG_SWH0PfQ6o-ev
318
335
  mindsdb/integrations/handlers/bedrock_handler/utilities.py,sha256=hx8mzWLApZIV-mgp_CJM8qj-X51gX9-hcTXdGxE5fSs,1184
319
336
  mindsdb/integrations/handlers/bigquery_handler/__about__.py,sha256=hRxU4C7TM6ssU3oxS89oDVFfx-p_Wjj_jNh_Y6vq544,349
320
337
  mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNicKAh4FLIX2TX_v6ac2r6djxr_5d9WI,612
321
- 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
322
339
  mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
323
340
  mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
324
341
  mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=l8BgEzlWWL_88GeLfV3Dp40Am3DUNuDlVkgnH9jJccM,131
325
342
  mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
326
- 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
327
344
  mindsdb/integrations/handlers/binance_handler/__about__.py,sha256=sRDhFENBpGgEy14erGnc-_KecQcR6O7yAGSUIY_ZWfQ,348
328
345
  mindsdb/integrations/handlers/binance_handler/__init__.py,sha256=Bpc_CzIOl54rF2k4VXWOsTi5vp5NcdWnDVKbnD79nJI,484
329
- mindsdb/integrations/handlers/binance_handler/binance_handler.py,sha256=ddjhQl-IwuyBlj5qw-j_H4dGD1B3mfhn9de5A-MY-v8,5322
330
- 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
331
348
  mindsdb/integrations/handlers/binance_handler/icon.svg,sha256=POoCRcSxpPDhqcDIQtEzugAi_Ib4H6zwIbB7uEqZVl8,1020
332
349
  mindsdb/integrations/handlers/binance_handler/requirements.txt,sha256=1c_Bkv-FK_40YWyOZvBIAHG73Hw7h3RFc14N1XWLPcU,17
333
350
  mindsdb/integrations/handlers/box_handler/__about__.py,sha256=5Tc5cScsS47jvOk5sFEL34M2YKY7yy7bifRpYeEkcTA,329
@@ -337,7 +354,7 @@ mindsdb/integrations/handlers/box_handler/connection_args.py,sha256=QJqJgDe9RrzD
337
354
  mindsdb/integrations/handlers/box_handler/icon.svg,sha256=LhDX_Yikte5esxe9qOtHNn4dk1VT_PsiPcx3UAe1gew,1383
338
355
  mindsdb/integrations/handlers/box_handler/requirements.txt,sha256=FQc6GqJL5eYYA9-oPcRQbmJR0HrSmnSz-5Q82yiR2sE,11
339
356
  mindsdb/integrations/handlers/byom_handler/__about__.py,sha256=5MMwfPjVWxerbcXI564QKIUaYW43COokSWU8KBBlOEg,330
340
- mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=Z7tZblShNgUwwbfWQrhQGIGJOcAIaJKd5TaWmRTk64c,503
357
+ mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=vp4o5UA9txxJSa9RLE8UwioAR5yFOnnZHtxHX5XuBag,502
341
358
  mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=uI-UN2XLx7jAx7PxqOO_vlWcluUpPJJ4GEYZ5jP9jno,24818
342
359
  mindsdb/integrations/handlers/byom_handler/connection_args.py,sha256=chqPtpiEBtko8kxS15ImkZ6Q3kuhv7vwOzV3JeyU4cU,522
343
360
  mindsdb/integrations/handlers/byom_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
@@ -361,14 +378,14 @@ mindsdb/integrations/handlers/chromadb_handler/settings.py,sha256=X2InXMtGB5rwTg
361
378
  mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
379
  mindsdb/integrations/handlers/ckan_handler/__about__.py,sha256=asp1VEDXJCLipP3uoPK7Q_qXIODhH89pJqQyjv6P3WE,337
363
380
  mindsdb/integrations/handlers/ckan_handler/__init__.py,sha256=ERm0z1dxntDJfeAyYMKbzmKB48LmZC03o_g5gh9GXC4,621
364
- 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
365
382
  mindsdb/integrations/handlers/ckan_handler/connection_args.py,sha256=ZSr6LCPYAGfwWl0lB8K9j7AsbzgUNNG4i8TvpyZtc6g,721
366
383
  mindsdb/integrations/handlers/ckan_handler/icon.png,sha256=bak0o_aTqEg7quWFRGvTt_0jKfLu5JupRjVQ7Zj45R8,8453
367
384
  mindsdb/integrations/handlers/ckan_handler/requirements.txt,sha256=OA1uNuLzCdHtHEXFxGFdMnbGKYTrLWl9AmOFLtBvlUM,7
368
385
  mindsdb/integrations/handlers/ckan_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
386
  mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py,sha256=k6FNozFZw3Sy6VeL-HU1l_nvLe4XFbeeLYRIFbXvRy4,5210
370
387
  mindsdb/integrations/handlers/clickhouse_handler/__about__.py,sha256=bcgP1184NBCWVD8DSJ18Y-BR2vvT4ESzhOa9fHQVC7E,347
371
- 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
372
389
  mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py,sha256=wYrIRuxSwcWpYtMiVOPpZmiV_iX6gBWiZ7SfaZuMbYI,5608
373
390
  mindsdb/integrations/handlers/clickhouse_handler/connection_args.py,sha256=vLcdjuhOT8N4eFLlz5WBUaC9IF53uztuEnzYaDd0eoU,1594
374
391
  mindsdb/integrations/handlers/clickhouse_handler/icon.svg,sha256=KIUu8bJwUyhJQArja0Vf8nEKsLnskVSnIwe6V5DDA1g,387
@@ -387,10 +404,10 @@ mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py,sha256=5G
387
404
  mindsdb/integrations/handlers/cloud_spanner_handler/icon.png,sha256=401gDIndTS_b_1KzDnoqgSpzEjZBLTA91-yU6KRWISA,75313
388
405
  mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt,sha256=SxP9VNIudLA-kKwZF57LeWjWaGEyhnUJQIa6mtq_Swg,39
389
406
  mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
- 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
391
408
  mindsdb/integrations/handlers/cloud_sql_handler/__about__.py,sha256=yhGv3W7rjxMgWatT6V36PqpaQ6o-y-acgfqHItqxl6c,366
392
409
  mindsdb/integrations/handlers/cloud_sql_handler/__init__.py,sha256=c7KlYhFuWKlu52Com-cwTTPoX0QP19Qdzf0K5rBQyTM,614
393
- 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
394
411
  mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py,sha256=5KIYS2P555wodGUezO8xT-kLcLRTCTFT387EeM6r3Kc,1278
395
412
  mindsdb/integrations/handlers/cloud_sql_handler/icon.png,sha256=ySspFcclAbho0P_mFb57wAnawtk92XToRRHBlO7BmJk,27975
396
413
  mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt,sha256=nUotYA64SxizF23uAEoMqvbWsNJNehQeNEikI25wdVk,128
@@ -404,8 +421,8 @@ mindsdb/integrations/handlers/cockroach_handler/icon.svg,sha256=wmbJ8ohZjonsKFBz
404
421
  mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
422
  mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py,sha256=27akhmCYkbVtYP4rxb5wBnresmg90jC8Tu2C4Z-kUJM,1187
406
423
  mindsdb/integrations/handlers/cohere_handler/__about__.py,sha256=X4Et6UwjebxXaX6dkXcvmTgd4QtfDZPCzT7izAiN6i4,345
407
- mindsdb/integrations/handlers/cohere_handler/__init__.py,sha256=-Hf005uTMDYyZKQUcg-GwpN5HpwliDxzggjfWMi-wEA,542
408
- 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
409
426
  mindsdb/integrations/handlers/cohere_handler/icon.svg,sha256=kEpvJyEbO4rn816mPouHGZpz00aCQSsDsggX7W91GPc,1163
410
427
  mindsdb/integrations/handlers/cohere_handler/requirements.txt,sha256=3t7MDeOrgNzjAXw6oE0wZrb_Z7ja8xPmy1PkozpBsvc,14
411
428
  mindsdb/integrations/handlers/coinbase_handler/__about__.py,sha256=xTttDB5JtPIrUnMfXLTqyoL4hPocuAAqKuy9LJPaoiA,349
@@ -419,7 +436,7 @@ mindsdb/integrations/handlers/confluence_handler/__about__.py,sha256=0U9j9CfAa3m
419
436
  mindsdb/integrations/handlers/confluence_handler/__init__.py,sha256=68yvHlrf7xrRjrOqkzYIXfr4mFEQKs2GtCQKBhvuuWU,646
420
437
  mindsdb/integrations/handlers/confluence_handler/confluence_api_client.py,sha256=pyMVsQwSB-j03AP5RXgFQxyEE5hK3aIkmiW2pwOZJo8,5512
421
438
  mindsdb/integrations/handlers/confluence_handler/confluence_handler.py,sha256=BntGCIyGcZQAe8Uz8TZZsXP3Bs9g4hb6pEtoWNMg4zs,3381
422
- mindsdb/integrations/handlers/confluence_handler/confluence_tables.py,sha256=m0MEItwvz2Xj7J0NECKvHgKJFphsUrtdOplNABvyDaI,24079
439
+ mindsdb/integrations/handlers/confluence_handler/confluence_tables.py,sha256=p11oz0xtvzZp1Ug-f9WopyjqO9HAe7xeE9RYCImAHJQ,24085
423
440
  mindsdb/integrations/handlers/confluence_handler/connection_args.py,sha256=RZOuI3CbJ3VZmWJ5SDQ2vgppFRF42FUhfNAfpHgEdVM,852
424
441
  mindsdb/integrations/handlers/confluence_handler/icon.svg,sha256=Piz_ZFABS16FgHfePv3-6yBU2c-h7yeX1bZ5JXFJ_Fk,2500
425
442
  mindsdb/integrations/handlers/confluence_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -455,12 +472,12 @@ mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py,sha256=47DEQpj8HBSa
455
472
  mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py,sha256=e1WXfEqrL9i5nKh4ezJscNhq6tPenu9bIC8XlhCh1U8,1687
456
473
  mindsdb/integrations/handlers/databend_handler/__about__.py,sha256=7JUx-OSm5Mchr34W5b1uhO-dk8Zcv2S4QsEajk6_8yk,348
457
474
  mindsdb/integrations/handlers/databend_handler/__init__.py,sha256=CC0lyRAxEqvn8NFb6_S5fAcxEHQl0j6yLK74dOfdMkQ,604
458
- mindsdb/integrations/handlers/databend_handler/connection_args.py,sha256=TxJUFN8JBEHe3OlGHgFxYtkQ7IhjP8SWrzWuFqD4Xhg,1103
459
- 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
460
477
  mindsdb/integrations/handlers/databend_handler/icon.svg,sha256=oNgKNWZpC3VrRF06IfAfxPCDqegdb_pbVLrHHJmfsgk,2675
461
478
  mindsdb/integrations/handlers/databend_handler/requirements.txt,sha256=Gep4uTns63iLl3hVM8uvDdVRu6WHxHHE9E4F1drJEQY,19
462
- mindsdb/integrations/handlers/databend_handler/tests/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
463
- 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
464
481
  mindsdb/integrations/handlers/databricks_handler/__about__.py,sha256=_DJsf3lXMtRb-c9tlUQesBW5_Vinsvd7uGjcDHaQhwE,363
465
482
  mindsdb/integrations/handlers/databricks_handler/__init__.py,sha256=go72eMqUWKLj4j7wnUbf3znTL4TQXrLfc1hTpxBxumc,675
466
483
  mindsdb/integrations/handlers/databricks_handler/connection_args.py,sha256=tdHFSNaXlAUFkM-FX7cMXEfdF6UtEgcNPSaRhFXuSUg,1885
@@ -486,26 +503,26 @@ mindsdb/integrations/handlers/db2_handler/tests/__init__.py,sha256=47DEQpj8HBSa-
486
503
  mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py,sha256=Ozp6YSf2ixihKGg-JS_7SJjoG9mgMYhrjMSijtjoNFE,1439
487
504
  mindsdb/integrations/handlers/derby_handler/__about__.py,sha256=TuqZrWJwnJT68J4uDLsQRbr59rDeT2R-ljATO9fh_0I,351
488
505
  mindsdb/integrations/handlers/derby_handler/__init__.py,sha256=EhaDomgWqB_JLo761BIMh0YsvOKP5KUT9Em4zZ9u12o,603
489
- mindsdb/integrations/handlers/derby_handler/connection_args.py,sha256=WQa1eZFFGzEcWEbUYn6HK87UTYcb6WBJQbV2rUogWHI,2046
490
- 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
491
508
  mindsdb/integrations/handlers/derby_handler/icon.svg,sha256=Q571Chfv-Mo8BM6S1-pNZFBY-FjpZmTAnQ0R0pes7ZM,2278
492
509
  mindsdb/integrations/handlers/derby_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
493
510
  mindsdb/integrations/handlers/derby_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
494
- 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
495
512
  mindsdb/integrations/handlers/discord_handler/__about__.py,sha256=wxrgI1w9DRxdDHlBX68xY1pIJqFt4Bks-Ea1hTGfviQ,342
496
513
  mindsdb/integrations/handlers/discord_handler/__init__.py,sha256=SyPHPhB_V079zA_cyXCj45ei6lichsPqRP10LyBr8fk,511
497
- mindsdb/integrations/handlers/discord_handler/discord_handler.py,sha256=7IZnygHlBsCMIcFYSVLmUvsQW5-BJCTI3IPrrGzc9i0,5600
498
- 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
499
516
  mindsdb/integrations/handlers/discord_handler/icon.svg,sha256=BzH2QWqsSOjWBf1H7nJys7koDyV6BsSMheyK1i0hMgI,1330
500
517
  mindsdb/integrations/handlers/discord_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
501
518
  mindsdb/integrations/handlers/discord_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
502
- 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
503
520
  mindsdb/integrations/handlers/dockerhub_handler/__about__.py,sha256=UcCZ97wGHWne4UosDBcpGWtvSKQ5lsmBSqrMto-f6bQ,347
504
521
  mindsdb/integrations/handlers/dockerhub_handler/__init__.py,sha256=abNDl-TCh_MZlLgtZ7YK79j6qnXSMH1TBbXljxBjNFA,641
505
522
  mindsdb/integrations/handlers/dockerhub_handler/connection_args.py,sha256=X-mvTlTXI4dZeE8PcjVbghQpDaa8Cg5D3XUvMGYn4i8,572
506
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py,sha256=4xb08iI-B0YpiDbOzC-urzInQSM9BE-DoATJNu8Is_U,2277
507
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py,sha256=bJWYNLM3fwUvrWY-QSt-a6hIwmCJoeHJBOWRLME60mk,3661
508
- 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
509
526
  mindsdb/integrations/handlers/dockerhub_handler/icon.svg,sha256=50v7YRsy6q8H58p7CMNSAN7LwKzRGifEIgblLev4s3c,3562
510
527
  mindsdb/integrations/handlers/documentdb_handler/__about__.py,sha256=Rt-G8q9KTwAaFdsfTKRieXvp7JnaJGPJUe2WeLGocgw,350
511
528
  mindsdb/integrations/handlers/documentdb_handler/__init__.py,sha256=i3J0cPOg7QqkP15-2seahXI1xILvPthpmxClhqAq1d8,620
@@ -513,7 +530,7 @@ mindsdb/integrations/handlers/documentdb_handler/connection_args.py,sha256=ajm9e
513
530
  mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py,sha256=oJi8FH59c0jyZ_6Lxj7KygC_koXA110EC3m-k16gbqw,1378
514
531
  mindsdb/integrations/handlers/documentdb_handler/icon.svg,sha256=pKDMFy1Ivlwa6Bp2_SEiCF5HQoGy4c6wtd9XfdOI2Is,3512
515
532
  mindsdb/integrations/handlers/dremio_handler/__about__.py,sha256=Q_m7a8g1uswUxT09spU-FGLw3c4fIsBKsBlC4iLZFLU,351
516
- 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
517
534
  mindsdb/integrations/handlers/dremio_handler/connection_args.py,sha256=3PIE05Jl7mkF_9KL_Kjx0rwjpZI5U7vpYq2ojd5BgYk,814
518
535
  mindsdb/integrations/handlers/dremio_handler/dremio_handler.py,sha256=pSuaEZCCn8hsVCPYGKXScbkVPmLfPC-hlQR6HANGCyk,6798
519
536
  mindsdb/integrations/handlers/dremio_handler/icon.svg,sha256=fs5ugLp1d0xMQUoAHcOV-5XEX6u0uADR_GC1A0SBjIo,5946
@@ -529,9 +546,9 @@ mindsdb/integrations/handlers/dropbox_handler/requirements.txt,sha256=dRcFk9VZ8i
529
546
  mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
530
547
  mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py,sha256=M6jrM1f991HCRQC15KlNm5xZ6TN1fpkGzut8ZGM8RZk,611
531
548
  mindsdb/integrations/handlers/druid_handler/__about__.py,sha256=psafZg7bMoHnSdx4ThYNV5hFZiq1Y8ZB06SqzAPvabw,362
532
- mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=NLIjL_lH0cVF7PV3jaE76Lv9CJXYskuNVWRC9S98tow,598
549
+ mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=eUEHsfHUYrqYnNzj_YKHAYQb8iDTdRkoamLITQvEEMM,599
533
550
  mindsdb/integrations/handlers/druid_handler/connection_args.py,sha256=dlwEAIswp5kkBIiHGXGe_AkI06W6RukP5QPT4BxKvoI,1401
534
- mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=prguxSB2AmoeVkCxCtIsHe7_OGNqFGfRE3Ahxrn1FxI,6405
551
+ mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=ln1kMx7CvkBlRUwY9ykBtJX57yWGt4CWPU1mBmWu6Y4,6406
535
552
  mindsdb/integrations/handlers/druid_handler/icon.svg,sha256=ak7qaXWafkb6MvCGtG5wAfVcffKNuARcUtF74uqVDEw,2823
536
553
  mindsdb/integrations/handlers/druid_handler/requirements.txt,sha256=dahrkIufqj8IX1uzmprfLUzgIAKmeJYmrvcEhwOpdJI,8
537
554
  mindsdb/integrations/handlers/druid_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -566,7 +583,7 @@ mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py,sha256=fR
566
583
  mindsdb/integrations/handlers/edgelessdb_handler/icon.svg,sha256=bkgVNzOgmtUSz3_9P74YBBLE5577nQlcHqJLKpy8d_8,742
567
584
  mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
568
585
  mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
569
- 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
570
587
  mindsdb/integrations/handlers/elasticsearch_handler/__about__.py,sha256=yRczUDJEBZh4uQfJodmmmSLc-W8Ytk5HkpXK7Ev2VeY,363
571
588
  mindsdb/integrations/handlers/elasticsearch_handler/__init__.py,sha256=ExwZlMAOr1ODX3ihoCeME8on-tzmb2ENRLipG5xzlhA,659
572
589
  mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py,sha256=G7VApBaBz8GNzxY7TURE_UpLs6x8knlfywa5tyzWTXo,1296
@@ -577,13 +594,13 @@ mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py,sha256=47D
577
594
  mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py,sha256=CVTDvLoshAP-JZbuc-Sc3xWNKvtarxUTE6U0NZYRpqs,1107
578
595
  mindsdb/integrations/handlers/email_handler/__about__.py,sha256=_gKp2yLFTagL1ArgnqbFmG_9ESO4dCQl3Ze3UEI2KMo,333
579
596
  mindsdb/integrations/handlers/email_handler/__init__.py,sha256=uzS0asjT5GArzwJQ5T6WjAEcg154q1zcSaThn_uhWK0,492
580
- 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
581
598
  mindsdb/integrations/handlers/email_handler/email_handler.py,sha256=ZskExJjNT3FVlpgSJReKvAgFoQsMwy_niX6u-7IV7P4,2722
582
- mindsdb/integrations/handlers/email_handler/email_ingestor.py,sha256=uBHhhK1ffAb4RK77PblUQrfzUuCnMh3lcOIuBVDfApI,3385
583
- 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
584
601
  mindsdb/integrations/handlers/email_handler/icon.png,sha256=3gOB-brv6-jfOqqkCxW-loNPKNgj326ixKoiqEOHxsA,32416
585
602
  mindsdb/integrations/handlers/email_handler/requirements.txt,sha256=d2_KpNooVtDHqxLWDNluZrthOh9Fh8zieJvvkJWzV8c,12
586
- mindsdb/integrations/handlers/email_handler/settings.py,sha256=H-c3-h01gHjDLwbqdiMYq2MsoWrk4yz6t0LbC16UygA,1642
603
+ mindsdb/integrations/handlers/email_handler/settings.py,sha256=TXagY4NDBGg38PP5Yi1nxwPQ7dMnwqv8FazXVrNCsFk,1641
587
604
  mindsdb/integrations/handlers/empress_handler/__about__.py,sha256=IRkXh-2mR6-bdwmnZuuDPcLpVTPpZPefflnuNYkrs6o,399
588
605
  mindsdb/integrations/handlers/empress_handler/__init__.py,sha256=332JGOh5TY7yl2rKrKVyHTnZapqM4iD5Y5tWfahL6h8,609
589
606
  mindsdb/integrations/handlers/empress_handler/connection_args.py,sha256=frb3E7UmeJhviNF60G4sW1XeZIYei0YiK1_4hG1UamA,1173
@@ -600,7 +617,7 @@ mindsdb/integrations/handlers/eventbrite_handler/icon.png,sha256=gJdi1iZr7NJlgsN
600
617
  mindsdb/integrations/handlers/eventbrite_handler/requirements.txt,sha256=tkujt3jIsMXBs5zpqLJSvKSMxs0F1sFpxWNr-uN3ozo,17
601
618
  mindsdb/integrations/handlers/eventstoredb_handler/__about__.py,sha256=IkNIOvJEgwl45RZfbzqonIIDgyU5XzWGsfgtK0hWp8g,359
602
619
  mindsdb/integrations/handlers/eventstoredb_handler/__init__.py,sha256=25J3hSo3__Z-XpLuEuVGFtFp9DO7UYw9piixPkt1kPQ,523
603
- 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
604
621
  mindsdb/integrations/handlers/eventstoredb_handler/icon.svg,sha256=IAuS_Ev-9EYH7H9lhrBC3wdN8IycizZGohiB4kyqeeU,2404
605
622
  mindsdb/integrations/handlers/faunadb_handler/__about__.py,sha256=pOnuQTkQK37OzOgA_r71Gzfpc6F0SIPnu-VHTv0w3yk,337
606
623
  mindsdb/integrations/handlers/faunadb_handler/__init__.py,sha256=8y_tC2s3Bqr8uGFQiwSC3-gIjATv242SPjJGZP0eHCo,656
@@ -626,21 +643,21 @@ mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg,sha256=nx
626
643
  mindsdb/integrations/handlers/firebird_handler/__about__.py,sha256=XsNT56zjORbC-Zdl6JZ7PSHrm80LPHjKmVgYJ_BjLy4,357
627
644
  mindsdb/integrations/handlers/firebird_handler/__init__.py,sha256=aH6jiir9NpFnFtsM0X-z-m6ifrE3oLDEbHVrcDw_RRg,624
628
645
  mindsdb/integrations/handlers/firebird_handler/connection_args.py,sha256=dnksNcYLtaOJWi_knMO5TaRMAduRgNUYXDSNYa3eylc,976
629
- mindsdb/integrations/handlers/firebird_handler/firebird_handler.py,sha256=FWPzt9f2qyzYkgcg3jst8B85ieNAhHR98VB20VMtqnw,8672
646
+ mindsdb/integrations/handlers/firebird_handler/firebird_handler.py,sha256=SclABBqp1wvsFes8fBFOXAHXlhe0reR14qHlQ0q0uig,8671
630
647
  mindsdb/integrations/handlers/firebird_handler/icon.svg,sha256=krIiRyzwtZf8wzdt3QQhFMBAZ25JwgJF6mGJm8ku7H4,4207
631
648
  mindsdb/integrations/handlers/firebird_handler/requirements.txt,sha256=8uUhkMD0GvdwVt6WhNaBVVBeiedhNEHNdkTXZJudoDA,41
632
649
  mindsdb/integrations/handlers/firebird_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
633
650
  mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py,sha256=Hkjr4lz0oWzUupvaT-1-DXaCxQMNFwFdz1VBu_2tJ1w,1243
634
651
  mindsdb/integrations/handlers/flaml_handler/__about__.py,sha256=vQJvUYCSJpM2L_K3BpZIf2wPg0O6gwMZb8hwtGDFJEk,338
635
652
  mindsdb/integrations/handlers/flaml_handler/__init__.py,sha256=MHYGvpWtU8o5izMpv4d0CxBIamoCmP-J9Ti5bq_f2-I,531
636
- 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
637
654
  mindsdb/integrations/handlers/flaml_handler/icon.svg,sha256=L5ADXk0pRN8VFCYew_jeJXjVTP8etzLQsUwAjjuPwIA,3096
638
655
  mindsdb/integrations/handlers/flaml_handler/requirements.txt,sha256=YbK2xIvGKGeFqBEel014cWFzfgwukPKcloTX4ar3Bpk,32
639
656
  mindsdb/integrations/handlers/frappe_handler/__about__.py,sha256=NPBXQAHQGMUoAxc3L0e5Cu_CnccWeyyPEVLe1jNwe4o,345
640
657
  mindsdb/integrations/handlers/frappe_handler/__init__.py,sha256=JTd4ltTHkkVOmZuitOz2GpA3S_cZJxDmlp3A18imeUo,480
641
- mindsdb/integrations/handlers/frappe_handler/frappe_client.py,sha256=gBcMlUf-Gj8Jkj0Ggv-WZ3t9eoWroUigzCFI12hrWGY,4374
642
- mindsdb/integrations/handlers/frappe_handler/frappe_handler.py,sha256=hI6s-rBRS-GV8RLKDiS5sWWYLKZ--2vsgK-50tZ2iLo,7976
643
- 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
644
661
  mindsdb/integrations/handlers/frappe_handler/icon.svg,sha256=UsWb6k9kIQ1zO4xkf8GM_VaW6xGs_Xb_f1I9TuitBSI,920
645
662
  mindsdb/integrations/handlers/frappe_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
646
663
  mindsdb/integrations/handlers/gcs_handler/__about__.py,sha256=A4HdOx9Tf186tzO0P3Z-qanuiBQwHnS0VNPLzuf-fzY,345
@@ -652,22 +669,22 @@ mindsdb/integrations/handlers/gcs_handler/icon.svg,sha256=56wtNuOB923CuGU-TPsYRx
652
669
  mindsdb/integrations/handlers/gcs_handler/requirements.txt,sha256=zLZXjAKF7BzZXlUq0fXrTQqzUsxV1nO_fsHaXTSowF8,46
653
670
  mindsdb/integrations/handlers/github_handler/__about__.py,sha256=bDVOGS37C6HVRgSOekhxUcvW2Eg0Z5k2bq558mUM07M,339
654
671
  mindsdb/integrations/handlers/github_handler/__init__.py,sha256=ov-CvC4-1IbwvuKykY7i3wJxHnYenbU8KtNZUSRzB-0,629
655
- 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
656
673
  mindsdb/integrations/handlers/github_handler/generate_api.py,sha256=GRIhxpUKQ_zazZDWqiUWu_fdXOztKF6c4ne1AgjE3qg,7089
657
- mindsdb/integrations/handlers/github_handler/github_handler.py,sha256=6Xk5piMuafTvfPGvJ5U0WabE4W_Je75nZVUlfzMeRvE,3795
658
- 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
659
676
  mindsdb/integrations/handlers/github_handler/icon.svg,sha256=c1j3IrEwYsGXPwW-hjZDpOceLhVCW_0tT8Aba5PdF5c,1198
660
677
  mindsdb/integrations/handlers/github_handler/requirements.txt,sha256=BJz2OYblSD2RZAV7csj2UIyRfuSQmstGWB3flUgFOk4,16
661
678
  mindsdb/integrations/handlers/gitlab_handler/__about__.py,sha256=2uH49-_UriKLYrfBa8yIU6j1L9Bxpyp5Gqm7zsTT7eA,341
662
679
  mindsdb/integrations/handlers/gitlab_handler/__init__.py,sha256=MleI0P8FKMYzbzd_XPkTbCjT1_Ub21hreu56QhXQuy8,481
663
- mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=fSj7r7irmC2WEOWGKM9An3V-gs-U1Ub5HommbwPdBDs,2575
664
- 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
665
682
  mindsdb/integrations/handlers/gitlab_handler/icon.svg,sha256=bQ1whEb3IObHqMiZAHomuekYicpYFVnD7W0y-4JyzKc,1995
666
683
  mindsdb/integrations/handlers/gitlab_handler/requirements.txt,sha256=1W6ZjjUzciSZ0BX4yJ7C54BWdhWYLCw5ASu-VQohWro,13
667
684
  mindsdb/integrations/handlers/gmail_handler/__about__.py,sha256=uj5U9JF0CynCH3ZE858VyDrJUiFgnTSZQcIbEhwnMbw,355
668
685
  mindsdb/integrations/handlers/gmail_handler/__init__.py,sha256=2Ed7Pfbdz56spFnl9WGf1vcRdL73LBjBr5lG_-dje38,540
669
686
  mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=ICSjOPrCxpOQEpXLkyjm-osa-9fhm_tf77iekhqAsTo,780
670
- mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=IEsMHrzgyWEiiLYN1oJGOg4uEtvqw_1TdwoaJE98JuM,18088
687
+ mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=V0T4Mrm30Fb8kkBSjktV1NkJYE2ezDsawZ2n5uugMmo,17746
671
688
  mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHrma_Ho8dyXNTAgXnQK25hYD4,862
672
689
  mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
673
690
  mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -682,8 +699,8 @@ mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py,sha256=
682
699
  mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py,sha256=cHXwGAuWmuroN-x_b0YKWgGD4ax0Vad3V4xzgHDgqSU,1815
683
700
  mindsdb/integrations/handlers/google_books_handler/__about__.py,sha256=O5UgmDgG_LDRCZi_Jyc4wZLcYsWzPL6BJIkRFxjm2Do,379
684
701
  mindsdb/integrations/handlers/google_books_handler/__init__.py,sha256=6qKoU8qvFL6a-GPqPW_IPa2IYIhQJzOuf2T8AKOKM6A,504
685
- mindsdb/integrations/handlers/google_books_handler/google_books_handler.py,sha256=_GGQMKamWOaTpKn0NS-A27RNjfYVKvRoefm74Y-xZdY,6901
686
- 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
687
704
  mindsdb/integrations/handlers/google_books_handler/icon.svg,sha256=PNUyfFJEaEAgCxmomXG_1SYW9VaSF5zilZi6X9Xuhls,962
688
705
  mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
689
706
  mindsdb/integrations/handlers/google_books_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -691,8 +708,8 @@ mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handl
691
708
  mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZz9sTlrSoW5FIUbFZqmW4WD1BNe-66IC1hj6Vs,388
692
709
  mindsdb/integrations/handlers/google_calendar_handler/__init__.py,sha256=ms_QDVhQf3b_jnweJXDVAUFYuyKkPb6JgEfGEzJ9uzA,580
693
710
  mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=HL1g-EYFULOoR3l874dFRmPGeP5bl0fNwRTftYDeF84,780
694
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=o-iXM8SNuRmoFxJJt8RlRVMqhbjqSYlT3xALifsZLfw,10851
695
- 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
696
713
  mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
697
714
  mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
698
715
  mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -700,16 +717,16 @@ mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar
700
717
  mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py,sha256=kUidXzaoLPxNOiywhLPrUFjG4JZl8krOHzS0QMWl7Tg,424
701
718
  mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py,sha256=5WMq9JHkNT9EHmedLyt5wru80V2NxMeNSvemsiTpUEk,662
702
719
  mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py,sha256=NdwKKW8VAMNiInueKkXoX0QP8Fu9ECXq0tTBdpGc_Zo,563
703
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py,sha256=iRAdruNYOo7Qo7_RxccRD9sO35hZp1RUUgYneLoLAkM,15706
704
- 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
705
722
  mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg,sha256=q8FcSns7BbYLiMtErVngNMkLGXbjxeeP8IuKIGhKKJA,2651
706
723
  mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
707
724
  mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
708
725
  mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py,sha256=0yOsRSpKCGiHAKpe9m7g7HENYY2vcCPVk6sP1k5wLsI,2436
709
726
  mindsdb/integrations/handlers/google_fit_handler/__about__.py,sha256=f6IFxoETFim29W0z7BPQG57SWBNyy838DTuBY_68I6k,358
710
727
  mindsdb/integrations/handlers/google_fit_handler/__init__.py,sha256=ZzcJSVhfMTx5CqAjRCydCB7Mc2ERPT7GtQ8FOtZkXFQ,495
711
- mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py,sha256=w2tKHb9SR6bvH_4-Xys-Xzpep7vWgxVKnHt-8sZI6vA,6619
712
- 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
713
730
  mindsdb/integrations/handlers/google_fit_handler/icon.svg,sha256=3ZgBVbln5KXnYpVLDTbYDGfQp_hUGW3W0GJGVJUjQ98,1511
714
731
  mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=XAgJL2biwLXpTpn7NBWXVYxtpUTh0zKHFm2bgjhXAWU,80
715
732
  mindsdb/integrations/handlers/google_gemini_handler/__about__.py,sha256=6wu9JKGI5scaFTcO59kcrQ1F6ooVaaPeS3-sYxOYojI,374
@@ -720,8 +737,8 @@ mindsdb/integrations/handlers/google_gemini_handler/requirements.txt,sha256=uPpL
720
737
  mindsdb/integrations/handlers/google_search_handler/__about__.py,sha256=EPaDjDJvD7XZjKVF8kcxylyhDldS9MzxcHlkD51hufY,382
721
738
  mindsdb/integrations/handlers/google_search_handler/__init__.py,sha256=w5PUmHFndJkZtMrfrf3ruBtqvE6tNY_SswSBmJowU7s,630
722
739
  mindsdb/integrations/handlers/google_search_handler/connection_args.py,sha256=HShiT9T2GITGncYL8t2PsN8m6PUMQeqjCdn_mizNfY8,408
723
- mindsdb/integrations/handlers/google_search_handler/google_search_handler.py,sha256=IYGAuZUcOKriVkRFCyXPtIgT87rteXnxTYB_qVlpDkk,7682
724
- 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
725
742
  mindsdb/integrations/handlers/google_search_handler/icon.svg,sha256=Dsio_gu-jTENejm6qPAAfAvarnRDUocgqmMtjCuyw6U,3303
726
743
  mindsdb/integrations/handlers/google_search_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
727
744
  mindsdb/integrations/handlers/google_search_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -732,15 +749,15 @@ mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py,sha256=aT
732
749
  mindsdb/integrations/handlers/greptimedb_handler/icon.svg,sha256=Gos2jNeTXp0y9wiFkV_PNR2ZSBuoWOcOani7uDN6zP8,1298
733
750
  mindsdb/integrations/handlers/greptimedb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
734
751
  mindsdb/integrations/handlers/groq_handler/__about__.py,sha256=wnuD05vkrrFPXlJ7AR9f2a88KzcmdSsuLbOisvZdwOc,330
735
- 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
736
753
  mindsdb/integrations/handlers/groq_handler/groq_handler.py,sha256=IbQlHpR-0_6cGNJFlVJbxiIMD9jaz_VP8vShA65PHuQ,4823
737
754
  mindsdb/integrations/handlers/groq_handler/icon.svg,sha256=S923SyjHSrjPJBzvHvYVDMFQYNh9AqjzZtzOd41ePlg,2495
738
755
  mindsdb/integrations/handlers/groq_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
739
756
  mindsdb/integrations/handlers/groq_handler/settings.py,sha256=-ro_v2nGmx_5S3CS2RHAr5f8BvbDN-ACYnpyBsV4dAo,723
740
757
  mindsdb/integrations/handlers/hackernews_handler/__about__.py,sha256=xCBY8u73sc_PHT5gj0PGygqxJkBymwyFlUxb85bC81o,340
741
758
  mindsdb/integrations/handlers/hackernews_handler/__init__.py,sha256=8qw3ZBMLKmpUHE1N2rWeQGCNkGc0Q8EyEfszMoYfGUk,505
742
- mindsdb/integrations/handlers/hackernews_handler/hn_handler.py,sha256=pOAX1Hd5uBMTjvlN5dhbTdFl75KhIrpEYAsBNkVbR44,3722
743
- 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
744
761
  mindsdb/integrations/handlers/hackernews_handler/icon.svg,sha256=w7g3BTaZJroLn0KfbT9SYBtcJMCNws4s3djy6LxIqRc,611
745
762
  mindsdb/integrations/handlers/hana_handler/__about__.py,sha256=lU0KWojOUkMWjzARuZP9qLWn3LblHSjUBuZV8Ewfy1E,341
746
763
  mindsdb/integrations/handlers/hana_handler/__init__.py,sha256=FvP0UIPGS7APeAorBgBe5_QybJ4kKm9E_gdlUCasAFM,592
@@ -755,11 +772,11 @@ mindsdb/integrations/handlers/hive_handler/hive_handler.py,sha256=VziWof6giCClHC
755
772
  mindsdb/integrations/handlers/hive_handler/icon.svg,sha256=g07RaULUyoFzFpk2S9o5cwww__dB8YTS2bGvRtUpROI,17076
756
773
  mindsdb/integrations/handlers/hive_handler/requirements.txt,sha256=KsI9Z7vv9d8vCEOyR4uO8R9I1ZTe84mW6kD0pZwJ-Fg,26
757
774
  mindsdb/integrations/handlers/hive_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
758
- 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
759
776
  mindsdb/integrations/handlers/hsqldb_handler/__about__.py,sha256=8bNNZpNOyuFnwjUzcyXY5PXJRt0TxuaiVn5uGVTJB9Q,348
760
777
  mindsdb/integrations/handlers/hsqldb_handler/__init__.py,sha256=jkLVMUxIKVPD0Wk6_ehi8Vg-jbAts4A2gbFAz3w4qQ8,620
761
- mindsdb/integrations/handlers/hsqldb_handler/connection_args.py,sha256=PJVN6oDs0pjpE8TBW6TCRPK_4gWUi-LBMycqBLSKDc8,942
762
- 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
763
780
  mindsdb/integrations/handlers/hsqldb_handler/icon.png,sha256=OYVUi8q-tKafOg0Evg2GY_UYuGxa9lUJ93KSNfPB464,41120
764
781
  mindsdb/integrations/handlers/hsqldb_handler/requirements.txt,sha256=K8ZUSiKPbTlaT2Yd895mW4_uKNc3k9e_N_Xd0pMc6uE,14
765
782
  mindsdb/integrations/handlers/hubspot_handler/__about__.py,sha256=XoRC9G5UEVYBF2NlqyVqk4H9431bafGacrirhcBPqmA,349
@@ -770,8 +787,8 @@ mindsdb/integrations/handlers/hubspot_handler/icon.svg,sha256=FoLHI5CdLMqZLv_M0P
770
787
  mindsdb/integrations/handlers/hubspot_handler/requirements.txt,sha256=50SL5fyMnNRccXgKNrQ9UW5zK5iiJWYvNK_yXdJhgV8,19
771
788
  mindsdb/integrations/handlers/huggingface_api_handler/__about__.py,sha256=gUWilT75wrd2aRmL3iK3XXI8XjXu4mpun3pcmVwrZ4A,381
772
789
  mindsdb/integrations/handlers/huggingface_api_handler/__init__.py,sha256=Bs6kqNT2-WSRioNS6kcJxl_DQrC0SH9_QuS6APYTGlE,537
773
- mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py,sha256=I_B7veduC6daBX3c-XAGQdlxFKs5In1MwoKy-sDGJWU,112
774
- 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
775
792
  mindsdb/integrations/handlers/huggingface_api_handler/icon.svg,sha256=whd-gZx9HMMl9EvhQk0VK9p45RQD5PiJlv7Le3K3ORo,9064
776
793
  mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt,sha256=VOb0WF-xUjIE1a7j3kUqIAzdFix4_0fp0E8zQK31poo,32
777
794
  mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -779,10 +796,10 @@ mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api
779
796
  mindsdb/integrations/handlers/huggingface_handler/__about__.py,sha256=B1bb52kL0iLViLiewWIK183GOKoe5Q0XJZvD66wXl24,353
780
797
  mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=f-LxhPOlZsXjLDk7kgQZTwX49umR1z9QK2yUB3F5_EU,550
781
798
  mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=gDf5yC-ot2IZdONMIcQ5bEvKMtk-nci5OcSYmvmEGQg,8085
782
- 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
783
800
  mindsdb/integrations/handlers/huggingface_handler/icon.svg,sha256=yU820GpXed8h9CloppHH0D1-EJjrorSLlbjciV91b9k,9064
784
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=BRdNg-JVvnwtNNk-b633J-GJRivCCi_CtStF2SjH3Qg,159
785
- 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
786
803
  mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1dAcKyjEcuK1LSktqK_5tPLJzQGCNTs0GR9CMe8qTvk,984
787
804
  mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
788
805
  mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
@@ -796,7 +813,7 @@ mindsdb/integrations/handlers/ignite_handler/__about__.py,sha256=JCbuC9y4O67kV2W
796
813
  mindsdb/integrations/handlers/ignite_handler/__init__.py,sha256=aOkkbYJsf_Lx8Mchu1P9qcuVlM2l3xLKMgcCFmtJGCE,603
797
814
  mindsdb/integrations/handlers/ignite_handler/connection_args.py,sha256=vUXKE6OGKgOpmfcTO-btzDxiU6T6lJo0hbKkL8kxDNI,1432
798
815
  mindsdb/integrations/handlers/ignite_handler/icon.svg,sha256=cWiLZ9OhSr8xaQOdvWA7olhSTVMVhosFecqhgkeOpvo,761
799
- mindsdb/integrations/handlers/ignite_handler/ignite_handler.py,sha256=oJwGiZuZLR6WI2Qo8KrKjDg-ZIf7njfIKz5fjKwRV7I,6191
816
+ mindsdb/integrations/handlers/ignite_handler/ignite_handler.py,sha256=gsOG4vcXuORIkG9ia0ecTkZsCFQ57IGWDBHffiaCiqs,6191
800
817
  mindsdb/integrations/handlers/ignite_handler/requirements.txt,sha256=m7u5LbpqU24wb5b-DIZwt5JrhUEA89V3rEJpCxvOo5s,8
801
818
  mindsdb/integrations/handlers/ignite_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
802
819
  mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py,sha256=XB8VKfVcSogqCH0qLLuHFtKv9zvJijl8ppyodDa0bh8,1013
@@ -804,28 +821,28 @@ mindsdb/integrations/handlers/impala_handler/__about__.py,sha256=QGCeIOj7d-zhiZ2
804
821
  mindsdb/integrations/handlers/impala_handler/__init__.py,sha256=UUqzynhwjdtR3C15SlEk4l1gWmcY2rwRZav4A-u6mBg,603
805
822
  mindsdb/integrations/handlers/impala_handler/connection_args.py,sha256=7kEss06khoj028LHa5BJX_J98AzHWa6XsSHJl4bxhKM,1014
806
823
  mindsdb/integrations/handlers/impala_handler/icon.svg,sha256=7B1XK3fvSTD9Qgt0BPC1VVZ3mT4-VJDee9-a5i5SLpM,3532
807
- 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
808
825
  mindsdb/integrations/handlers/impala_handler/requirements.txt,sha256=zcKPuzs5i3hgQysOipGvPtdT9AeSdLXZ6CVeAOJ9vIk,6
809
826
  mindsdb/integrations/handlers/impala_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
810
- 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
811
828
  mindsdb/integrations/handlers/influxdb_handler/__about__.py,sha256=egazk3dcKssZ-2IAe9Eg8Jt_3XHrp0biwnhxdViaPP4,350
812
829
  mindsdb/integrations/handlers/influxdb_handler/__init__.py,sha256=-ElkaT108WoD5ubpZn0RM8aMRsi76JejqEUlzHc_sZA,514
813
830
  mindsdb/integrations/handlers/influxdb_handler/icon.svg,sha256=pSGrm1cPk9DkoVdTNlX2gLvVYiWc14tpB3W6MVx1_zw,2681
814
- mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py,sha256=sgTyWPCrqbNs8BbDM7RGOly6jAkcduZiPsGeocJzVnI,3053
815
- 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
816
833
  mindsdb/integrations/handlers/influxdb_handler/requirements.txt,sha256=pnabyssMXTG6qyb-zFqe_n7PO62qTbVqCuAGGRsy5zM,16
817
- mindsdb/integrations/handlers/informix_handler/__about__.py,sha256=L393rkaVbfovY3vNSN2co7ByMS8DxYWzqLC9gy4ZimI,354
818
- 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
819
836
  mindsdb/integrations/handlers/informix_handler/icon.svg,sha256=tDk36rxKSHxTWTgjJMKr2UZArLv52AVO55WwycxMRcw,3200
820
- 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
821
838
  mindsdb/integrations/handlers/informix_handler/requirements.txt,sha256=5FT1SNHRoxRCeEJzbulBeqnF3nwaE3yLbEmzbe07qYM,20
822
839
  mindsdb/integrations/handlers/informix_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
823
- mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py,sha256=RI5OpLzSnk-tzejdGvjfGLPgjfnvyAXQHaaimHViXws,1702
824
- 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
825
842
  mindsdb/integrations/handlers/ingres_handler/__init__.py,sha256=CqmW9XrhEWgtP4p3Bzl-iHCbfbij1ymARg2RYxpNP4g,616
826
843
  mindsdb/integrations/handlers/ingres_handler/connection_args.py,sha256=JPOvqMtKn8kZC9rCkVTYJKa-wMXg4AC3sAncUioRmXM,984
827
844
  mindsdb/integrations/handlers/ingres_handler/icon.svg,sha256=0uFQrEkfHJjg5zryeUMvmiLJu_js5XtpI6bwu_QJBxo,2321
828
- mindsdb/integrations/handlers/ingres_handler/ingres_handler.py,sha256=Kx2CM7i7Dwb05CaJU40HNhyZ0j-jdqtVGSzz5l7xsmg,6629
845
+ mindsdb/integrations/handlers/ingres_handler/ingres_handler.py,sha256=ULIQIY2OCLHqAyIkNnwchGxrHIloXxcWMqmK7Vnki9g,6631
829
846
  mindsdb/integrations/handlers/ingres_handler/requirements.txt,sha256=XxjyLM894_H9S0ORs3IwhWw8N4TN8pKZ7G3h834U6J0,30
830
847
  mindsdb/integrations/handlers/ingres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
831
848
  mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py,sha256=QOZsHp3SYvlH71sxXseQa63teRSukAmV44svwxObA_s,1817
@@ -843,11 +860,11 @@ mindsdb/integrations/handlers/jira_handler/__about__.py,sha256=qP5rGBzzyFBTJnGNC
843
860
  mindsdb/integrations/handlers/jira_handler/__init__.py,sha256=-WxcLvQvLWii6lNY6-nlNwwkMBSMg8n97pleTAflrQY,509
844
861
  mindsdb/integrations/handlers/jira_handler/icon.svg,sha256=mv8Ee-sh3YbNrGHgdQdgazMICVjU1StIu1Y41H9SjRc,1246
845
862
  mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py,sha256=UXlwCX728lR_YZg4ipb7hkCyUcH710nIpPirR7s_xdA,2266
846
- mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=9ruKV-RRjQWTfrx8bRCg64_cvYifwytmfjihNGy0p8g,5365
847
- mindsdb/integrations/handlers/jira_handler/jira_tables.py,sha256=_9ZfQwQkH4z5ZIW0oJ3KX_90FIVsTr72xK7bQXw4-pw,7419
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
848
865
  mindsdb/integrations/handlers/jira_handler/requirements.txt,sha256=vVWJtxeUJEMAttQBlw2Sd7la-QjEo7Vb1yfIKWighOs,20
849
866
  mindsdb/integrations/handlers/kinetica_handler/__about__.py,sha256=t4T3AR68hK91GASSzoP8aWSbbtmszFC0-i7Nb8UVIgs,344
850
- mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=xGpX3Z4sE32AqOPHJ09Vhh-9tvjusZACBCAUwTv8hDI,683
867
+ mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=A7cHYBXBpQUOqwEEmdbt93bnTbkRq37w_C5VKYxtpZA,605
851
868
  mindsdb/integrations/handlers/kinetica_handler/connection_args.py,sha256=3AaekEw24nX7mmRsqrYfs0M4jCVQ4VvdRHQDFRBosxs,1682
852
869
  mindsdb/integrations/handlers/kinetica_handler/icon.svg,sha256=nx3pfKWVp3gcwAxzVjosbSfjkciYSOBuNlhYXXsrg60,758
853
870
  mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py,sha256=ilRmQSwjeyOcHJNQgZYy1Mr3ZHtVcbRjX5kAsW4Au9Q,327
@@ -869,11 +886,11 @@ mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py,sha
869
886
  mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkObedPPwbyNl9tB0ygJN6qj0aPwPYI_fqc,345
870
887
  mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
871
888
  mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
872
- 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
873
890
  mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=X3GMk6YUemVSiVvr0Rd2P2HerVhXFeL84yzrBgAiWHk,238
874
- mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=lb0zKsVpTafWi5QSVTbQ0hgvVx1Yr1rLg_i6rTHcVsQ,11385
891
+ mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=61Akpoh4m2cRJR7TV5tCChQzr-C0oSdDXJajcVIcAqM,11066
875
892
  mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
876
- mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=qoDI2PYu2Kw5TapUlHC1QUIfufxvzuJ1RpLBEpd_woE,512
893
+ mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=BUu04qSc8FUVVXAlsAV74Dc4AppYJbuA-FiWd8ncciY,511
877
894
  mindsdb/integrations/handlers/leonardoai_handler/icon.svg,sha256=KEKKFuyndNcw3pjatLgw2HL8qfoxTyKU1fl4821j04E,99151
878
895
  mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py,sha256=O5QAZPLnotBtYWCZC8kIM11nMK79vBy09AFIZxWWHIc,8339
879
896
  mindsdb/integrations/handlers/leonardoai_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -901,13 +918,13 @@ mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=byOltfkHeB
901
918
  mindsdb/integrations/handlers/lightfm_handler/settings.py,sha256=0iwjsbfzYwBsCizVymXn-vwhOYrES7Hm0MEmiviGP4I,143
902
919
  mindsdb/integrations/handlers/lightwood_handler/__about__.py,sha256=9SiT20BQuKEgzGSxhDunieyX33S5XS0cst9MxDfw-1o,345
903
920
  mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfef9lCHd7293J6GEEZRXLP5Jp07KkvOc,504
904
- mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=WkeI0J19WPh_36wZvezpnV2SW6wc9tEkumKil3qTB-4,9139
921
+ mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=p3FXxafjrwa2Af6xkMO3MCOVLWxZEWfAmEu1sx0qIb8,9056
905
922
  mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
906
- mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=hCqycB1NzQi33gXvpigy4Q1IYy-z2sCq6Eq4UiMXOro,23607
923
+ mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=UuN1FUZrB292qZjGriQEbPly7vGBd8S-7DVNjqZAWRA,23596
907
924
  mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=jEN0TN09G2-yFrr5FSEMjEVZFnkoS7nu2lJrJdjVBLI,91
908
925
  mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
909
926
  mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
910
- 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
911
928
  mindsdb/integrations/handlers/lindorm_handler/__about__.py,sha256=2V9KbVFWmQ2v98va5Rz1dpmhgDWOZAYOF-wCy3cDQx0,338
912
929
  mindsdb/integrations/handlers/lindorm_handler/__init__.py,sha256=jZNxAhQpnXT6u7E72ZFPugYsbH5Fw-TH_JbHWRDWEY4,534
913
930
  mindsdb/integrations/handlers/lindorm_handler/icon.svg,sha256=Zj6gBi36Sf8YPQP0mYWr0YMznOeHdMNECasW_-C4o7g,1293
@@ -924,9 +941,9 @@ mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84
924
941
  mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
925
942
  mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
926
943
  mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
927
- 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
928
945
  mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=xoOq5UyUuLyAbii-dIMeUoLts_iloEsv6qM9KBe4cvs,101
929
- 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
930
947
  mindsdb/integrations/handlers/ludwig_handler/__about__.py,sha256=5pC8567sj_ZZW70dm7Chkc4He6-F8l5oUKE1W9V98Ck,343
931
948
  mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7rK_zPFFAIHGjEsGR_rc2FK8r8HyM,536
932
949
  mindsdb/integrations/handlers/ludwig_handler/functions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -953,42 +970,42 @@ mindsdb/integrations/handlers/materialize_handler/__init__.py,sha256=qmqjhRT_tlQ
953
970
  mindsdb/integrations/handlers/materialize_handler/icon.svg,sha256=eW4-LaqQNx5EafDYyIQ5Pbb5BRukc_ucVznSaNl9kxI,2689
954
971
  mindsdb/integrations/handlers/materialize_handler/materialize_handler.py,sha256=Rcrm-agBunQvS169phBqcAYjaPdbf-Z5k_4ewChaadg,1285
955
972
  mindsdb/integrations/handlers/materialize_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
956
- 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
957
974
  mindsdb/integrations/handlers/matrixone_handler/__about__.py,sha256=KOZEaZHRuygfVIaMa6eLg1JVc1Q1I29NTMUKEcUeWyQ,349
958
975
  mindsdb/integrations/handlers/matrixone_handler/__init__.py,sha256=L03K4CVKdm39mrmHsU69VSlUvcMTWwFyS6hm3JVMIUc,608
959
976
  mindsdb/integrations/handlers/matrixone_handler/connection_args.py,sha256=opm2teKIjCkiu3g_y7yBhVSfDjhm-1AWQ2k1M3tQWcw,1514
960
977
  mindsdb/integrations/handlers/matrixone_handler/icon.svg,sha256=cK7b_17ULqrgVpt25DIxysj66Uvy7NavFgCsFIVztpg,1573
961
- mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py,sha256=RFsD2MRP5MVuVsTBy8Q5e17hGoR4e87k4X28nAYqdvE,5421
978
+ mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py,sha256=1tlj7hJb4yCtIrhlO3aFE410RjFECa1BNLeW-2KxiAs,5426
962
979
  mindsdb/integrations/handlers/matrixone_handler/requirements.txt,sha256=IKlV-f4o90sOdnMd6HBvo0l2nqfJOGUzkwZeaEEGuRg,8
963
980
  mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
964
- 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
965
982
  mindsdb/integrations/handlers/maxdb_handler/__about__.py,sha256=nDz8qDfeQKaF0HKC9IVxYyHlOrXTsL7n9jbn195frF0,355
966
983
  mindsdb/integrations/handlers/maxdb_handler/__init__.py,sha256=XCc-TQtkecXdDnYN7_vq_Fy4ZB8SJOJTf0bKpDTjOxY,629
967
- mindsdb/integrations/handlers/maxdb_handler/connection_args.py,sha256=3Rzv8MuVqOD8zTj07nwMgjQDwT5i2dsSMeBYyoOnzHs,1297
984
+ mindsdb/integrations/handlers/maxdb_handler/connection_args.py,sha256=EklXmJRXp3dyPLoicbdCLat7jXRZosQBkf0cVMFQON8,1197
968
985
  mindsdb/integrations/handlers/maxdb_handler/icon.svg,sha256=7jODNJNSaNSUNoYan37vYjmlcxW_vKEjihtAlYALfvs,2141
969
- mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py,sha256=fKViKO9Dkc6Camu1kA8SkAEsxkXFSSG99pFuoitAUGY,6273
986
+ mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py,sha256=k39A9Doq0bfP1puBRjaNCGmGYaVAKh730uNSN3EBT0M,6274
970
987
  mindsdb/integrations/handlers/maxdb_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
971
988
  mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
972
989
  mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py,sha256=SCan0bNQflgAI8TkLaB2fDthVvLD782hfKjk5MBVZe8,1905
973
990
  mindsdb/integrations/handlers/mediawiki_handler/__about__.py,sha256=Im8ti6Uspe9wQMPKlL-vIDcpbn1fnK6fpIGP1OafMxI,352
974
991
  mindsdb/integrations/handlers/mediawiki_handler/__init__.py,sha256=v8i-YPI6G8RTEoHBWYmo8dOotG5GjMW2wO_J9LAbNF8,519
975
992
  mindsdb/integrations/handlers/mediawiki_handler/icon.svg,sha256=Z4jCs-VpTi_pE42tWpR17KMnsqCFqLdRo1xohIQ03jw,18250
976
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py,sha256=Xj4jVCsBhPbm3QocNCuZCTOX94RmBhoHxVwi25yaeG0,2170
977
- 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
978
995
  mindsdb/integrations/handlers/mediawiki_handler/requirements.txt,sha256=f-jsIxP6w7iNJXPZPprQWJt8TJdUF8t-rd8LPI6BdGI,12
979
- mindsdb/integrations/handlers/mendeley_handler/__about__.py,sha256=9spcYcoyqEO9kYdtueEGSPLqKliXKsA6q4yQ_mPFzFY,351
980
- 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
981
998
  mindsdb/integrations/handlers/mendeley_handler/icon.svg,sha256=Y23EUrpYDjFkcfS3Skymo95cljxFfvWmFxpgC6pEmqY,2721
982
- mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py,sha256=tQTh25nlhV3jkC5NDEh_PhCsi9WRVChVA6VGQwN9wRM,8684
983
- 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
984
1001
  mindsdb/integrations/handlers/mendeley_handler/requirements.txt,sha256=5NtTuM0F-GT1vXQ9TOHefy9jOMekxjCj1CTE_4R77H4,8
985
1002
  mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
986
- 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
987
1004
  mindsdb/integrations/handlers/merlion_handler/__about__.py,sha256=GTZx3ozWF2-uL8K-jkgoTQfa1oubMo6cta8q9_KUr28,340
988
1005
  mindsdb/integrations/handlers/merlion_handler/__init__.py,sha256=Vnsx6LfB2MjP74BOFz3hh9gwx9mUwCcGE8pa59rU5WA,496
989
1006
  mindsdb/integrations/handlers/merlion_handler/adapters.py,sha256=AHJTqMaeZccLdSPJJL8-z_7hW9yvWduKsKMx7AmagVw,8498
990
1007
  mindsdb/integrations/handlers/merlion_handler/icon.svg,sha256=aKxzmbIlD4LQFGcK88UjXGKw4e6ijOe3y0h3JiebtCc,2657
991
- 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
992
1009
  mindsdb/integrations/handlers/merlion_handler/requirements.txt,sha256=LVD7uiS37M3s5euOJpdQ9PMWMSup4fa4l6SWkYZjx3k,40
993
1010
  mindsdb/integrations/handlers/milvus_handler/__about__.py,sha256=x0vzyNeIFW7xPkANac4OjathpNcegTJGSKntWMgejE8,337
994
1011
  mindsdb/integrations/handlers/milvus_handler/__init__.py,sha256=taILRcHeskllVItoKEXNbBBEHaxL4s3naNmx7p7Jt6Y,651
@@ -998,7 +1015,7 @@ mindsdb/integrations/handlers/milvus_handler/milvus_handler.py,sha256=m4RZFC2rgJ
998
1015
  mindsdb/integrations/handlers/milvus_handler/requirements.txt,sha256=wP47AN-TxIWEvcmbiJPpShjUYg5dl2MMzdsoO_ZxmKo,14
999
1016
  mindsdb/integrations/handlers/milvus_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1000
1017
  mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py,sha256=y5XNkeYH2InRNiN_9DRnVCOBy79mX99W9wVffmFeo2Q,349
1001
- 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
1002
1019
  mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
1003
1020
  mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py,sha256=sNWU03rca17GkgdMi_UFEuzo6ATDqwIe2k1uJZuRC0g,4757
1004
1021
  mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
@@ -1008,18 +1025,18 @@ mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_h
1008
1025
  mindsdb/integrations/handlers/mlflow_handler/__about__.py,sha256=RwGes8LTCMNXSgxng8eFSvVnQdYuM3f8fBdooQ_WW6U,336
1009
1026
  mindsdb/integrations/handlers/mlflow_handler/__init__.py,sha256=xSY2LlXwQe30h_8sHSjqIDyrUON4jV6xaUHj7qO8fZs,579
1010
1027
  mindsdb/integrations/handlers/mlflow_handler/icon.svg,sha256=-K-ZAaguq8fBoIUzBtmPjmfFQYneuoqaF4E1tMPox5w,1154
1011
- 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
1012
1029
  mindsdb/integrations/handlers/mlflow_handler/requirements.txt,sha256=wm8UqYyUHI21EvrTDHb3eYICy0dOVDLBhAL-jp5zbuI,7
1013
- mindsdb/integrations/handlers/monetdb_handler/__about__.py,sha256=6wVwdwZ96Sf1BfKwotS8FpPtdp_ewwd5TiOmDH6qp6Q,343
1014
- mindsdb/integrations/handlers/monetdb_handler/__init__.py,sha256=BrZ71DgILOJ3OTpU7kCeQmzG1JkaWnW_7XfYkxsp9es,600
1015
- 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
1016
1033
  mindsdb/integrations/handlers/monetdb_handler/icon.svg,sha256=_Yrcx_2YctQ_UYUCha5xUxo8AF2gJhMXSKXajROJbhA,611
1017
- 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
1018
1035
  mindsdb/integrations/handlers/monetdb_handler/requirements.txt,sha256=3fXn4kTvoUNAZ3Lf65ApFHB4tCgYUVXY_rOEiHKc7sw,28
1019
1036
  mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1020
- 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
1021
1038
  mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1022
- 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
1023
1040
  mindsdb/integrations/handlers/mongodb_handler/__about__.py,sha256=umKxXuUAypdohvLd96NtqFO1JJ8Wjl6xqOo2W0jOcA4,339
1024
1041
  mindsdb/integrations/handlers/mongodb_handler/__init__.py,sha256=iENrcoLHevbky-eZHcnKRqyZbg3DvPmSMlQtf1KyshQ,601
1025
1042
  mindsdb/integrations/handlers/mongodb_handler/connection_args.py,sha256=kqrTEM14g291rR0SlgsNyHc-leRuSIw2fi1iLR0oQbI,1347
@@ -1029,54 +1046,53 @@ mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py,sha256=47DEQpj8H
1029
1046
  mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py,sha256=764dX8lCUGjkoZgu8CXvVvg9SuLXiMIuspQV0cxX07Y,3868
1030
1047
  mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1031
1048
  mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py,sha256=W1LzgaH60dJr9HWhgIY6P3EttuttOPxcozNQvEY9azk,8923
1032
- mindsdb/integrations/handlers/monkeylearn_handler/__about__.py,sha256=5h1Isb76xRHtMCTrsge8OMOHSt5UDspcxHxiRYj50FM,355
1033
- 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
1034
1051
  mindsdb/integrations/handlers/monkeylearn_handler/icon.png,sha256=RuKBcb_iTZoldGb3U5GDxemB49E9ALC8uZbIoMY54BI,14734
1035
- mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py,sha256=8lcomJA8gF88XPmk8sMu7rVnO_EMXsQL_Ob5IfwGTog,3565
1036
- 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
1037
1053
  mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py,sha256=rUQ0p9bqHSjpEgXe9T-Hq-bfGrMHIU5Rmiwt-orDOCk,369
1038
1054
  mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py,sha256=vraI6WlfpNk0C_D0wQH7Wxxy7zpI57rOp2t2XPgHuSk,533
1039
1055
  mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z2hQUMEyyP8DUmhgUtjvsfN3HU2EBes,2430
1040
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=wncgJ7BXsFNRMn3aJLhtwZIaDCeoeHdBpCmg_dzm_Vg,3516
1041
- 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
1042
1058
  mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=rBD6sEli8XP-cxTogFu2J7ScO_WTw1gM-6gZm2P8lsc,2802
1043
1059
  mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt,sha256=8R8PuNfdoud8HqxiFGWQGPxloaJqw_qmF0a8blYJPIs,89
1044
1060
  mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
1045
1061
  mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
1046
1062
  mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
1047
- mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=QBB_0aQKbjTq0Y9nHX9Xk3QTRF4Bp-owHrkpxHj4SAg,15855
1048
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=yljq2o0ajFCP_Nnxhe6iG033l_L8VRXKPl_iQIlquLI,9827
1049
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py,sha256=zsrQCrqSKt5JedR2T1q89NvCoZUvD46-3bzWAeXaVs4,13072
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
1050
1066
  mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=6jx_GtaB_5uRpqmcNBJwBgPzPMMe9ygj4bRLE2zkwCw,130
1051
1067
  mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWRxOrMuktBneTm9JRLeGkZiSSH-EQ,363
1052
1068
  mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
1053
1069
  mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
1054
1070
  mindsdb/integrations/handlers/mssql_handler/icon.svg,sha256=CMPDc66jCYyao_ui5eRds92raysDIMNuhIs59Tvbk_8,11944
1055
- 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
1056
1072
  mindsdb/integrations/handlers/mssql_handler/requirements.txt,sha256=U59auV3ZAxBGXdMbyXxdRI3LTfCICvZVZWKWMnLUlwA,17
1057
1073
  mindsdb/integrations/handlers/mssql_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1058
1074
  mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py,sha256=gh8t3ft5Xy-EZ3Rfk1oopojQTrbc_DDE-uAlWpeH-8E,6010
1059
- mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=UCFLhlYJ-_DenwFcqPKiVUA8C1-4Q0z1ygM1rzq-TZU,333
1060
- mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=ikcK9oIUFjMfyRDAUKKvb8JQ4Fw-P1zLBeEHo2ZMPY8,592
1061
- 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
1062
1078
  mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
1063
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=KcxIt6OJNbSzyhaGI2TNVIZ-BXY7NMwSKIfq70EQpKg,8288
1079
+ mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=Ck5R0vV9EBbRFifjrVb8BrOEBndryI4o8QCNlmEGNXo,10981
1064
1080
  mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
1065
- 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
1066
1082
  mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
1067
1083
  mindsdb/integrations/handlers/neuralforecast_handler/__init__.py,sha256=0SNrc82F2GXSyAjgTW8hg7w4DeOv_5FRgPpqLXAOJmE,520
1068
1084
  mindsdb/integrations/handlers/neuralforecast_handler/icon.svg,sha256=HKtmkuQG4MUNFXbPtRvDi5E83rEFV9jrCB0dllAY78M,587
1069
- mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py,sha256=QPvqLKu8Jm3ytpuxQ4qHOd5j2ceGjkjVTivqNpqLfRA,6374
1085
+ mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py,sha256=bpkyDASHKXbvK8bLWpqlyap-xmNXc4qYwomqR9VEACE,6369
1070
1086
  mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt,sha256=QqpZHr3q1Sa0nKkAP6wUTL8t09509U_ZM08AzB7r6NQ,47
1071
1087
  mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt,sha256=sZ8ZY1L1kcdEkQh5pFcTdhRv4GFg9d0KhbkNnR1dliw,47
1072
1088
  mindsdb/integrations/handlers/newsapi_handler/__about__.py,sha256=_gzxz-dUmjrc5xXwMJIViKH1OfnYlc7QdhWB2G98TyY,348
1073
1089
  mindsdb/integrations/handlers/newsapi_handler/__init__.py,sha256=IRtuDlckj4oizdLfMnTgg5XPKF0WiJ2t_DqC6qZ8T4c,656
1074
1090
  mindsdb/integrations/handlers/newsapi_handler/connection_args.py,sha256=JWc8heNZZiSCUJwfFZwHwsAyymMPPjvM-4OzYaqXwuo,351
1075
1091
  mindsdb/integrations/handlers/newsapi_handler/icon.png,sha256=wL8QtDMhHOTX34hnWhCK3N0fRnz6HE_OQHJoVWB5wKs,2790
1076
- 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
1077
1093
  mindsdb/integrations/handlers/newsapi_handler/requirements.txt,sha256=ZMZx7R-ofhzidSHeGcVTwBPe4M-2uV2DhgqEzkMggAI,14
1078
1094
  mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1079
- 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
1080
1096
  mindsdb/integrations/handlers/notion_handler/__about__.py,sha256=8PzWcQ8EwUJJP85c0ULZiqA7yJ_ORag4s24Zb_LoCRU,332
1081
1097
  mindsdb/integrations/handlers/notion_handler/__init__.py,sha256=g7OgmHmkIkFSVVRj2p2qC0moiMJojYhR6zeUlICpFPM,575
1082
1098
  mindsdb/integrations/handlers/notion_handler/icon.svg,sha256=SjnxMq53m3RYhjSpFTgCHqsyjfAPug7icx4pDesx_7c,2157
@@ -1094,19 +1110,19 @@ mindsdb/integrations/handlers/npm_handler/npm_tables.py,sha256=MzIZoLtxP8hPbP8iy
1094
1110
  mindsdb/integrations/handlers/npm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1095
1111
  mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py,sha256=-FwuMgPnwPq-V_KO9FYoEF2o3haiPwvrVlJs3q5r0Vw,336
1096
1112
  mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py,sha256=paftrrmbebUGH5cIoDhZa4rZaeC2U30_qMhmx367W9E,597
1097
- 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
1098
1114
  mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg,sha256=ZDedx7Q5AiSvVkgsmUp7e_0nA_pMmV4oIq9PySEwy8U,430
1099
- 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
1100
1116
  mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
1101
1117
  mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1102
- 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
1103
1119
  mindsdb/integrations/handlers/oceanbase_handler/__about__.py,sha256=S_N-F0kLk-rHk5cFhaBoxoefgNyCVROw9m-AhnqIfPg,349
1104
1120
  mindsdb/integrations/handlers/oceanbase_handler/__init__.py,sha256=yu63QADQtwN8sSl-tOm0mmtj6xuQE4y5W3paYwJrwNA,493
1105
1121
  mindsdb/integrations/handlers/oceanbase_handler/icon.svg,sha256=Qn_vch2K3SZ4_AIboy6YJviOh2jy12ayL3wlxqNe_Eo,2615
1106
- 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
1107
1123
  mindsdb/integrations/handlers/oceanbase_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1108
1124
  mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1109
- 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
1110
1126
  mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py,sha256=GRLp7ZSDZhp79nBWuiL2q9iAzXCt2K5ET183uUTURWs,353
1111
1127
  mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py,sha256=QBbvBtdXouX1ycjlnmSe-2s2BQqxjFpN0l405Xav6m0,651
1112
1128
  mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py,sha256=Zs5TByom5GYzon8q6LlpACtwT1LRhtr9oVItLheiTJU,409
@@ -1117,7 +1133,7 @@ mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py,sha256=P
1117
1133
  mindsdb/integrations/handlers/ollama_handler/__about__.py,sha256=iMlpDUjfee6lBQ7ceSf__Idg-1KDWYfN4dlq0LzQuQg,336
1118
1134
  mindsdb/integrations/handlers/ollama_handler/__init__.py,sha256=imwsmeuGX1gkPAzQJR-ZYXKGmV16_yybIWM0PiwALCo,492
1119
1135
  mindsdb/integrations/handlers/ollama_handler/icon.png,sha256=Uetj2OTGPx-taxPKdD33uuVttZO62o9zB1IW6PxiVPE,113588
1120
- 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
1121
1137
  mindsdb/integrations/handlers/openai_handler/__about__.py,sha256=CHoor6pfv6jc7Lfp8SZYiRlHoCwA-QM0PYRqvIRNSEc,336
1122
1138
  mindsdb/integrations/handlers/openai_handler/__init__.py,sha256=2oicF7rVoEJTh-_p_7bpmh3shHYL2zZr4tPj0ZDXeCI,621
1123
1139
  mindsdb/integrations/handlers/openai_handler/constants.py,sha256=szFwNnhFO8g_XJh8DnqxlrmZh9YTkiTiCpvAI0txZak,1356
@@ -1141,9 +1157,9 @@ mindsdb/integrations/handlers/opengauss_handler/connection_args.py,sha256=djyHDw
1141
1157
  mindsdb/integrations/handlers/opengauss_handler/icon.svg,sha256=8BPamScxKmfX5Z8fOLHLfClhLvHOq8bHG8BDzGIUD1s,1758
1142
1158
  mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py,sha256=NnWs_KPO_YwZerErE7pHS-WddF64wwFgjO9ZJ9YgX34,329
1143
1159
  mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1144
- 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
1145
1161
  mindsdb/integrations/handlers/openstreetmap_handler/__about__.py,sha256=3RDQ9NOdLjcvJPu_L2jMUt_8DzBta_xrczUOuTDlc_E,365
1146
- mindsdb/integrations/handlers/openstreetmap_handler/__init__.py,sha256=mqy_Qi3_PKIwgBafNd1KMHRIMt69vvfMLWr8KhRt5Ig,545
1162
+ mindsdb/integrations/handlers/openstreetmap_handler/__init__.py,sha256=n0iCCdhTDJzpgVRTTGpZzNlw0oHWS9mYRfPqmtR8QF0,535
1147
1163
  mindsdb/integrations/handlers/openstreetmap_handler/icon.svg,sha256=5hoDC6qGLkl9sx_MYWHZrPvdInB7AGUNrjDoIOh9Qoo,4496
1148
1164
  mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py,sha256=7WGZ2vPr35ROcXLSYQSkgHspDqJj31mVrvaq_i1gA6I,2657
1149
1165
  mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py,sha256=U8DxNHv0Kiw14qIQBcMRuU8jUJMRZlsKP1IkIiDHgH0,7765
@@ -1152,9 +1168,9 @@ mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py,sha256=47D
1152
1168
  mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py,sha256=Y54Bmy0WEMtWuA8tLEuqYisytrrctanPEFgeuQ_b1dQ,1228
1153
1169
  mindsdb/integrations/handlers/oracle_handler/__about__.py,sha256=IIt4NVwQ52K79l7v7lc4andzcy6iiodvfjlAvQdHiCQ,354
1154
1170
  mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=9U8p9zE7yi32hWtWEQTFcVz5CSgAGlu6E9C-hPf_tBE,629
1155
- 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
1156
1172
  mindsdb/integrations/handlers/oracle_handler/icon.svg,sha256=43yVX7g6fI4SLk9h23xsJvzLl9fMOfiKlQ4aNyQ3yxU,537
1157
- 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
1158
1174
  mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=6My_yqlFsKIvJvanjJc8usHiQ5Ax_rKaHrzNYNKC71c,16
1159
1175
  mindsdb/integrations/handlers/oracle_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1160
1176
  mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py,sha256=TjY4cZHMPUaLyusCTTHCRGC30pXDUqqM2vEjw2UqB1Q,1064
@@ -1164,29 +1180,29 @@ mindsdb/integrations/handlers/orioledb_handler/connection_args.py,sha256=JFKd8Cq
1164
1180
  mindsdb/integrations/handlers/orioledb_handler/icon.svg,sha256=khiifOJbVeBcwWiQwHLp6QMuaX4i5NOTiFZ5ZQW4ECU,810
1165
1181
  mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py,sha256=Zwn-t6gmnTsaV4QWQJ4_A7CWFTLBPmHpxaF0mMk7H-U,326
1166
1182
  mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1167
- mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py,sha256=MpiPmn8cf670a_KX-OJSPdoxQxdkItn6P_m0vV8Cgy4,1747
1168
- mindsdb/integrations/handlers/palm_handler/__about__.py,sha256=bbRNRDg58h_M4aBD6LA5MYKr0XI3RfUy-29ievNUzNI,329
1169
- 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
1170
1186
  mindsdb/integrations/handlers/palm_handler/icon.svg,sha256=Xb82wnFVYT0l5faztB3oTYTfi-rIGkcvRDetK81nbJg,1485
1171
- 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
1172
1188
  mindsdb/integrations/handlers/palm_handler/requirements.txt,sha256=wKp4vDYyCwYpn1Dfpo-ahLr7zCLvydBkK-Hwv3MH52c,29
1173
1189
  mindsdb/integrations/handlers/paypal_handler/__about__.py,sha256=eJUqtTCdMRDCDc0e22MPWbBV53QCuAtSIKmQPgcp0sU,343
1174
1190
  mindsdb/integrations/handlers/paypal_handler/__init__.py,sha256=d5CYHhab_iHFnfz0ZSP9D8C-26K9uN11CCoJ4M0F-Y0,507
1175
1191
  mindsdb/integrations/handlers/paypal_handler/icon.svg,sha256=M6piOj2CGQzqA24es1eEGNqMqNyavUO0JnAQQJo2Xn0,1833
1176
- mindsdb/integrations/handlers/paypal_handler/paypal_handler.py,sha256=2g0hE2VCKL9Jrk7UZUxisFu51wPKPMMnEqStj67XKTo,3803
1177
- 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
1178
1194
  mindsdb/integrations/handlers/paypal_handler/requirements.txt,sha256=-j6LjRFgj3aSEEyaARzXn95dQjJxjtyXRX0uKOGKSUg,13
1179
1195
  mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8BhcEkBX8zHZASRKHTsD04JnTTYyFaWA5A,345
1180
1196
  mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
1181
1197
  mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
1182
1198
  mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
1183
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=IvIeivzzWfmCcLRpJUmNEh1LvCJKYHX0hM1CH95q0Jg,20811
1199
+ mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=2Z_lEXByoLC2jluoKP1lD0YJn3PVpLnMDSXGeUtYgHE,23053
1184
1200
  mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1185
1201
  mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
1186
- mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=dguuDcpGTUdL7KHbLPv3OLY9fmvJrQj5I_CsfmuQdKk,606
1202
+ mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=njwyWqUt8PmCISBN4KjcDnZPakbro1E5lSqTEEZbTO8,607
1187
1203
  mindsdb/integrations/handlers/phoenix_handler/connection_args.py,sha256=ql5detlrKQP6ZePgYK6QnPjPJrpmw_GQBqgA8-LR5xA,1784
1188
1204
  mindsdb/integrations/handlers/phoenix_handler/icon.png,sha256=8lmaL2c4b6wPtGyEhBY_x11cNWUUfWyGO7btp1iRqpM,43812
1189
- mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py,sha256=SSkE6wJW0VQs73rqT14EhWctX1O3BB89N3HD41QDBtE,6993
1205
+ mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py,sha256=xW7HL0EC0T4XJcD6LMHwgLzt6GqnuR3Xr5oLPgDfL1g,6994
1190
1206
  mindsdb/integrations/handlers/phoenix_handler/requirements.txt,sha256=eqUy51tMW_d06Cs2sRDz8sHCF5yHOC1XcMFwthsKDfc,20
1191
1207
  mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1192
1208
  mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py,sha256=4CrciavIFEvjDLRDZ8xKQo96QpTWzKalSBBiQpH5BRU,1037
@@ -1198,10 +1214,10 @@ mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py,sha256=mRjWgH
1198
1214
  mindsdb/integrations/handlers/pinecone_handler/requirements.txt,sha256=9VvkJSZPyG8l8V0QYvhOXRd7cj1EHVKji8zpdKvR-Vk,22
1199
1215
  mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1200
1216
  mindsdb/integrations/handlers/pinot_handler/__about__.py,sha256=CxF5ZlieeDDW0W8POUfJVq1XlMavk9q2zEn9PXbgjs4,353
1201
- mindsdb/integrations/handlers/pinot_handler/__init__.py,sha256=_iKmsOaetC2HbqCLgOdqRNPDK67U7RmgWuQ0nFwFiMs,598
1217
+ mindsdb/integrations/handlers/pinot_handler/__init__.py,sha256=YjB9ir-F0pHf3z4NrJOnAhv61PAsg2TzUyr9Jh1g0hM,599
1202
1218
  mindsdb/integrations/handlers/pinot_handler/connection_args.py,sha256=9oWFtv5vfZf_HsgSZGkuFn358Twmn4vTFfN4qYFrcSA,1595
1203
1219
  mindsdb/integrations/handlers/pinot_handler/icon.svg,sha256=AZlN-V4za1cZSJgHcDiSxnHAGfHWURJngDI31Zt4-Mk,10555
1204
- 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
1205
1221
  mindsdb/integrations/handlers/pinot_handler/requirements.txt,sha256=jxLeePj-OklKWl1qyG7CpGrxluIl0RFrGtFAniWKXwc,7
1206
1222
  mindsdb/integrations/handlers/pinot_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1207
1223
  mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py,sha256=iyKkN2KXZQO1faw2z-C0-UCiLLo5b91h_LceM9-_5lA,1132
@@ -1213,15 +1229,15 @@ mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py,sha
1213
1229
  mindsdb/integrations/handlers/plaid_handler/__about__.py,sha256=8TBy0mepwizi0HF6P1NePAbBHyQNzGeq3CQY6Ep96uI,337
1214
1230
  mindsdb/integrations/handlers/plaid_handler/__init__.py,sha256=uboEmuYGsEOf5VsvXgMhWG3LyfHHjwXd3SgijtNnS9w,492
1215
1231
  mindsdb/integrations/handlers/plaid_handler/icon.svg,sha256=atBMW32ERpCOyYNoA361LeYNx79PydyGPB3_KRjIgOc,1389
1216
- mindsdb/integrations/handlers/plaid_handler/plaid_handler.py,sha256=fIHubw33lgvwL5O5a879WHxKx48d6BzgphMl7NL_frI,8110
1217
- 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
1218
1234
  mindsdb/integrations/handlers/plaid_handler/requirements.txt,sha256=wNOPb2f61Lp9XAk0-rmqUr4xhlJFs-I7VBNS02wuPoo,12
1219
- mindsdb/integrations/handlers/plaid_handler/utils.py,sha256=NkIHwkE7vFYu0FdrXqFmdH_oKA7YAIsdJs2sPjol6RA,149
1235
+ mindsdb/integrations/handlers/plaid_handler/utils.py,sha256=U0SJ01F3Xv4mS3sVAEv7J7jawIrSO9hiRFTHLL0pOUg,144
1220
1236
  mindsdb/integrations/handlers/planetscale_handler/__about__.py,sha256=ZFE7rrd6Os1ep3a49zBpkMCFazDtvI_K7_EGHRa2tSY,351
1221
1237
  mindsdb/integrations/handlers/planetscale_handler/__init__.py,sha256=cuM2ry8CRoMxejl7FjqH13YQfI04TMEiBK4AqOCHnkU,617
1222
1238
  mindsdb/integrations/handlers/planetscale_handler/connection_args.py,sha256=5z7GXhlTy0H_9OZM4VL7jcPJLyVwN4iSbYe4epj72wA,1016
1223
1239
  mindsdb/integrations/handlers/planetscale_handler/icon.svg,sha256=PNowYe4GZh4X-NTBx3Uu8oXfrTcy3spU_iwcn0a942c,391
1224
- mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py,sha256=hRpqBAm2k0yIf30_AGKOxlDcJVSGoZuwvsF7Nqf8Nzg,457
1240
+ mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py,sha256=8OzLDd9lXsPpvBKWLION0br0zwHMubVxCtiVM0oGjRw,332
1225
1241
  mindsdb/integrations/handlers/planetscale_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1226
1242
  mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py,sha256=mJIqeNmkUTDg54Vipz6piPH5p2YoP5A07Ns8ZhBtjQo,388
1227
1243
  mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py,sha256=i4yXTcit_hAOEcrnxL8nM8frP81zf4wXq4MbdVUCTiA,563
@@ -1229,7 +1245,7 @@ mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg,sha256=RnN
1229
1245
  mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py,sha256=cZWfB3hBCoNOhrZ--aYBczI8cYbrrybvTgNzGMX4hRo,3117
1230
1246
  mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt,sha256=vIzgVNcxRpbMMJtEjTxm_7TVHy7_v6atr3v-R4pw78k,7
1231
1247
  mindsdb/integrations/handlers/portkey_handler/__about__.py,sha256=9x2OD2B_XjPHEtU9WgknXRZEN79nAO70UKYvjEKAwPY,343
1232
- mindsdb/integrations/handlers/portkey_handler/__init__.py,sha256=bjmefRkOAwE28pb6-0wqAYDsLHVdb9CigzzOYXhwNzg,581
1248
+ mindsdb/integrations/handlers/portkey_handler/__init__.py,sha256=dOUsR5Vacl5rfNB6HkBVbRmdVP32fL-EwgfUnM0oS_k,581
1233
1249
  mindsdb/integrations/handlers/portkey_handler/icon.svg,sha256=CqWYmE-XNzkWUYUvDUMy92aF2Jy1dqlOKLI3ZbvYAWA,1511
1234
1250
  mindsdb/integrations/handlers/portkey_handler/portkey_handler.py,sha256=TrcJfF5yeJIpRhAycNRmJ_fi1Hd5RS_nbbz4OoQZq2U,2054
1235
1251
  mindsdb/integrations/handlers/portkey_handler/requirements.txt,sha256=wjzruG3CMIRu7Vn-lTmSRbI9Dn8Je9STtMzkdb00Ljk,18
@@ -1237,9 +1253,9 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
1237
1253
  mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
1238
1254
  mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
1239
1255
  mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
1240
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=0seOFkaWTqS2wulM0NDBVq8UE7uJaQS9vgS1dTyXqFs,16567
1256
+ mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=GkggjAIMJ9WGJ4ord1y7FdECpyl3LySagr91Jy7WD9U,19648
1241
1257
  mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1242
- 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
1243
1259
  mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
1244
1260
  mindsdb/integrations/handlers/pycaret_handler/__init__.py,sha256=U93z3BWS-ntj4nhuHjnZunw3K3oEgqHh5l18hA_DyIo,564
1245
1261
  mindsdb/integrations/handlers/pycaret_handler/icon.png,sha256=zALpK46ynoWZAVadSu-vMrVA5jbpsGUY4-2ackLwOk4,10283
@@ -1262,25 +1278,25 @@ mindsdb/integrations/handlers/qdrant_handler/requirements.txt,sha256=5PoI_uItTqB
1262
1278
  mindsdb/integrations/handlers/questdb_handler/__about__.py,sha256=weXXIZ9HI8thG0RfEVQGIK7cEUGxfEh2wElImcJhAhc,339
1263
1279
  mindsdb/integrations/handlers/questdb_handler/__init__.py,sha256=JZAKIojr65atHm3V_hpDNtB7yT1qYnJLjt-ADeM6Rgs,485
1264
1280
  mindsdb/integrations/handlers/questdb_handler/icon.svg,sha256=t0dSnSPKN2mv0ciNWsKETBgPgGmboxEq7yHdDOAmFBA,2029
1265
- mindsdb/integrations/handlers/questdb_handler/questdb_handler.py,sha256=gULLADPgP373CveDERNFhE83uZxvSuPm6aaaq7Kux-c,2202
1281
+ mindsdb/integrations/handlers/questdb_handler/questdb_handler.py,sha256=bbpFvzXpHaCeI1qKuWhp14VElO52BoEClPVMj7OQr10,2156
1266
1282
  mindsdb/integrations/handlers/questdb_handler/requirements.txt,sha256=HGuEvKvrA6CsAGIzg_BbIUwsy_YWi87tzsCvqcX1ajs,8
1267
1283
  mindsdb/integrations/handlers/questdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1268
- 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
1269
1285
  mindsdb/integrations/handlers/quickbooks_handler/__about__.py,sha256=UeCTBvtHTGR0Xabsn4wkx0doUKJPRfaIH3WgHM_6rgY,348
1270
1286
  mindsdb/integrations/handlers/quickbooks_handler/__init__.py,sha256=gG215ZGlhdBM3UJkt9VmbENaefQCaIQL9AXWjqyaqeI,512
1271
1287
  mindsdb/integrations/handlers/quickbooks_handler/icon.svg,sha256=LwOkRzgobIrDcToWQo_ProJ2u1ai0OYgwjiF4Exli-w,1289
1272
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py,sha256=yyOgOatvkEtM6CXZYQSBU4m-XMLhJBVZBye63dtLwJg,3383
1273
- 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
1274
1290
  mindsdb/integrations/handlers/quickbooks_handler/requirements.txt,sha256=bkFLX7l8c7R9-fZFnxgKDON3rqNxV503j3PXW-BQ_og,6
1275
1291
  mindsdb/integrations/handlers/rag_handler/__about__.py,sha256=L6sE0_ZF9S4f5pmJjt5qa974dmekriF7876FZdXnvcU,369
1276
1292
  mindsdb/integrations/handlers/rag_handler/__init__.py,sha256=mfFU3tWa66-hWoih8YRdr6FrF7KNv2xUsHs6Z326Mko,517
1277
1293
  mindsdb/integrations/handlers/rag_handler/exceptions.py,sha256=uRHei8e_2oa7uBgMXQyEM9oTDjczBbyTODeu6R426v8,337
1278
1294
  mindsdb/integrations/handlers/rag_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
1279
- mindsdb/integrations/handlers/rag_handler/ingest.py,sha256=E45U_5LnWcHJznxjAjPtgVBjk_02l4czBA-WqI8WJKE,5877
1295
+ mindsdb/integrations/handlers/rag_handler/ingest.py,sha256=oLUFPhILDU4BK1mtpio72CKktkJxod3FsQQ7iymmLiQ,5875
1280
1296
  mindsdb/integrations/handlers/rag_handler/rag.py,sha256=4PtyArS3tt4hzvjejR_9hq_W37MKop3h9XVkSFgqe2o,4764
1281
- 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
1282
1298
  mindsdb/integrations/handlers/rag_handler/requirements.txt,sha256=_7K_npewsQgRtUH_S-COwkUJ35urOaKDSEJsZZItr20,185
1283
- mindsdb/integrations/handlers/rag_handler/settings.py,sha256=5T4_oZt9dUD67AJXeZrzaftMnv4I4uL-XlzhO5kTYSY,15627
1299
+ mindsdb/integrations/handlers/rag_handler/settings.py,sha256=rnn4jMyS427EAYN63b9-PTqAKjm2FVm6P4xMN2RuIRE,15626
1284
1300
  mindsdb/integrations/handlers/ray_serve_handler/__about__.py,sha256=42oqKM1C-nIisvPvAL5fIxBDP-rxEduXnGrUUjrfLIU,345
1285
1301
  mindsdb/integrations/handlers/ray_serve_handler/__init__.py,sha256=MYDLydWeimQ74znwnrrgnh9S6YgtE7UnJcYBVlWv6r8,596
1286
1302
  mindsdb/integrations/handlers/ray_serve_handler/icon.svg,sha256=spxNMpiGLzxt46VM70-m-z4xButrIQ_dzLTarJKYSOA,1990
@@ -1288,8 +1304,8 @@ mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=TvaO
1288
1304
  mindsdb/integrations/handlers/reddit_handler/__about__.py,sha256=Xp4s3kJp-REycH83S1RLSaPZHpFqbn-MjRuQZ5BpBuQ,336
1289
1305
  mindsdb/integrations/handlers/reddit_handler/__init__.py,sha256=n3dhcPIHT_89hQxEXKQbHApOGBGQxtvWxp-fvFL083s,496
1290
1306
  mindsdb/integrations/handlers/reddit_handler/icon.svg,sha256=JAhHkvjiEfOz_BSbBVosQs8VXegNanxdnNUNz1bHyRM,3986
1291
- mindsdb/integrations/handlers/reddit_handler/reddit_handler.py,sha256=KQoiWm7nw473cEwgQusMXbTRxoXOKbJdzTmgj40hZ3I,3265
1292
- 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
1293
1309
  mindsdb/integrations/handlers/reddit_handler/requirements.txt,sha256=fr-1_smtJ1skff4zL826Kumcy_XKQ_THIPJ1lwTPqIM,4
1294
1310
  mindsdb/integrations/handlers/redshift_handler/__about__.py,sha256=l9Ri3bz7eW3C5cp1UdSylSkLs8iWAoSH8H4foxb0Lb8,357
1295
1311
  mindsdb/integrations/handlers/redshift_handler/__init__.py,sha256=CwcbbRYbQLXROfpRN3KOjqle2oEfOVkB1y-4h2HUOTs,631
@@ -1301,7 +1317,7 @@ mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py,sh
1301
1317
  mindsdb/integrations/handlers/replicate_handler/__about__.py,sha256=2_18jFKOFO_515IYxchEJYQG77sR5MJTvOPUfZ_pjnU,349
1302
1318
  mindsdb/integrations/handlers/replicate_handler/__init__.py,sha256=zQ9LKlq8v86y64-gjITtCsVuYO2cmOKZ39f3RlK_EYs,551
1303
1319
  mindsdb/integrations/handlers/replicate_handler/icon.svg,sha256=56p1aqrvUXjoBcNd29dI5ZttA7IV7om95rDylErIzko,371
1304
- 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
1305
1321
  mindsdb/integrations/handlers/replicate_handler/requirements.txt,sha256=sjsGjIFCY5tCRuDpJJVIactIpN5fqbc5NaTEcjHOhKM,9
1306
1322
  mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png,sha256=crRGtMnf3xzPy7U1fh9-2gqc52QhzNs1DlQkMx6TRtg,355320
1307
1323
  mindsdb/integrations/handlers/replicate_handler/assets/groot.png,sha256=TxwVa0APOhGRQD8Ut36xnBgeFiReIxOKeqzjJrFKk9k,1314584
@@ -1310,18 +1326,18 @@ mindsdb/integrations/handlers/rocket_chat_handler/__about__.py,sha256=FdPpY1CH5g
1310
1326
  mindsdb/integrations/handlers/rocket_chat_handler/__init__.py,sha256=Lfa_w0jgfGLpdlYbLf5YWS1DKJrEktvUF8JVvkydTe4,499
1311
1327
  mindsdb/integrations/handlers/rocket_chat_handler/icon.svg,sha256=PXczKYqazHgTvOI_jbWbd8b0SWirVt7OVS3OJzMn8Eg,2492
1312
1328
  mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt,sha256=iDoxDNf9uWvVT4X-a3kz4MLEqacKzCmd5mtV1eTmQ14,14
1313
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py,sha256=sw0IiT4tgfmy05fu4LfD7WdrKGknPHGms_NUmGLabZI,5281
1314
- 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
1315
1331
  mindsdb/integrations/handlers/rockset_handler/__about__.py,sha256=HCXICDPS1kDFOFXzRgD7eHKcJOjQCrc-RVf1ArGMEQU,342
1316
1332
  mindsdb/integrations/handlers/rockset_handler/__init__.py,sha256=c3soxU78fuJzO0tQRZIwwOZIifTQXeiSq6Ez6zYZJ-k,601
1317
- 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
1318
1334
  mindsdb/integrations/handlers/rockset_handler/icon.svg,sha256=duxHx1t4AN_ggwucppIBTdgmcRH6yO5Ru84xU-wioX4,539
1319
1335
  mindsdb/integrations/handlers/rockset_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1320
1336
  mindsdb/integrations/handlers/rockset_handler/rockset_handler.py,sha256=DbaGbWFhzHB1o0VNTUOyp9Hu79MqwuffzGZbcjdBnGA,314
1321
1337
  mindsdb/integrations/handlers/rockset_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1322
1338
  mindsdb/integrations/handlers/rockset_handler/tests/test.png,sha256=foksCl8DjyzOxikbkTP_AdFEk3VHai6UJgQIzPihvpY,194064
1323
1339
  mindsdb/integrations/handlers/rockset_handler/tests/test2.png,sha256=u4OFmvGERdC_7e91njNwQ44Yd46hNtaQ-yhpVIXSPOw,108141
1324
- 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
1325
1341
  mindsdb/integrations/handlers/s3_handler/__about__.py,sha256=5_5F8HudwW0tS4NJfkodjzu0NmOfdLcw9eMPFj5aXP8,330
1326
1342
  mindsdb/integrations/handlers/s3_handler/__init__.py,sha256=_tcu60ouXkbhS42OVG9UUSTbujkPiA7fzzu5QS-4iKM,587
1327
1343
  mindsdb/integrations/handlers/s3_handler/connection_args.py,sha256=2zNyZx2ly5BZOfcoGRer-KvUyqN81BdQGy-v0UDfe2I,1531
@@ -1348,17 +1364,17 @@ mindsdb/integrations/handlers/scylla_handler/__init__.py,sha256=1Hn_nUReOm-KBULI
1348
1364
  mindsdb/integrations/handlers/scylla_handler/connection_args.py,sha256=s93jwcTAMKjANKcevJHM86nshheVIoHdTTNEIYfu-Ss,1332
1349
1365
  mindsdb/integrations/handlers/scylla_handler/icon.svg,sha256=yAOhsR8j8qQ_mwNGv22OwGQp553qg-IXqAXr3JOpeTE,9670
1350
1366
  mindsdb/integrations/handlers/scylla_handler/requirements.txt,sha256=oak5VzU4W2taxZgdL4URrh_MJaYaNozZS3Amyk9vbT0,13
1351
- mindsdb/integrations/handlers/scylla_handler/scylla_handler.py,sha256=dQDU5DN9Cur3UMpUBKGHxf8DJDSLXRqF9NJeL_i3pZQ,7450
1367
+ mindsdb/integrations/handlers/scylla_handler/scylla_handler.py,sha256=YdDnuIccLCxRL70PqeVYxbNAEOBM4tNdQHeXsPCjaXE,7437
1352
1368
  mindsdb/integrations/handlers/scylla_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1353
1369
  mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py,sha256=GNCPWgfvKjik--BMF4tn4w0azPmNOTvHymKugnhML24,1290
1354
1370
  mindsdb/integrations/handlers/sendinblue_handler/__about__.py,sha256=mNrBV_1MfkupAJVeDMrCR6lBUfXpRwn6XXmBQ922hGU,355
1355
1371
  mindsdb/integrations/handlers/sendinblue_handler/__init__.py,sha256=9GNW50IOpUczJgBwFwUkIxAwHgcF_QnzvIm_M3vcPQU,523
1356
1372
  mindsdb/integrations/handlers/sendinblue_handler/icon.svg,sha256=dgYCEWBM6Yj67OQVYaBb-13EucoE2CtQikprO2GanPY,2730
1357
1373
  mindsdb/integrations/handlers/sendinblue_handler/requirements.txt,sha256=u6iN5asBaZDyg9vOw6OWq8dCvVV7w5fcli0dLedgilA,14
1358
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py,sha256=Omr3eeZmo3q9h6YihqveK_Rz6XMtJauN-0f0Q5iFfVI,2589
1359
- 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
1360
1376
  mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py,sha256=gnGsZj1RtQnkRqj225n83FiyMhoifRg2t0-zUhZSz6M,394
1361
- 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
1362
1378
  mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg,sha256=Di1nWIp9lQK9xqiyU4XttTIB9bQj44JNRPbUG05xOGE,2691
1363
1379
  mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt,sha256=YQ5L-FeZum2bJwIetXy8w0DVmriE3puvTJwsYIswXm8,61
1364
1380
  mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py,sha256=9Tw-saClJANaocCdvWyf6Za6BI13VE7xq65SLxEmQdM,2692
@@ -1379,7 +1395,7 @@ mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py,sha256=47DEQp
1379
1395
  mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py,sha256=xQ2ahguYDRXm_xuEiGVMa8uknJdgEyaBnocRxZ6t38o,1896
1380
1396
  mindsdb/integrations/handlers/sheets_handler/__about__.py,sha256=9Sayal4tNbITvTgskEmn01QRvmeucON1435o0IKzSSI,356
1381
1397
  mindsdb/integrations/handlers/sheets_handler/__init__.py,sha256=yTemBTQ6ptZ-WpFzaKL95MvHf5m1KoGk7M7lWJE_gUs,603
1382
- mindsdb/integrations/handlers/sheets_handler/connection_args.py,sha256=xHPG6-djFcUN9ck2K0L9quQq0iuIzZf2E9BvOw8S3pE,529
1398
+ mindsdb/integrations/handlers/sheets_handler/connection_args.py,sha256=07sRCoh0XZHsqTCbsDKuUyuzXEAlArBbLrai1OvFEGA,530
1383
1399
  mindsdb/integrations/handlers/sheets_handler/icon.svg,sha256=Wz4CS_9u6_zaouNSS-ePCRUnwpUZUn9hJ2J04BEksvs,5628
1384
1400
  mindsdb/integrations/handlers/sheets_handler/sheets_handler.py,sha256=q_Md27HqvDQk9vZh9JT1E6NPuckaveEDVYfYQeb7O1U,5264
1385
1401
  mindsdb/integrations/handlers/sheets_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1388,17 +1404,17 @@ mindsdb/integrations/handlers/shopify_handler/__about__.py,sha256=w70w9xG4laoJ6f
1388
1404
  mindsdb/integrations/handlers/shopify_handler/__init__.py,sha256=VeIeMd6vofxyaAkLPX6X63Ye0of6s768mZ7gLvXrQ_8,511
1389
1405
  mindsdb/integrations/handlers/shopify_handler/icon.svg,sha256=-htxdS5C7rsXqiY3H0Y5LVhvHG_cb8Iw7MuJc8Ra2Qo,2452
1390
1406
  mindsdb/integrations/handlers/shopify_handler/requirements.txt,sha256=keRn5kMNcJHM3MBDc26Y-mYR747z5HdsJeURBQ3sygY,11
1391
- mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=SOd0EFwTEq_RjXyhYQ37R-58ExNVA1UqgvnTzcPqmTc,4942
1392
- mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=Jpj-wG3sMv29qpD7TNnKiOML1rzHwshtDRIzK74Agto,38613
1393
- mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=J-SeCseIh0969pPByjhSCMdpTHdvNgdM8w_n2APyd2A,350
1394
- 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
1395
1411
  mindsdb/integrations/handlers/singlestore_handler/icon.svg,sha256=ZHU9Xd8NgO4VADPp3jl42HZ7eqcf8aTAvN7xUCTfMAc,2064
1396
1412
  mindsdb/integrations/handlers/singlestore_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1397
- 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
1398
1414
  mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1399
- 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
1400
1416
  mindsdb/integrations/handlers/slack_handler/__about__.py,sha256=ykbgm6frTOTB8b-PtZrQEv_jMijGD2e-GIziyygILZM,335
1401
- mindsdb/integrations/handlers/slack_handler/__init__.py,sha256=1C8z9FrWQHIk2Dg5fBGA0c9E_EXw8eBXkG8gz-Yshm0,518
1417
+ mindsdb/integrations/handlers/slack_handler/__init__.py,sha256=2GZF65ujVCePlbVWsC-0lCmlcUyfP0hQQ57pqiXYy44,517
1402
1418
  mindsdb/integrations/handlers/slack_handler/connection_args.py,sha256=mzsx968FZZ3gVFXcTimbegcSucYcKzdRnj9FWj1SZ3s,637
1403
1419
  mindsdb/integrations/handlers/slack_handler/icon.svg,sha256=bPzub2wQkTiV8nFCoy8TCSAXxYjjg65S7jQT1_yGduM,2005
1404
1420
  mindsdb/integrations/handlers/slack_handler/requirements.txt,sha256=92G8Qt34iNKtS1FzKMKUHZp6r8CPz-3TZLn_dD9nY7M,18
@@ -1411,7 +1427,7 @@ mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DI
1411
1427
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1412
1428
  mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
1413
1429
  mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=jPONiX7mUekXJMK0Tv1A5fhSAR2Vkc-_4E_pCDJo068,71
1414
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=B_QRuLXo-5YBg2294bifAd3asN_sHt8EdXVfYYsud1E,14715
1430
+ mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=46q9FH31HgdQ9P5K_iPrfH9Stn8KGolDKJr0xy0ua8M,18802
1415
1431
  mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
1416
1432
  mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
1417
1433
  mindsdb/integrations/handlers/solace_handler/icon.svg,sha256=rzGNiCdLWu9OJ3j8ilXrOTwRupMp3n3RQrfm2D_Nx5A,152
@@ -1419,12 +1435,12 @@ mindsdb/integrations/handlers/solace_handler/requirements.txt,sha256=kOMDzRkpyVS
1419
1435
  mindsdb/integrations/handlers/solace_handler/solace_handler.py,sha256=h82SqnLbGsgblVQgFrcMf2KejaqQPjjYv2bUWR5Tcrg,5635
1420
1436
  mindsdb/integrations/handlers/solr_handler/__about__.py,sha256=YGongZaOYWVBJtgIf8Kzj9Iz9W8V7yYlzedzWzqKoFM,332
1421
1437
  mindsdb/integrations/handlers/solr_handler/__init__.py,sha256=J3kSqn15RC6mruLlv2OQFtk7dgAb3qk1ss4oaDmgwYo,595
1422
- 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
1423
1439
  mindsdb/integrations/handlers/solr_handler/icon.svg,sha256=oMJbF8KYAXMLJFqq1X4UDjz0pToxKEDL8sCnD3SAGJU,1215
1424
1440
  mindsdb/integrations/handlers/solr_handler/requirements.txt,sha256=5BJdrNsaD-Sw4ZWEvrST-fPHbPAxVfTINMlOnRzMfe8,15
1425
- mindsdb/integrations/handlers/solr_handler/solr_handler.py,sha256=UZ39at_WKZ7r8F2msJPsLfL1WeFUydmOENseQlnpvng,5481
1441
+ mindsdb/integrations/handlers/solr_handler/solr_handler.py,sha256=3EnWmXgfuxmnuFrXs7WFOCpwNeSHHybDlEZogpil1C0,5480
1426
1442
  mindsdb/integrations/handlers/solr_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1427
- 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
1428
1444
  mindsdb/integrations/handlers/spacy_handler/__about__.py,sha256=jd6QQQ6sSZ5yoYvxSWPynn_Olt5n-ylQo5vGyZ3aqyc,345
1429
1445
  mindsdb/integrations/handlers/spacy_handler/__init__.py,sha256=zY48kMbG9iQmG2FyFKVCFw0JpdFDb-_1caLHh5pXdDo,488
1430
1446
  mindsdb/integrations/handlers/spacy_handler/icon.svg,sha256=wvPUPjGqsBiOaOg5gGQjnc2lw8yyF4qR8CcxhagwtkU,3544
@@ -1435,24 +1451,24 @@ mindsdb/integrations/handlers/sqlany_handler/__init__.py,sha256=qJlQ_ZZ4Ni6kHtUi
1435
1451
  mindsdb/integrations/handlers/sqlany_handler/connection_args.py,sha256=I50L0E4Zq8BeJvsgRTwvIxxmyBdljWi3p3zM6tiQZ24,1334
1436
1452
  mindsdb/integrations/handlers/sqlany_handler/icon.svg,sha256=Y2lmewh0cBgJP_8SyDgjcxrN6AG-U1_uBo-VF0xkgPg,2146
1437
1453
  mindsdb/integrations/handlers/sqlany_handler/requirements.txt,sha256=Y0gnZVmzYd3QEf6TvdXSasgY0FkOTo-RKRbTtq2zVaE,27
1438
- 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
1439
1455
  mindsdb/integrations/handlers/sqlite_handler/__about__.py,sha256=lWd9EgLYvUjLUUylfnVrPnBFF64v5WUJk0sKOaaSMT4,351
1440
1456
  mindsdb/integrations/handlers/sqlite_handler/__init__.py,sha256=x5LSxJLjgFy461oFuc7EkIICYFjwbkR3nxRjUXD39aw,616
1441
1457
  mindsdb/integrations/handlers/sqlite_handler/connection_args.py,sha256=fkHQz2pMUYYls0SH3QWyVRZC9EQpub8Tqogu0IMPN1w,459
1442
1458
  mindsdb/integrations/handlers/sqlite_handler/icon.svg,sha256=_vrqIxTfukZKHbwInyi8_NXkvY7gaXmmlhBpvkizBwc,3379
1443
- mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py,sha256=R8jP0bznyNtAcdZriOjSPvc4bPZDXkPNw886WpK0D78,5794
1459
+ mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py,sha256=Uq7YJCDa9VRtV1oF6tWpPd00pxfADbydzAmNvh7vnA8,5796
1444
1460
  mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1445
1461
  mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py,sha256=uwdM4niujj3VPWvNZWMImOWgB0tppoYYPm7KW_V4-HM,1033
1446
1462
  mindsdb/integrations/handlers/sqreamdb_handler/__about__.py,sha256=n99f9F2MFzGvCa-nZJWgyDolrEd9wBd2Iir71bfcvpc,346
1447
1463
  mindsdb/integrations/handlers/sqreamdb_handler/__init__.py,sha256=CwLXvfxGQe24ArIUtDfSwKSvZdEr0XtC_AsA7wsFrJ8,604
1448
- 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
1449
1465
  mindsdb/integrations/handlers/sqreamdb_handler/icon.svg,sha256=ahjvGh5halSk2-D7dx4ZEYzdS9-8R2YN7bA6opumpik,19052
1450
1466
  mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt,sha256=J0WEmaOHnBO7pofu2y7pwtBEM8CajuqxW32Gx-clg5c,40
1451
- 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
1452
1468
  mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1453
- 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
1454
1470
  mindsdb/integrations/handlers/stabilityai_handler/__about__.py,sha256=oUkOwYjexl28Y0r0oeAKALZKrjU4hl_g5nCQBZ_o_DQ,355
1455
- 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
1456
1472
  mindsdb/integrations/handlers/stabilityai_handler/icon.svg,sha256=ZpGpqOrCHEnu6bEKUZeBBjZiOQmHdurWMs_knbfzF-Y,1284
1457
1473
  mindsdb/integrations/handlers/stabilityai_handler/requirements.txt,sha256=3rD2bEMgLiyhsQHPbojpz07ZWrUgIW4QENkN3kWnov8,21
1458
1474
  mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py,sha256=NZqNRDcaMaUGhuFGTUiXA5P2LtJ0BGJSKJ1LlNb5Ba4,6901
@@ -1461,15 +1477,15 @@ mindsdb/integrations/handlers/starrocks_handler/__about__.py,sha256=pkApZqHghl4G
1461
1477
  mindsdb/integrations/handlers/starrocks_handler/__init__.py,sha256=SMee9IZM4-ADJKXB-GlOkf2laHNSiE3sZlSJ3Lj-piQ,493
1462
1478
  mindsdb/integrations/handlers/starrocks_handler/icon.svg,sha256=AlnqpxH93ohQSQcItJU5-t9xgoHBjzvZSBzyyP4ryfk,1945
1463
1479
  mindsdb/integrations/handlers/starrocks_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1464
- 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
1465
1481
  mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1466
- 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
1467
1483
  mindsdb/integrations/handlers/statsforecast_handler/__about__.py,sha256=1X1F2LyKSugvGa7VZco3R4fDZTM1ED3Ku-ys2evcczY,374
1468
1484
  mindsdb/integrations/handlers/statsforecast_handler/__init__.py,sha256=LYYrtDMAW5aFPLPyIp-rOxO2O6izWi7pNtQGAsRmmdY,516
1469
1485
  mindsdb/integrations/handlers/statsforecast_handler/icon.svg,sha256=dg5efvtY54Q70QS8a1FGc3-RbH9vbsWoOCmHtPjANRE,590
1470
1486
  mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=17INZW5OfTUqbRKt-gcljYlwFUCyW3PjTSkiNrm_VtQ,21
1471
1487
  mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=17INZW5OfTUqbRKt-gcljYlwFUCyW3PjTSkiNrm_VtQ,21
1472
- 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
1473
1489
  mindsdb/integrations/handlers/strapi_handler/__about__.py,sha256=pCZCrsIQ2_9QSAfpIY8se9QDvIE2kP9_a5N0DnRMO6k,344
1474
1490
  mindsdb/integrations/handlers/strapi_handler/__init__.py,sha256=TnZspPGgLSMgWxJkY0oUd6EiPl16Xo7spn0Oswok8-o,529
1475
1491
  mindsdb/integrations/handlers/strapi_handler/icon.svg,sha256=-00G-8wAFYndz5z04zdKnskPASN8-O-8HtrPkoI4r9M,1073
@@ -1481,26 +1497,26 @@ mindsdb/integrations/handlers/strava_handler/__about__.py,sha256=zYeH3wGTPWdK2Kd
1481
1497
  mindsdb/integrations/handlers/strava_handler/__init__.py,sha256=fpoXQgaNScX27rxkNbjyY-JDCG6q0rZHNKH9XpaeoRM,507
1482
1498
  mindsdb/integrations/handlers/strava_handler/icon.svg,sha256=WWcpMlFlIGRXqq3PUAsDzK5ShEr-UwteLWuQHzH0894,628
1483
1499
  mindsdb/integrations/handlers/strava_handler/requirements.txt,sha256=zmg1tZLIYt6P2O_IaXMghPa0eB-mvaltye2A7xuPN1A,10
1484
- mindsdb/integrations/handlers/strava_handler/strava_handler.py,sha256=vt9aveT_iFgKRzGaby0AnPXdK1PUyzpIWJkAb0kOs_Q,3421
1485
- 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
1486
1502
  mindsdb/integrations/handlers/stripe_handler/__about__.py,sha256=Uknc7T0dq-_3jvCTIHC2Fq6ds-RNewF-5m8vge-LeS0,343
1487
1503
  mindsdb/integrations/handlers/stripe_handler/__init__.py,sha256=uyLgbv2G8ZOkcQAq_PJfTceuUCIzIpszCRA-XCj_-ag,507
1488
1504
  mindsdb/integrations/handlers/stripe_handler/icon.svg,sha256=BdCx7kc4Np-P6ceICXzaBEH0TBOyxqLLL1zCqSZInJE,704
1489
1505
  mindsdb/integrations/handlers/stripe_handler/requirements.txt,sha256=K-0gMu09gwC3cU_3cQHmxDY3WXl3M3xpkZHdhEyGpy0,6
1490
- mindsdb/integrations/handlers/stripe_handler/stripe_handler.py,sha256=r_0-IaY7xdaQUC1SjotfWKFFyfr8nzFK9EAQUFBddIg,2846
1491
- 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
1492
1508
  mindsdb/integrations/handlers/supabase_handler/__about__.py,sha256=mvRq0yRA_Zt-0_dP5WEkuiM1k-2hcL9aBcDw30PcCE8,342
1493
1509
  mindsdb/integrations/handlers/supabase_handler/__init__.py,sha256=7m-tY9p52UrXA5WVWDAZgoiWS1p4s4-jthx4jyx4g0E,489
1494
1510
  mindsdb/integrations/handlers/supabase_handler/icon.svg,sha256=raGqT1S4xpEQLeHj3OEWU6W_8vVlql-R7flMBiOttnY,1174
1495
1511
  mindsdb/integrations/handlers/supabase_handler/supabase_handler.py,sha256=hi1Ndqskeb7dDhoL71Y3eHfvzHIWCyEFY2ZZB29S2bQ,326
1496
1512
  mindsdb/integrations/handlers/supabase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1497
- 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
1498
1514
  mindsdb/integrations/handlers/surrealdb_handler/__about__.py,sha256=HU-MfMC6d2oWZZANntvc2ZJRL9sdRctDgpa0IF_2-Fc,376
1499
1515
  mindsdb/integrations/handlers/surrealdb_handler/__init__.py,sha256=Y_DOxm1PderYV8_VidjJlPgB2QivfugI245a3SOSCTk,608
1500
1516
  mindsdb/integrations/handlers/surrealdb_handler/connection_args.py,sha256=nbBhHClh582l4KIR8u9e5Bo7gMPwU4qDvZrrj3W6HFE,1463
1501
1517
  mindsdb/integrations/handlers/surrealdb_handler/icon.svg,sha256=A6hrNrewVOKtHwAUherAF3mIPYijqRH4NofZYG_6f3Y,1449
1502
1518
  mindsdb/integrations/handlers/surrealdb_handler/requirements.txt,sha256=P1aJoTZNUH39vh-kIhW1ioAFBkerI9dUdbdtxHgFH-w,12
1503
- mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py,sha256=QTga0igT4v4tiED2iOJf1YiTKlpSfaTG244ucNM3ZBU,6063
1519
+ mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py,sha256=k9Y5rGTbie2yyIH72Tkm8Sh8fnb6IPAlxn-KitJM4Rk,6086
1504
1520
  mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1505
1521
  mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py,sha256=POOXBiNfNNaO0Ac0K5XlIZOVp47qN1bFofVixrFbnMM,1891
1506
1522
  mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1517,9 +1533,9 @@ mindsdb/integrations/handlers/tdengine_handler/__init__.py,sha256=xPvtQ7Rw7wbVJX
1517
1533
  mindsdb/integrations/handlers/tdengine_handler/connection_args.py,sha256=OPH5NEDSPxZ6iPIDBor7gHb5aDs2JhskEf7zF0S8RiQ,982
1518
1534
  mindsdb/integrations/handlers/tdengine_handler/icon.svg,sha256=n9TFbxQXmgulHJ9xe-jv07hXVVzUVs8WUoW9i6r3vsk,4903
1519
1535
  mindsdb/integrations/handlers/tdengine_handler/requirements.txt,sha256=Hd60uoHTQmZiGt55R7KWc-WRt0pun0sx8XJiTtC9rn4,6
1520
- 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
1521
1537
  mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1522
- 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
1523
1539
  mindsdb/integrations/handlers/teradata_handler/__about__.py,sha256=IDbZpk---hxwg_GaxnMmesQJUaDXnNkigrNDFpoVQUE,345
1524
1540
  mindsdb/integrations/handlers/teradata_handler/__init__.py,sha256=g2iNycfebnlIMvxLpfkgAP69q58LMmTjAdUBGxN8cXc,604
1525
1541
  mindsdb/integrations/handlers/teradata_handler/connection_args.py,sha256=0XFNxt7yZxyi2nj2H93qCG0D46MKBnGH376CQroiLEA,1040
@@ -1533,12 +1549,12 @@ mindsdb/integrations/handlers/tidb_handler/icon.svg,sha256=AYauw0wMLbfLYyXBYUw5d
1533
1549
  mindsdb/integrations/handlers/tidb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1534
1550
  mindsdb/integrations/handlers/tidb_handler/tidb_handler.py,sha256=WLmvnEFpXGhf7VXg2Vhmw7b3SK2CKtGqEQdh1AxCX4w,305
1535
1551
  mindsdb/integrations/handlers/tidb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1536
- 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
1537
1553
  mindsdb/integrations/handlers/timegpt_handler/__about__.py,sha256=wBHyAM5O7yWVgUKBGJwRM6gpy8FUWzcBxL048e4yjhA,390
1538
1554
  mindsdb/integrations/handlers/timegpt_handler/__init__.py,sha256=lMvw91ghkXJj2RuXSi1om4KYc8xbNik3YwXcYA-Hld8,491
1539
1555
  mindsdb/integrations/handlers/timegpt_handler/icon.svg,sha256=CfkLqkeZTKSjsQMKTx_KqkCqXvnHRyAAa1DVs-R1qiA,590
1540
1556
  mindsdb/integrations/handlers/timegpt_handler/requirements.txt,sha256=AfBYvR80CShVm2CPUOonQgDHgcTxApeX5OTKgfkjB-I,14
1541
- 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
1542
1558
  mindsdb/integrations/handlers/timescaledb_handler/__about__.py,sha256=joUHMPBAiylB7Uc7sipeFVWlWDZ_wqVqyyy_MivkNFI,355
1543
1559
  mindsdb/integrations/handlers/timescaledb_handler/__init__.py,sha256=ynMpLqCRlYomZEFEinXmtYYGr0DPIMQZ9HtsytOpe6c,497
1544
1560
  mindsdb/integrations/handlers/timescaledb_handler/icon.svg,sha256=sZHwvwAJ5SiTLSHhjdm_2YazVz0KEDQj-5KYR7cBTxo,6197
@@ -1555,13 +1571,13 @@ mindsdb/integrations/handlers/tpot_handler/__about__.py,sha256=UnKylDgzptBz8GP0A
1555
1571
  mindsdb/integrations/handlers/tpot_handler/__init__.py,sha256=In_YSefcrQXPbgqBoTR77fx9sIRpBTBpWaIlhaaHHhA,526
1556
1572
  mindsdb/integrations/handlers/tpot_handler/icon.png,sha256=j1DfF2jF1kWD3dhCET51X26QnSW9rNuLXXG7Tav3M2M,114250
1557
1573
  mindsdb/integrations/handlers/tpot_handler/requirements.txt,sha256=8F0hdotOm6E8Y2Fp7aKkDq1laiAX8CDem43CVybzdm4,32
1558
- 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
1559
1575
  mindsdb/integrations/handlers/trino_handler/__about__.py,sha256=O-XM6_t3ajkzjNhyI8J5BaVVmwwUCkQARNlJusNoYDk,333
1560
1576
  mindsdb/integrations/handlers/trino_handler/__init__.py,sha256=aj-pP90O6WWCyWBgry5D9URUaUCM5ALoAOQYHbU6gt8,457
1561
1577
  mindsdb/integrations/handlers/trino_handler/icon.svg,sha256=2zBJqtv37OVRHmR4HnL-Y3vPbxWf3sMvpVXGi8XkZzw,9363
1562
1578
  mindsdb/integrations/handlers/trino_handler/requirements.txt,sha256=yd3vzlgASeU_7on8yH3NZznzB5CkHf5mZ4FQK_LQw38,22
1563
1579
  mindsdb/integrations/handlers/trino_handler/trino_config_provider.py,sha256=FZ0xbSJTUDWR9Dj5n7qIv-KVgx49fMzGw-WcDe-aqcE,359
1564
- 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
1565
1581
  mindsdb/integrations/handlers/trino_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1566
1582
  mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py,sha256=raI6x2ZTxd1_37CA22o4fPJLyBpQtkUGl1jaCkpR8U0,1630
1567
1583
  mindsdb/integrations/handlers/tripadvisor_handler/__about__.py,sha256=I3b_Vfuym1IL8kq5MzUpKhQauM6Eh_YxPf0-jRJe7xQ,363
@@ -1586,37 +1602,37 @@ mindsdb/integrations/handlers/twitter_handler/__about__.py,sha256=7BS3uP0wt9Awep
1586
1602
  mindsdb/integrations/handlers/twitter_handler/__init__.py,sha256=iD7po6ZUKvkmhiq7qLgHMNc4m0hR43ks1u9p6qx0Zdw,500
1587
1603
  mindsdb/integrations/handlers/twitter_handler/icon.svg,sha256=2lLcQ9w8XO6H5M_Kl_TitCOUjkfKMOdUL2_1rLrN32s,471
1588
1604
  mindsdb/integrations/handlers/twitter_handler/requirements.txt,sha256=ZJDRss3q7Ym5B2ECTFXYw-4yz1iu9odZpRI03-eD2xc,7
1589
- 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
1590
1606
  mindsdb/integrations/handlers/unify_handler/__about__.py,sha256=nHZmpAWcHrN8R4R2QzTX2z4ZyMOJTvh80zGhvth57sg,357
1591
1607
  mindsdb/integrations/handlers/unify_handler/__init__.py,sha256=gGgCjnQRlM6GnhVeGHHNxda-294CXHLh8eGHDYVp0Ig,617
1592
1608
  mindsdb/integrations/handlers/unify_handler/creation_args.py,sha256=V2eVKJzWeTQg_Kr3zjJauGHrF760RlUssfUgDsStclI,339
1593
1609
  mindsdb/integrations/handlers/unify_handler/icon.svg,sha256=AfxEQzqUj_C__zWFdMUFDnAwurZHRQNQ7DvFHHZ8Tqs,10460
1594
1610
  mindsdb/integrations/handlers/unify_handler/model_using_args.py,sha256=LgYS_busKCzzDKIcqeO2i9mv_viWuAJcTkrnpWy-_Ss,75
1595
1611
  mindsdb/integrations/handlers/unify_handler/requirements.txt,sha256=HFlgdvYk-Z0_oTUGpvPXRzDSYiKj7AgifVW2XRhOpTk,14
1596
- 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
1597
1613
  mindsdb/integrations/handlers/unify_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1598
- 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
1599
1615
  mindsdb/integrations/handlers/vertex_handler/__about__.py,sha256=SCffhHdeD6ZuszymGrBBPfoo-k2Yj8-Yx4PzjW855XQ,350
1600
1616
  mindsdb/integrations/handlers/vertex_handler/__init__.py,sha256=LJCNEoHxKyxi4FzyqwIxPXZXfuBX7-FEGlROGEtEbnI,498
1601
1617
  mindsdb/integrations/handlers/vertex_handler/icon.png,sha256=EWxLkZkclLeq83BfYAy8OV8ijKPPXmAKWJ3ltMpbLRs,23708
1602
1618
  mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=iTc66wzuOVy_ugDXcckpDrPiey9CY5UVWB8e4Wte01Q,113
1603
- mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=5a1H4QzhnCnBsPdiHdR-zN-B4Gjkt6BzXdHzZKbibwU,3903
1619
+ mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=I--3_5IYiSrb0WvSy9Kswq7O8yQKGmjFBSu0nZkin5Y,3910
1604
1620
  mindsdb/integrations/handlers/vertex_handler/vertex_handler.py,sha256=9MmbCzJrXtMlSis9LpjlNsamuSWQ9PhTTl5D0WhHTXk,3924
1605
1621
  mindsdb/integrations/handlers/vertica_handler/__about__.py,sha256=11Aa7YF_-bkqrVZ4D2tNwZpfa-kEt5QpaLKKVnS_WYA,343
1606
1622
  mindsdb/integrations/handlers/vertica_handler/__init__.py,sha256=AHg3kPYNZ5BV8-t_AHyfP5pRw7ker1-JCAnaImmIyyc,600
1607
1623
  mindsdb/integrations/handlers/vertica_handler/connection_args.py,sha256=1Gf9hLDrMkVGuoliiTx5JrxGHOpZKsb54KXiDC-adWg,1268
1608
1624
  mindsdb/integrations/handlers/vertica_handler/icon.svg,sha256=T9aDBMWile8EWwMaQjXcWzjRAnN18PtG0Z4xT8rRtPU,1482
1609
1625
  mindsdb/integrations/handlers/vertica_handler/requirements.txt,sha256=Gt_4VkgNTpeUohDXQP_kbLXcVw_uLf91hC8NrKPtMTw,40
1610
- 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
1611
1627
  mindsdb/integrations/handlers/vertica_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1612
- 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
1613
1629
  mindsdb/integrations/handlers/vitess_handler/__about__.py,sha256=gu0GmNcKVxMVHYbe9GhBNJ8X_s_9-DrImVUQxll-rU4,340
1614
1630
  mindsdb/integrations/handlers/vitess_handler/__init__.py,sha256=D2IoTFIK2_28Y0EW4LZmE9hVn58Gt9iISxA-nOpMN1c,481
1615
1631
  mindsdb/integrations/handlers/vitess_handler/icon.svg,sha256=Ru4YAcun-wgPpfILPcqGw7QwRFXZhEntYslkzkz6jQY,2834
1616
1632
  mindsdb/integrations/handlers/vitess_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
1617
- 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
1618
1634
  mindsdb/integrations/handlers/vitess_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1619
- 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
1620
1636
  mindsdb/integrations/handlers/weaviate_handler/__about__.py,sha256=KVr6a_8bmKvHgs_lDmhxstO5HWChFGd-mxlw3jEE5Fc,343
1621
1637
  mindsdb/integrations/handlers/weaviate_handler/__init__.py,sha256=57wDF-H1g4I09beDPFqUEPycLcdarstPXr2dEJe-fhk,661
1622
1638
  mindsdb/integrations/handlers/weaviate_handler/connection_args.py,sha256=R9iG_4m5HUxZDVHKtR4XTSsOF5q5ABEszpG2uMTXHDA,755
@@ -1628,7 +1644,7 @@ mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE
1628
1644
  mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
1629
1645
  mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
1630
1646
  mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=dCBqMYKwdQdThqbxeZA0a9z--yBC5vJJ8q8MikIKA2Q,11305
1631
- 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
1632
1648
  mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
1633
1649
  mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
1634
1650
  mindsdb/integrations/handlers/webz_handler/icon.svg,sha256=Mvt32fMxE_p294_hTqGVY3vnRkbZOJ2a0n9M72aZjTk,1042
@@ -1636,19 +1652,19 @@ mindsdb/integrations/handlers/webz_handler/requirements.txt,sha256=OFXmQCjEWHwfH
1636
1652
  mindsdb/integrations/handlers/webz_handler/webz_handler.py,sha256=Oxtx_V-EFL9u7mr5qv1WaPP6TrddSoHlk_lbVNDDwWE,5765
1637
1653
  mindsdb/integrations/handlers/webz_handler/webz_tables.py,sha256=w5PKcG62_HQA_8m1W4xIiQJ6eJKTXq-GjQ8_deUdAwU,6219
1638
1654
  mindsdb/integrations/handlers/whatsapp_handler/__about__.py,sha256=TVjX_hyWXjHSGd_VgGztlHFCCJMD5a1XSMpROpTIxj4,344
1639
- 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
1640
1656
  mindsdb/integrations/handlers/whatsapp_handler/icon.svg,sha256=0eWNgJq2Oru3XokxTDokZUFzgx-phehzXn5XeWokXKM,3521
1641
1657
  mindsdb/integrations/handlers/whatsapp_handler/requirements.txt,sha256=idAcm6c8tcT72EnGmYdd27H9MCytrxzuRVLpLnNnaDU,6
1642
1658
  mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py,sha256=2TLKbQv9h2LnBBoLUQxi0Wb01raXiJkrbh-it_nTo6g,14477
1643
1659
  mindsdb/integrations/handlers/writer_handler/__about__.py,sha256=fi8lkAE-e3p6dDhPmBtGI3nWaScrgeJ96YFEzpyyx0Y,336
1644
1660
  mindsdb/integrations/handlers/writer_handler/__init__.py,sha256=4g7e_HuLGt2pHD0KPTU9zSQdfR9ANEdJEBOkXYurIgA,545
1645
- mindsdb/integrations/handlers/writer_handler/evaluate.py,sha256=NWXfHO6YutIJ4tuMCbAic1QS1-W3VEq72foLLRlr_B0,12498
1661
+ mindsdb/integrations/handlers/writer_handler/evaluate.py,sha256=mfn33gUcDm60v7gbFOnQJ2_4JXQDjbwkYGj9KRedXhI,12497
1646
1662
  mindsdb/integrations/handlers/writer_handler/icon.svg,sha256=nx6KAU1Genn-XnAPvrucTZqU2MQC4WOBTaiImAP04Vg,1814
1647
1663
  mindsdb/integrations/handlers/writer_handler/ingest.py,sha256=4N783Eg2nqKwmt0Hf7Mgp_ieycw9mYuwMN_V52gJC18,338
1648
1664
  mindsdb/integrations/handlers/writer_handler/rag.py,sha256=KSkMYPZ9gRRGP4C47yhhRTsDJ7bqJ_FPUm9tI0-5WAY,415
1649
1665
  mindsdb/integrations/handlers/writer_handler/requirements.txt,sha256=lNCsHd4W-UUS9lDEAcO9QkCK9CWYV3eGbCjnHTl5YHI,97
1650
- mindsdb/integrations/handlers/writer_handler/settings.py,sha256=dwihPL0hGY3AEcA_THVyG6mM3s99PYcID_JRV114iLU,2835
1651
- 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
1652
1668
  mindsdb/integrations/handlers/xata_handler/__about__.py,sha256=g-EqC8OMmbjncIYQnLG-kaiLahhKCJZmBJCzLfUKLbY,331
1653
1669
  mindsdb/integrations/handlers/xata_handler/__init__.py,sha256=73nSEn5d_gRnjI3U92XLfjfKiik7EuSvtpOZ7L2LOYg,643
1654
1670
  mindsdb/integrations/handlers/xata_handler/connection_args.py,sha256=V1fIbrnoNo1AQ_KjX1wN-Ve5NYplDIBqa5QtbtjZ7Fo,1010
@@ -1661,14 +1677,14 @@ mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=wz69UgXa3njxAci
1661
1677
  mindsdb/integrations/handlers/youtube_handler/connection_args.py,sha256=08xO6KHfAlFvgSq9QU6PxWDk9AmmPgXdx41ayKxHGAI,923
1662
1678
  mindsdb/integrations/handlers/youtube_handler/icon.svg,sha256=uvNffuRPGVzPxWkbZzkSrw2SHm8M8c4GbeypiHPWDss,954
1663
1679
  mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=1TSFkd3bOkjfohLD9ZRIynuQGqAyyL-qZjZC_BWapJU,129
1664
- mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=FewpJAHZyYJItt2qKaHjXpZwajpxMAWAD6DibVWic5Y,4217
1665
- mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=-PiJbjpqoWjh-sdf-EiJ9nyan7DfmkNmPvROzHYgZjA,16797
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
1666
1682
  mindsdb/integrations/handlers/yugabyte_handler/__about__.py,sha256=tVimKqXLHCbBZFeVs2_LfbwaXt3oOBx2k_fTbiu4uwU,350
1667
1683
  mindsdb/integrations/handlers/yugabyte_handler/__init__.py,sha256=ZaXZKRnnzUOGLvydpoeSjOxlLx8L_ymcXdEydokAh28,490
1668
1684
  mindsdb/integrations/handlers/yugabyte_handler/icon.svg,sha256=9EWkdK9d1nWu45_dFleLLh3qWPf7eZLj2cwB2kwhIH4,3292
1669
- mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py,sha256=wNEVAgPzxKXkTffTAyspORJ1iEanm3bEfeQKjiRpJM4,1982
1685
+ mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py,sha256=UZz9RDFPbBXOUnba6Ft0Y_lggPTenQJmLex4MsMD5mA,1763
1670
1686
  mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1671
- 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
1672
1688
  mindsdb/integrations/handlers/zendesk_handler/__about__.py,sha256=-gcxH59ewAdZcRHOVNOKdOoU2pkWS2fc7w3liM0rPnE,341
1673
1689
  mindsdb/integrations/handlers/zendesk_handler/__init__.py,sha256=Kaq_K9rpEuBJOMhlijWzkk6NRxk86G7Kpx0RbjAAsNk,633
1674
1690
  mindsdb/integrations/handlers/zendesk_handler/connection_args.py,sha256=xlvJDA5gpIKrf7gciQ_RR57Z4sxG82QSU5p2x3KLymI,735
@@ -1699,9 +1715,9 @@ mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4Se
1699
1715
  mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
1700
1716
  mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
1701
1717
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1702
- mindsdb/integrations/libs/response.py,sha256=aWIzWrZ6RQkeN9-YS-iaq1q4if6YLd0icnQKBC4YvcI,5886
1718
+ mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
1703
1719
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1704
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=NuILtarU7TSRCWidb1GWh7BxiWy-wrFHDUSFTJzvArY,18227
1720
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=p4wWZIl1fq6PnCiHSjTPW5Jlrmdw9MzU7RzKvpDUXVA,18445
1705
1721
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1706
1722
  mindsdb/integrations/libs/llm/config.py,sha256=FH5ODdNmiqdwTLHpXmEla0zwEPlitNactTm_i2UUmC0,4337
1707
1723
  mindsdb/integrations/libs/llm/utils.py,sha256=K5jc9NyME4MZWyVyirhgQA_Dq6HRvP4lhJqnlrcjWy0,25101
@@ -1717,14 +1733,14 @@ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=ccz
1717
1733
  mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
1718
1734
  mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1719
1735
  mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
1720
- mindsdb/integrations/utilities/handler_utils.py,sha256=r_EBkrgf6dmkHmH12ANOFIw6aS03mTeSU_tWa9p3yVc,2404
1736
+ mindsdb/integrations/utilities/handler_utils.py,sha256=QbAUGgeyXr5fAJZqyrqtl59Re8Ze0ER5h8zK5ITrOYQ,3055
1721
1737
  mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
1722
1738
  mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
1723
1739
  mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
1724
1740
  mindsdb/integrations/utilities/sql_utils.py,sha256=zPXrG3pI-wbrrBTM9WXMwt66zsQHw2RZ1qXUX58rJ9Q,6777
1725
1741
  mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
1726
1742
  mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
1727
- mindsdb/integrations/utilities/utils.py,sha256=TuIgAbuZVkCRUSgLmqJ2STZ1CxVgBGrEnajW68SsKg0,972
1743
+ mindsdb/integrations/utilities/utils.py,sha256=sM2WfOrlIyliSm2lXaPyU21l4kQZVoSv1yLsBDKv90k,972
1728
1744
  mindsdb/integrations/utilities/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1729
1745
  mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-8BNfeUJshGz4_MFrIDYBQ,1665
1730
1746
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
@@ -1732,10 +1748,10 @@ mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_samp
1732
1748
  mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1733
1749
  mindsdb/integrations/utilities/files/file_reader.py,sha256=rqL4XgeLRaBE3B0rFfMm6zNctMJs-IHV5_tTqnqqpww,11508
1734
1750
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1735
- 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
1736
1752
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
1737
1753
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=JikiOFYkji_7l1ckXn3I8NjrruTjcI7TdpqHxLU-mIE,6292
1738
- 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
1739
1755
  mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
1740
1756
  mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
1741
1757
  mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py,sha256=Nuug_6Zggj5Q4D01sRLpyHrGLvyLL1ONg3SiZH8i4W4,2400
@@ -1782,16 +1798,16 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
1782
1798
  mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
1783
1799
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1784
1800
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1785
- mindsdb/interfaces/agents/agents_controller.py,sha256=NwqgRlZ1XyZggxLI98x0xVt2vyqrefqrzN6ZvXoU6kU,18318
1801
+ mindsdb/interfaces/agents/agents_controller.py,sha256=l_lC08HnE7F_Iki-hm9VznEY8Afmv1-diO7YJIyqfSo,27106
1786
1802
  mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
1787
- mindsdb/interfaces/agents/constants.py,sha256=2UD4YaxhkDkwqAqCbIRGQH53vuOWq8Khjb_Y99Ijtn8,5022
1803
+ mindsdb/interfaces/agents/constants.py,sha256=7drGeBdnwJOBnPKgjd8lKhIYu1yYlYrDUxMvStIuEsA,5822
1788
1804
  mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
1789
- mindsdb/interfaces/agents/langchain_agent.py,sha256=1yWg_vTSG-kQkBV5wV7stySVgBBLqY2Zq3ByW1UhsRs,27682
1805
+ mindsdb/interfaces/agents/langchain_agent.py,sha256=GUaxPkT7a5qXCKo2j3p-M8qpiJkwLfZv0C3epxbrMAU,28313
1790
1806
  mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
1791
1807
  mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
1792
1808
  mindsdb/interfaces/agents/mcp_client_agent.py,sha256=9oki-GDsN1H6fYsNLBQWTMYSHGpWliYF9I5AZSuXS8U,9814
1793
1809
  mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
1794
- mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=lk7UyE7tK807GXLBDr4-b2VVFUUzDtpMx2GjVtywv3o,2459
1810
+ mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=-BYmUrTejJN9VAxn0OzNIwiopCK-Z5cHkSG0nAq7KAo,6725
1795
1811
  mindsdb/interfaces/agents/run_mcp_agent.py,sha256=4ZXhIGBu3wVIZC9Ys6vTJDxGJzLXppLLqzbg1UFanS8,8689
1796
1812
  mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
1797
1813
  mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
@@ -1817,32 +1833,34 @@ mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
1817
1833
  mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
1818
1834
  mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1819
1835
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1820
- mindsdb/interfaces/knowledge_base/controller.py,sha256=0Eiq2vig_05azth4zI4UO7ygqYAkx3u-2ab7rxckPCw,45496
1836
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=UZww7HeADl03JC6GkfjVI8SuoZiylf2B_qqeX_pLiOQ,46617
1821
1837
  mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
1822
1838
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1823
1839
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1824
1840
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
1825
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=dWcsNNMHntcVcbUKnbFhtjDGLxZwVVjGO5Ao-q7TsWQ,14477
1826
- 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
1827
1844
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1828
1845
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1829
1846
  mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
1830
1847
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1831
- mindsdb/interfaces/query_context/context_controller.py,sha256=PlC4skYCQpEbNKkbcNgcPhSmf4uT03We58FYbGtUMvE,17564
1848
+ mindsdb/interfaces/query_context/context_controller.py,sha256=AonESR6kb3kuqT-t_eJJXJfFSr9TWJVnpxdWkenBiuY,19756
1832
1849
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1833
1850
  mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
1834
1851
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1835
1852
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1836
- 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
1837
1854
  mindsdb/interfaces/skills/skills_controller.py,sha256=cNblNQNOJXQkuXq0q2g7-OmAFG-QoBbRign6gHt6NLg,6319
1838
- mindsdb/interfaces/skills/sql_agent.py,sha256=60Kqic-6Hj5YxLCqAqD7LPUPgNqcLnUC8DVeMpiRQcQ,16042
1855
+ mindsdb/interfaces/skills/sql_agent.py,sha256=Zs1WPLencvKfmDFw1aAKJowmGXuNGlOg0merHhGdDbI,24881
1839
1856
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1840
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
1841
1859
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
1842
- 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
1843
1861
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1844
1862
  mindsdb/interfaces/storage/db.py,sha256=tIbODmfE6YkFup2PfVhT6lgTWNkwkJK42evSNWn52Ns,20309
1845
- mindsdb/interfaces/storage/fs.py,sha256=4Nyo-h23UtZc2nz_LWyVzboC_e1jlU58aph1_en8MdE,21155
1863
+ mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
1846
1864
  mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
1847
1865
  mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
1848
1866
  mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1854,13 +1872,15 @@ mindsdb/interfaces/tasks/task_thread.py,sha256=RJfPF8BUpwS95M-ytDyq35-1RUp2_Q4K3
1854
1872
  mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1855
1873
  mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
1856
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
1857
1877
  mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1858
1878
  mindsdb/metrics/metrics.py,sha256=6pV5DO85OF_iIBTma0TXRUrfNHU9a0Ds2RS2u1-XYrU,1956
1859
1879
  mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
1860
1880
  mindsdb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1861
1881
  mindsdb/migrations/alembic.ini,sha256=NdEIqmmxo5mIPQYbimTMVJ3VRay5BBs0PM1XsaAr1Gw,2193
1862
- mindsdb/migrations/env.py,sha256=Nb4LF9rwlONJSoJOm8A3oMCblLuoQ7bszubgBUYj9f8,2219
1863
- mindsdb/migrations/migrate.py,sha256=8Hfgjd7swAEAdqOIioNTxOzxQBLTcQMd3vE2JeRwMzg,1692
1882
+ mindsdb/migrations/env.py,sha256=mkmVUSL2a107tiE8FPcFFeGxvEiyEwXQ75BNbMNjLG4,2217
1883
+ mindsdb/migrations/migrate.py,sha256=VA0hVz_PaV1VFn5gQ4NZofLHJD8gJyaI4snrHvG0IpY,2989
1864
1884
  mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py,sha256=SdJFsF-awdH0vvyJ_cku-QggiSZAn0x1PHNF_3YgMFk,5871
1865
1885
  mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py,sha256=VKgouePcADnmsp-AyxILjOhPVTvIZccorsH_UJN0V7E,1050
1866
1886
  mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py,sha256=ZBqlmRK3mqvLtzFaA1AqF-rlXCPyc45wG3l1S1COs5A,10817
@@ -1920,11 +1940,12 @@ mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_j
1920
1940
  mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py,sha256=5I6Zs75EzHCAEvRPbjnCEhgT-YfXJU1fHR4GeZxMyVY,1087
1921
1941
  mindsdb/migrations/versions/2025-03-21_fda503400e43_queries.py,sha256=rZ0oj2DTLxz4sRWVElZ4YfSzEK19fIcLuRfS_3LX0rY,1418
1922
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
1923
1944
  mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1924
1945
  mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1925
1946
  mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
1926
1947
  mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
1927
- mindsdb/utilities/config.py,sha256=mboQUo8eFQvYVF4v4h3A394D0fiyL1I7dwFy41TEVQM,22240
1948
+ mindsdb/utilities/config.py,sha256=qF1Tr1YPz0c2O5GqUbZZkWKci_7kstCkuL-5OXAFJgI,26578
1928
1949
  mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
1929
1950
  mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
1930
1951
  mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
@@ -1938,7 +1959,7 @@ mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
1938
1959
  mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
1939
1960
  mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
1940
1961
  mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
1941
- mindsdb/utilities/starters.py,sha256=S9GXhgGCAgqyvxxP-Fqj_LCTRqAK5FdNyVi8Ele6ywE,1104
1962
+ mindsdb/utilities/starters.py,sha256=zSsSwCdO4k2Sv-8Q8to7y-tc2LkP8gwzP6rbdcL06hI,1508
1942
1963
  mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
1943
1964
  mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
1944
1965
  mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
@@ -1960,8 +1981,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
1960
1981
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1961
1982
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1962
1983
  mindsdb/utilities/render/sqlalchemy_render.py,sha256=6NqOcfz19dhd0PEyNfOtNHsBt1fGjq2E3nFNUad5HOk,31444
1963
- mindsdb-25.5.3.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1964
- mindsdb-25.5.3.0.dist-info/METADATA,sha256=k9FCIeu9ylUemIY1bKvDVGLkniG5esFGQHdhIUkSoBc,46306
1965
- mindsdb-25.5.3.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
1966
- mindsdb-25.5.3.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1967
- mindsdb-25.5.3.0.dist-info/RECORD,,
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,,