MindsDB 1.3.1__py3-none-any.whl → 25.1.2.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (1960) hide show
  1. MindsDB-25.1.2.0.dist-info/LICENSE +85 -0
  2. MindsDB-25.1.2.0.dist-info/METADATA +932 -0
  3. MindsDB-25.1.2.0.dist-info/RECORD +1923 -0
  4. {MindsDB-1.3.1.dist-info → MindsDB-25.1.2.0.dist-info}/WHEEL +1 -1
  5. mindsdb/__about__.py +5 -5
  6. mindsdb/__init__.py +1 -11
  7. mindsdb/__main__.py +552 -0
  8. mindsdb/api/common/check_auth.py +42 -0
  9. mindsdb/api/executor/__init__.py +2 -0
  10. mindsdb/api/executor/command_executor.py +2047 -0
  11. mindsdb/api/executor/controllers/__init__.py +1 -0
  12. mindsdb/api/executor/controllers/session_controller.py +91 -0
  13. mindsdb/api/executor/data_types/answer.py +16 -0
  14. mindsdb/api/executor/data_types/response_type.py +8 -0
  15. mindsdb/api/executor/datahub/__init__.py +1 -0
  16. mindsdb/api/executor/datahub/classes/tables_row.py +65 -0
  17. mindsdb/api/executor/datahub/datanodes/__init__.py +4 -0
  18. mindsdb/api/executor/datahub/datanodes/datanode.py +20 -0
  19. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +180 -0
  20. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +281 -0
  21. mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +428 -0
  22. mindsdb/api/executor/datahub/datanodes/project_datanode.py +186 -0
  23. mindsdb/api/executor/datahub/datanodes/system_tables.py +525 -0
  24. mindsdb/api/executor/exceptions.py +39 -0
  25. mindsdb/api/executor/planner/__init__.py +5 -0
  26. mindsdb/api/executor/planner/exceptions.py +3 -0
  27. mindsdb/api/executor/planner/plan_join.py +640 -0
  28. mindsdb/api/executor/planner/plan_join_ts.py +384 -0
  29. mindsdb/api/executor/planner/query_plan.py +29 -0
  30. mindsdb/api/executor/planner/query_planner.py +837 -0
  31. mindsdb/api/executor/planner/query_prepare.py +527 -0
  32. mindsdb/api/executor/planner/step_result.py +19 -0
  33. mindsdb/api/executor/planner/steps.py +262 -0
  34. mindsdb/api/executor/planner/ts_utils.py +93 -0
  35. mindsdb/api/executor/planner/utils.py +126 -0
  36. mindsdb/api/executor/sql_query/result_set.py +312 -0
  37. mindsdb/api/executor/sql_query/sql_query.py +318 -0
  38. mindsdb/api/executor/sql_query/steps/__init__.py +13 -0
  39. mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +424 -0
  40. mindsdb/api/executor/sql_query/steps/base.py +21 -0
  41. mindsdb/api/executor/sql_query/steps/delete_step.py +49 -0
  42. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +116 -0
  43. mindsdb/api/executor/sql_query/steps/insert_step.py +129 -0
  44. mindsdb/api/executor/sql_query/steps/join_step.py +109 -0
  45. mindsdb/api/executor/sql_query/steps/map_reduce_step.py +179 -0
  46. mindsdb/api/executor/sql_query/steps/multiple_step.py +24 -0
  47. mindsdb/api/executor/sql_query/steps/prepare_steps.py +59 -0
  48. mindsdb/api/executor/sql_query/steps/project_step.py +86 -0
  49. mindsdb/api/executor/sql_query/steps/sql_steps.py +41 -0
  50. mindsdb/api/executor/sql_query/steps/subselect_step.py +159 -0
  51. mindsdb/api/executor/sql_query/steps/union_step.py +56 -0
  52. mindsdb/api/executor/sql_query/steps/update_step.py +129 -0
  53. mindsdb/api/executor/utilities/functions.py +37 -0
  54. mindsdb/api/executor/utilities/sql.py +195 -0
  55. mindsdb/api/http/gui.py +94 -0
  56. mindsdb/api/http/gunicorn_wrapper.py +17 -0
  57. mindsdb/api/http/initialize.py +454 -0
  58. mindsdb/api/http/namespaces/agents.py +499 -0
  59. mindsdb/api/http/namespaces/analysis.py +117 -0
  60. mindsdb/api/http/namespaces/auth.py +167 -0
  61. mindsdb/api/http/namespaces/chatbots.py +318 -0
  62. mindsdb/api/http/namespaces/config.py +286 -0
  63. mindsdb/api/http/namespaces/configs/agents.py +3 -0
  64. mindsdb/api/http/namespaces/configs/analysis.py +3 -0
  65. mindsdb/api/http/namespaces/configs/auth.py +4 -0
  66. mindsdb/api/http/namespaces/configs/chatbots.py +3 -0
  67. mindsdb/api/http/namespaces/configs/config.py +3 -0
  68. mindsdb/api/http/namespaces/configs/databases.py +3 -0
  69. mindsdb/api/http/namespaces/configs/default.py +4 -0
  70. mindsdb/api/http/namespaces/configs/files.py +4 -0
  71. mindsdb/api/http/namespaces/configs/handlers.py +3 -0
  72. mindsdb/api/http/namespaces/configs/jobs.py +3 -0
  73. mindsdb/api/http/namespaces/configs/knowledge_bases.py +3 -0
  74. mindsdb/api/http/namespaces/configs/projects.py +3 -0
  75. mindsdb/api/http/namespaces/configs/skills.py +3 -0
  76. mindsdb/api/http/namespaces/configs/sql.py +3 -0
  77. mindsdb/api/http/namespaces/configs/tabs.py +3 -0
  78. mindsdb/api/http/namespaces/configs/tree.py +3 -0
  79. mindsdb/api/http/namespaces/configs/util.py +3 -0
  80. mindsdb/api/http/namespaces/configs/webhooks.py +3 -0
  81. mindsdb/api/http/namespaces/databases.py +394 -0
  82. mindsdb/api/http/namespaces/default.py +152 -0
  83. mindsdb/api/http/namespaces/file.py +191 -0
  84. mindsdb/api/http/namespaces/handlers.py +232 -0
  85. mindsdb/api/http/namespaces/jobs.py +99 -0
  86. mindsdb/api/http/namespaces/knowledge_bases.py +420 -0
  87. mindsdb/api/http/namespaces/models.py +297 -0
  88. mindsdb/api/http/namespaces/projects.py +46 -0
  89. mindsdb/api/http/namespaces/skills.py +170 -0
  90. mindsdb/api/http/namespaces/sql.py +162 -0
  91. mindsdb/api/http/namespaces/tab.py +131 -0
  92. mindsdb/api/http/namespaces/tree.py +105 -0
  93. mindsdb/api/http/namespaces/util.py +144 -0
  94. mindsdb/api/http/namespaces/views.py +153 -0
  95. mindsdb/api/http/namespaces/webhooks.py +29 -0
  96. mindsdb/api/http/start.py +67 -0
  97. mindsdb/api/http/utils.py +37 -0
  98. mindsdb/api/mongo/classes/__init__.py +5 -0
  99. mindsdb/api/mongo/classes/query_sql.py +18 -0
  100. mindsdb/api/mongo/classes/responder.py +45 -0
  101. mindsdb/api/mongo/classes/responder_collection.py +34 -0
  102. mindsdb/api/mongo/classes/scram.py +86 -0
  103. mindsdb/api/mongo/classes/session.py +23 -0
  104. mindsdb/api/mongo/functions/__init__.py +19 -0
  105. mindsdb/api/mongo/responders/__init__.py +73 -0
  106. mindsdb/api/mongo/responders/add_shard.py +13 -0
  107. mindsdb/api/mongo/responders/aggregate.py +90 -0
  108. mindsdb/api/mongo/responders/buildinfo.py +17 -0
  109. mindsdb/api/mongo/responders/coll_stats.py +62 -0
  110. mindsdb/api/mongo/responders/company_id.py +25 -0
  111. mindsdb/api/mongo/responders/connection_status.py +22 -0
  112. mindsdb/api/mongo/responders/count.py +21 -0
  113. mindsdb/api/mongo/responders/db_stats.py +31 -0
  114. mindsdb/api/mongo/responders/delete.py +105 -0
  115. mindsdb/api/mongo/responders/describe.py +23 -0
  116. mindsdb/api/mongo/responders/end_sessions.py +13 -0
  117. mindsdb/api/mongo/responders/find.py +175 -0
  118. mindsdb/api/mongo/responders/get_cmd_line_opts.py +18 -0
  119. mindsdb/api/mongo/responders/get_free_monitoring_status.py +14 -0
  120. mindsdb/api/mongo/responders/get_parameter.py +23 -0
  121. mindsdb/api/mongo/responders/getlog.py +14 -0
  122. mindsdb/api/mongo/responders/host_info.py +28 -0
  123. mindsdb/api/mongo/responders/insert.py +268 -0
  124. mindsdb/api/mongo/responders/is_master.py +20 -0
  125. mindsdb/api/mongo/responders/is_master_lower.py +13 -0
  126. mindsdb/api/mongo/responders/list_collections.py +55 -0
  127. mindsdb/api/mongo/responders/list_databases.py +37 -0
  128. mindsdb/api/mongo/responders/list_indexes.py +22 -0
  129. mindsdb/api/mongo/responders/ping.py +13 -0
  130. mindsdb/api/mongo/responders/recv_chunk_start.py +13 -0
  131. mindsdb/api/mongo/responders/replsetgetstatus.py +13 -0
  132. mindsdb/api/mongo/responders/sasl_continue.py +34 -0
  133. mindsdb/api/mongo/responders/sasl_start.py +33 -0
  134. mindsdb/api/mongo/responders/update_range_deletions.py +12 -0
  135. mindsdb/api/mongo/responders/whatsmyuri.py +18 -0
  136. mindsdb/api/mongo/server.py +388 -0
  137. mindsdb/api/mongo/start.py +15 -0
  138. mindsdb/api/mongo/utilities/mongodb_ast.py +257 -0
  139. mindsdb/api/mongo/utilities/mongodb_parser.py +145 -0
  140. mindsdb/api/mongo/utilities/mongodb_query.py +84 -0
  141. mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +130 -0
  142. mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +3 -0
  143. mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +37 -0
  144. mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +22 -0
  145. mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +151 -0
  146. mindsdb/api/mysql/mysql_proxy/data_types/__init__.py +0 -0
  147. mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +212 -0
  148. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +166 -0
  149. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +15 -0
  150. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +140 -0
  151. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +44 -0
  152. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +94 -0
  153. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +159 -0
  154. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +52 -0
  155. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +58 -0
  156. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +20 -0
  157. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +80 -0
  158. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +96 -0
  159. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +106 -0
  160. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +13 -0
  161. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +54 -0
  162. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +46 -0
  163. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +53 -0
  164. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +16 -0
  165. mindsdb/api/mysql/mysql_proxy/executor/__init__.py +2 -0
  166. mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +138 -0
  167. mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py +0 -0
  168. mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +135 -0
  169. mindsdb/api/mysql/mysql_proxy/libs/__init__.py +1 -0
  170. mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +1 -0
  171. mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +1030 -0
  172. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +930 -0
  173. mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +1 -0
  174. mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +18 -0
  175. mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +48 -0
  176. mindsdb/api/mysql/start.py +13 -0
  177. mindsdb/api/postgres/__init__.py +0 -0
  178. mindsdb/api/postgres/postgres_proxy/__init__.py +0 -0
  179. mindsdb/api/postgres/postgres_proxy/executor/__init__.py +1 -0
  180. mindsdb/api/postgres/postgres_proxy/executor/executor.py +188 -0
  181. mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py +0 -0
  182. mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +322 -0
  183. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +34 -0
  184. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +31 -0
  185. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +1265 -0
  186. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +31 -0
  187. mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +253 -0
  188. mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +479 -0
  189. mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +10 -0
  190. mindsdb/api/postgres/start.py +11 -0
  191. mindsdb/integrations/__init__.py +0 -0
  192. mindsdb/integrations/handlers/__init__.py +0 -0
  193. mindsdb/integrations/handlers/access_handler/__about__.py +9 -0
  194. mindsdb/integrations/handlers/access_handler/__init__.py +20 -0
  195. mindsdb/integrations/handlers/access_handler/access_handler.py +197 -0
  196. mindsdb/integrations/handlers/access_handler/connection_args.py +15 -0
  197. mindsdb/integrations/handlers/access_handler/icon.svg +19 -0
  198. mindsdb/integrations/handlers/access_handler/requirements.txt +2 -0
  199. mindsdb/integrations/handlers/access_handler/tests/__init__.py +0 -0
  200. mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +32 -0
  201. mindsdb/integrations/handlers/aerospike_handler/__about__.py +9 -0
  202. mindsdb/integrations/handlers/aerospike_handler/__init__.py +30 -0
  203. mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +236 -0
  204. mindsdb/integrations/handlers/aerospike_handler/connection_args.py +46 -0
  205. mindsdb/integrations/handlers/aerospike_handler/icon.svg +11 -0
  206. mindsdb/integrations/handlers/aerospike_handler/requirements.txt +1 -0
  207. mindsdb/integrations/handlers/aerospike_handler/tests/__init__.py +0 -0
  208. mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +36 -0
  209. mindsdb/integrations/handlers/airtable_handler/__about__.py +9 -0
  210. mindsdb/integrations/handlers/airtable_handler/__init__.py +20 -0
  211. mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +211 -0
  212. mindsdb/integrations/handlers/airtable_handler/connection_args.py +26 -0
  213. mindsdb/integrations/handlers/airtable_handler/icon.svg +11 -0
  214. mindsdb/integrations/handlers/airtable_handler/tests/__init__.py +0 -0
  215. mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +34 -0
  216. mindsdb/integrations/handlers/altibase_handler/__about__.py +9 -0
  217. mindsdb/integrations/handlers/altibase_handler/__init__.py +20 -0
  218. mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +253 -0
  219. mindsdb/integrations/handlers/altibase_handler/connection_args.py +50 -0
  220. mindsdb/integrations/handlers/altibase_handler/icon.svg +3 -0
  221. mindsdb/integrations/handlers/altibase_handler/requirements.txt +2 -0
  222. mindsdb/integrations/handlers/altibase_handler/tests/__init__.py +0 -0
  223. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +67 -0
  224. mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +68 -0
  225. mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +9 -0
  226. mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +19 -0
  227. mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +180 -0
  228. mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg +13 -0
  229. mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +4 -0
  230. mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +21 -0
  231. mindsdb/integrations/handlers/anthropic_handler/__about__.py +9 -0
  232. mindsdb/integrations/handlers/anthropic_handler/__init__.py +22 -0
  233. mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +108 -0
  234. mindsdb/integrations/handlers/anthropic_handler/icon.svg +3 -0
  235. mindsdb/integrations/handlers/anthropic_handler/requirements.txt +1 -0
  236. mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +9 -0
  237. mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +20 -0
  238. mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +290 -0
  239. mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py +14 -0
  240. mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg +4 -0
  241. mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +3 -0
  242. mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py +51 -0
  243. mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py +0 -0
  244. mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py +212 -0
  245. mindsdb/integrations/handlers/apache_doris_handler/__about__.py +9 -0
  246. mindsdb/integrations/handlers/apache_doris_handler/__init__.py +20 -0
  247. mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +10 -0
  248. mindsdb/integrations/handlers/apache_doris_handler/icon.svg +5 -0
  249. mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +1 -0
  250. mindsdb/integrations/handlers/aqicn_handler/__about__.py +9 -0
  251. mindsdb/integrations/handlers/aqicn_handler/__init__.py +28 -0
  252. mindsdb/integrations/handlers/aqicn_handler/aqicn.py +35 -0
  253. mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +97 -0
  254. mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +425 -0
  255. mindsdb/integrations/handlers/aqicn_handler/connection_args.py +18 -0
  256. mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
  257. mindsdb/integrations/handlers/aqicn_handler/tests/__init__.py +0 -0
  258. mindsdb/integrations/handlers/athena_handler/__about__.py +9 -0
  259. mindsdb/integrations/handlers/athena_handler/__init__.py +20 -0
  260. mindsdb/integrations/handlers/athena_handler/athena_handler.py +218 -0
  261. mindsdb/integrations/handlers/athena_handler/connection_args.py +51 -0
  262. mindsdb/integrations/handlers/athena_handler/icon.svg +22 -0
  263. mindsdb/integrations/handlers/athena_handler/tests/__init__.py +0 -0
  264. mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py +85 -0
  265. mindsdb/integrations/handlers/aurora_handler/__about__.py +9 -0
  266. mindsdb/integrations/handlers/aurora_handler/__init__.py +20 -0
  267. mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +140 -0
  268. mindsdb/integrations/handlers/aurora_handler/connection_args.py +50 -0
  269. mindsdb/integrations/handlers/aurora_handler/icon.svg +7 -0
  270. mindsdb/integrations/handlers/aurora_handler/requirements.txt +1 -0
  271. mindsdb/integrations/handlers/aurora_handler/tests/__init__.py +0 -0
  272. mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +37 -0
  273. mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +37 -0
  274. mindsdb/integrations/handlers/autogluon_handler/__about__.py +9 -0
  275. mindsdb/integrations/handlers/autogluon_handler/__init__.py +20 -0
  276. mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +57 -0
  277. mindsdb/integrations/handlers/autogluon_handler/config.py +17 -0
  278. mindsdb/integrations/handlers/autogluon_handler/icon.svg +3 -0
  279. mindsdb/integrations/handlers/autogluon_handler/requirements.txt +2 -0
  280. mindsdb/integrations/handlers/autokeras_handler/__about__.py +9 -0
  281. mindsdb/integrations/handlers/autokeras_handler/__init__.py +22 -0
  282. mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +139 -0
  283. mindsdb/integrations/handlers/autokeras_handler/icon.svg +9 -0
  284. mindsdb/integrations/handlers/autokeras_handler/requirements.txt +2 -0
  285. mindsdb/integrations/handlers/autosklearn_handler/__about__.py +9 -0
  286. mindsdb/integrations/handlers/autosklearn_handler/__init__.py +19 -0
  287. mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +53 -0
  288. mindsdb/integrations/handlers/autosklearn_handler/config.py +29 -0
  289. mindsdb/integrations/handlers/autosklearn_handler/icon.png +0 -0
  290. mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +2 -0
  291. mindsdb/integrations/handlers/azure_blob_handler/__about__.py +9 -0
  292. mindsdb/integrations/handlers/azure_blob_handler/__init__.py +20 -0
  293. mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py +346 -0
  294. mindsdb/integrations/handlers/azure_blob_handler/connection_args.py +25 -0
  295. mindsdb/integrations/handlers/azure_blob_handler/icon.svg +30 -0
  296. mindsdb/integrations/handlers/azure_blob_handler/requirements.txt +1 -0
  297. mindsdb/integrations/handlers/bedrock_handler/__about__.py +9 -0
  298. mindsdb/integrations/handlers/bedrock_handler/__init__.py +19 -0
  299. mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py +328 -0
  300. mindsdb/integrations/handlers/bedrock_handler/icon.svg +9 -0
  301. mindsdb/integrations/handlers/bedrock_handler/requirements.txt +1 -0
  302. mindsdb/integrations/handlers/bedrock_handler/settings.py +287 -0
  303. mindsdb/integrations/handlers/bedrock_handler/utilities.py +46 -0
  304. mindsdb/integrations/handlers/bigquery_handler/__about__.py +9 -0
  305. mindsdb/integrations/handlers/bigquery_handler/__init__.py +21 -0
  306. mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +181 -0
  307. mindsdb/integrations/handlers/bigquery_handler/connection_args.py +30 -0
  308. mindsdb/integrations/handlers/bigquery_handler/icon.svg +5 -0
  309. mindsdb/integrations/handlers/bigquery_handler/requirements.txt +2 -0
  310. mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py +0 -0
  311. mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +221 -0
  312. mindsdb/integrations/handlers/binance_handler/__about__.py +9 -0
  313. mindsdb/integrations/handlers/binance_handler/__init__.py +19 -0
  314. mindsdb/integrations/handlers/binance_handler/binance_handler.py +144 -0
  315. mindsdb/integrations/handlers/binance_handler/binance_tables.py +175 -0
  316. mindsdb/integrations/handlers/binance_handler/icon.svg +14 -0
  317. mindsdb/integrations/handlers/binance_handler/requirements.txt +1 -0
  318. mindsdb/integrations/handlers/box_handler/__about__.py +9 -0
  319. mindsdb/integrations/handlers/box_handler/__init__.py +30 -0
  320. mindsdb/integrations/handlers/box_handler/box_handler.py +257 -0
  321. mindsdb/integrations/handlers/box_handler/connection_args.py +17 -0
  322. mindsdb/integrations/handlers/box_handler/icon.svg +1 -0
  323. mindsdb/integrations/handlers/box_handler/requirements.txt +1 -0
  324. mindsdb/integrations/handlers/byom_handler/__about__.py +9 -0
  325. mindsdb/integrations/handlers/byom_handler/__init__.py +21 -0
  326. mindsdb/integrations/handlers/byom_handler/byom_handler.py +678 -0
  327. mindsdb/integrations/handlers/byom_handler/connection_args.py +19 -0
  328. mindsdb/integrations/handlers/byom_handler/icon.svg +13 -0
  329. mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +229 -0
  330. mindsdb/integrations/handlers/byom_handler/requirements.txt +2 -0
  331. mindsdb/integrations/handlers/cassandra_handler/__about__.py +9 -0
  332. mindsdb/integrations/handlers/cassandra_handler/__init__.py +21 -0
  333. mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +27 -0
  334. mindsdb/integrations/handlers/cassandra_handler/connection_args.py +50 -0
  335. mindsdb/integrations/handlers/cassandra_handler/icon.svg +33 -0
  336. mindsdb/integrations/handlers/cassandra_handler/requirements.txt +1 -0
  337. mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py +0 -0
  338. mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +39 -0
  339. mindsdb/integrations/handlers/chromadb_handler/__about__.py +9 -0
  340. mindsdb/integrations/handlers/chromadb_handler/__init__.py +29 -0
  341. mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +491 -0
  342. mindsdb/integrations/handlers/chromadb_handler/connection_args.py +28 -0
  343. mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
  344. mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
  345. mindsdb/integrations/handlers/chromadb_handler/settings.py +62 -0
  346. mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py +0 -0
  347. mindsdb/integrations/handlers/ckan_handler/__about__.py +9 -0
  348. mindsdb/integrations/handlers/ckan_handler/__init__.py +28 -0
  349. mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +310 -0
  350. mindsdb/integrations/handlers/ckan_handler/connection_args.py +22 -0
  351. mindsdb/integrations/handlers/ckan_handler/icon.png +0 -0
  352. mindsdb/integrations/handlers/ckan_handler/requirements.txt +1 -0
  353. mindsdb/integrations/handlers/ckan_handler/tests/__init__.py +0 -0
  354. mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +156 -0
  355. mindsdb/integrations/handlers/clickhouse_handler/__about__.py +9 -0
  356. mindsdb/integrations/handlers/clickhouse_handler/__init__.py +20 -0
  357. mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +168 -0
  358. mindsdb/integrations/handlers/clickhouse_handler/connection_args.py +53 -0
  359. mindsdb/integrations/handlers/clickhouse_handler/icon.svg +4 -0
  360. mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +1 -0
  361. mindsdb/integrations/handlers/clickhouse_handler/tests/__init__.py +0 -0
  362. mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +41 -0
  363. mindsdb/integrations/handlers/clipdrop_handler/__about__.py +9 -0
  364. mindsdb/integrations/handlers/clipdrop_handler/__init__.py +22 -0
  365. mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +87 -0
  366. mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +193 -0
  367. mindsdb/integrations/handlers/clipdrop_handler/icon.svg +6 -0
  368. mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +9 -0
  369. mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +27 -0
  370. mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +219 -0
  371. mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py +33 -0
  372. mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
  373. mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +2 -0
  374. mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py +0 -0
  375. mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +50 -0
  376. mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +9 -0
  377. mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +20 -0
  378. mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +123 -0
  379. mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py +41 -0
  380. mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
  381. mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +2 -0
  382. mindsdb/integrations/handlers/cloud_sql_handler/tests/__init__.py +0 -0
  383. mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +37 -0
  384. mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +37 -0
  385. mindsdb/integrations/handlers/cockroach_handler/__about__.py +9 -0
  386. mindsdb/integrations/handlers/cockroach_handler/__init__.py +19 -0
  387. mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +11 -0
  388. mindsdb/integrations/handlers/cockroach_handler/icon.svg +11 -0
  389. mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py +0 -0
  390. mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +34 -0
  391. mindsdb/integrations/handlers/cohere_handler/__about__.py +9 -0
  392. mindsdb/integrations/handlers/cohere_handler/__init__.py +21 -0
  393. mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +88 -0
  394. mindsdb/integrations/handlers/cohere_handler/icon.svg +12 -0
  395. mindsdb/integrations/handlers/cohere_handler/requirements.txt +1 -0
  396. mindsdb/integrations/handlers/coinbase_handler/__about__.py +9 -0
  397. mindsdb/integrations/handlers/coinbase_handler/__init__.py +21 -0
  398. mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +138 -0
  399. mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +56 -0
  400. mindsdb/integrations/handlers/coinbase_handler/connection_args.py +34 -0
  401. mindsdb/integrations/handlers/coinbase_handler/icon.svg +3 -0
  402. mindsdb/integrations/handlers/coinbase_handler/requirements.txt +0 -0
  403. mindsdb/integrations/handlers/confluence_handler/__about__.py +9 -0
  404. mindsdb/integrations/handlers/confluence_handler/__init__.py +29 -0
  405. mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +102 -0
  406. mindsdb/integrations/handlers/confluence_handler/confluence_table.py +193 -0
  407. mindsdb/integrations/handlers/confluence_handler/connection_args.py +32 -0
  408. mindsdb/integrations/handlers/confluence_handler/icon.svg +14 -0
  409. mindsdb/integrations/handlers/confluence_handler/requirements.txt +1 -0
  410. mindsdb/integrations/handlers/confluence_handler/tests/__init__.py +0 -0
  411. mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +68 -0
  412. mindsdb/integrations/handlers/couchbase_handler/__about__.py +9 -0
  413. mindsdb/integrations/handlers/couchbase_handler/__init__.py +30 -0
  414. mindsdb/integrations/handlers/couchbase_handler/connection_args.py +31 -0
  415. mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +208 -0
  416. mindsdb/integrations/handlers/couchbase_handler/icon.svg +3 -0
  417. mindsdb/integrations/handlers/couchbase_handler/requirements.txt +1 -0
  418. mindsdb/integrations/handlers/couchbase_handler/tests/__init__.py +0 -0
  419. mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +39 -0
  420. mindsdb/integrations/handlers/couchbasevector_handler/__about__.py +9 -0
  421. mindsdb/integrations/handlers/couchbasevector_handler/__init__.py +30 -0
  422. mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py +31 -0
  423. mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py +472 -0
  424. mindsdb/integrations/handlers/couchbasevector_handler/icon.svg +3 -0
  425. mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt +1 -0
  426. mindsdb/integrations/handlers/couchbasevector_handler/tests/__init__.py +0 -0
  427. mindsdb/integrations/handlers/crate_handler/__about__.py +9 -0
  428. mindsdb/integrations/handlers/crate_handler/__init__.py +27 -0
  429. mindsdb/integrations/handlers/crate_handler/crate_handler.py +226 -0
  430. mindsdb/integrations/handlers/crate_handler/icon.svg +14 -0
  431. mindsdb/integrations/handlers/crate_handler/requirements.txt +2 -0
  432. mindsdb/integrations/handlers/crate_handler/tests/__init__.py +0 -0
  433. mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +46 -0
  434. mindsdb/integrations/handlers/d0lt_handler/__about__.py +9 -0
  435. mindsdb/integrations/handlers/d0lt_handler/__init__.py +29 -0
  436. mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +12 -0
  437. mindsdb/integrations/handlers/d0lt_handler/icon.svg +6 -0
  438. mindsdb/integrations/handlers/d0lt_handler/requirements.txt +1 -0
  439. mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py +0 -0
  440. mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +53 -0
  441. mindsdb/integrations/handlers/databend_handler/__about__.py +9 -0
  442. mindsdb/integrations/handlers/databend_handler/__init__.py +20 -0
  443. mindsdb/integrations/handlers/databend_handler/connection_args.py +36 -0
  444. mindsdb/integrations/handlers/databend_handler/databend_handler.py +199 -0
  445. mindsdb/integrations/handlers/databend_handler/icon.svg +9 -0
  446. mindsdb/integrations/handlers/databend_handler/requirements.txt +1 -0
  447. mindsdb/integrations/handlers/databend_handler/tests/__init__.py +1 -0
  448. mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +37 -0
  449. mindsdb/integrations/handlers/databricks_handler/__about__.py +9 -0
  450. mindsdb/integrations/handlers/databricks_handler/__init__.py +29 -0
  451. mindsdb/integrations/handlers/databricks_handler/connection_args.py +58 -0
  452. mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +261 -0
  453. mindsdb/integrations/handlers/databricks_handler/icon.svg +3 -0
  454. mindsdb/integrations/handlers/databricks_handler/requirements.txt +1 -0
  455. mindsdb/integrations/handlers/databricks_handler/tests/__init__.py +0 -0
  456. mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +37 -0
  457. mindsdb/integrations/handlers/datastax_handler/__about__.py +9 -0
  458. mindsdb/integrations/handlers/datastax_handler/__init__.py +27 -0
  459. mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +12 -0
  460. mindsdb/integrations/handlers/datastax_handler/icon.svg +4 -0
  461. mindsdb/integrations/handlers/datastax_handler/requirements.txt +1 -0
  462. mindsdb/integrations/handlers/datastax_handler/tests/__init__.py +0 -0
  463. mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +38 -0
  464. mindsdb/integrations/handlers/db2_handler/__about__.py +9 -0
  465. mindsdb/integrations/handlers/db2_handler/__init__.py +29 -0
  466. mindsdb/integrations/handlers/db2_handler/connection_args.py +53 -0
  467. mindsdb/integrations/handlers/db2_handler/db2_handler.py +235 -0
  468. mindsdb/integrations/handlers/db2_handler/icon.svg +49 -0
  469. mindsdb/integrations/handlers/db2_handler/requirements.txt +2 -0
  470. mindsdb/integrations/handlers/db2_handler/tests/__init__.py +0 -0
  471. mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +46 -0
  472. mindsdb/integrations/handlers/derby_handler/__about__.py +9 -0
  473. mindsdb/integrations/handlers/derby_handler/__init__.py +21 -0
  474. mindsdb/integrations/handlers/derby_handler/connection_args.py +50 -0
  475. mindsdb/integrations/handlers/derby_handler/derby_handler.py +203 -0
  476. mindsdb/integrations/handlers/derby_handler/icon.svg +21 -0
  477. mindsdb/integrations/handlers/derby_handler/requirements.txt +1 -0
  478. mindsdb/integrations/handlers/derby_handler/tests/__init__.py +0 -0
  479. mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +46 -0
  480. mindsdb/integrations/handlers/discord_handler/__about__.py +9 -0
  481. mindsdb/integrations/handlers/discord_handler/__init__.py +27 -0
  482. mindsdb/integrations/handlers/discord_handler/discord_handler.py +187 -0
  483. mindsdb/integrations/handlers/discord_handler/discord_tables.py +189 -0
  484. mindsdb/integrations/handlers/discord_handler/icon.svg +3 -0
  485. mindsdb/integrations/handlers/discord_handler/requirements.txt +0 -0
  486. mindsdb/integrations/handlers/discord_handler/tests/__init__.py +0 -0
  487. mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +59 -0
  488. mindsdb/integrations/handlers/dockerhub_handler/__about__.py +9 -0
  489. mindsdb/integrations/handlers/dockerhub_handler/__init__.py +28 -0
  490. mindsdb/integrations/handlers/dockerhub_handler/connection_args.py +25 -0
  491. mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +55 -0
  492. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +112 -0
  493. mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +509 -0
  494. mindsdb/integrations/handlers/dockerhub_handler/icon.svg +12 -0
  495. mindsdb/integrations/handlers/documentdb_handler/__about__.py +9 -0
  496. mindsdb/integrations/handlers/documentdb_handler/__init__.py +21 -0
  497. mindsdb/integrations/handlers/documentdb_handler/connection_args.py +53 -0
  498. mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +41 -0
  499. mindsdb/integrations/handlers/documentdb_handler/icon.svg +15 -0
  500. mindsdb/integrations/handlers/dremio_handler/__about__.py +9 -0
  501. mindsdb/integrations/handlers/dremio_handler/__init__.py +20 -0
  502. mindsdb/integrations/handlers/dremio_handler/connection_args.py +31 -0
  503. mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +222 -0
  504. mindsdb/integrations/handlers/dremio_handler/icon.svg +16 -0
  505. mindsdb/integrations/handlers/dremio_handler/requirements.txt +1 -0
  506. mindsdb/integrations/handlers/dremio_handler/tests/__init__.py +0 -0
  507. mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +35 -0
  508. mindsdb/integrations/handlers/dropbox_handler/__about__.py +9 -0
  509. mindsdb/integrations/handlers/dropbox_handler/__init__.py +30 -0
  510. mindsdb/integrations/handlers/dropbox_handler/connection_args.py +17 -0
  511. mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py +253 -0
  512. mindsdb/integrations/handlers/dropbox_handler/icon.svg +4 -0
  513. mindsdb/integrations/handlers/dropbox_handler/requirements.txt +1 -0
  514. mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py +0 -0
  515. mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py +18 -0
  516. mindsdb/integrations/handlers/druid_handler/__about__.py +9 -0
  517. mindsdb/integrations/handlers/druid_handler/__init__.py +20 -0
  518. mindsdb/integrations/handlers/druid_handler/connection_args.py +51 -0
  519. mindsdb/integrations/handlers/druid_handler/druid_handler.py +216 -0
  520. mindsdb/integrations/handlers/druid_handler/icon.svg +6 -0
  521. mindsdb/integrations/handlers/druid_handler/requirements.txt +1 -0
  522. mindsdb/integrations/handlers/druid_handler/tests/__init__.py +0 -0
  523. mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +35 -0
  524. mindsdb/integrations/handlers/dspy_handler/__about__.py +9 -0
  525. mindsdb/integrations/handlers/dspy_handler/__init__.py +19 -0
  526. mindsdb/integrations/handlers/dspy_handler/dspy_handler.py +250 -0
  527. mindsdb/integrations/handlers/dspy_handler/icon.svg +14 -0
  528. mindsdb/integrations/handlers/dspy_handler/requirements.txt +8 -0
  529. mindsdb/integrations/handlers/duckdb_handler/__about__.py +9 -0
  530. mindsdb/integrations/handlers/duckdb_handler/__init__.py +28 -0
  531. mindsdb/integrations/handlers/duckdb_handler/connection_args.py +17 -0
  532. mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +170 -0
  533. mindsdb/integrations/handlers/duckdb_handler/icon.svg +10 -0
  534. mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py +0 -0
  535. mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +48 -0
  536. mindsdb/integrations/handlers/dummy_data_handler/__about__.py +9 -0
  537. mindsdb/integrations/handlers/dummy_data_handler/__init__.py +19 -0
  538. mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +97 -0
  539. mindsdb/integrations/handlers/dummy_data_handler/icon.svg +3 -0
  540. mindsdb/integrations/handlers/dynamodb_handler/__about__.py +9 -0
  541. mindsdb/integrations/handlers/dynamodb_handler/__init__.py +20 -0
  542. mindsdb/integrations/handlers/dynamodb_handler/connection_args.py +39 -0
  543. mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +293 -0
  544. mindsdb/integrations/handlers/dynamodb_handler/icon.svg +17 -0
  545. mindsdb/integrations/handlers/dynamodb_handler/tests/__init__.py +0 -0
  546. mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +34 -0
  547. mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +9 -0
  548. mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +21 -0
  549. mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py +45 -0
  550. mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +12 -0
  551. mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +13 -0
  552. mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +1 -0
  553. mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py +0 -0
  554. mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +66 -0
  555. mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +9 -0
  556. mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +30 -0
  557. mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py +38 -0
  558. mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +288 -0
  559. mindsdb/integrations/handlers/elasticsearch_handler/icon.svg +16 -0
  560. mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +2 -0
  561. mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py +0 -0
  562. mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +32 -0
  563. mindsdb/integrations/handlers/email_handler/__about__.py +9 -0
  564. mindsdb/integrations/handlers/email_handler/__init__.py +21 -0
  565. mindsdb/integrations/handlers/email_handler/email_client.py +165 -0
  566. mindsdb/integrations/handlers/email_handler/email_handler.py +99 -0
  567. mindsdb/integrations/handlers/email_handler/email_ingestor.py +86 -0
  568. mindsdb/integrations/handlers/email_handler/email_tables.py +159 -0
  569. mindsdb/integrations/handlers/email_handler/icon.png +0 -0
  570. mindsdb/integrations/handlers/email_handler/requirements.txt +2 -0
  571. mindsdb/integrations/handlers/email_handler/settings.py +60 -0
  572. mindsdb/integrations/handlers/empress_handler/__about__.py +9 -0
  573. mindsdb/integrations/handlers/empress_handler/__init__.py +20 -0
  574. mindsdb/integrations/handlers/empress_handler/connection_args.py +42 -0
  575. mindsdb/integrations/handlers/empress_handler/empress_handler.py +211 -0
  576. mindsdb/integrations/handlers/empress_handler/icon.png +0 -0
  577. mindsdb/integrations/handlers/empress_handler/requirements.txt +1 -0
  578. mindsdb/integrations/handlers/empress_handler/tests/__init__.py +0 -0
  579. mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +55 -0
  580. mindsdb/integrations/handlers/eventbrite_handler/__about__.py +9 -0
  581. mindsdb/integrations/handlers/eventbrite_handler/__init__.py +27 -0
  582. mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +94 -0
  583. mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +612 -0
  584. mindsdb/integrations/handlers/eventbrite_handler/icon.png +0 -0
  585. mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +1 -0
  586. mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +9 -0
  587. mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +27 -0
  588. mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +216 -0
  589. mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +10 -0
  590. mindsdb/integrations/handlers/faunadb_handler/__about__.py +9 -0
  591. mindsdb/integrations/handlers/faunadb_handler/__init__.py +30 -0
  592. mindsdb/integrations/handlers/faunadb_handler/connection_args.py +39 -0
  593. mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +267 -0
  594. mindsdb/integrations/handlers/faunadb_handler/icon.svg +3 -0
  595. mindsdb/integrations/handlers/faunadb_handler/requirements.txt +1 -0
  596. mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py +0 -0
  597. mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +41 -0
  598. mindsdb/integrations/handlers/file_handler/__about__.py +9 -0
  599. mindsdb/integrations/handlers/file_handler/__init__.py +16 -0
  600. mindsdb/integrations/handlers/file_handler/file_handler.py +528 -0
  601. mindsdb/integrations/handlers/file_handler/icon.svg +8 -0
  602. mindsdb/integrations/handlers/file_handler/requirements.txt +4 -0
  603. mindsdb/integrations/handlers/file_handler/tests/__init__.py +0 -0
  604. mindsdb/integrations/handlers/file_handler/tests/data/test.txt +10 -0
  605. mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +458 -0
  606. mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py +9 -0
  607. mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py +19 -0
  608. mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py +56 -0
  609. mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py +89 -0
  610. mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg +67 -0
  611. mindsdb/integrations/handlers/firebird_handler/__about__.py +9 -0
  612. mindsdb/integrations/handlers/firebird_handler/__init__.py +20 -0
  613. mindsdb/integrations/handlers/firebird_handler/connection_args.py +34 -0
  614. mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +240 -0
  615. mindsdb/integrations/handlers/firebird_handler/icon.svg +16 -0
  616. mindsdb/integrations/handlers/firebird_handler/requirements.txt +2 -0
  617. mindsdb/integrations/handlers/firebird_handler/tests/__init__.py +0 -0
  618. mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +37 -0
  619. mindsdb/integrations/handlers/flaml_handler/__about__.py +9 -0
  620. mindsdb/integrations/handlers/flaml_handler/__init__.py +19 -0
  621. mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +47 -0
  622. mindsdb/integrations/handlers/flaml_handler/icon.svg +5 -0
  623. mindsdb/integrations/handlers/flaml_handler/requirements.txt +2 -0
  624. mindsdb/integrations/handlers/frappe_handler/__about__.py +9 -0
  625. mindsdb/integrations/handlers/frappe_handler/__init__.py +19 -0
  626. mindsdb/integrations/handlers/frappe_handler/frappe_client.py +111 -0
  627. mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +209 -0
  628. mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +82 -0
  629. mindsdb/integrations/handlers/frappe_handler/icon.svg +11 -0
  630. mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
  631. mindsdb/integrations/handlers/gcs_handler/__about__.py +9 -0
  632. mindsdb/integrations/handlers/gcs_handler/__init__.py +20 -0
  633. mindsdb/integrations/handlers/gcs_handler/connection_args.py +29 -0
  634. mindsdb/integrations/handlers/gcs_handler/gcs_handler.py +375 -0
  635. mindsdb/integrations/handlers/gcs_handler/gcs_tables.py +50 -0
  636. mindsdb/integrations/handlers/gcs_handler/icon.svg +1 -0
  637. mindsdb/integrations/handlers/gcs_handler/requirements.txt +4 -0
  638. mindsdb/integrations/handlers/github_handler/__about__.py +9 -0
  639. mindsdb/integrations/handlers/github_handler/__init__.py +28 -0
  640. mindsdb/integrations/handlers/github_handler/connection_args.py +32 -0
  641. mindsdb/integrations/handlers/github_handler/github_handler.py +124 -0
  642. mindsdb/integrations/handlers/github_handler/github_tables.py +968 -0
  643. mindsdb/integrations/handlers/github_handler/icon.svg +10 -0
  644. mindsdb/integrations/handlers/github_handler/requirements.txt +1 -0
  645. mindsdb/integrations/handlers/gitlab_handler/__about__.py +9 -0
  646. mindsdb/integrations/handlers/gitlab_handler/__init__.py +19 -0
  647. mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +84 -0
  648. mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +393 -0
  649. mindsdb/integrations/handlers/gitlab_handler/icon.svg +6 -0
  650. mindsdb/integrations/handlers/gitlab_handler/requirements.txt +1 -0
  651. mindsdb/integrations/handlers/gmail_handler/__about__.py +9 -0
  652. mindsdb/integrations/handlers/gmail_handler/__init__.py +20 -0
  653. mindsdb/integrations/handlers/gmail_handler/connection_args.py +27 -0
  654. mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +566 -0
  655. mindsdb/integrations/handlers/gmail_handler/icon.svg +14 -0
  656. mindsdb/integrations/handlers/gmail_handler/requirements.txt +2 -0
  657. mindsdb/integrations/handlers/gmail_handler/tests/__init__.py +0 -0
  658. mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +50 -0
  659. mindsdb/integrations/handlers/gmail_handler/utils.py +45 -0
  660. mindsdb/integrations/handlers/google_analytics_handler/__about__.py +9 -0
  661. mindsdb/integrations/handlers/google_analytics_handler/__init__.py +18 -0
  662. mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py +129 -0
  663. mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py +283 -0
  664. mindsdb/integrations/handlers/google_analytics_handler/icon.svg +4 -0
  665. mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -0
  666. mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py +0 -0
  667. mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py +48 -0
  668. mindsdb/integrations/handlers/google_books_handler/__about__.py +9 -0
  669. mindsdb/integrations/handlers/google_books_handler/__init__.py +20 -0
  670. mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +184 -0
  671. mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +185 -0
  672. mindsdb/integrations/handlers/google_books_handler/icon.svg +5 -0
  673. mindsdb/integrations/handlers/google_books_handler/requirements.txt +2 -0
  674. mindsdb/integrations/handlers/google_books_handler/tests/__init__.py +0 -0
  675. mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +41 -0
  676. mindsdb/integrations/handlers/google_calendar_handler/__about__.py +9 -0
  677. mindsdb/integrations/handlers/google_calendar_handler/__init__.py +21 -0
  678. mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +12 -0
  679. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +292 -0
  680. mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +228 -0
  681. mindsdb/integrations/handlers/google_calendar_handler/icon.svg +10 -0
  682. mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +3 -0
  683. mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py +0 -0
  684. mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +56 -0
  685. mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +9 -0
  686. mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +20 -0
  687. mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py +20 -0
  688. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +396 -0
  689. mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +435 -0
  690. mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg +15 -0
  691. mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +2 -0
  692. mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py +0 -0
  693. mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +64 -0
  694. mindsdb/integrations/handlers/google_fit_handler/__about__.py +9 -0
  695. mindsdb/integrations/handlers/google_fit_handler/__init__.py +19 -0
  696. mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +155 -0
  697. mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +69 -0
  698. mindsdb/integrations/handlers/google_fit_handler/icon.svg +13 -0
  699. mindsdb/integrations/handlers/google_fit_handler/requirements.txt +4 -0
  700. mindsdb/integrations/handlers/google_gemini_handler/__about__.py +9 -0
  701. mindsdb/integrations/handlers/google_gemini_handler/__init__.py +30 -0
  702. mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py +370 -0
  703. mindsdb/integrations/handlers/google_gemini_handler/icon.svg +3 -0
  704. mindsdb/integrations/handlers/google_gemini_handler/requirements.txt +2 -0
  705. mindsdb/integrations/handlers/google_search_handler/__about__.py +9 -0
  706. mindsdb/integrations/handlers/google_search_handler/__init__.py +20 -0
  707. mindsdb/integrations/handlers/google_search_handler/connection_args.py +15 -0
  708. mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +205 -0
  709. mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +220 -0
  710. mindsdb/integrations/handlers/google_search_handler/icon.svg +19 -0
  711. mindsdb/integrations/handlers/google_search_handler/requirements.txt +2 -0
  712. mindsdb/integrations/handlers/google_search_handler/tests/__init__.py +0 -0
  713. mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +55 -0
  714. mindsdb/integrations/handlers/greptimedb_handler/__about__.py +9 -0
  715. mindsdb/integrations/handlers/greptimedb_handler/__init__.py +19 -0
  716. mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py +21 -0
  717. mindsdb/integrations/handlers/greptimedb_handler/icon.svg +3 -0
  718. mindsdb/integrations/handlers/greptimedb_handler/requirements.txt +1 -0
  719. mindsdb/integrations/handlers/groq_handler/__about__.py +9 -0
  720. mindsdb/integrations/handlers/groq_handler/__init__.py +23 -0
  721. mindsdb/integrations/handlers/groq_handler/groq_handler.py +136 -0
  722. mindsdb/integrations/handlers/groq_handler/icon.svg +30 -0
  723. mindsdb/integrations/handlers/groq_handler/requirements.txt +2 -0
  724. mindsdb/integrations/handlers/groq_handler/settings.py +31 -0
  725. mindsdb/integrations/handlers/hackernews_handler/__about__.py +9 -0
  726. mindsdb/integrations/handlers/hackernews_handler/__init__.py +21 -0
  727. mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +102 -0
  728. mindsdb/integrations/handlers/hackernews_handler/hn_table.py +152 -0
  729. mindsdb/integrations/handlers/hackernews_handler/icon.svg +11 -0
  730. mindsdb/integrations/handlers/hana_handler/__about__.py +9 -0
  731. mindsdb/integrations/handlers/hana_handler/__init__.py +20 -0
  732. mindsdb/integrations/handlers/hana_handler/connection_args.py +57 -0
  733. mindsdb/integrations/handlers/hana_handler/hana_handler.py +259 -0
  734. mindsdb/integrations/handlers/hana_handler/icon.svg +13 -0
  735. mindsdb/integrations/handlers/hana_handler/requirements.txt +2 -0
  736. mindsdb/integrations/handlers/hive_handler/__about__.py +9 -0
  737. mindsdb/integrations/handlers/hive_handler/__init__.py +20 -0
  738. mindsdb/integrations/handlers/hive_handler/connection_args.py +53 -0
  739. mindsdb/integrations/handlers/hive_handler/hive_handler.py +224 -0
  740. mindsdb/integrations/handlers/hive_handler/icon.svg +41 -0
  741. mindsdb/integrations/handlers/hive_handler/requirements.txt +3 -0
  742. mindsdb/integrations/handlers/hive_handler/tests/__init__.py +0 -0
  743. mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +50 -0
  744. mindsdb/integrations/handlers/hsqldb_handler/__about__.py +9 -0
  745. mindsdb/integrations/handlers/hsqldb_handler/__init__.py +20 -0
  746. mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +39 -0
  747. mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +197 -0
  748. mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
  749. mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +1 -0
  750. mindsdb/integrations/handlers/hubspot_handler/__about__.py +9 -0
  751. mindsdb/integrations/handlers/hubspot_handler/__init__.py +27 -0
  752. mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +96 -0
  753. mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +589 -0
  754. mindsdb/integrations/handlers/hubspot_handler/icon.svg +3 -0
  755. mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -0
  756. mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +9 -0
  757. mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +19 -0
  758. mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +6 -0
  759. mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +250 -0
  760. mindsdb/integrations/handlers/huggingface_api_handler/icon.svg +24 -0
  761. mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +2 -0
  762. mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py +0 -0
  763. mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +9 -0
  764. mindsdb/integrations/handlers/huggingface_handler/__about__.py +9 -0
  765. mindsdb/integrations/handlers/huggingface_handler/__init__.py +20 -0
  766. mindsdb/integrations/handlers/huggingface_handler/finetune.py +223 -0
  767. mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +383 -0
  768. mindsdb/integrations/handlers/huggingface_handler/icon.svg +24 -0
  769. mindsdb/integrations/handlers/huggingface_handler/requirements.txt +5 -0
  770. mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +6 -0
  771. mindsdb/integrations/handlers/huggingface_handler/settings.py +27 -0
  772. mindsdb/integrations/handlers/ibm_cos_handler/__about__.py +9 -0
  773. mindsdb/integrations/handlers/ibm_cos_handler/__init__.py +30 -0
  774. mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py +38 -0
  775. mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py +338 -0
  776. mindsdb/integrations/handlers/ibm_cos_handler/icon.svg +54 -0
  777. mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt +1 -0
  778. mindsdb/integrations/handlers/ibm_cos_handler/tests/__init__.py +0 -0
  779. mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py +23 -0
  780. mindsdb/integrations/handlers/ignite_handler/__about__.py +9 -0
  781. mindsdb/integrations/handlers/ignite_handler/__init__.py +20 -0
  782. mindsdb/integrations/handlers/ignite_handler/connection_args.py +46 -0
  783. mindsdb/integrations/handlers/ignite_handler/icon.svg +5 -0
  784. mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +207 -0
  785. mindsdb/integrations/handlers/ignite_handler/requirements.txt +1 -0
  786. mindsdb/integrations/handlers/ignite_handler/tests/__init__.py +0 -0
  787. mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +33 -0
  788. mindsdb/integrations/handlers/impala_handler/__about__.py +9 -0
  789. mindsdb/integrations/handlers/impala_handler/__init__.py +20 -0
  790. mindsdb/integrations/handlers/impala_handler/connection_args.py +37 -0
  791. mindsdb/integrations/handlers/impala_handler/icon.svg +13 -0
  792. mindsdb/integrations/handlers/impala_handler/impala_handler.py +156 -0
  793. mindsdb/integrations/handlers/impala_handler/requirements.txt +1 -0
  794. mindsdb/integrations/handlers/impala_handler/tests/__init__.py +0 -0
  795. mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +50 -0
  796. mindsdb/integrations/handlers/influxdb_handler/__about__.py +9 -0
  797. mindsdb/integrations/handlers/influxdb_handler/__init__.py +26 -0
  798. mindsdb/integrations/handlers/influxdb_handler/icon.svg +14 -0
  799. mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +105 -0
  800. mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +81 -0
  801. mindsdb/integrations/handlers/influxdb_handler/requirements.txt +1 -0
  802. mindsdb/integrations/handlers/informix_handler/__about__.py +9 -0
  803. mindsdb/integrations/handlers/informix_handler/__init__.py +20 -0
  804. mindsdb/integrations/handlers/informix_handler/icon.svg +5 -0
  805. mindsdb/integrations/handlers/informix_handler/informix_handler.py +318 -0
  806. mindsdb/integrations/handlers/informix_handler/requirements.txt +1 -0
  807. mindsdb/integrations/handlers/informix_handler/tests/__init__.py +0 -0
  808. mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +52 -0
  809. mindsdb/integrations/handlers/ingres_handler/__about__.py +10 -0
  810. mindsdb/integrations/handlers/ingres_handler/__init__.py +20 -0
  811. mindsdb/integrations/handlers/ingres_handler/connection_args.py +36 -0
  812. mindsdb/integrations/handlers/ingres_handler/icon.svg +6 -0
  813. mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +210 -0
  814. mindsdb/integrations/handlers/ingres_handler/requirements.txt +2 -0
  815. mindsdb/integrations/handlers/ingres_handler/tests/__init__.py +0 -0
  816. mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +53 -0
  817. mindsdb/integrations/handlers/instatus_handler/__about__.py +9 -0
  818. mindsdb/integrations/handlers/instatus_handler/__init__.py +28 -0
  819. mindsdb/integrations/handlers/instatus_handler/icon.svg +5 -0
  820. mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +127 -0
  821. mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +393 -0
  822. mindsdb/integrations/handlers/intercom_handler/__about__.py +9 -0
  823. mindsdb/integrations/handlers/intercom_handler/__init__.py +28 -0
  824. mindsdb/integrations/handlers/intercom_handler/icon.svg +3 -0
  825. mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +117 -0
  826. mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +152 -0
  827. mindsdb/integrations/handlers/jira_handler/__about__.py +9 -0
  828. mindsdb/integrations/handlers/jira_handler/__init__.py +26 -0
  829. mindsdb/integrations/handlers/jira_handler/icon.svg +15 -0
  830. mindsdb/integrations/handlers/jira_handler/jira_handler.py +119 -0
  831. mindsdb/integrations/handlers/jira_handler/jira_table.py +151 -0
  832. mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
  833. mindsdb/integrations/handlers/kinetica_handler/__about__.py +9 -0
  834. mindsdb/integrations/handlers/kinetica_handler/__init__.py +22 -0
  835. mindsdb/integrations/handlers/kinetica_handler/connection_args.py +54 -0
  836. mindsdb/integrations/handlers/kinetica_handler/icon.svg +5 -0
  837. mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +12 -0
  838. mindsdb/integrations/handlers/lancedb_handler/__about__.py +9 -0
  839. mindsdb/integrations/handlers/lancedb_handler/__init__.py +29 -0
  840. mindsdb/integrations/handlers/lancedb_handler/connection_args.py +35 -0
  841. mindsdb/integrations/handlers/lancedb_handler/icon.svg +8 -0
  842. mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +329 -0
  843. mindsdb/integrations/handlers/lancedb_handler/requirements.txt +3 -0
  844. mindsdb/integrations/handlers/lancedb_handler/tests/__init__.py +0 -0
  845. mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +99 -0
  846. mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +9 -0
  847. mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +23 -0
  848. mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg +14 -0
  849. mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +221 -0
  850. mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +2 -0
  851. mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py +111 -0
  852. mindsdb/integrations/handlers/langchain_handler/__about__.py +9 -0
  853. mindsdb/integrations/handlers/langchain_handler/__init__.py +19 -0
  854. mindsdb/integrations/handlers/langchain_handler/icon.svg +14 -0
  855. mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +278 -0
  856. mindsdb/integrations/handlers/langchain_handler/requirements.txt +8 -0
  857. mindsdb/integrations/handlers/langchain_handler/tools.py +247 -0
  858. mindsdb/integrations/handlers/leonardoai_handler/__about__.py +9 -0
  859. mindsdb/integrations/handlers/leonardoai_handler/__init__.py +19 -0
  860. mindsdb/integrations/handlers/leonardoai_handler/icon.svg +306 -0
  861. mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py +225 -0
  862. mindsdb/integrations/handlers/leonardoai_handler/requirements.txt +0 -0
  863. mindsdb/integrations/handlers/libsql_handler/__about__.py +9 -0
  864. mindsdb/integrations/handlers/libsql_handler/__init__.py +28 -0
  865. mindsdb/integrations/handlers/libsql_handler/connection_args.py +22 -0
  866. mindsdb/integrations/handlers/libsql_handler/icon.svg +3 -0
  867. mindsdb/integrations/handlers/libsql_handler/libsql_handler.py +192 -0
  868. mindsdb/integrations/handlers/libsql_handler/requirements.txt +1 -0
  869. mindsdb/integrations/handlers/libsql_handler/tests/__init__.py +0 -0
  870. mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py +45 -0
  871. mindsdb/integrations/handlers/lightdash_handler/__about__.py +9 -0
  872. mindsdb/integrations/handlers/lightdash_handler/__init__.py +27 -0
  873. mindsdb/integrations/handlers/lightdash_handler/api.py +513 -0
  874. mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
  875. mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +108 -0
  876. mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +648 -0
  877. mindsdb/integrations/handlers/lightdash_handler/tests/__init__.py +0 -0
  878. mindsdb/integrations/handlers/lightfm_handler/__about__.py +9 -0
  879. mindsdb/integrations/handlers/lightfm_handler/__init__.py +21 -0
  880. mindsdb/integrations/handlers/lightfm_handler/helpers.py +175 -0
  881. mindsdb/integrations/handlers/lightfm_handler/icon.svg +14 -0
  882. mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +198 -0
  883. mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
  884. mindsdb/integrations/handlers/lightfm_handler/settings.py +7 -0
  885. mindsdb/integrations/handlers/lightwood_handler/__about__.py +9 -0
  886. mindsdb/integrations/handlers/lightwood_handler/__init__.py +19 -0
  887. mindsdb/integrations/handlers/lightwood_handler/functions.py +252 -0
  888. mindsdb/integrations/handlers/lightwood_handler/icon.svg +13 -0
  889. mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +581 -0
  890. mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -0
  891. mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py +0 -0
  892. mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +258 -0
  893. mindsdb/integrations/handlers/lightwood_handler/utils.py +76 -0
  894. mindsdb/integrations/handlers/lindorm_handler/__about__.py +9 -0
  895. mindsdb/integrations/handlers/lindorm_handler/__init__.py +28 -0
  896. mindsdb/integrations/handlers/lindorm_handler/icon.svg +5 -0
  897. mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +220 -0
  898. mindsdb/integrations/handlers/lindorm_handler/requirements.txt +2 -0
  899. mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py +0 -0
  900. mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +33 -0
  901. mindsdb/integrations/handlers/litellm_handler/__about__.py +9 -0
  902. mindsdb/integrations/handlers/litellm_handler/__init__.py +30 -0
  903. mindsdb/integrations/handlers/litellm_handler/icon.png +0 -0
  904. mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +141 -0
  905. mindsdb/integrations/handlers/litellm_handler/requirements.txt +2 -0
  906. mindsdb/integrations/handlers/litellm_handler/settings.py +39 -0
  907. mindsdb/integrations/handlers/llama_index_handler/__about__.py +9 -0
  908. mindsdb/integrations/handlers/llama_index_handler/__init__.py +19 -0
  909. mindsdb/integrations/handlers/llama_index_handler/icon.svg +9 -0
  910. mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +201 -0
  911. mindsdb/integrations/handlers/llama_index_handler/requirements.txt +5 -0
  912. mindsdb/integrations/handlers/llama_index_handler/settings.py +65 -0
  913. mindsdb/integrations/handlers/ludwig_handler/__about__.py +9 -0
  914. mindsdb/integrations/handlers/ludwig_handler/__init__.py +19 -0
  915. mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
  916. mindsdb/integrations/handlers/ludwig_handler/icon.svg +5 -0
  917. mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +68 -0
  918. mindsdb/integrations/handlers/ludwig_handler/requirements.txt +3 -0
  919. mindsdb/integrations/handlers/ludwig_handler/utils.py +12 -0
  920. mindsdb/integrations/handlers/luma_handler/__about__.py +9 -0
  921. mindsdb/integrations/handlers/luma_handler/__init__.py +28 -0
  922. mindsdb/integrations/handlers/luma_handler/connection_args.py +18 -0
  923. mindsdb/integrations/handlers/luma_handler/icon.png +0 -0
  924. mindsdb/integrations/handlers/luma_handler/luma.py +47 -0
  925. mindsdb/integrations/handlers/luma_handler/luma_handler.py +77 -0
  926. mindsdb/integrations/handlers/luma_handler/luma_tables.py +164 -0
  927. mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
  928. mindsdb/integrations/handlers/mariadb_handler/__about__.py +9 -0
  929. mindsdb/integrations/handlers/mariadb_handler/__init__.py +20 -0
  930. mindsdb/integrations/handlers/mariadb_handler/connection_args.py +76 -0
  931. mindsdb/integrations/handlers/mariadb_handler/icon.svg +3 -0
  932. mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +12 -0
  933. mindsdb/integrations/handlers/mariadb_handler/requirements.txt +1 -0
  934. mindsdb/integrations/handlers/materialize_handler/__about__.py +9 -0
  935. mindsdb/integrations/handlers/materialize_handler/__init__.py +20 -0
  936. mindsdb/integrations/handlers/materialize_handler/icon.svg +7 -0
  937. mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +43 -0
  938. mindsdb/integrations/handlers/materialize_handler/tests/__init__.py +0 -0
  939. mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +56 -0
  940. mindsdb/integrations/handlers/matrixone_handler/__about__.py +9 -0
  941. mindsdb/integrations/handlers/matrixone_handler/__init__.py +20 -0
  942. mindsdb/integrations/handlers/matrixone_handler/connection_args.py +52 -0
  943. mindsdb/integrations/handlers/matrixone_handler/icon.svg +9 -0
  944. mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +168 -0
  945. mindsdb/integrations/handlers/matrixone_handler/requirements.txt +1 -0
  946. mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py +0 -0
  947. mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +56 -0
  948. mindsdb/integrations/handlers/maxdb_handler/__about__.py +9 -0
  949. mindsdb/integrations/handlers/maxdb_handler/__init__.py +28 -0
  950. mindsdb/integrations/handlers/maxdb_handler/connection_args.py +42 -0
  951. mindsdb/integrations/handlers/maxdb_handler/icon.svg +13 -0
  952. mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +185 -0
  953. mindsdb/integrations/handlers/maxdb_handler/requirements.txt +1 -0
  954. mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py +0 -0
  955. mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +55 -0
  956. mindsdb/integrations/handlers/mediawiki_handler/__about__.py +9 -0
  957. mindsdb/integrations/handlers/mediawiki_handler/__init__.py +27 -0
  958. mindsdb/integrations/handlers/mediawiki_handler/icon.svg +153 -0
  959. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +87 -0
  960. mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +98 -0
  961. mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +1 -0
  962. mindsdb/integrations/handlers/mendeley_handler/__about__.py +9 -0
  963. mindsdb/integrations/handlers/mendeley_handler/__init__.py +19 -0
  964. mindsdb/integrations/handlers/mendeley_handler/icon.svg +14 -0
  965. mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +225 -0
  966. mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +134 -0
  967. mindsdb/integrations/handlers/mendeley_handler/requirements.txt +1 -0
  968. mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py +0 -0
  969. mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +108 -0
  970. mindsdb/integrations/handlers/merlion_handler/__about__.py +9 -0
  971. mindsdb/integrations/handlers/merlion_handler/__init__.py +19 -0
  972. mindsdb/integrations/handlers/merlion_handler/adapters.py +182 -0
  973. mindsdb/integrations/handlers/merlion_handler/icon.svg +16 -0
  974. mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +205 -0
  975. mindsdb/integrations/handlers/merlion_handler/requirements.txt +2 -0
  976. mindsdb/integrations/handlers/milvus_handler/__about__.py +9 -0
  977. mindsdb/integrations/handlers/milvus_handler/__init__.py +29 -0
  978. mindsdb/integrations/handlers/milvus_handler/connection_args.py +112 -0
  979. mindsdb/integrations/handlers/milvus_handler/icon.svg +5 -0
  980. mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +332 -0
  981. mindsdb/integrations/handlers/milvus_handler/requirements.txt +1 -0
  982. mindsdb/integrations/handlers/milvus_handler/tests/__init__.py +0 -0
  983. mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py +9 -0
  984. mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +23 -0
  985. mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg +13 -0
  986. mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py +132 -0
  987. mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt +2 -0
  988. mindsdb/integrations/handlers/minds_endpoint_handler/settings.py +18 -0
  989. mindsdb/integrations/handlers/minds_endpoint_handler/tests/__init__.py +0 -0
  990. mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py +160 -0
  991. mindsdb/integrations/handlers/mlflow_handler/__about__.py +9 -0
  992. mindsdb/integrations/handlers/mlflow_handler/__init__.py +18 -0
  993. mindsdb/integrations/handlers/mlflow_handler/icon.svg +4 -0
  994. mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +83 -0
  995. mindsdb/integrations/handlers/mlflow_handler/requirements.txt +1 -0
  996. mindsdb/integrations/handlers/monetdb_handler/__about__.py +9 -0
  997. mindsdb/integrations/handlers/monetdb_handler/__init__.py +20 -0
  998. mindsdb/integrations/handlers/monetdb_handler/connection_args.py +44 -0
  999. mindsdb/integrations/handlers/monetdb_handler/icon.svg +4 -0
  1000. mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +219 -0
  1001. mindsdb/integrations/handlers/monetdb_handler/requirements.txt +2 -0
  1002. mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py +0 -0
  1003. mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +50 -0
  1004. mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py +0 -0
  1005. mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +50 -0
  1006. mindsdb/integrations/handlers/mongodb_handler/__about__.py +9 -0
  1007. mindsdb/integrations/handlers/mongodb_handler/__init__.py +21 -0
  1008. mindsdb/integrations/handlers/mongodb_handler/connection_args.py +46 -0
  1009. mindsdb/integrations/handlers/mongodb_handler/icon.svg +3 -0
  1010. mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +372 -0
  1011. mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py +0 -0
  1012. mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py +125 -0
  1013. mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py +0 -0
  1014. mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +286 -0
  1015. mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +9 -0
  1016. mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +19 -0
  1017. mindsdb/integrations/handlers/monkeylearn_handler/icon.png +0 -0
  1018. mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +81 -0
  1019. mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +1 -0
  1020. mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py +9 -0
  1021. mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py +27 -0
  1022. mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg +31 -0
  1023. mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +102 -0
  1024. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +252 -0
  1025. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +100 -0
  1026. mindsdb/integrations/handlers/ms_teams_handler/__about__.py +9 -0
  1027. mindsdb/integrations/handlers/ms_teams_handler/__init__.py +27 -0
  1028. mindsdb/integrations/handlers/ms_teams_handler/icon.svg +23 -0
  1029. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +193 -0
  1030. mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +2 -0
  1031. mindsdb/integrations/handlers/mssql_handler/__about__.py +9 -0
  1032. mindsdb/integrations/handlers/mssql_handler/__init__.py +21 -0
  1033. mindsdb/integrations/handlers/mssql_handler/connection_args.py +52 -0
  1034. mindsdb/integrations/handlers/mssql_handler/icon.svg +21 -0
  1035. mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +218 -0
  1036. mindsdb/integrations/handlers/mssql_handler/requirements.txt +1 -0
  1037. mindsdb/integrations/handlers/mssql_handler/tests/__init__.py +0 -0
  1038. mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +169 -0
  1039. mindsdb/integrations/handlers/mysql_handler/__about__.py +9 -0
  1040. mindsdb/integrations/handlers/mysql_handler/__init__.py +20 -0
  1041. mindsdb/integrations/handlers/mysql_handler/connection_args.py +76 -0
  1042. mindsdb/integrations/handlers/mysql_handler/icon.svg +4 -0
  1043. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +214 -0
  1044. mindsdb/integrations/handlers/mysql_handler/requirements.txt +1 -0
  1045. mindsdb/integrations/handlers/mysql_handler/settings.py +46 -0
  1046. mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +9 -0
  1047. mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +19 -0
  1048. mindsdb/integrations/handlers/neuralforecast_handler/icon.svg +5 -0
  1049. mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +135 -0
  1050. mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +2 -0
  1051. mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +2 -0
  1052. mindsdb/integrations/handlers/newsapi_handler/__about__.py +9 -0
  1053. mindsdb/integrations/handlers/newsapi_handler/__init__.py +29 -0
  1054. mindsdb/integrations/handlers/newsapi_handler/connection_args.py +14 -0
  1055. mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
  1056. mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +209 -0
  1057. mindsdb/integrations/handlers/newsapi_handler/requirements.txt +1 -0
  1058. mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py +0 -0
  1059. mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +90 -0
  1060. mindsdb/integrations/handlers/notion_handler/__about__.py +9 -0
  1061. mindsdb/integrations/handlers/notion_handler/__init__.py +30 -0
  1062. mindsdb/integrations/handlers/notion_handler/icon.svg +11 -0
  1063. mindsdb/integrations/handlers/notion_handler/notion_handler.py +238 -0
  1064. mindsdb/integrations/handlers/notion_handler/notion_table.py +422 -0
  1065. mindsdb/integrations/handlers/notion_handler/requirements.txt +1 -0
  1066. mindsdb/integrations/handlers/notion_handler/tests/__init__.py +0 -0
  1067. mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +62 -0
  1068. mindsdb/integrations/handlers/npm_handler/__about__.py +9 -0
  1069. mindsdb/integrations/handlers/npm_handler/__init__.py +27 -0
  1070. mindsdb/integrations/handlers/npm_handler/api.py +26 -0
  1071. mindsdb/integrations/handlers/npm_handler/icon.svg +11 -0
  1072. mindsdb/integrations/handlers/npm_handler/npm_handler.py +53 -0
  1073. mindsdb/integrations/handlers/npm_handler/npm_tables.py +242 -0
  1074. mindsdb/integrations/handlers/npm_handler/tests/__init__.py +0 -0
  1075. mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +9 -0
  1076. mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +21 -0
  1077. mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +65 -0
  1078. mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg +3 -0
  1079. mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +228 -0
  1080. mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +1 -0
  1081. mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py +0 -0
  1082. mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +50 -0
  1083. mindsdb/integrations/handlers/oceanbase_handler/__about__.py +9 -0
  1084. mindsdb/integrations/handlers/oceanbase_handler/__init__.py +20 -0
  1085. mindsdb/integrations/handlers/oceanbase_handler/icon.svg +4 -0
  1086. mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +48 -0
  1087. mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +1 -0
  1088. mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py +0 -0
  1089. mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +56 -0
  1090. mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +9 -0
  1091. mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +28 -0
  1092. mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py +18 -0
  1093. mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +7 -0
  1094. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +45 -0
  1095. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +100 -0
  1096. mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +208 -0
  1097. mindsdb/integrations/handlers/ollama_handler/__about__.py +9 -0
  1098. mindsdb/integrations/handlers/ollama_handler/__init__.py +19 -0
  1099. mindsdb/integrations/handlers/ollama_handler/icon.png +0 -0
  1100. mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +171 -0
  1101. mindsdb/integrations/handlers/openai_handler/__about__.py +9 -0
  1102. mindsdb/integrations/handlers/openai_handler/__init__.py +22 -0
  1103. mindsdb/integrations/handlers/openai_handler/constants.py +36 -0
  1104. mindsdb/integrations/handlers/openai_handler/creation_args.py +14 -0
  1105. mindsdb/integrations/handlers/openai_handler/helpers.py +197 -0
  1106. mindsdb/integrations/handlers/openai_handler/icon.svg +10 -0
  1107. mindsdb/integrations/handlers/openai_handler/model_using_args.py +5 -0
  1108. mindsdb/integrations/handlers/openai_handler/openai_handler.py +1188 -0
  1109. mindsdb/integrations/handlers/openai_handler/requirements.txt +2 -0
  1110. mindsdb/integrations/handlers/openai_handler/tests/__init__.py +0 -0
  1111. mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py +509 -0
  1112. mindsdb/integrations/handlers/openbb_handler/__about__.py +9 -0
  1113. mindsdb/integrations/handlers/openbb_handler/__init__.py +27 -0
  1114. mindsdb/integrations/handlers/openbb_handler/icon.svg +3 -0
  1115. mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +119 -0
  1116. mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +337 -0
  1117. mindsdb/integrations/handlers/openbb_handler/requirements.txt +2 -0
  1118. mindsdb/integrations/handlers/opengauss_handler/__about__.py +9 -0
  1119. mindsdb/integrations/handlers/opengauss_handler/__init__.py +21 -0
  1120. mindsdb/integrations/handlers/opengauss_handler/connection_args.py +36 -0
  1121. mindsdb/integrations/handlers/opengauss_handler/icon.svg +6 -0
  1122. mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +11 -0
  1123. mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py +0 -0
  1124. mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +45 -0
  1125. mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +9 -0
  1126. mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +27 -0
  1127. mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +10 -0
  1128. mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +90 -0
  1129. mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +243 -0
  1130. mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +1 -0
  1131. mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py +0 -0
  1132. mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +37 -0
  1133. mindsdb/integrations/handlers/oracle_handler/__about__.py +9 -0
  1134. mindsdb/integrations/handlers/oracle_handler/__init__.py +28 -0
  1135. mindsdb/integrations/handlers/oracle_handler/connection_args.py +70 -0
  1136. mindsdb/integrations/handlers/oracle_handler/icon.svg +3 -0
  1137. mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +246 -0
  1138. mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -0
  1139. mindsdb/integrations/handlers/oracle_handler/tests/__init__.py +0 -0
  1140. mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +32 -0
  1141. mindsdb/integrations/handlers/orioledb_handler/__about__.py +9 -0
  1142. mindsdb/integrations/handlers/orioledb_handler/__init__.py +21 -0
  1143. mindsdb/integrations/handlers/orioledb_handler/connection_args.py +36 -0
  1144. mindsdb/integrations/handlers/orioledb_handler/icon.svg +6 -0
  1145. mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +11 -0
  1146. mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py +0 -0
  1147. mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +56 -0
  1148. mindsdb/integrations/handlers/palm_handler/__about__.py +9 -0
  1149. mindsdb/integrations/handlers/palm_handler/__init__.py +19 -0
  1150. mindsdb/integrations/handlers/palm_handler/icon.svg +9 -0
  1151. mindsdb/integrations/handlers/palm_handler/palm_handler.py +448 -0
  1152. mindsdb/integrations/handlers/palm_handler/requirements.txt +1 -0
  1153. mindsdb/integrations/handlers/paypal_handler/__about__.py +9 -0
  1154. mindsdb/integrations/handlers/paypal_handler/__init__.py +27 -0
  1155. mindsdb/integrations/handlers/paypal_handler/icon.svg +5 -0
  1156. mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +145 -0
  1157. mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +283 -0
  1158. mindsdb/integrations/handlers/paypal_handler/requirements.txt +1 -0
  1159. mindsdb/integrations/handlers/pgvector_handler/__about__.py +9 -0
  1160. mindsdb/integrations/handlers/pgvector_handler/__init__.py +29 -0
  1161. mindsdb/integrations/handlers/pgvector_handler/connection_args.py +54 -0
  1162. mindsdb/integrations/handlers/pgvector_handler/icon.svg +23 -0
  1163. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +447 -0
  1164. mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -0
  1165. mindsdb/integrations/handlers/phoenix_handler/__about__.py +9 -0
  1166. mindsdb/integrations/handlers/phoenix_handler/__init__.py +20 -0
  1167. mindsdb/integrations/handlers/phoenix_handler/connection_args.py +50 -0
  1168. mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
  1169. mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +229 -0
  1170. mindsdb/integrations/handlers/phoenix_handler/requirements.txt +2 -0
  1171. mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py +0 -0
  1172. mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +33 -0
  1173. mindsdb/integrations/handlers/pinecone_handler/__about__.py +9 -0
  1174. mindsdb/integrations/handlers/pinecone_handler/__init__.py +29 -0
  1175. mindsdb/integrations/handlers/pinecone_handler/connection_args.py +53 -0
  1176. mindsdb/integrations/handlers/pinecone_handler/icon.svg +21 -0
  1177. mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +304 -0
  1178. mindsdb/integrations/handlers/pinecone_handler/requirements.txt +1 -0
  1179. mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py +0 -0
  1180. mindsdb/integrations/handlers/pinot_handler/__about__.py +9 -0
  1181. mindsdb/integrations/handlers/pinot_handler/__init__.py +20 -0
  1182. mindsdb/integrations/handlers/pinot_handler/connection_args.py +49 -0
  1183. mindsdb/integrations/handlers/pinot_handler/icon.svg +7 -0
  1184. mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +223 -0
  1185. mindsdb/integrations/handlers/pinot_handler/requirements.txt +1 -0
  1186. mindsdb/integrations/handlers/pinot_handler/tests/__init__.py +0 -0
  1187. mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +36 -0
  1188. mindsdb/integrations/handlers/pirateweather_handler/__about__.py +9 -0
  1189. mindsdb/integrations/handlers/pirateweather_handler/__init__.py +29 -0
  1190. mindsdb/integrations/handlers/pirateweather_handler/connection_args.py +14 -0
  1191. mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
  1192. mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +236 -0
  1193. mindsdb/integrations/handlers/plaid_handler/__about__.py +9 -0
  1194. mindsdb/integrations/handlers/plaid_handler/__init__.py +21 -0
  1195. mindsdb/integrations/handlers/plaid_handler/icon.svg +3 -0
  1196. mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +225 -0
  1197. mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +159 -0
  1198. mindsdb/integrations/handlers/plaid_handler/requirements.txt +1 -0
  1199. mindsdb/integrations/handlers/plaid_handler/utils.py +9 -0
  1200. mindsdb/integrations/handlers/planetscale_handler/__about__.py +9 -0
  1201. mindsdb/integrations/handlers/planetscale_handler/__init__.py +20 -0
  1202. mindsdb/integrations/handlers/planetscale_handler/connection_args.py +36 -0
  1203. mindsdb/integrations/handlers/planetscale_handler/icon.svg +3 -0
  1204. mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +14 -0
  1205. mindsdb/integrations/handlers/planetscale_handler/requirements.txt +1 -0
  1206. mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +9 -0
  1207. mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +21 -0
  1208. mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg +10 -0
  1209. mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +103 -0
  1210. mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +1 -0
  1211. mindsdb/integrations/handlers/portkey_handler/__about__.py +9 -0
  1212. mindsdb/integrations/handlers/portkey_handler/__init__.py +22 -0
  1213. mindsdb/integrations/handlers/portkey_handler/icon.svg +9 -0
  1214. mindsdb/integrations/handlers/portkey_handler/portkey_handler.py +79 -0
  1215. mindsdb/integrations/handlers/portkey_handler/requirements.txt +1 -0
  1216. mindsdb/integrations/handlers/postgres_handler/__about__.py +9 -0
  1217. mindsdb/integrations/handlers/postgres_handler/__init__.py +20 -0
  1218. mindsdb/integrations/handlers/postgres_handler/connection_args.py +65 -0
  1219. mindsdb/integrations/handlers/postgres_handler/icon.svg +23 -0
  1220. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +396 -0
  1221. mindsdb/integrations/handlers/postgres_handler/tests/__init__.py +0 -0
  1222. mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +172 -0
  1223. mindsdb/integrations/handlers/pycaret_handler/__about__.py +9 -0
  1224. mindsdb/integrations/handlers/pycaret_handler/__init__.py +22 -0
  1225. mindsdb/integrations/handlers/pycaret_handler/icon.png +0 -0
  1226. mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +116 -0
  1227. mindsdb/integrations/handlers/pycaret_handler/requirements.txt +2 -0
  1228. mindsdb/integrations/handlers/pycaret_handler/test/__init__.py +0 -0
  1229. mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +242 -0
  1230. mindsdb/integrations/handlers/pypi_handler/__about__.py +9 -0
  1231. mindsdb/integrations/handlers/pypi_handler/__init__.py +28 -0
  1232. mindsdb/integrations/handlers/pypi_handler/api.py +152 -0
  1233. mindsdb/integrations/handlers/pypi_handler/icon.svg +123 -0
  1234. mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +73 -0
  1235. mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +263 -0
  1236. mindsdb/integrations/handlers/qdrant_handler/__about__.py +9 -0
  1237. mindsdb/integrations/handlers/qdrant_handler/__init__.py +29 -0
  1238. mindsdb/integrations/handlers/qdrant_handler/connection_args.py +75 -0
  1239. mindsdb/integrations/handlers/qdrant_handler/icon.svg +10 -0
  1240. mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +402 -0
  1241. mindsdb/integrations/handlers/qdrant_handler/requirements.txt +1 -0
  1242. mindsdb/integrations/handlers/questdb_handler/__about__.py +9 -0
  1243. mindsdb/integrations/handlers/questdb_handler/__init__.py +20 -0
  1244. mindsdb/integrations/handlers/questdb_handler/icon.svg +25 -0
  1245. mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +72 -0
  1246. mindsdb/integrations/handlers/questdb_handler/requirements.txt +1 -0
  1247. mindsdb/integrations/handlers/questdb_handler/tests/__init__.py +0 -0
  1248. mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +35 -0
  1249. mindsdb/integrations/handlers/quickbooks_handler/__about__.py +9 -0
  1250. mindsdb/integrations/handlers/quickbooks_handler/__init__.py +21 -0
  1251. mindsdb/integrations/handlers/quickbooks_handler/icon.svg +11 -0
  1252. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +97 -0
  1253. mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +374 -0
  1254. mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +1 -0
  1255. mindsdb/integrations/handlers/rag_handler/__about__.py +9 -0
  1256. mindsdb/integrations/handlers/rag_handler/__init__.py +29 -0
  1257. mindsdb/integrations/handlers/rag_handler/exceptions.py +26 -0
  1258. mindsdb/integrations/handlers/rag_handler/icon.svg +13 -0
  1259. mindsdb/integrations/handlers/rag_handler/ingest.py +185 -0
  1260. mindsdb/integrations/handlers/rag_handler/rag.py +147 -0
  1261. mindsdb/integrations/handlers/rag_handler/rag_handler.py +144 -0
  1262. mindsdb/integrations/handlers/rag_handler/requirements.txt +6 -0
  1263. mindsdb/integrations/handlers/rag_handler/settings.py +479 -0
  1264. mindsdb/integrations/handlers/ray_serve_handler/__about__.py +9 -0
  1265. mindsdb/integrations/handlers/ray_serve_handler/__init__.py +18 -0
  1266. mindsdb/integrations/handlers/ray_serve_handler/icon.svg +3 -0
  1267. mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +66 -0
  1268. mindsdb/integrations/handlers/reddit_handler/__about__.py +9 -0
  1269. mindsdb/integrations/handlers/reddit_handler/__init__.py +21 -0
  1270. mindsdb/integrations/handlers/reddit_handler/icon.svg +11 -0
  1271. mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +106 -0
  1272. mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +195 -0
  1273. mindsdb/integrations/handlers/reddit_handler/requirements.txt +1 -0
  1274. mindsdb/integrations/handlers/redshift_handler/__about__.py +9 -0
  1275. mindsdb/integrations/handlers/redshift_handler/__init__.py +20 -0
  1276. mindsdb/integrations/handlers/redshift_handler/connection_args.py +58 -0
  1277. mindsdb/integrations/handlers/redshift_handler/icon.svg +9 -0
  1278. mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +69 -0
  1279. mindsdb/integrations/handlers/redshift_handler/tests/__init__.py +0 -0
  1280. mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +154 -0
  1281. mindsdb/integrations/handlers/replicate_handler/__about__.py +9 -0
  1282. mindsdb/integrations/handlers/replicate_handler/__init__.py +19 -0
  1283. mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
  1284. mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
  1285. mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
  1286. mindsdb/integrations/handlers/replicate_handler/icon.svg +5 -0
  1287. mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +162 -0
  1288. mindsdb/integrations/handlers/replicate_handler/requirements.txt +1 -0
  1289. mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +9 -0
  1290. mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +19 -0
  1291. mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +6 -0
  1292. mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +1 -0
  1293. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +153 -0
  1294. mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +201 -0
  1295. mindsdb/integrations/handlers/rockset_handler/__about__.py +9 -0
  1296. mindsdb/integrations/handlers/rockset_handler/__init__.py +21 -0
  1297. mindsdb/integrations/handlers/rockset_handler/connection_args.py +45 -0
  1298. mindsdb/integrations/handlers/rockset_handler/icon.svg +5 -0
  1299. mindsdb/integrations/handlers/rockset_handler/requirements.txt +1 -0
  1300. mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +11 -0
  1301. mindsdb/integrations/handlers/rockset_handler/tests/__init__.py +0 -0
  1302. mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
  1303. mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
  1304. mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +32 -0
  1305. mindsdb/integrations/handlers/s3_handler/__about__.py +9 -0
  1306. mindsdb/integrations/handlers/s3_handler/__init__.py +20 -0
  1307. mindsdb/integrations/handlers/s3_handler/connection_args.py +47 -0
  1308. mindsdb/integrations/handlers/s3_handler/icon.svg +15 -0
  1309. mindsdb/integrations/handlers/s3_handler/s3_handler.py +454 -0
  1310. mindsdb/integrations/handlers/s3_handler/tests/__init__.py +0 -0
  1311. mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +37 -0
  1312. mindsdb/integrations/handlers/salesforce_handler/__about__.py +9 -0
  1313. mindsdb/integrations/handlers/salesforce_handler/__init__.py +30 -0
  1314. mindsdb/integrations/handlers/salesforce_handler/connection_args.py +39 -0
  1315. mindsdb/integrations/handlers/salesforce_handler/icon.svg +1 -0
  1316. mindsdb/integrations/handlers/salesforce_handler/requirements.txt +1 -0
  1317. mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +180 -0
  1318. mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +129 -0
  1319. mindsdb/integrations/handlers/sap_erp_handler/__about__.py +9 -0
  1320. mindsdb/integrations/handlers/sap_erp_handler/__init__.py +27 -0
  1321. mindsdb/integrations/handlers/sap_erp_handler/api.py +79 -0
  1322. mindsdb/integrations/handlers/sap_erp_handler/icon.svg +13 -0
  1323. mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +161 -0
  1324. mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +1928 -0
  1325. mindsdb/integrations/handlers/sap_erp_handler/tests/__init__.py +0 -0
  1326. mindsdb/integrations/handlers/scylla_handler/__about__.py +9 -0
  1327. mindsdb/integrations/handlers/scylla_handler/__init__.py +21 -0
  1328. mindsdb/integrations/handlers/scylla_handler/connection_args.py +50 -0
  1329. mindsdb/integrations/handlers/scylla_handler/icon.svg +17 -0
  1330. mindsdb/integrations/handlers/scylla_handler/requirements.txt +1 -0
  1331. mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +205 -0
  1332. mindsdb/integrations/handlers/scylla_handler/tests/__init__.py +0 -0
  1333. mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +38 -0
  1334. mindsdb/integrations/handlers/sendinblue_handler/__about__.py +9 -0
  1335. mindsdb/integrations/handlers/sendinblue_handler/__init__.py +27 -0
  1336. mindsdb/integrations/handlers/sendinblue_handler/icon.svg +3 -0
  1337. mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +1 -0
  1338. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +94 -0
  1339. mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +276 -0
  1340. mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py +9 -0
  1341. mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +21 -0
  1342. mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg +21 -0
  1343. mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt +1 -0
  1344. mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py +75 -0
  1345. mindsdb/integrations/handlers/sentence_transformers_handler/settings.py +12 -0
  1346. mindsdb/integrations/handlers/serpstack_handler/__about__.py +9 -0
  1347. mindsdb/integrations/handlers/serpstack_handler/__init__.py +27 -0
  1348. mindsdb/integrations/handlers/serpstack_handler/icon.svg +86 -0
  1349. mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py +123 -0
  1350. mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py +260 -0
  1351. mindsdb/integrations/handlers/sharepoint_handler/__about__.py +9 -0
  1352. mindsdb/integrations/handlers/sharepoint_handler/__init__.py +27 -0
  1353. mindsdb/integrations/handlers/sharepoint_handler/icon.svg +23 -0
  1354. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +579 -0
  1355. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +147 -0
  1356. mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +581 -0
  1357. mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py +0 -0
  1358. mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +53 -0
  1359. mindsdb/integrations/handlers/sharepoint_handler/utils.py +163 -0
  1360. mindsdb/integrations/handlers/sheets_handler/__about__.py +9 -0
  1361. mindsdb/integrations/handlers/sheets_handler/__init__.py +20 -0
  1362. mindsdb/integrations/handlers/sheets_handler/connection_args.py +20 -0
  1363. mindsdb/integrations/handlers/sheets_handler/icon.svg +55 -0
  1364. mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +176 -0
  1365. mindsdb/integrations/handlers/sheets_handler/tests/__init__.py +0 -0
  1366. mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +33 -0
  1367. mindsdb/integrations/handlers/shopify_handler/__about__.py +9 -0
  1368. mindsdb/integrations/handlers/shopify_handler/__init__.py +27 -0
  1369. mindsdb/integrations/handlers/shopify_handler/icon.svg +5 -0
  1370. mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
  1371. mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +143 -0
  1372. mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +1083 -0
  1373. mindsdb/integrations/handlers/singlestore_handler/__about__.py +9 -0
  1374. mindsdb/integrations/handlers/singlestore_handler/__init__.py +21 -0
  1375. mindsdb/integrations/handlers/singlestore_handler/icon.svg +16 -0
  1376. mindsdb/integrations/handlers/singlestore_handler/requirements.txt +1 -0
  1377. mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +12 -0
  1378. mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py +0 -0
  1379. mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +42 -0
  1380. mindsdb/integrations/handlers/slack_handler/__about__.py +9 -0
  1381. mindsdb/integrations/handlers/slack_handler/__init__.py +28 -0
  1382. mindsdb/integrations/handlers/slack_handler/connection_args.py +26 -0
  1383. mindsdb/integrations/handlers/slack_handler/icon.svg +13 -0
  1384. mindsdb/integrations/handlers/slack_handler/requirements.txt +1 -0
  1385. mindsdb/integrations/handlers/slack_handler/slack_handler.py +339 -0
  1386. mindsdb/integrations/handlers/slack_handler/slack_tables.py +718 -0
  1387. mindsdb/integrations/handlers/slack_handler/tests/__init__.py +0 -0
  1388. mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +27 -0
  1389. mindsdb/integrations/handlers/snowflake_handler/__about__.py +9 -0
  1390. mindsdb/integrations/handlers/snowflake_handler/__init__.py +21 -0
  1391. mindsdb/integrations/handlers/snowflake_handler/connection_args.py +63 -0
  1392. mindsdb/integrations/handlers/snowflake_handler/icon.svg +10 -0
  1393. mindsdb/integrations/handlers/snowflake_handler/requirements.txt +2 -0
  1394. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +280 -0
  1395. mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py +0 -0
  1396. mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py +230 -0
  1397. mindsdb/integrations/handlers/solace_handler/__about__.py +9 -0
  1398. mindsdb/integrations/handlers/solace_handler/__init__.py +19 -0
  1399. mindsdb/integrations/handlers/solace_handler/icon.svg +3 -0
  1400. mindsdb/integrations/handlers/solace_handler/requirements.txt +1 -0
  1401. mindsdb/integrations/handlers/solace_handler/solace_handler.py +169 -0
  1402. mindsdb/integrations/handlers/solr_handler/__about__.py +9 -0
  1403. mindsdb/integrations/handlers/solr_handler/__init__.py +20 -0
  1404. mindsdb/integrations/handlers/solr_handler/connection_args.py +46 -0
  1405. mindsdb/integrations/handlers/solr_handler/icon.svg +10 -0
  1406. mindsdb/integrations/handlers/solr_handler/requirements.txt +1 -0
  1407. mindsdb/integrations/handlers/solr_handler/solr_handler.py +176 -0
  1408. mindsdb/integrations/handlers/solr_handler/tests/__init__.py +0 -0
  1409. mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +38 -0
  1410. mindsdb/integrations/handlers/spacy_handler/__about__.py +9 -0
  1411. mindsdb/integrations/handlers/spacy_handler/__init__.py +19 -0
  1412. mindsdb/integrations/handlers/spacy_handler/icon.svg +3 -0
  1413. mindsdb/integrations/handlers/spacy_handler/requirements.txt +1 -0
  1414. mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +194 -0
  1415. mindsdb/integrations/handlers/sqlany_handler/__about__.py +9 -0
  1416. mindsdb/integrations/handlers/sqlany_handler/__init__.py +20 -0
  1417. mindsdb/integrations/handlers/sqlany_handler/connection_args.py +46 -0
  1418. mindsdb/integrations/handlers/sqlany_handler/icon.svg +13 -0
  1419. mindsdb/integrations/handlers/sqlany_handler/requirements.txt +2 -0
  1420. mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +179 -0
  1421. mindsdb/integrations/handlers/sqlite_handler/__about__.py +9 -0
  1422. mindsdb/integrations/handlers/sqlite_handler/__init__.py +20 -0
  1423. mindsdb/integrations/handlers/sqlite_handler/connection_args.py +16 -0
  1424. mindsdb/integrations/handlers/sqlite_handler/icon.svg +12 -0
  1425. mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +184 -0
  1426. mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py +0 -0
  1427. mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +32 -0
  1428. mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +9 -0
  1429. mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +20 -0
  1430. mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +48 -0
  1431. mindsdb/integrations/handlers/sqreamdb_handler/icon.svg +21 -0
  1432. mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +2 -0
  1433. mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +154 -0
  1434. mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py +0 -0
  1435. mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +45 -0
  1436. mindsdb/integrations/handlers/stabilityai_handler/__about__.py +9 -0
  1437. mindsdb/integrations/handlers/stabilityai_handler/__init__.py +19 -0
  1438. mindsdb/integrations/handlers/stabilityai_handler/icon.svg +10 -0
  1439. mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +2 -0
  1440. mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +186 -0
  1441. mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +172 -0
  1442. mindsdb/integrations/handlers/starrocks_handler/__about__.py +9 -0
  1443. mindsdb/integrations/handlers/starrocks_handler/__init__.py +20 -0
  1444. mindsdb/integrations/handlers/starrocks_handler/icon.svg +9 -0
  1445. mindsdb/integrations/handlers/starrocks_handler/requirements.txt +1 -0
  1446. mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +48 -0
  1447. mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py +0 -0
  1448. mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +56 -0
  1449. mindsdb/integrations/handlers/statsforecast_handler/__about__.py +9 -0
  1450. mindsdb/integrations/handlers/statsforecast_handler/__init__.py +19 -0
  1451. mindsdb/integrations/handlers/statsforecast_handler/icon.svg +5 -0
  1452. mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
  1453. mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
  1454. mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +192 -0
  1455. mindsdb/integrations/handlers/strapi_handler/__about__.py +9 -0
  1456. mindsdb/integrations/handlers/strapi_handler/__init__.py +28 -0
  1457. mindsdb/integrations/handlers/strapi_handler/icon.svg +7 -0
  1458. mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +153 -0
  1459. mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +131 -0
  1460. mindsdb/integrations/handlers/strapi_handler/tests/__init__.py +0 -0
  1461. mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +51 -0
  1462. mindsdb/integrations/handlers/strava_handler/__about__.py +9 -0
  1463. mindsdb/integrations/handlers/strava_handler/__init__.py +27 -0
  1464. mindsdb/integrations/handlers/strava_handler/icon.svg +12 -0
  1465. mindsdb/integrations/handlers/strava_handler/requirements.txt +1 -0
  1466. mindsdb/integrations/handlers/strava_handler/strava_handler.py +113 -0
  1467. mindsdb/integrations/handlers/strava_handler/strava_tables.py +247 -0
  1468. mindsdb/integrations/handlers/stripe_handler/__about__.py +9 -0
  1469. mindsdb/integrations/handlers/stripe_handler/__init__.py +27 -0
  1470. mindsdb/integrations/handlers/stripe_handler/icon.svg +4 -0
  1471. mindsdb/integrations/handlers/stripe_handler/requirements.txt +1 -0
  1472. mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +102 -0
  1473. mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +508 -0
  1474. mindsdb/integrations/handlers/supabase_handler/__about__.py +9 -0
  1475. mindsdb/integrations/handlers/supabase_handler/__init__.py +20 -0
  1476. mindsdb/integrations/handlers/supabase_handler/icon.svg +15 -0
  1477. mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +11 -0
  1478. mindsdb/integrations/handlers/supabase_handler/tests/__init__.py +0 -0
  1479. mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +46 -0
  1480. mindsdb/integrations/handlers/surrealdb_handler/__about__.py +9 -0
  1481. mindsdb/integrations/handlers/surrealdb_handler/__init__.py +20 -0
  1482. mindsdb/integrations/handlers/surrealdb_handler/connection_args.py +52 -0
  1483. mindsdb/integrations/handlers/surrealdb_handler/icon.svg +9 -0
  1484. mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +1 -0
  1485. mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +196 -0
  1486. mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py +0 -0
  1487. mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +57 -0
  1488. mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py +0 -0
  1489. mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +20 -0
  1490. mindsdb/integrations/handlers/symbl_handler/__about__.py +9 -0
  1491. mindsdb/integrations/handlers/symbl_handler/__init__.py +28 -0
  1492. mindsdb/integrations/handlers/symbl_handler/connection_args.py +25 -0
  1493. mindsdb/integrations/handlers/symbl_handler/icon.svg +4 -0
  1494. mindsdb/integrations/handlers/symbl_handler/requirements.txt +1 -0
  1495. mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +106 -0
  1496. mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +648 -0
  1497. mindsdb/integrations/handlers/tdengine_handler/__about__.py +9 -0
  1498. mindsdb/integrations/handlers/tdengine_handler/__init__.py +20 -0
  1499. mindsdb/integrations/handlers/tdengine_handler/connection_args.py +36 -0
  1500. mindsdb/integrations/handlers/tdengine_handler/icon.svg +59 -0
  1501. mindsdb/integrations/handlers/tdengine_handler/requirements.txt +1 -0
  1502. mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +146 -0
  1503. mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py +0 -0
  1504. mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +48 -0
  1505. mindsdb/integrations/handlers/teradata_handler/__about__.py +9 -0
  1506. mindsdb/integrations/handlers/teradata_handler/__init__.py +20 -0
  1507. mindsdb/integrations/handlers/teradata_handler/connection_args.py +39 -0
  1508. mindsdb/integrations/handlers/teradata_handler/icon.svg +4 -0
  1509. mindsdb/integrations/handlers/teradata_handler/requirements.txt +2 -0
  1510. mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +245 -0
  1511. mindsdb/integrations/handlers/tidb_handler/__about__.py +9 -0
  1512. mindsdb/integrations/handlers/tidb_handler/__init__.py +21 -0
  1513. mindsdb/integrations/handlers/tidb_handler/connection_args.py +36 -0
  1514. mindsdb/integrations/handlers/tidb_handler/icon.svg +5 -0
  1515. mindsdb/integrations/handlers/tidb_handler/requirements.txt +1 -0
  1516. mindsdb/integrations/handlers/tidb_handler/tests/__init__.py +0 -0
  1517. mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +45 -0
  1518. mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +11 -0
  1519. mindsdb/integrations/handlers/timegpt_handler/__about__.py +9 -0
  1520. mindsdb/integrations/handlers/timegpt_handler/__init__.py +18 -0
  1521. mindsdb/integrations/handlers/timegpt_handler/icon.svg +5 -0
  1522. mindsdb/integrations/handlers/timegpt_handler/requirements.txt +1 -0
  1523. mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +205 -0
  1524. mindsdb/integrations/handlers/timescaledb_handler/__about__.py +9 -0
  1525. mindsdb/integrations/handlers/timescaledb_handler/__init__.py +19 -0
  1526. mindsdb/integrations/handlers/timescaledb_handler/icon.svg +9 -0
  1527. mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py +0 -0
  1528. mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +47 -0
  1529. mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +46 -0
  1530. mindsdb/integrations/handlers/tpot_handler/__about__.py +9 -0
  1531. mindsdb/integrations/handlers/tpot_handler/__init__.py +19 -0
  1532. mindsdb/integrations/handlers/tpot_handler/icon.png +0 -0
  1533. mindsdb/integrations/handlers/tpot_handler/requirements.txt +2 -0
  1534. mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +80 -0
  1535. mindsdb/integrations/handlers/trino_handler/__about__.py +9 -0
  1536. mindsdb/integrations/handlers/trino_handler/__init__.py +19 -0
  1537. mindsdb/integrations/handlers/trino_handler/icon.svg +23 -0
  1538. mindsdb/integrations/handlers/trino_handler/requirements.txt +2 -0
  1539. mindsdb/integrations/handlers/trino_handler/tests/__init__.py +0 -0
  1540. mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +48 -0
  1541. mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +12 -0
  1542. mindsdb/integrations/handlers/trino_handler/trino_handler.py +182 -0
  1543. mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +9 -0
  1544. mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +27 -0
  1545. mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +4 -0
  1546. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +215 -0
  1547. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +275 -0
  1548. mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +477 -0
  1549. mindsdb/integrations/handlers/twelve_labs_handler/__about__.py +9 -0
  1550. mindsdb/integrations/handlers/twelve_labs_handler/__init__.py +19 -0
  1551. mindsdb/integrations/handlers/twelve_labs_handler/icon.svg +7 -0
  1552. mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt +2 -0
  1553. mindsdb/integrations/handlers/twelve_labs_handler/settings.py +271 -0
  1554. mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py +567 -0
  1555. mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py +285 -0
  1556. mindsdb/integrations/handlers/twilio_handler/__about__.py +9 -0
  1557. mindsdb/integrations/handlers/twilio_handler/__init__.py +21 -0
  1558. mindsdb/integrations/handlers/twilio_handler/icon.svg +11 -0
  1559. mindsdb/integrations/handlers/twilio_handler/requirements.txt +1 -0
  1560. mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +385 -0
  1561. mindsdb/integrations/handlers/twitter_handler/__about__.py +9 -0
  1562. mindsdb/integrations/handlers/twitter_handler/__init__.py +21 -0
  1563. mindsdb/integrations/handlers/twitter_handler/icon.svg +10 -0
  1564. mindsdb/integrations/handlers/twitter_handler/requirements.txt +1 -0
  1565. mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +471 -0
  1566. mindsdb/integrations/handlers/unify_handler/__about__.py +9 -0
  1567. mindsdb/integrations/handlers/unify_handler/__init__.py +22 -0
  1568. mindsdb/integrations/handlers/unify_handler/creation_args.py +14 -0
  1569. mindsdb/integrations/handlers/unify_handler/icon.svg +25 -0
  1570. mindsdb/integrations/handlers/unify_handler/model_using_args.py +5 -0
  1571. mindsdb/integrations/handlers/unify_handler/requirements.txt +1 -0
  1572. mindsdb/integrations/handlers/unify_handler/tests/__init__.py +0 -0
  1573. mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +60 -0
  1574. mindsdb/integrations/handlers/unify_handler/unify_handler.py +67 -0
  1575. mindsdb/integrations/handlers/vertex_handler/__about__.py +9 -0
  1576. mindsdb/integrations/handlers/vertex_handler/__init__.py +19 -0
  1577. mindsdb/integrations/handlers/vertex_handler/icon.png +0 -0
  1578. mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
  1579. mindsdb/integrations/handlers/vertex_handler/vertex_client.py +95 -0
  1580. mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +87 -0
  1581. mindsdb/integrations/handlers/vertica_handler/__about__.py +9 -0
  1582. mindsdb/integrations/handlers/vertica_handler/__init__.py +20 -0
  1583. mindsdb/integrations/handlers/vertica_handler/connection_args.py +41 -0
  1584. mindsdb/integrations/handlers/vertica_handler/icon.svg +8 -0
  1585. mindsdb/integrations/handlers/vertica_handler/requirements.txt +2 -0
  1586. mindsdb/integrations/handlers/vertica_handler/tests/__init__.py +0 -0
  1587. mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +53 -0
  1588. mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +160 -0
  1589. mindsdb/integrations/handlers/vitess_handler/__about__.py +9 -0
  1590. mindsdb/integrations/handlers/vitess_handler/__init__.py +20 -0
  1591. mindsdb/integrations/handlers/vitess_handler/icon.svg +23 -0
  1592. mindsdb/integrations/handlers/vitess_handler/requirements.txt +1 -0
  1593. mindsdb/integrations/handlers/vitess_handler/tests/__init__.py +0 -0
  1594. mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +56 -0
  1595. mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +48 -0
  1596. mindsdb/integrations/handlers/weaviate_handler/__about__.py +9 -0
  1597. mindsdb/integrations/handlers/weaviate_handler/__init__.py +29 -0
  1598. mindsdb/integrations/handlers/weaviate_handler/connection_args.py +29 -0
  1599. mindsdb/integrations/handlers/weaviate_handler/icon.svg +197 -0
  1600. mindsdb/integrations/handlers/weaviate_handler/requirements.txt +1 -0
  1601. mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +652 -0
  1602. mindsdb/integrations/handlers/web_handler/__about__.py +9 -0
  1603. mindsdb/integrations/handlers/web_handler/__init__.py +24 -0
  1604. mindsdb/integrations/handlers/web_handler/icon.svg +11 -0
  1605. mindsdb/integrations/handlers/web_handler/requirements.txt +3 -0
  1606. mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +343 -0
  1607. mindsdb/integrations/handlers/web_handler/web_handler.py +91 -0
  1608. mindsdb/integrations/handlers/webz_handler/__about__.py +9 -0
  1609. mindsdb/integrations/handlers/webz_handler/__init__.py +28 -0
  1610. mindsdb/integrations/handlers/webz_handler/icon.svg +4 -0
  1611. mindsdb/integrations/handlers/webz_handler/requirements.txt +3 -0
  1612. mindsdb/integrations/handlers/webz_handler/webz_handler.py +175 -0
  1613. mindsdb/integrations/handlers/webz_handler/webz_tables.py +218 -0
  1614. mindsdb/integrations/handlers/whatsapp_handler/__about__.py +9 -0
  1615. mindsdb/integrations/handlers/whatsapp_handler/__init__.py +28 -0
  1616. mindsdb/integrations/handlers/whatsapp_handler/icon.svg +19 -0
  1617. mindsdb/integrations/handlers/whatsapp_handler/requirements.txt +1 -0
  1618. mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py +420 -0
  1619. mindsdb/integrations/handlers/writer_handler/__about__.py +9 -0
  1620. mindsdb/integrations/handlers/writer_handler/__init__.py +30 -0
  1621. mindsdb/integrations/handlers/writer_handler/evaluate.py +362 -0
  1622. mindsdb/integrations/handlers/writer_handler/icon.svg +10 -0
  1623. mindsdb/integrations/handlers/writer_handler/ingest.py +11 -0
  1624. mindsdb/integrations/handlers/writer_handler/rag.py +14 -0
  1625. mindsdb/integrations/handlers/writer_handler/requirements.txt +4 -0
  1626. mindsdb/integrations/handlers/writer_handler/settings.py +86 -0
  1627. mindsdb/integrations/handlers/writer_handler/writer_handler.py +188 -0
  1628. mindsdb/integrations/handlers/xata_handler/__about__.py +9 -0
  1629. mindsdb/integrations/handlers/xata_handler/__init__.py +29 -0
  1630. mindsdb/integrations/handlers/xata_handler/connection_args.py +35 -0
  1631. mindsdb/integrations/handlers/xata_handler/icon.svg +29 -0
  1632. mindsdb/integrations/handlers/xata_handler/requirements.txt +1 -0
  1633. mindsdb/integrations/handlers/xata_handler/tests/__init__.py +0 -0
  1634. mindsdb/integrations/handlers/xata_handler/xata_handler.py +347 -0
  1635. mindsdb/integrations/handlers/youtube_handler/__about__.py +9 -0
  1636. mindsdb/integrations/handlers/youtube_handler/__init__.py +27 -0
  1637. mindsdb/integrations/handlers/youtube_handler/icon.svg +11 -0
  1638. mindsdb/integrations/handlers/youtube_handler/requirements.txt +2 -0
  1639. mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +164 -0
  1640. mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +448 -0
  1641. mindsdb/integrations/handlers/yugabyte_handler/__about__.py +9 -0
  1642. mindsdb/integrations/handlers/yugabyte_handler/__init__.py +19 -0
  1643. mindsdb/integrations/handlers/yugabyte_handler/icon.svg +4 -0
  1644. mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py +0 -0
  1645. mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +49 -0
  1646. mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +60 -0
  1647. mindsdb/integrations/handlers/zendesk_handler/__about__.py +9 -0
  1648. mindsdb/integrations/handlers/zendesk_handler/__init__.py +28 -0
  1649. mindsdb/integrations/handlers/zendesk_handler/connection_args.py +33 -0
  1650. mindsdb/integrations/handlers/zendesk_handler/icon.svg +1 -0
  1651. mindsdb/integrations/handlers/zendesk_handler/requirements.txt +1 -0
  1652. mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py +89 -0
  1653. mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +463 -0
  1654. mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +9 -0
  1655. mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +28 -0
  1656. mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py +18 -0
  1657. mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +4 -0
  1658. mindsdb/integrations/handlers/zipcodebase_handler/tests/__init__.py +0 -0
  1659. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +67 -0
  1660. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +107 -0
  1661. mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +499 -0
  1662. mindsdb/integrations/handlers/zotero_handler/__about__.py +9 -0
  1663. mindsdb/integrations/handlers/zotero_handler/__init__.py +21 -0
  1664. mindsdb/integrations/handlers/zotero_handler/icon.svg +102 -0
  1665. mindsdb/integrations/handlers/zotero_handler/requirements.txt +1 -0
  1666. mindsdb/integrations/handlers/zotero_handler/zotero_handler.py +109 -0
  1667. mindsdb/integrations/handlers/zotero_handler/zotero_tables.py +157 -0
  1668. mindsdb/integrations/libs/__init__.py +3 -0
  1669. mindsdb/integrations/libs/api_handler.py +444 -0
  1670. mindsdb/integrations/libs/api_handler_exceptions.py +18 -0
  1671. mindsdb/integrations/libs/base.py +355 -0
  1672. mindsdb/integrations/libs/const.py +23 -0
  1673. mindsdb/integrations/libs/llm/__init__.py +0 -0
  1674. mindsdb/integrations/libs/llm/config.py +106 -0
  1675. mindsdb/integrations/libs/llm/utils.py +603 -0
  1676. mindsdb/integrations/libs/ml_exec_base.py +453 -0
  1677. mindsdb/integrations/libs/ml_handler_process/__init__.py +8 -0
  1678. mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +28 -0
  1679. mindsdb/integrations/libs/ml_handler_process/create_validation_process.py +14 -0
  1680. mindsdb/integrations/libs/ml_handler_process/describe_process.py +117 -0
  1681. mindsdb/integrations/libs/ml_handler_process/func_call_process.py +26 -0
  1682. mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py +28 -0
  1683. mindsdb/integrations/libs/ml_handler_process/learn_process.py +156 -0
  1684. mindsdb/integrations/libs/ml_handler_process/predict_process.py +35 -0
  1685. mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +28 -0
  1686. mindsdb/integrations/libs/ml_handler_process/update_process.py +27 -0
  1687. mindsdb/integrations/libs/process_cache.py +430 -0
  1688. mindsdb/integrations/libs/realtime_chat_handler.py +33 -0
  1689. mindsdb/integrations/libs/response.py +95 -0
  1690. mindsdb/integrations/libs/storage_handler.py +88 -0
  1691. mindsdb/integrations/libs/vectordatabase_handler.py +534 -0
  1692. mindsdb/integrations/utilities/__init__.py +0 -0
  1693. mindsdb/integrations/utilities/datasets/__init__.py +0 -0
  1694. mindsdb/integrations/utilities/datasets/dataset.py +73 -0
  1695. mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +21 -0
  1696. mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +106 -0
  1697. mindsdb/integrations/utilities/date_utils.py +79 -0
  1698. mindsdb/integrations/utilities/handler_utils.py +70 -0
  1699. mindsdb/integrations/utilities/handlers/__init__.py +0 -0
  1700. mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +1 -0
  1701. mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py +1 -0
  1702. mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +138 -0
  1703. mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +2 -0
  1704. mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py +11 -0
  1705. mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py +2 -0
  1706. mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py +59 -0
  1707. mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +108 -0
  1708. mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py +1 -0
  1709. mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +128 -0
  1710. mindsdb/integrations/utilities/handlers/query_utilities/__init__.py +4 -0
  1711. mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py +63 -0
  1712. mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py +44 -0
  1713. mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py +17 -0
  1714. mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py +71 -0
  1715. mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py +134 -0
  1716. mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py +67 -0
  1717. mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py +1 -0
  1718. mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py +18 -0
  1719. mindsdb/integrations/utilities/install.py +134 -0
  1720. mindsdb/integrations/utilities/query_traversal.py +239 -0
  1721. mindsdb/integrations/utilities/rag/__init__.py +0 -0
  1722. mindsdb/integrations/utilities/rag/chains/__init__.py +0 -0
  1723. mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +218 -0
  1724. mindsdb/integrations/utilities/rag/config_loader.py +77 -0
  1725. mindsdb/integrations/utilities/rag/loaders/__init__.py +0 -0
  1726. mindsdb/integrations/utilities/rag/loaders/file_loader.py +44 -0
  1727. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py +54 -0
  1728. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py +0 -0
  1729. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +84 -0
  1730. mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +60 -0
  1731. mindsdb/integrations/utilities/rag/pipelines/__init__.py +0 -0
  1732. mindsdb/integrations/utilities/rag/pipelines/rag.py +253 -0
  1733. mindsdb/integrations/utilities/rag/rag_pipeline_builder.py +83 -0
  1734. mindsdb/integrations/utilities/rag/rerankers/__init__.py +0 -0
  1735. mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +156 -0
  1736. mindsdb/integrations/utilities/rag/retrievers/__init__.py +0 -0
  1737. mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py +117 -0
  1738. mindsdb/integrations/utilities/rag/retrievers/base.py +10 -0
  1739. mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py +101 -0
  1740. mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +149 -0
  1741. mindsdb/integrations/utilities/rag/settings.py +511 -0
  1742. mindsdb/integrations/utilities/rag/splitters/__init__.py +0 -0
  1743. mindsdb/integrations/utilities/rag/splitters/file_splitter.py +132 -0
  1744. mindsdb/integrations/utilities/rag/utils.py +52 -0
  1745. mindsdb/integrations/utilities/rag/vector_store.py +99 -0
  1746. mindsdb/integrations/utilities/sql_utils.py +225 -0
  1747. mindsdb/integrations/utilities/test_utils.py +30 -0
  1748. mindsdb/integrations/utilities/time_series_utils.py +191 -0
  1749. mindsdb/integrations/utilities/utils.py +32 -0
  1750. mindsdb/interfaces/__init__.py +1 -0
  1751. mindsdb/interfaces/agents/__init__.py +0 -0
  1752. mindsdb/interfaces/agents/agents_controller.py +435 -0
  1753. mindsdb/interfaces/agents/callback_handlers.py +130 -0
  1754. mindsdb/interfaces/agents/constants.py +179 -0
  1755. mindsdb/interfaces/agents/langchain_agent.py +676 -0
  1756. mindsdb/interfaces/agents/langfuse_callback_handler.py +163 -0
  1757. mindsdb/interfaces/agents/mindsdb_chat_model.py +196 -0
  1758. mindsdb/interfaces/agents/mindsdb_database_agent.py +54 -0
  1759. mindsdb/interfaces/agents/safe_output_parser.py +51 -0
  1760. mindsdb/interfaces/chatbot/__init__.py +1 -0
  1761. mindsdb/interfaces/chatbot/chatbot_controller.py +409 -0
  1762. mindsdb/interfaces/chatbot/chatbot_executor.py +226 -0
  1763. mindsdb/interfaces/chatbot/chatbot_task.py +174 -0
  1764. mindsdb/interfaces/chatbot/memory.py +223 -0
  1765. mindsdb/interfaces/chatbot/model_executor.py +107 -0
  1766. mindsdb/interfaces/chatbot/polling.py +233 -0
  1767. mindsdb/interfaces/chatbot/types.py +38 -0
  1768. mindsdb/interfaces/database/__init__.py +0 -0
  1769. mindsdb/interfaces/database/database.py +122 -0
  1770. mindsdb/interfaces/database/integrations.py +931 -0
  1771. mindsdb/interfaces/database/log.py +297 -0
  1772. mindsdb/interfaces/database/projects.py +397 -0
  1773. mindsdb/interfaces/database/views.py +139 -0
  1774. mindsdb/interfaces/file/__init__.py +0 -0
  1775. mindsdb/interfaces/file/file_controller.py +146 -0
  1776. mindsdb/interfaces/functions/__init__.py +0 -0
  1777. mindsdb/interfaces/functions/controller.py +207 -0
  1778. mindsdb/interfaces/jobs/__init__.py +0 -0
  1779. mindsdb/interfaces/jobs/jobs_controller.py +549 -0
  1780. mindsdb/interfaces/jobs/scheduler.py +143 -0
  1781. mindsdb/interfaces/knowledge_base/__init__.py +0 -0
  1782. mindsdb/interfaces/knowledge_base/controller.py +899 -0
  1783. mindsdb/interfaces/knowledge_base/preprocessing/__init__.py +0 -0
  1784. mindsdb/interfaces/knowledge_base/preprocessing/constants.py +13 -0
  1785. mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +176 -0
  1786. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +401 -0
  1787. mindsdb/interfaces/knowledge_base/preprocessing/models.py +108 -0
  1788. mindsdb/interfaces/model/__init__.py +0 -0
  1789. mindsdb/interfaces/model/functions.py +155 -0
  1790. mindsdb/interfaces/model/model_controller.py +488 -0
  1791. mindsdb/interfaces/query_context/__init__.py +0 -0
  1792. mindsdb/interfaces/query_context/context_controller.py +289 -0
  1793. mindsdb/interfaces/query_context/last_query.py +266 -0
  1794. mindsdb/interfaces/skills/__init__.py +1 -0
  1795. mindsdb/interfaces/skills/custom/__init__.py +0 -0
  1796. mindsdb/interfaces/skills/custom/text2sql/__init__.py +0 -0
  1797. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py +37 -0
  1798. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +88 -0
  1799. mindsdb/interfaces/skills/retrieval_tool.py +110 -0
  1800. mindsdb/interfaces/skills/skill_tool.py +255 -0
  1801. mindsdb/interfaces/skills/skills_controller.py +175 -0
  1802. mindsdb/interfaces/skills/sql_agent.py +256 -0
  1803. mindsdb/interfaces/storage/__init__.py +1 -0
  1804. mindsdb/interfaces/storage/db.py +597 -0
  1805. mindsdb/interfaces/storage/fs.py +661 -0
  1806. mindsdb/interfaces/storage/json.py +97 -0
  1807. mindsdb/interfaces/storage/model_fs.py +282 -0
  1808. mindsdb/interfaces/tabs/__init__.py +0 -0
  1809. mindsdb/interfaces/tabs/tabs_controller.py +291 -0
  1810. mindsdb/interfaces/tasks/__init__.py +0 -0
  1811. mindsdb/interfaces/tasks/task.py +16 -0
  1812. mindsdb/interfaces/tasks/task_monitor.py +150 -0
  1813. mindsdb/interfaces/tasks/task_thread.py +55 -0
  1814. mindsdb/interfaces/triggers/__init__.py +0 -0
  1815. mindsdb/interfaces/triggers/trigger_task.py +95 -0
  1816. mindsdb/interfaces/triggers/triggers_controller.py +167 -0
  1817. mindsdb/metrics/__init__.py +0 -0
  1818. mindsdb/metrics/metrics.py +50 -0
  1819. mindsdb/metrics/server.py +26 -0
  1820. mindsdb/migrations/__init__.py +0 -0
  1821. mindsdb/migrations/alembic.ini +65 -0
  1822. mindsdb/migrations/env.py +87 -0
  1823. mindsdb/migrations/migrate.py +53 -0
  1824. mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +178 -0
  1825. mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +38 -0
  1826. mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +256 -0
  1827. mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +156 -0
  1828. mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +106 -0
  1829. mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +29 -0
  1830. mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +33 -0
  1831. mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +42 -0
  1832. mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +36 -0
  1833. mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +81 -0
  1834. mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +69 -0
  1835. mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +74 -0
  1836. mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +59 -0
  1837. mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +90 -0
  1838. mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +115 -0
  1839. mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +66 -0
  1840. mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +106 -0
  1841. mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +34 -0
  1842. mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +56 -0
  1843. mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +42 -0
  1844. mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +36 -0
  1845. mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +33 -0
  1846. mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +35 -0
  1847. mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +46 -0
  1848. mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +41 -0
  1849. mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +28 -0
  1850. mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +35 -0
  1851. mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +60 -0
  1852. mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +54 -0
  1853. mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +38 -0
  1854. mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +26 -0
  1855. mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +32 -0
  1856. mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +35 -0
  1857. mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +29 -0
  1858. mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +82 -0
  1859. mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +28 -0
  1860. mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +54 -0
  1861. mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +38 -0
  1862. mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +33 -0
  1863. mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py +44 -0
  1864. mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py +32 -0
  1865. mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py +44 -0
  1866. mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py +36 -0
  1867. mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py +34 -0
  1868. mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py +50 -0
  1869. mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py +47 -0
  1870. mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py +42 -0
  1871. mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py +27 -0
  1872. mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py +41 -0
  1873. mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py +28 -0
  1874. mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py +103 -0
  1875. mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py +44 -0
  1876. mindsdb/migrations/versions/__init__.py +0 -0
  1877. mindsdb/utilities/__init__.py +0 -0
  1878. mindsdb/utilities/auth.py +73 -0
  1879. mindsdb/utilities/cache.py +282 -0
  1880. mindsdb/utilities/config.py +530 -0
  1881. mindsdb/utilities/context.py +57 -0
  1882. mindsdb/utilities/context_executor.py +59 -0
  1883. mindsdb/utilities/exception.py +29 -0
  1884. mindsdb/utilities/fs.py +153 -0
  1885. mindsdb/utilities/functions.py +197 -0
  1886. mindsdb/utilities/hooks/__init__.py +34 -0
  1887. mindsdb/utilities/hooks/profiling.py +74 -0
  1888. mindsdb/utilities/json_encoder.py +33 -0
  1889. mindsdb/utilities/log.py +97 -0
  1890. mindsdb/utilities/log_controller.py +39 -0
  1891. mindsdb/utilities/ml_task_queue/__init__.py +57 -0
  1892. mindsdb/utilities/ml_task_queue/base.py +14 -0
  1893. mindsdb/utilities/ml_task_queue/const.py +26 -0
  1894. mindsdb/utilities/ml_task_queue/consumer.py +252 -0
  1895. mindsdb/utilities/ml_task_queue/producer.py +81 -0
  1896. mindsdb/utilities/ml_task_queue/task.py +82 -0
  1897. mindsdb/utilities/ml_task_queue/utils.py +124 -0
  1898. mindsdb/utilities/otel.py +72 -0
  1899. mindsdb/utilities/profiler/__init__.py +19 -0
  1900. mindsdb/utilities/profiler/profiler.py +144 -0
  1901. mindsdb/utilities/ps.py +78 -0
  1902. mindsdb/utilities/render/__init__.py +0 -0
  1903. mindsdb/utilities/render/sqlalchemy_render.py +831 -0
  1904. mindsdb/utilities/security.py +54 -0
  1905. mindsdb/utilities/sentry.py +46 -0
  1906. mindsdb/utilities/starters.py +33 -0
  1907. mindsdb/utilities/telemetry.py +44 -0
  1908. mindsdb/utilities/wizards.py +49 -0
  1909. MindsDB-1.3.1.dist-info/LICENSE +0 -21
  1910. MindsDB-1.3.1.dist-info/METADATA +0 -112
  1911. MindsDB-1.3.1.dist-info/RECORD +0 -55
  1912. mindsdb/config/__init__.py +0 -32
  1913. mindsdb/config/helpers.py +0 -21
  1914. mindsdb/external_libs/stats.py +0 -61
  1915. mindsdb/libs/__init__.py +0 -6
  1916. mindsdb/libs/backends/lightwood.py +0 -180
  1917. mindsdb/libs/backends/ludwig.py +0 -456
  1918. mindsdb/libs/constants/mindsdb.py +0 -81
  1919. mindsdb/libs/controllers/predictor.py +0 -583
  1920. mindsdb/libs/controllers/transaction.py +0 -254
  1921. mindsdb/libs/data_sources/file_ds.py +0 -196
  1922. mindsdb/libs/data_types/data_source.py +0 -59
  1923. mindsdb/libs/data_types/mindsdb_logger.py +0 -127
  1924. mindsdb/libs/data_types/probability_evaluation.py +0 -56
  1925. mindsdb/libs/data_types/transaction_data.py +0 -15
  1926. mindsdb/libs/data_types/transaction_output_data.py +0 -29
  1927. mindsdb/libs/data_types/transaction_output_row.py +0 -35
  1928. mindsdb/libs/helpers/explain_prediction.py +0 -114
  1929. mindsdb/libs/helpers/file_helpers.py +0 -66
  1930. mindsdb/libs/helpers/general_helpers.py +0 -276
  1931. mindsdb/libs/helpers/multi_data_source.py +0 -28
  1932. mindsdb/libs/helpers/parser.py +0 -161
  1933. mindsdb/libs/helpers/probabilistic_validator.py +0 -198
  1934. mindsdb/libs/helpers/sqlite_helpers.py +0 -33
  1935. mindsdb/libs/helpers/text_helpers.py +0 -79
  1936. mindsdb/libs/helpers/train_helpers.py +0 -4
  1937. mindsdb/libs/phases/base_module.py +0 -62
  1938. mindsdb/libs/phases/data_extractor/data_extractor.py +0 -233
  1939. mindsdb/libs/phases/data_transformer/data_transformer.py +0 -103
  1940. mindsdb/libs/phases/model_analyzer/helpers/column_evaluator.py +0 -120
  1941. mindsdb/libs/phases/model_analyzer/model_analyzer.py +0 -119
  1942. mindsdb/libs/phases/model_interface/model_interface.py +0 -31
  1943. mindsdb/libs/phases/stats_generator/scores.py +0 -377
  1944. mindsdb/libs/phases/stats_generator/stats_generator.py +0 -691
  1945. mindsdb/scraps.py +0 -133
  1946. {MindsDB-1.3.1.dist-info → MindsDB-25.1.2.0.dist-info}/top_level.txt +0 -0
  1947. /mindsdb/{external_libs → api}/__init__.py +0 -0
  1948. /mindsdb/{libs/backends → api/common}/__init__.py +0 -0
  1949. /mindsdb/{libs/constants → api/executor/data_types}/__init__.py +0 -0
  1950. /mindsdb/{libs/controllers → api/executor/datahub/classes}/__init__.py +0 -0
  1951. /mindsdb/{libs/data_sources → api/executor/sql_query}/__init__.py +0 -0
  1952. /mindsdb/{libs/data_types → api/executor/utilities}/__init__.py +0 -0
  1953. /mindsdb/{libs/helpers → api/http}/__init__.py +0 -0
  1954. /mindsdb/{libs/phases → api/http/namespaces}/__init__.py +0 -0
  1955. /mindsdb/{libs/phases/data_extractor → api/http/namespaces/configs}/__init__.py +0 -0
  1956. /mindsdb/{libs/phases/data_transformer → api/mongo}/__init__.py +0 -0
  1957. /mindsdb/{libs/phases/model_analyzer → api/mongo/utilities}/__init__.py +0 -0
  1958. /mindsdb/{libs/phases/model_analyzer/helpers → api/mysql}/__init__.py +0 -0
  1959. /mindsdb/{libs/phases/model_interface → api/mysql/mysql_proxy}/__init__.py +0 -0
  1960. /mindsdb/{libs/phases/stats_generator → api/mysql/mysql_proxy/classes}/__init__.py +0 -0
@@ -0,0 +1,197 @@
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <g clip-path="url(#clip0_155_2397)">
3
+ <path d="M40 23.9825V14.4858C40 13.5597 39.5044 12.7038 38.699 12.2387L31.774 8.23726C30.612 7.5659 29.1551 8.39917 29.1551 9.73497V19.8527L24.2362 17.036C21.6044 15.5294 18.3638 15.5333 15.736 17.0458L10.8449 19.8616V9.73596C10.8449 8.40016 9.38799 7.56689 8.22604 8.23824L1.30099 12.2397C0.495568 12.7047 0 13.5607 0 14.4868V23.9924C0 25.3243 0.684262 26.5633 1.81344 27.2791L8.11779 31.2747C9.75743 32.3133 11.8738 32.2304 13.425 31.0654L17.8077 27.7757C19.0123 26.8713 20.9837 26.8713 22.1883 27.7757L26.57 31.0634C28.1223 32.2274 30.2376 32.3103 31.8773 31.2717L38.1885 27.2702C39.3167 26.5544 40 25.3154 40 23.9845V23.9825Z" fill="#05B460"/>
4
+ <mask id="mask0_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-1" y="7" width="41" height="26">
5
+ <path d="M39.999 24.0487V14.3954C39.999 13.4541 39.4994 12.584 38.6875 12.1113L31.7065 8.0439C30.5351 7.36148 29.0664 8.20849 29.0664 9.5663V19.8508L24.1077 16.9876C21.4546 15.4562 18.1879 15.4602 15.5388 16.9977L10.6081 19.8598V9.56731C10.6081 8.20949 9.13945 7.36248 7.9681 8.04491L0.987049 12.1123C0.175113 12.585 -0.324463 13.4551 -0.324463 14.3964V24.0587C-0.324463 25.4125 0.365332 26.672 1.50364 27.3996L7.85897 31.461C9.51187 32.5167 11.6453 32.4324 13.2091 31.2482L17.6272 27.9044C18.8416 26.9851 20.8289 26.9851 22.0433 27.9044L26.4604 31.2462C28.0252 32.4294 30.1577 32.5137 31.8106 31.458L38.1729 27.3905C39.3102 26.663 39.999 25.4035 39.999 24.0507" fill="white"/>
6
+ </mask>
7
+ <g mask="url(#mask0_155_2397)">
8
+ <path d="M26.0691 30.9472L26.4616 31.2443C26.4616 31.2443 26.4616 31.2443 26.4626 31.2453L26.0681 30.9472M17.4932 28.0038C17.4932 28.0038 17.4862 28.0088 17.4832 28.0108L13.4656 31.0526C13.4656 31.0526 13.4706 31.0486 13.4726 31.0466L17.4932 28.0028M15.7682 16.8693C15.6912 16.9114 15.6141 16.9536 15.538 16.9977L10.6073 19.8599V19.8709L15.7682 16.8693Z" fill="url(#paint0_linear_155_2397)"/>
9
+ <mask id="mask1_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="10" y="16" width="20" height="16">
10
+ <path d="M19.8439 21.4145C18.6866 21.4145 17.5283 21.7397 16.5131 22.39L10.6083 26.1714V29.6166C10.6083 30.6784 11.4783 31.412 12.4043 31.412C12.7658 31.412 13.1362 31.3006 13.4666 31.0527L17.4842 28.0109C17.4842 28.0109 17.4912 28.0059 17.4942 28.0039L17.6274 27.9025C18.2351 27.4429 19.035 27.2131 19.8359 27.2131C20.6368 27.2131 21.4368 27.4429 22.0435 27.9025L26.0681 30.9473L26.4625 31.2454C26.5476 31.3096 26.6347 31.3708 26.7239 31.429L26.2183 31.0467C26.5507 31.2986 26.9241 31.412 27.2885 31.412C28.2146 31.412 29.0846 30.6784 29.0846 29.6166V26.1794L23.1788 22.392C22.1626 21.7407 21.0033 21.4145 19.8449 21.4145M15.9434 16.7791C15.8854 16.8092 15.8273 16.8393 15.7702 16.8704L10.6093 19.872V19.8821L15.9434 16.7791Z" fill="white"/>
11
+ </mask>
12
+ <g mask="url(#mask1_155_2397)">
13
+ <rect width="18.6455" height="14.7885" transform="matrix(1 0 0 -1 10.5262 31.5043)" fill="url(#pattern0)"/>
14
+ </g>
15
+ <mask id="mask2_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-1" y="14" width="42" height="16">
16
+ <path d="M-0.519653 14.2218H40.2273V29.9777H-0.519653V14.2218Z" fill="white"/>
17
+ </mask>
18
+ <g mask="url(#mask2_155_2397)">
19
+ <mask id="mask3_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="27" y="18" width="3" height="2">
20
+ <path d="M27.2184 18.7842L29.0845 19.871V19.862L29.0675 19.852L27.2184 18.7842Z" fill="white"/>
21
+ </mask>
22
+ <g mask="url(#mask3_155_2397)">
23
+ <rect x="27.1572" y="18.751" width="1.97027" height="1.1561" fill="url(#pattern1)"/>
24
+ </g>
25
+ <mask id="mask4_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="27" y="18" width="3" height="2">
26
+ <path d="M27.2144 18.7821L29.0845 19.871L27.2184 18.7841L27.2144 18.7821Z" fill="white"/>
27
+ </mask>
28
+ <g mask="url(#mask4_155_2397)">
29
+ <rect x="27.1572" y="18.751" width="1.97027" height="1.1561" fill="url(#pattern2)"/>
30
+ </g>
31
+ <mask id="mask5_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="10" y="15" width="20" height="12">
32
+ <path d="M19.8329 15.8427C18.4984 15.8427 17.1638 16.1548 15.9424 16.779L10.6083 19.882V26.1713L16.5131 22.3899C17.5283 21.7396 18.6866 21.4144 19.8439 21.4144C21.0013 21.4144 22.1616 21.7406 23.1778 22.3919L29.0836 26.1794V19.871L27.2134 18.7811L24.1078 16.9877C22.7843 16.224 21.3086 15.8417 19.8319 15.8417" fill="white"/>
33
+ </mask>
34
+ <g mask="url(#mask5_155_2397)">
35
+ <rect x="10.5802" y="15.8116" width="18.5494" height="10.4049" fill="url(#pattern3)"/>
36
+ </g>
37
+ </g>
38
+ <path d="M10.6082 9.54026V19.8609V9.5523C10.6082 9.5523 10.6082 9.54528 10.6082 9.54126M8.08031 7.98474C8.04226 8.00281 8.00522 8.02288 7.96818 8.04495L5.69756 9.36765L0.965107 12.1254C0.928065 12.1475 0.891022 12.1706 0.85498 12.1947L8.07931 7.98574" fill="url(#paint1_linear_155_2397)"/>
39
+ <mask id="mask6_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="27" width="2" height="1">
40
+ <path d="M1.47864 27.3816C1.48765 27.3876 1.49566 27.3926 1.50467 27.3987L2.40671 27.9747C2.40671 27.9747 2.40871 27.9757 2.40871 27.9767C2.40971 27.9767 2.41171 27.9787 2.41271 27.9787L1.47864 27.3816Z" fill="white"/>
41
+ </mask>
42
+ <g mask="url(#mask6_155_2397)">
43
+ <rect width="1.10527" height="0.722563" transform="matrix(1 0 0 -1 1.39563 28.0359)" fill="url(#pattern4)"/>
44
+ </g>
45
+ <mask id="mask7_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-1" y="7" width="12" height="18">
46
+ <path d="M8.84918 7.8031C8.59389 7.8031 8.33159 7.8603 8.0813 7.98374L0.856972 12.1927C0.130134 12.6754 -0.314378 13.4903 -0.322388 14.3694V24.0879V23.1094C-0.322388 24.1581 0.536602 24.9078 1.47168 24.9078C1.77102 24.9078 2.07838 24.8305 2.36871 24.6619L10.6092 19.8609V9.54026C10.5952 8.52566 9.75923 7.8031 8.84918 7.8031Z" fill="white"/>
47
+ </mask>
48
+ <g mask="url(#mask7_155_2397)">
49
+ <rect width="11.0527" height="17.2934" transform="matrix(1 0 0 -1 -0.382324 25.0011)" fill="url(#pattern5)"/>
50
+ </g>
51
+ <mask id="mask8_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="-1" y="19" width="15" height="13">
52
+ <path d="M13.3724 31.1238L13.1932 31.2593C13.1982 31.2553 13.2042 31.2513 13.2092 31.2472L13.3724 31.1238ZM10.6082 19.8608L2.36774 24.6619C2.0774 24.8305 1.77005 24.9077 1.4707 24.9077C0.535626 24.9077 -0.323364 24.1581 -0.323364 23.1094V24.0878C-0.313353 25.4196 0.364429 26.6559 1.47871 27.3805L2.41279 27.9776C3.25576 28.5055 4.2469 28.8106 5.22503 28.8106C6.01494 28.8106 6.79584 28.6119 7.48363 28.1713L10.6082 26.1963V19.8608Z" fill="white"/>
53
+ </mask>
54
+ <g mask="url(#mask8_155_2397)">
55
+ <rect width="13.84" height="11.5128" transform="matrix(1 0 0 -1 -0.382324 31.3114)" fill="url(#pattern6)"/>
56
+ </g>
57
+ <mask id="mask9_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="6" y="30" width="2" height="2">
58
+ <path d="M6.04993 30.303L7.86001 31.4601L7.38346 31.155L6.04993 30.303Z" fill="white"/>
59
+ </mask>
60
+ <g mask="url(#mask9_155_2397)">
61
+ <rect width="1.97027" height="1.30061" transform="matrix(1 0 0 -1 5.96082 31.5524)" fill="url(#pattern7)"/>
62
+ </g>
63
+ <mask id="mask10_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="2" y="28" width="6" height="4">
64
+ <path d="M2.72412 28.1774L6.04995 30.3029L7.38349 31.1549L6.96501 30.888L2.72412 28.1774Z" fill="white"/>
65
+ </mask>
66
+ <g mask="url(#mask10_155_2397)">
67
+ <rect width="4.80554" height="3.13111" transform="matrix(1 0 0 -1 2.6449 31.2151)" fill="url(#pattern8)"/>
68
+ </g>
69
+ <mask id="mask11_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="2" y="27" width="5" height="4">
70
+ <path d="M2.40674 27.9746L2.7241 28.1774L6.96499 30.887L2.41274 27.9776C2.41274 27.9776 2.40974 27.9756 2.40874 27.9756C2.40874 27.9756 2.40674 27.9746 2.40674 27.9736" fill="white"/>
71
+ </mask>
72
+ <g mask="url(#mask11_155_2397)">
73
+ <rect width="4.66137" height="3.08294" transform="matrix(1 0 0 -1 2.35681 30.9744)" fill="url(#pattern9)"/>
74
+ </g>
75
+ <mask id="mask12_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="10" y="26" width="4" height="6">
76
+ <path d="M10.6083 26.1984V29.6225C10.6083 30.6843 11.4783 31.4179 12.4043 31.4179C12.7317 31.4179 13.0671 31.3266 13.3725 31.1248L13.4636 31.0556L13.4736 31.0476C13.4736 31.0476 13.4686 31.0516 13.4666 31.0536C13.1362 31.3015 12.7658 31.4129 12.4043 31.4129C11.4783 31.4129 10.6083 30.6793 10.6083 29.6175V26.1994" fill="white"/>
77
+ </mask>
78
+ <g mask="url(#mask12_155_2397)">
79
+ <rect width="3.02749" height="5.39514" transform="matrix(1 0 0 -1 10.5262 31.5042)" fill="url(#pattern10)"/>
80
+ </g>
81
+ <mask id="mask13_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="2" y="26" width="12" height="7">
82
+ <path d="M10.6082 26.1974L7.48356 28.1724C6.79677 28.613 6.01487 28.8117 5.22496 28.8117C4.24683 28.8117 3.25469 28.5066 2.41272 27.9787L7.86 31.4601C8.63189 31.9528 9.5079 32.1977 10.3819 32.1977C11.374 32.1977 12.3632 31.8836 13.1941 31.2604L13.3734 31.1249C13.067 31.3266 12.7326 31.4179 12.4052 31.4179C11.4792 31.4179 10.6092 30.6843 10.6092 29.6225V26.1984" fill="white"/>
83
+ </mask>
84
+ <g mask="url(#mask13_155_2397)">
85
+ <rect width="11.1008" height="6.16587" transform="matrix(1 0 0 -1 2.35681 32.275)" fill="url(#pattern11)"/>
86
+ </g>
87
+ <mask id="mask14_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="29" y="7" width="11" height="23">
88
+ <path d="M30.8275 7.80313C29.9865 7.80313 29.2086 8.42132 29.0845 9.3165V29.6165V19.8609L37.325 24.6619C37.6153 24.8305 37.9227 24.9078 38.222 24.9078C39.081 24.9078 39.8749 24.2766 39.9991 23.3613V14.3945C39.9991 13.4532 39.4995 12.5831 38.6875 12.1104L31.7065 8.04298C31.4222 7.87739 31.1208 7.80212 30.8265 7.80212" fill="white"/>
89
+ </mask>
90
+ <g mask="url(#mask14_155_2397)">
91
+ <rect width="11.0527" height="21.9659" transform="matrix(1 0 0 -1 29.0273 29.6737)" fill="url(#pattern12)"/>
92
+ </g>
93
+ <mask id="mask15_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="29" y="19" width="11" height="11">
94
+ <path d="M29.0845 19.8608V29.6165V26.1983L32.2091 28.1723C32.8959 28.6129 33.6778 28.8116 34.4677 28.8116C35.3247 28.8116 36.1907 28.5778 36.9586 28.1653L38.1729 27.3896C39.3103 26.662 39.9991 25.4025 39.9991 24.0497V23.3623C39.8749 24.2765 39.081 24.9087 38.222 24.9087C37.9227 24.9087 37.6153 24.8315 37.325 24.6629L29.0845 19.8618" fill="white"/>
95
+ </mask>
96
+ <g mask="url(#mask15_155_2397)">
97
+ <rect width="11.0527" height="9.87503" transform="matrix(1 0 0 -1 29.0273 29.6736)" fill="url(#pattern13)"/>
98
+ </g>
99
+ <mask id="mask16_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="26" y="31" width="1" height="1">
100
+ <path d="M26.2192 31.0464L26.7248 31.4288C26.7248 31.4288 26.7248 31.4288 26.7258 31.4288L26.2192 31.0454" fill="white"/>
101
+ </mask>
102
+ <g mask="url(#mask16_155_2397)">
103
+ <rect width="0.672775" height="0.52988" transform="matrix(1 0 0 -1 26.1442 31.504)" fill="url(#pattern14)"/>
104
+ </g>
105
+ <mask id="mask17_155_2397" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="26" y="26" width="11" height="7">
106
+ <path d="M29.0855 26.1974V29.6165C29.0855 30.6783 28.2155 31.4119 27.2895 31.4119C26.9251 31.4119 26.5516 31.2985 26.2192 31.0466L26.7258 31.43C27.5017 31.9378 28.3947 32.1937 29.2898 32.1937C30.1848 32.1937 31.0408 31.9488 31.8127 31.456L36.9606 28.1654C36.1927 28.5778 35.3257 28.8117 34.4697 28.8117C33.6798 28.8117 32.8989 28.613 32.2111 28.1724L29.0865 26.1974" fill="white"/>
107
+ </mask>
108
+ <g mask="url(#mask17_155_2397)">
109
+ <rect width="10.9086" height="6.16587" transform="matrix(1 0 0 -1 26.1442 32.275)" fill="url(#pattern15)"/>
110
+ </g>
111
+ </g>
112
+ </g>
113
+ <defs>
114
+ <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
115
+ <use xlink:href="#image0_155_2397" transform="scale(0.00257069 0.00324675)"/>
116
+ </pattern>
117
+ <pattern id="pattern1" patternContentUnits="objectBoundingBox" width="1" height="1">
118
+ <use xlink:href="#image1_155_2397" transform="scale(0.0238095 0.0416667)"/>
119
+ </pattern>
120
+ <pattern id="pattern2" patternContentUnits="objectBoundingBox" width="1" height="1">
121
+ <use xlink:href="#image2_155_2397" transform="scale(0.0238095 0.0416667)"/>
122
+ </pattern>
123
+ <pattern id="pattern3" patternContentUnits="objectBoundingBox" width="1" height="1">
124
+ <use xlink:href="#image3_155_2397" transform="scale(0.00259067 0.00462963)"/>
125
+ </pattern>
126
+ <pattern id="pattern4" patternContentUnits="objectBoundingBox" width="1" height="1">
127
+ <use xlink:href="#image4_155_2397" transform="scale(0.0416667 0.0714286)"/>
128
+ </pattern>
129
+ <pattern id="pattern5" patternContentUnits="objectBoundingBox" width="1" height="1">
130
+ <use xlink:href="#image5_155_2397" transform="scale(0.004329 0.00277778)"/>
131
+ </pattern>
132
+ <pattern id="pattern6" patternContentUnits="objectBoundingBox" width="1" height="1">
133
+ <use xlink:href="#image6_155_2397" transform="scale(0.00346021 0.00416667)"/>
134
+ </pattern>
135
+ <pattern id="pattern7" patternContentUnits="objectBoundingBox" width="1" height="1">
136
+ <use xlink:href="#image7_155_2397" transform="scale(0.0243902 0.0384615)"/>
137
+ </pattern>
138
+ <pattern id="pattern8" patternContentUnits="objectBoundingBox" width="1" height="1">
139
+ <use xlink:href="#image8_155_2397" transform="scale(0.01 0.0151515)"/>
140
+ </pattern>
141
+ <pattern id="pattern9" patternContentUnits="objectBoundingBox" width="1" height="1">
142
+ <use xlink:href="#image9_155_2397" transform="scale(0.0103093 0.015625)"/>
143
+ </pattern>
144
+ <pattern id="pattern10" patternContentUnits="objectBoundingBox" width="1" height="1">
145
+ <use xlink:href="#image10_155_2397" transform="scale(0.015625 0.00884956)"/>
146
+ </pattern>
147
+ <pattern id="pattern11" patternContentUnits="objectBoundingBox" width="1" height="1">
148
+ <use xlink:href="#image11_155_2397" transform="scale(0.004329 0.0078125)"/>
149
+ </pattern>
150
+ <pattern id="pattern12" patternContentUnits="objectBoundingBox" width="1" height="1">
151
+ <use xlink:href="#image12_155_2397" transform="scale(0.004329 0.00219298)"/>
152
+ </pattern>
153
+ <pattern id="pattern13" patternContentUnits="objectBoundingBox" width="1" height="1">
154
+ <use xlink:href="#image13_155_2397" transform="scale(0.004329 0.00487805)"/>
155
+ </pattern>
156
+ <pattern id="pattern14" patternContentUnits="objectBoundingBox" width="1" height="1">
157
+ <use xlink:href="#image14_155_2397" transform="scale(0.0666667 0.0833333)"/>
158
+ </pattern>
159
+ <pattern id="pattern15" patternContentUnits="objectBoundingBox" width="1" height="1">
160
+ <use xlink:href="#image15_155_2397" transform="scale(0.00438596 0.0078125)"/>
161
+ </pattern>
162
+ <linearGradient id="paint0_linear_155_2397" x1="17.5222" y1="-0.977053" x2="17.5222" y2="38.1919" gradientUnits="userSpaceOnUse">
163
+ <stop stop-color="#FFF500"/>
164
+ <stop offset="0.34" stop-color="#FDF400"/>
165
+ <stop offset="0.42" stop-color="#92DF1C"/>
166
+ <stop offset="0.48" stop-color="#43D030"/>
167
+ <stop offset="0.52" stop-color="#12C63D"/>
168
+ <stop offset="0.54" stop-color="#00C342"/>
169
+ <stop offset="0.81" stop-color="#135090"/>
170
+ <stop offset="1" stop-color="#135090"/>
171
+ </linearGradient>
172
+ <linearGradient id="paint1_linear_155_2397" x1="5.59645" y1="-48.9605" x2="5.59645" y2="59.8525" gradientUnits="userSpaceOnUse">
173
+ <stop stop-color="#F8FF5D"/>
174
+ <stop offset="0.49" stop-color="#FFCB00"/>
175
+ <stop offset="1" stop-color="#06CD00"/>
176
+ </linearGradient>
177
+ <clipPath id="clip0_155_2397">
178
+ <rect width="40" height="40" fill="white"/>
179
+ </clipPath>
180
+ <image id="image0_155_2397" width="389" height="308" xlink:href="data:image/png;base64,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"/>
181
+ <image id="image1_155_2397" width="42" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAYCAYAAACMcW/9AAAACXBIWXMAABcRAAAXEQHKJvM/AAABYklEQVRIic1Wy5LEIAhsUvn/T53bXpc5ZJwRGxDNbNX2KfKyAygKAPzoQ5FCna8qNFnVo57NTAYXKW2QgT12SQKK41uhZh53SAKvjAJKxV0n529+l2DDUXesBP4bksA7o55SkqDSfVfLnGsyvcIQtYfqTtCqdMXzaAsdSseF7J3VdHUPIckeyXH/MzLkIFm5PZtZ3FjvSU82ig5E1Ite2PulHkFE1xBldtVv7kmlj4roo2Y1ozP/PZpMu1t5dpXtaySB96y3F9OMUIVEH6VyHCPfhiCju71XwypJIJ1MFbLZ5Orz3tb8RpvFbFGWe3Tv6tFE18t9koDp0QsyzHjOAhOQlw2/ZcUZy97rd4yalt6a5UfLuwcrdyPHufaSQcKg0nORKq2fUdLApiL5wJn1QpLIhnXjofk12mgcN4LZ9eWW3icT2c1k6/Car/QevXLUZzrKgM2dmEPzyXSUgv237D/CE3xIx5Mih6DEAAAAAElFTkSuQmCC"/>
182
+ <image id="image2_155_2397" width="42" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAYCAYAAACMcW/9AAAACXBIWXMAABcRAAAXEQHKJvM/AAACa0lEQVRIic1WORLcMAwDPPv/96VKnU+YSKGLpGitkzRRs2uJBwTxIgD8/PVDEOYyMzwt4fmslFf6hmpBALI7ya71aQICCJCAboHBIJ2DZyffAP4JyErqGn9IwKw29O8g9U8ggcEoBN1NRGTQELRr8z3IE8ATSJKQM/Y5WsnaJ7GSxYP8gcUMElJ7eskaS2ybkgASJgN77Lo/G7CKxb8BSbIECSRGvZKlDPQCVaJ4kKd1AtlsVwxoAR0CWpoNcN8fZJoMELsknRNB6o/yBWT11AFkYKJkdDnPgkALhbgXL3laFcgzi1G6AWXLbLrDxWz7aSA1PMy9Fr6X395j1u7vLAbF/eIfoNXPi3XN0UE5a7QyHF/lFcgHFjegAGBd4HKHZmrdSst48thNj0rRti+2NqwJfIgv6zvIQ0NAilGfCKNLvQi/LUbttnMnkl6x6E8+C2E3Tba6OjJ6uXfqiV2un1GD6a/dmZUs6iTGK4BjXZuA9ulIfNeeMrNrQngsWK93P/OIgN03eI0MHi5WN1qG4mRFCLfZlCKvkFLqdTYjiFZqkKMkrmS60yw4vTil/pHT6rYYFovF0YYPU8wDQA9yAjWzlcHqD9aRXnOYEjJ2+a4FTAn2eJ7dbjqcAwWWosqEtRSCW4xWd9tjNGftAOmispgOq65XMbnt0gPdQ7FNMlUiKX4oFLa6pNWAvoB0mPZ5lOuBBYGK6GPS7C7XvOCedJrseTASNoN0N6RrJkD59NFxBpkNjWXyU+hDOZozrQfX9UNCPvR6FMyMzRHU8vGP+EQjHmUxufzruPycvUMUZGqXJqDUVIg6jP7r9RtQIcqA2OWitgAAAABJRU5ErkJggg=="/>
183
+ <image id="image3_155_2397" width="386" height="216" xlink:href="data:image/png;base64,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"/>
184
+ <image id="image4_155_2397" width="24" height="14" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAOCAYAAAA1+Nx+AAAACXBIWXMAABcRAAAXEQHKJvM/AAAARElEQVQ4jWPkLSz9z0Aj8Lm/m5GFgYFm5jMwMDAwsDAw0tR8BibaGs/AwMLASNsgoocPaGzB/9FURADQPBUN/SCiOQAAbmUJK68pfN0AAAAASUVORK5CYII="/>
185
+ <image id="image5_155_2397" width="231" height="360" xlink:href="data:image/png;base64,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"/>
186
+ <image id="image6_155_2397" width="289" height="240" xlink:href="data:image/png;base64,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"/>
187
+ <image id="image7_155_2397" width="41" height="26" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAAaCAYAAAAqjnX1AAAACXBIWXMAABcRAAAXEQHKJvM/AAAAaklEQVRYhe2VwQ3AMAgDnYol8qi6/1hVH9kCOkL7QAoncRNYNjbjXk+oMNc8h0WU1ihJOnYL+IOF2skUDHCSMnffreETSNxdnBwQY95xZ4GYoI47C8RbpDhZ38ouThYWgJ2EOAm4SUS7Ebxzaykj9SqF3wAAAABJRU5ErkJggg=="/>
188
+ <image id="image8_155_2397" width="100" height="66" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABCCAYAAAChF3N/AAAACXBIWXMAABcRAAAXEQHKJvM/AAAA+klEQVR4nO3cwW3DQAxFQa7BAlxXmgrSVOpKBVauziVXvcNMBQKIT3JXss/z4+saEn6+P8/OUY+SnVGQkp1z9yPwTkJizJCYVY4WLStGQWJsWTESEmPLinnc/QD8JSExEhKjIDE753X3M/BGQmL2MtRTHAxjtKwY55AYBYnRsmIM9RgJiTFDYrSsGK9wY3wGFGOGxJghMWZIjITE7KUgKU7qMbasGAWJ0bJiJCRGQmKsvTFaVoyrkxhXJzESEmPLitkZP0cokZCYnYehXiIhMQoSs5ehnuIcEqNlxbhcjJGQGAmJUZAYLSvG2hvjBVWMgsRoWTH+DQj+8wssTi/PZty2AgAAAABJRU5ErkJggg=="/>
189
+ <image id="image9_155_2397" width="97" height="64" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGEAAABACAYAAAAK9hkwAAAACXBIWXMAABcRAAAXEQHKJvM/AAAC2UlEQVR4nO1cy3XEIAyU8jinsDSUHrai1JUC4hz2Ez8HG4M0YrA9d7TSCn0YhPX943MSK+wS+DDFGPX9ddMk6iBJxegIQi+qhDkiuf6QWRShMwJ0SqKOP/KMKsb/shkPo4BRkSBSr/RUBZ+akINZ6fM44s1d4hxq8TBqdxhhsikP35qQwxURRaQQI12UJnOGue79AVcTllBrl+FotRecVIqJhDkCD0F1aNTptYnbbcIW5jUAipsdKrZmoH1tmkqFGbVpFSnciOBILacj+CmY0BHmDVK3dn86gmUQxtQkEpmakuhPnWzCjQtFQGqqb1HhjiDzckA319YdQTMIYXpShXZ0delojjOmJkoCj3DTwgEh8KyAO4Iw3KgJvDOdJUTESy9fAg9WJ1jvTdUlItLkbdjZCrbaHYGhspnPEgi9jExqsizeBKsjCPV6RAJIM2gqN+gMdUS98EV3BNIMajSjI6RKeOai/2SOMCwvY5/gzIkZePqC0uEG4Z1p+o2RlxEjQtqFd9SrPHeEoHFZOadOBbtM4FFeygPRgabfxx3RjqmAEJya0u7fcjie9wF/51THog4dEYwF+y64fiB4aEc0AswOtxF45rnSAQGMCNulzrBRwZWa7FT2kAWbi/zzGQge8izBQ3O0j7wsAQ8IkHDLcwknuI7GYwMCJNw6Ee8A9zdr+BIxKrG4Dsg7ZmwHC/y3Or2/hr5Zw0UFqyPaFqdpcirMR0JwRKSwV2uj1YlAR8Q9HDxd57R/cewTWnAr6D5N+AQ4Kvo8oQVBaYcUthfjv22xBcZUXhJuWpzXbNaidnAGcPCPtw/4v3iWjjqd3Rlr6h7hjosXh7VOtDQ4lUMKtovOz+vNpYLDXtSsA+YIJ+Rb1AM+9FBRrCMMote5oysiWoQ3YfsrL6/Zm2M5g438O/UEHgvBu/+wdkBHwEyq7JzqaIshL/S3wWBSw1deRhxx2cbdpGPZdKESv5+P8sJMt1JJAAAAAElFTkSuQmCC"/>
190
+ <image id="image10_155_2397" width="64" height="113" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABxCAYAAABlT6XWAAAACXBIWXMAABcRAAAXEQHKJvM/AAABPUlEQVR4nO2ZwQ0DQQwC56KrN+WlvFweq9TAY4YKEALW9l4A7w8PUrzWBNa4Aa41iyFugEcbgL8AaxZD1AGA2gJ6AfQR0AvQK7AmsIZegCZBqAPU0EdA7wC9AEVgTWCNHLAmsEYCrAmsoRegXWBNYA29ACcC3zWNHXIAuEtQ/ztcBKAIqBXQO0DfAXoB9BehU4LiQaASXBNYQy/A6YDWYS/0AuhfgQQA9RxUB+gFqAPA3QE3wFdsAf06XAmC+yKkd4BeAP0coHdAAqwJrKEX4JSgeBLUf48XAVAbIAfoHaC/CBUBcEcgB0AXITX0AuhLUD8H5ABAbYFKENwR0DtAL0ARWBNYQy9AEVgTWEPvgJYh6G9QnQF9CSbAmsAa+oOIfg4oApAD1MgBawJrtAwBagXqgDWBNfQC6O8BwY4fbZ45SQSGsvUAAAAASUVORK5CYII="/>
191
+ <image id="image11_155_2397" width="231" height="128" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOcAAACACAYAAADwBX7CAAAACXBIWXMAABcRAAAXEQHKJvM/AAAB70lEQVR4nO3du5HDMBBEQfBqM1NKCuNSUmqAEqAji8/ojoDO1Cw+JK/3Z50FpPy/1jWSCU1/Tz8AcG8MtdBkrIUozQlR1pwQJZwQNcdYC0lzCSckGWsharbmhCTNCVFzPf0EwK3Z++lHAO4YayHK3VqI0pwQZUMIolzfgyhrToiy5oQoL1tDlHBClLEWooQTouzWQpTmhCjhhCg3hCDKmhOijLUQZayFKM0JUcIJUcZaiNKcEKU5IUpzQpRwQpRwQpRwQpS7tRClOSFKOCFqjl8AQpLmhCgbQhDlL2MQZayFKGMtRPlXCkRpToiy5oQo4YQoX0KAqFkOOiHJhhBEWXNClHBC1CyvjEGS5oQo4YQou7UQJZwQ5WVriLLmhCjhhChrToiy5oSo2aoTkrwyBlE2hCDKlxAgSnNClHBClHNOiNKcECWcECWcECWcEDXHDSFI8gtAiDLWQpRzTojSnBClOSHKlxAgylgLUcZaiNKcEOVLCBClOSFKOCHKhhBEOeeEKM0JUb74DlE2hCDKWAtRmhOihBOijLUQpTkhSjghylgLUZoTojQnRLn4DlH+lQJR/pUCUTaEIEo4IUo4IcrL1hDlnBOijLUQpTkhSnNClOaEKM0JUS6+Q5RzToiy5oQoa06IEk6I8j4nAPziCxZ8Rk2ii7L/AAAAAElFTkSuQmCC"/>
192
+ <image id="image12_155_2397" width="231" height="456" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOcAAAHICAYAAAC1ef13AAAACXBIWXMAABcRAAAXEQHKJvM/AAAeJ0lEQVR4nO2dWZKkMLJFFWm1pLeqXlCvqvdU76OSTAKEBneXdCHOMSuzikS6coaLBoR4/fd/6W8CACn+83/p9bU6CADI8+e1OgIAyELNCSAK5gQQBXMCiII5AURhQAhAFGpOAFEwJ4AomBNAFPqcAKJQcwKIgjkBRMGcAKJgTgBRGBACEIWaE0AUzAkgCuYEEAVzAojCgBCAKNScAKJgTgBRMCeAKPQ5AUSh5gQQBXMCiII5AUTBnACiMCAEIAo1J4AomBNAFMwJIAp9TgBRqDkBRMGcAKJgTgBRMCeAKAwIAYhCzQkgCuYEEAVzAohCnxNAFGpOAFEwJ4AomBNAFMwJIAoDQgCiUHMCiII5AUTBnACi0OcEEIWaE0AUzAkgCuYEEAVzAojCgBCAKNScAKJgTgBRMCeAKPQ5AUSh5gQQBXMCiII5AUTBnACiMCAEIAo1J4AomBNAFMwJIAp9TgBRqDkBRMGcAKJgTgBRMCeAKAwIAYhCzQkgCuYEEAVzAohCnxNAFGpOAFEwJ4AomBNAFMwJIAoDQgCiUHMCiII5AUTBnACiYE4AURgQAhCFmhNAFMwJIArmBBCFPieAKNScAKJgTgBRMCeAKJgTQBQGhABEoeYEEAVzAoiCOQFEoc8JIAo1J4AomBNAFMwJIArmBBCFASEAUag5AUTBnACiYE4AUehzAohCzQkgCuYEEAVzAoiCOQFEYUAIQBRqTgBRMCeAKJgTQBT6nACiUHMCiII5AUTBnACiYE4AURgQAhCFmhNAFMwJIArmBBAFcwKIgjkBRMGcAKJgTgBRMCeAKExCABCFmhNAFMwJIArmBBCFPieAKNScAKJgTgBRMCeAKJgTQBQGhABEoeYEEAVzAoiCOQFEoc8JIAo1J4AomBNAFMwJIArmBBCFASEAUag5AUTBnACiYE4AUehzAohCzQkgCuYEEAVzAoiCOQFEYUAIQBRqTgBRMCeAKJgTQBTMCSDKn82df5eGAQBHfmrO1/c/ANDg6+hKDAqgwW+fc2dSalGA9ZwnIWx/+Pv2XwCYzPVo7aGpS00KMJfyo5RMfxSTAszhq8lsmBRgOl8pdZgNkwJM421A6JUaB38OI0XN+QCgmVOfs6s25PELwDC+rhyFSQHW8q/mLDiq26SWfABw4n0SQmHWQfOEhEx/tCkfALyRf84ZUZMysgvgovycs7DR0h/N/ASAC+rPOSP7o7z9AtDMW7N2tkmpRQGuyS6NWRzEiRg0OiRm0AjgTHHi+7Sa1JIP4OE0LfA13KQMGgGcOC1TUgKTAszjt8/Z0fErTnQvbPRMrG8MDeAxfJ1qp8bqiscvAGO5XhpT1KQ0deFTqL8yhkkBlnA5Wps1aQM8fgGI4fL7nNvgS9aghZGZbL4jGZ2mfBmNv4dBI4Cn0F5zNm6c3Ux9vf79A3ga1UkId2mmYlJ4GpfLlBy5ywQETApP4c9r339snIBQTeqdFL9LaJ2A8JOPmQtwU95ftu6cymfZSE0K0Eb+ZevBzzZTeVNRx+ozDAp3o/yy9cMmIFCLwp3IjtZiUoD1XE5CSCkzGPNK/kGjwsauwZ9dLOZBo8NEBgAl+l+27hw04vELgI0mc25gUoB5dJlzg8cvAOP583MRdvS7/qbMRd+oY+2PbptnfqLw9aI/Cuv4nYQwoZkaocHILnwKP5MQfsCkeQlMCpNxL1OyJbVtbCwu0qSWfHsJTAqTWL5MSZQOg0bwNC4nIZzGZiYM+Ow3NdXGAt8RZSIDjKL/ZWuVGrASi6U/2l3+XoaaFIKxvWwt3Ew1aWQSW32GQSGKfzWn1WwPNym1KKzkvc9p7RN2dNhepWQD+pImjUNi+qOwgnyf01oLRYzspvJGazO1q/yLAqlJYSbnb6XsWWnSQX1Jkw6DRrCA60kIezBpNiEmhZFkJyFcYm1uqgwaVWLxjOxiUojmNAkh+8bJHuuAi3WwKar8hoTVfa/oFAe7SjIvBo3gTH363hUDmrp3baby+AVGUPxWShOYNJsRk4KXr+UmEe9LmqA/CgH89jkj+nIXiVf3Jbs0Dom78hUKtOowkeFzOTdrB9Skq5upJo1D4oimrkeHmvTzuH4rZUBzc3UztXFTsUBMCrOor763csBldX+4kDDSpCYZDPp4vm5xgT/cpNSikOPP/sLo/QzCRtOAz1FjlzEj2ZSvcVM+8YB9aC7/QodBI9hT/srYFatrD9EaMCWjxiEjNSmk1PqVsSswaTYjg0YQQXGZEqtJXLUHJsWkkFJqWKbEahLzhblltpbfv+mcUKSZGhULJr0nTcuUeN7WiBgoKYRWzZd2P2+zDxc6f/86bhYp8fbLzWhapuSWTbwn7MNRJqAGpBa9D+VJCE9o4onvAyaFK9q+zylUe0QMGintQ0pGjRRjLkyqy+XnGLJE9H12GrufLp1P7ktGTUBgIoMeti9bC92xzRpCNalSM5WaVIfy0pgFlC4GlwbN1KE6YOfLW3soXQxmjdX94b2E0PHcdGANv5MQvnnCRYVJY3WoRddwWqbEO1ATOUCxbJAjcNBK6Xh6dRg0mst5acwH3rGtOk/Yh5yOSixQ5nppTKGLanUsT9gH1VjgmvqXrR94x7ZqPM0YSrHAmeokhJ8VAl6HP3TyN0hDIZal/WHxWCJ04B/1mjMdBjOMw49v2SI0VsciVOsoxbLpgJ/mGUJZYxgIN1eUDiaVjOWT6Z6+J1sDpuOPPh13LEK1DiZ9BsVvpZSQNenqWIQu6CfeMD6J90kIHR357FKShkGW7AoFnTpKsfxkCxgcURqoUYrlU3hv1nbUFsWknTq2jZqxnLI9rCZViuXpNC1TUiLCGJHmUonllFXogn5aLE+l/MrYTY2hFMtbNqFa54mxPI0/23+amnSFfkLzNzgjNCqxNBXXqFNMZu3XGvuxe40UpOPV2FDq1z6FvpetC4mbdSI0OhJXk63s11pr4JyOgYhYTprUpGH89Dk/2qSrm8wRJo00ukhf8tNNen5lLHUao39Tc4GY1BCLkEmV+rV35PJbKUo1YNQNo1nT2kyNisXRTMWkz+HfJIRth3cdce/3Kvc6XcfzQqeyqTth1OBTdf+agz4k7ciX0/m7/2HQOWV7E7Wh9CbOHbichGC+YR4yRuk0borXmBBLMeniGjAilpNmQA34CbXo9SSE3X+jTGqikHFJkxmTYtJJXL+VMqAGXFqLRuv0bzIXGG6uk2ifjjeWkyYmzVL/HMOhn+CtASM+5TCiXxvVx65sMiUOnZC/zxbZHzXobLxNqhDp1yrQ/rJ10J0p5O5GrW4s5CIbTWZJ+l+2VmqCDOjXSpi0f5OrmYpJNTF9yCglXZNGmWupSSfXoltWr456v/ZumM25IfVwGZN2FlDJ9oAm85vEzWrRPwpvNkS9ZfHDK3YAy62TGcDq0iwcl+IhMxzPpw8+pZRuM2j0W3Nylxyns7o27ihwVL/WEksxm9A1MopzsxaTjtO5iUlv02ROxx82VE1anoRg4OknAJP2aVSzLawMTppiJi1PQljUZ4laTS+rGdBn2XTcfZZD38d8XbySrV+byXeVbK/ZvjGPWr/2pCnSJ/1quiA6+yxPvmO/STyhNp58brekto2N2QJr0pV8pdSxH5NPACa1iKRbmPTTzq2F8GVKmpMtuGMXs6mYKwVdDJjUrfMmscCk/mVKnmTSwOaQ4uyplOLPbVVT5dw6dN4kJpr0z/FNgO4H5PvEGZ1cslaNI9FLZ15qdmpcajp19hqRg0/ec3tk2GoQDp1itsM1b2HGoNG/mnN3R3HdXCzNqJzGRcbuWt1X3CPv2GadiPNCK6mLj12mpCtppEmdLO/XFvKNajJ/qkmr30rBpDady2xCF8PSWrQzcVOzuZPo1k1KsQbNTkLItc29TV31CeRdmg06Vc1OjUtNp85eo7v/VCi7K6zGxMVkxuNwyrbyeB7I1pyqd3qp2nhL7CvuGU3myTXptOO5qmXyTfF9Tkzq0+hK+oQmMze9vKbxeDa9bD2qbY5JfTqX2VafI45nXrPzeLYv8JXGmdQvkk4mNev0byrGYizu1hdVPpjmTcaEzzNpfWnMHZFvE7xpOjWOsaguv3mkSfNV1shp7otvjaVJszOWt/IZzDtrVnS+PvnOVBZ5j4Ums09D6nhuiX3FxRzPQiymZUqa7kyd3KnJjEntGhzPi2wZDfMyJdPuKE6DLZ9AntPp31SMxVjc2hspJs1n2/247nNuGyZNZi9qNuiUoF/r02jKZj2+h3wvg0QtY7Nmxz4UNY07cSy+PlqrcndzBBDSHDtqRtTIN609itkCatK7XGcjatEta0qtj1KULqItsbF4W4EFzRs1mTHpvUzat+K7kklXX0R7iYha9BDLiGObypu6dJqzWY+LynXWkTjapLbPMWDSvOZNTDriwixmC6hFPTKzW2xRJu2ahJAtKN3vjZNctlIsrUQvv7k/vu6m7oTBp6P+PptF45gv6hMbrrdoOvahmLRB5yuq38XgyJjaOKX42jilgAu8r7iOjQXNAS2Tjk3GhPZjcVqmxAMmvcj2QU3mrqQKJu3fdE7YcSx6Nl4uU+LhLnd6THr6r1nDlXSlSSNu4h2Je45Dvs9p7F+8SVj7F8dsO53ovgb92vdYzJIdx6Wp9uidEPGdz7XyQOEa6bruGvehmOx7Y3m0dsDdoJURtQ5N5jbRpcdlS2wpXq3F5vRO+yQEbzxcjM6ElWwcl3/ZlJr9W+a+4n5of865un9xzKZ2l+zfVIzFnA2T/sumZFKjd/onISiZNOJCPOhINOm4eVVjac52U5Om5JmEsGW8GGTJJe3RuWLkm+l7nRHHpUtT4LgcdW49GSLyWEwYQEvJOn3vWNDgu2uhuI6NHZqDap2Rd9sRx+UkE1ELrT4uN2n2p9S5TElrQbPb5h6dy2wDjktKDsmFx+Uk84Sb1w1M+jXyYsSkedG7Hpc3iYhaNBPL9JuX2j7sMp+/bB15MXolMWlVw5VU1KTTj4vSud0yp9KXrW9Q7V8ltW1szMbNKy+BSbOiHsn6l61vaNLhtahDpyR615vXm0SkSXf/nXpcREx6OVqbvRi9YNIm0Tsel5NMhElXH5fFraTqo5TR1X5KDsmFTTpuXo2hYNKsRovkn9wS+9WJBK9CwgZmvnGSS9qjc8Wsh/6nMnp1Fr0pciqjEksTkcclleMZ8emRvUbLPmRftm6+UdA0dGlUyxhQ6zRucia+yKZ0XFIqxtJ0w/IU3bAPxZetp564rgLbRV13V0zqTHyR7QnHZcI+5Pucu4LveuLM+5DT6Suuc2NHKANuXo2bnIkvsmHSX5nMPjS/bH3XExdi0o6Mo0+k1CJXW2Jj8bYCC5orj8sAkxbfSnkbuLF0wnf5ivqZbKcfDD69SziPyzGW3BIf3QbtiGXUgEvIkiWVWIphRp2XVKk5Q2oypWZUOv4wchB9SpN5ZNOwK+kTWhgB+9D0ytjjTEqT+bqMwRd0LqltY6P+jU3a9T4nJq2LPsGkMy7o5mRKLYOUirFE32ja+pylcqxt7Ii+zpZ4cb/2qDNixYA9syYPRPdrR3/rtUToiggXGtVVHTrLLr5sPaUmG9zXmbEPJ5mVzahcYmPxtgLbRGe0MIrZIvbpoNEs2Zjwt1mLSY2JLyRW93VMCSvZVl7QFR1ztgHnKOo6O/c5V9+xVS7o7sQXEpi0SXSpSSNbBi+D5EXi6wGhlReD0gW9JfaGErlP/ZvOCTHpOZuYSS8HhHIP73NazYVeaJzK22dryNdT/ooH7SeZiH2K2J99Ys+bONsflN44MZyjbFN31QDhd+KlL1s3bgq7o/Gg3RcL58gYjlFD4mXrxk3LD9a7SOq6AGwbG/UxqTsWxRtp8ySEp5mUC7ok1J7siTdSleuuexJCZNvc3a819pneJIL7F5/woP0qaY9OK6MnQ+TK2ye91Jlwjr5KUTTfJIx3lLB+rchd8ahjlow8nsFNw6X7tLrFZkpYyVbQyS5TYo5h5QkQarr86HglV9/0CqJmSUyaz5bRKS5TYo4Bk2Y1nlbruCSNGcNbBpVYlrQev/9QXabEFcPKE4BJ89mUTDqhaRgRy/SK6ZvsgJDEBASDTmv5TW+q5DYGD3y5ap1KLKMH8446o9/EOTJ66crZ3xE9ZkvpouZ84p3pk+70qbypS6dZJrg2bklq22iLZfY1k1LPMiXp+MMIJnXrtMYy5XjuJV5zTTq8O5LRcbcOOpi3TElRtHlTPrG1fEt5Rw1MepZ4uElnXS8/fc6WpnFkn0WhXxvaBzSUn+0zKUzyN8TyKRM89jojr5eUdpMQPrr2UGoNBPYBnzQ39UfHKxl5vXqpxPI7CaEtvbmg5mwrTYJJ3bEMP74HjaXX6+Dr5XKZkifvdLWIAXf6jk1DYnnaBPJPuF6ry5Q8cacbN61tag+IZfZAzZbUttEWi1nSmHHY9Zq+B4SGD5Y0vNlwVXwuFjPfOt2DJc7y/1Y0uo5tZyxPH6g56qyYDLHPatXJ8bVpPbkJcpKxajjurm8/JtZe05rvL6dk4Ll9Sh/7rVn7SSY1n8SI5rpDJytsKX9wLJjUprOnbfpeQEElDUxqKN+o8UnnNqUAg6bUfXxtG8/8cRXkfEg9sl9bLfsoYe0nNOQbOrG/QWPJA/vIc9sRy+w+dq78qGPb9SGjbEGid2yzvDWWyPK9ZGovs44324B+rTnZhFiai2hIWPxWSjOYNLb8ARfR7OblkOb7pmMpf3IsEdfZ+yQEL4va5r2xYFKfhisblUFz4q+3v9EEKetYy/dKYlJ3LHc06Z/939Lxx8CH/rniihtv8vZLtvyIsg3lXyZ7pSkDNbPfxFm52kUplu1n77EuDwgF3bFnP3MqZlt5x6ZlMi2W2S2Dmo5Fsm20NtCkfpEUZ9KJsYTfIDp0MKlPY1UsfY9SAgJeMfn6Mttqk0SW35hsikn7N42L5cYmLX6OoVhQSk1t/EsJZ1/SG0u2Fl3Vx44ov9DXqZY/KJbZnygs6YR8WtARy9vYR2Ms/kkIu/8uvzOJxDJ7SmBJY+WxWN1KUorF0mIrfiulv9TFxlCKJTkuhgEXkbvG8ISCSfPZKhrVb6XYSsWkPxIra9GDjsLNauYnCosSi2NpMen5WyleIu/YmBSTPjyW1/HH7g/nAaHtD4FvnLj2/VWOpSnMwz65bhjCb780xRNxXoJiGfkdUdVYet5Quh4Q6rgbFJMOqAHN8k+IpfO82DY+P5Y7XK/10doH7vQjYmnMN/yc3DSWLaltoz+WljDbH6U8aKdlY8GkHxdLqYjiJISW1QtK8VQ33nQy+7BYtsSWWF71yQ/VWCL6XYKxpLT25YuSTnb1vm/6vjLWvLERo8YpG7H8y/ZKPE+8khGKZa9Rkmz+yphtYyORxlCKBZMSS6NGTrJ5mZLVbfPmbEqxpOOPybEIXYzE0qax/3n5rRRTPErGIJbfbJEXo1fiqbEMaCWdv8/5Sk0d36am7qTO/FXxT4+l+02ciPIbNJRiOTJ86cyogcW0qzmV7vQnGWKp6nRJDu4PK8XSlXRyLLVspwEhVZMqNUGUYvnRsUgO3gelWLqSipj0crQWk94rltLAwvCyKzpKseSS2jbGx3Kk+ijl1Gd6YmfeK4FJm3SUYmlOtrBiKn4rZa+b/cOgpSy6ZAJjsXxHNDyWLZ5Vb+I490Fp9lZJZ8nyLY0626Zp30q5lHhCrTMhFrO8NZaAPtPPH7ys7puPiqVwflOKWKZkr+aRwKTdGrcx6cKmYU1DwqQXDFumxCwj1JfMnUiVWBo3ORP782FSu8b7Wykf0pfc09t/cxtUoS+3JTa+/WLpm4dfZxexlGh5y2rp+T1o5PucajXg3ZuGARrZvtyq1s4Nap3upBOaqc3Zvn+ELFNSLFS4mdq4aXosXdkwabfGcJMGndvQZUqKMhEmndBnaS5icf8pa9JFsYT2zTHpT5Yhy5QUZTBpqM5btsWx7PO5Qpm8D8VkC49n/7dSvjOEDPhMfKBr1elu6g4c8GkpPiKWHh2l5TdLOqrLlBzZbzJPQnhcDbglHhhLV7aVNWCHjmrT8CRzw+vVN0Mo3XOnV8fSnG11MzWn079Jah9kniA06DQvU1It5yY7jUnHaQyvRYN0pB7zbToZ/pwSONrVI7+5eaS5L3mRcFZfcq9j6aev6kvu6V0idVX/bemLCg6d3ASElFL6yvZ1aKYO0bnLHburOGssA/bBLCnaSsovU+Io6LrUMTqYdJ6GrEkPGhImDchWXqbEUVBZ1KHTv2lcLJg0LpanmTSgFr3dMiUhtWhULJuOVyLSpBEaHSYNjwWT/lBdCSFbiwp05kuxdB2LiH361rjLmzhHJL+J8+rLN/yNkwXXvO05J535vATN1FiNJ+xDQacmuXyZEqkmyKbjlbhxM1XyAn/CPhR0riTjlil5kkmDTsBdZk/lkto2xsdizSe7DwWdo+S/ie/BfUlX3yuyn7DT6eXqwbApFPqSITq9LwdI70NO53DNf50SBNUYfpG0tJn6Ov6gmTpGo0PnlOwJ+1DYeL1MiTPguw6OFLPd8GLYkto2xsdS1bEUd8PzUjVpqg0IYdJ8tideDDc8R9nz4mX1jWZH22htUFP3jiOYxWyYdJyO1aRP2IdvsisheAYSqkFE6Bg0IvfpdMxe/RreWFoGFlqKi4glSsd7jrK1qOgbJ7XiUrqoOR9/d10cS4TObc7RpuMtzhrL5H0oFt8ZS/Fl62kXQIQGJl0eS5SGrEkdGpbu0G/NudKkCy6ipmbdpFiqOt7iMKk/X4DGKVtF5zzxvdA+Ht5PudCInBSfS+bRiIilWoS13+XQqRYysb9f3SfrxPrG8msavZNuTvtzEUt5xXcLA+5MZsmb1OrNRVADxmsEHM9RTyLGPecccBGZJVUu6IoOJp0XS3jZKciku1jan3Mu3Om9ztJaNFqnf9P0WLo0MOk/maCatO+VMUwaqxNRi06IZZROU/94Uiwh+Y4yTo3+zzGk1NSZHjmRYT8I4G7qCr6Jk9vk1YnU8H7iIpfMoxEVy1U+z7n1TLoZ9rK1bNNlkI7M/OFNJ0Ljg2v1t2zBfclWhr9s/UkmfcIk/x6dbpMOjKVbx5Jtskm/ejNUCy5swqTzY5EyqdA58mjMOrfvkxAm9FmqfQyFh/5Bsags97/X8K4QGNI/FjkuntUuZpzbYS9brx4pe9ydftPxSkTW6hEaK/uS+2yC1+v5WynRBQvudHcRSiYNiuWui49VdbzZFK7Xb74yfytmcBUqstMdm8bFImKMx5k0ohb1xBK1D+nQrB1ei3p0Bp+4LnmhZmqkSf0iSWefHmDS7OcYmmrRVQM3EeUXNLqO5+BYrhh1XKQGsDadSZMhrrK1xlIUMh4H+ySE1c1Noabh7FhkxwkmxzK9tTO5FvXNEHIU3KpRlVe5iDadCI0Ok0boDNWYEMtTTVpcpmRkwb0a0v3hhbFw82raND2WiHy/E98zbXNTU3lln1CkzxT5KYdWnTscl70GkyHq+c7N2p2rXTfMG9yZmnS82T64Vi9KvJLOCPHq43KRr7xMidekojs9Q+OU7SZNw24drwQmvcxXHxDCpC6NISZdfTwHxPLYaYWOfO2jta/3/y436aryMenQWJix9Et2EkKxoJQ0ViFo0PB+ssBbfimbQixZnUnLklZlJl0jM3SsA4S255w3uTMV5W+yD6tjuW0r6aixMJa34jtiGbZMyXQdTDo0lqUmFT4uvVl7dIYvU9KtE6Gx2qQRGio6mDRUo2fs4d8khIg2dYBOmEZFp3hMxffBPDEkOBbXeINSH/ugM6uPnR17OOh8nRIMvhvYRSfriO6DRB9Q8Li4dbySA2IJXaYka1Ivq5ubavuASafEsrz5ngZ9K+Utm/AJmFp2tI5XcvVN76ihoiNk0qHfSsGkA3WELiKp47LpRGgcju/sWPonIRg64dmm7uRvRF5qVGIZ/lkJr85Bw30RPWUgbEAss49t/3NOpbvkhFiKRQjf6Zfq0McO0dBYpkTwYugq4ib70K0TofHEPvakc62xTEmUDib9mFgkTBqhUdDRWqZk04nQGBxLUV5tHzDplFiidYrLlJgLOugodOZHaDQZVGEfNh2FGWDOWN40drGYPTL4GvHoFJcpcRf0wZ350LKjdIwap2w3qHVMOhEagbE0LVMSUZBL8gknQOlixKT6saTOZUrMfFA/YWr5ERqYVDaW9kkIA9rmT+wn5FjxWYkZOqfzN6Av6dJRWAHBoWObhOBF5M40K5ZiETfZB2IJyNapcf9lSjadCI3BsRTl1fbh5sZQiuUtW4fGRyxTohTL8Fo0WidC44mxTDQpAIjx/+RDUE0Cx2pgAAAAAElFTkSuQmCC"/>
193
+ <image id="image13_155_2397" width="231" height="205" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOcAAADNCAYAAABDw2dwAAAACXBIWXMAABcRAAAXEQHKJvM/AAAEQElEQVR4nO3dW27aUBSGUYM8so6rjx1Xh1b60EtC7BhjDHxJ1pIiReISHvJr73O8fTj8+DmcBiDl+7fhcHz2hwDmjYdnfwJg1qinhSZtLUQJJ0SN9mqhyYYQRGlrIUo4IcqlFIiy5oQobS1ECSdECSdECSdEjSfbtZCkckKUcEKUcEKUcEKUCSGIMlsLUdpaiBJOiBJOiBJOiBJOiHL6HkSpnBBlCAGiDCFAlLYWooQTooQTooQTooQTohzwBVEqJ0QZQoAolROihBOihBOirDkhyuA7RGlrIUo4IUpbC1E2hCBKWwtRwglRwglRwglRwglRwglRwglRjimBKEMIEKWthSiztRClckKUNSdEaWshSlsLUcIJUcIJUcIJUcIJUcIJUcIJUYYQIErlhCj3c0KUyglRwglR48GOECSpnBAlnBA1/rJbC0mGECBKWwtRwglRwglRwglRwglRwglRwglRDpWGKJUTokwIQZTKCVHCCVHCCVHCCVHCCVHCCVGGECBK5YQoQwgQpXJClDUnRKmcEGXNCVG+AhCitLUQJZwQNQ4WnZCkckKUcEKUcEKUcEKUcEKUcEKUcEKUcEKUcEKUcEKUcEKUcEKUcEKUkxAgygFfEKWthSjhhChtLUSpnBAlnBAlnBAlnBAlnBAlnBDlUgpEqZwQJZwQ5a4UiFI5IUo4IcpuLURZc0KUthaitLUQpXJClHBC1HiwIwRJKidECSdEjSfbtZBkCAGitLUQNZ6UTkhSOSFKOCHKbC1EqZwQJZwQNQ76WkgyhABR2lqIGgelE5JUTogSTogSTogSTogSTogSTogy+A5RJoQgSlsLUS8TQq/6W60uPN9L5Tz8/Tn/FXiS6ZrzVSWdKarAg7x/+t5hmKRSSOFxljeE3vS32l14nOOqsAkpPNxN35ViTQr3M9kQ2hI0VRT2N1lzalmhYTwdh/36UoMMsJs/lXOvcmnTCHZzvuZcscNzsSK+eQ8BhW3mbxm7Q0hXvw4YhuHSdc6FB1dXRNdIYZPjMFwIzMKDVwVtJqTA+2Zna+/W6q58H+CdkxAW87Pw4FW5cx8pLFocfH9Yu7vldfDJXTVbu/jUW9td4MzxmnL1kEoKDMPwes15xYJx5j7sVQ8uvm4FFZivZLrmXFnmnlFFVV++ksn3c/6vTntc8thrZ/cf5xrxhVy+ZWyPBeMdBhmsY/ns3r2UMhvSW7n8AquNl56w+10rkze94nUz73HLMStQtu3rGO6w4bP5dYc/P/DZ3PZdKUIKdzNee/HxrkPxM0/c3LVqd/ngxrN/4pUDCBftcenkzUkKW7NmTcpHdZxs+Ox8ltDcQ6v+xE43aWt3+ajO7ud81ADC5O9d+T6bPtats4PwYGcbQp9+AMFFUT6Q2d1aIYXnWxxCmHSUe7SGe83bvvosm3NmkIGwVdc5zwrNnptGt1bSnT6LTSMAVvsN+AZ9o9IlT+8AAAAASUVORK5CYII="/>
194
+ <image id="image14_155_2397" width="15" height="12" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAMCAYAAAC9QufkAAAACXBIWXMAABcRAAAXEQHKJvM/AAAAM0lEQVQokcXQwQ0AMAjDwKNi9U7WwegO8MB/K5ED7lMaJHomTtObywmxsTy/Xc3ce8H2+JPGBWJjbFkkAAAAAElFTkSuQmCC"/>
195
+ <image id="image15_155_2397" width="228" height="128" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOQAAACACAYAAAAbMsXBAAAACXBIWXMAABcRAAAXEQHKJvM/AAAB9UlEQVR4nO3dy01DQRREwTZ6URMbsWEWg4SIYM6iKoK3afWdj8evbfv82nvAdR+3PwD482zb6/ZXANt+A/k2sELCCeTtrwC2aUhIEUgIscsKIdaQEPJsk0iIMLJCiIaEEGtICDGyQshpyO/bnwFsGhJSBBJCnm0zsUKDhoQQl8shxIsBEGJkhRAjK4QIJIQYWSFEICHErz0gRENCiEBCiF1WCNGQECKQEGJkhRANCSECCSFGVghxUwdCvFwOIV4MgBAjK4QIJIQ49oAQDQkhGhJCBBJC3NSBEA0JIQIJIUZWCNGQECKQEGJkhRC/9oAQV+cgRCAhRCAhxBoSQjQkhDiHhBCBhBAXAyBEQ0KIQEKIQEKIYw8I0ZAQIpAQIpAQYg0JIRoSQjQkhLg6ByFGVggRSAg5I6snAyDBEx4QYpcVQqwhIURDQoiGhBCBhBAjK4Q82yQSIoysECKQEGINCSFnDenuHCQYWSFEICHEGhJCNCSEeFMHQoysEOLFAAhxDgkhNnUgxBoSQjQkhGhICLGpAyFGVggxskKIhoQQgYQQIyuEaEgIEUgIcQ4JIRoSQgQSQjzhASEaEkJOQ9rUgQQNCSECCSECCSHuskKImzoQoiEhxBoSQoysEKIhIUQgIcSmDoT4OzoIcbkcQs4uq5kVAP77AVPCSoPXmz+eAAAAAElFTkSuQmCC"/>
196
+ </defs>
197
+ </svg>
@@ -0,0 +1 @@
1
+ weaviate-client~=3.24.2