MindsDB 23.11.1.0__tar.gz → 23.11.4.1__tar.gz

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 (2116) hide show
  1. MindsDB-23.11.4.1/LICENSE +86 -0
  2. MindsDB-23.11.4.1/MindsDB.egg-info/PKG-INFO +333 -0
  3. MindsDB-23.11.4.1/MindsDB.egg-info/SOURCES.txt +1529 -0
  4. MindsDB-23.11.4.1/MindsDB.egg-info/requires.txt +868 -0
  5. MindsDB-23.11.4.1/PKG-INFO +333 -0
  6. MindsDB-23.11.4.1/README.md +152 -0
  7. MindsDB-23.11.4.1/mindsdb/__about__.py +10 -0
  8. MindsDB-23.11.4.1/mindsdb/__main__.py +395 -0
  9. MindsDB-23.11.4.1/mindsdb/api/common/check_auth.py +42 -0
  10. MindsDB-23.11.4.1/mindsdb/api/http/gui.py +94 -0
  11. MindsDB-23.11.4.1/mindsdb/api/http/initialize.py +397 -0
  12. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/analysis.py +109 -0
  13. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/auth.py +164 -0
  14. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/config.py +259 -0
  15. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/default.py +148 -0
  16. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/file.py +179 -0
  17. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/handlers.py +201 -0
  18. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/skills.py +164 -0
  19. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/sql.py +148 -0
  20. MindsDB-23.11.4.1/mindsdb/api/http/namespaces/tab.py +66 -0
  21. MindsDB-23.11.4.1/mindsdb/api/http/start.py +69 -0
  22. MindsDB-23.11.4.1/mindsdb/api/mongo/classes/responder_collection.py +34 -0
  23. MindsDB-23.11.4.1/mindsdb/api/mongo/responders/insert.py +266 -0
  24. MindsDB-23.11.4.1/mindsdb/api/mongo/responders/sasl_start.py +33 -0
  25. MindsDB-23.11.4.1/mindsdb/api/mongo/server.py +397 -0
  26. MindsDB-23.11.4.1/mindsdb/api/mongo/start.py +15 -0
  27. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/classes/sql_query.py +1674 -0
  28. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/controllers/session_controller.py +121 -0
  29. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +194 -0
  30. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +168 -0
  31. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/information_schema_datanode.py +1019 -0
  32. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/integration_datanode.py +194 -0
  33. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/project_datanode.py +187 -0
  34. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor.py +223 -0
  35. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_client_factory.py +38 -0
  36. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_commands.py +2059 -0
  37. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_grpc_client.py +145 -0
  38. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_grpc_wrapper.py +252 -0
  39. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_service.py +18 -0
  40. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +875 -0
  41. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +1 -0
  42. MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/utilities/sql.py +149 -0
  43. MindsDB-23.11.4.1/mindsdb/api/mysql/start.py +13 -0
  44. MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy/executor/executor.py +191 -0
  45. MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +253 -0
  46. MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +479 -0
  47. MindsDB-23.11.4.1/mindsdb/api/postgres/start.py +11 -0
  48. MindsDB-23.11.4.1/mindsdb/integrations/handlers/access_handler/access_handler.py +211 -0
  49. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aerospike_handler/requirements.txt +1 -0
  50. MindsDB-23.11.4.1/mindsdb/integrations/handlers/airtable_handler/__about__.py +9 -0
  51. MindsDB-23.11.4.1/mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +236 -0
  52. MindsDB-23.11.4.1/mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +246 -0
  53. MindsDB-23.11.4.1/mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +4 -0
  54. MindsDB-23.11.4.1/mindsdb/integrations/handlers/anthropic_handler/__about__.py +9 -0
  55. MindsDB-23.11.4.1/mindsdb/integrations/handlers/anthropic_handler/__init__.py +21 -0
  56. MindsDB-23.11.4.1/mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +123 -0
  57. MindsDB-23.11.4.1/mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +2 -0
  58. MindsDB-23.11.4.1/mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +10 -0
  59. MindsDB-23.11.4.1/mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +1 -0
  60. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/__about__.py +9 -0
  61. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/__init__.py +33 -0
  62. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/aqicn.py +30 -0
  63. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +114 -0
  64. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +444 -0
  65. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
  66. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aurora_handler/__about__.py +9 -0
  67. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +188 -0
  68. MindsDB-23.11.4.1/mindsdb/integrations/handlers/aurora_handler/requirements.txt +2 -0
  69. MindsDB-23.11.4.1/mindsdb/integrations/handlers/autogluon_handler/__about__.py +9 -0
  70. MindsDB-23.11.4.1/mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +57 -0
  71. MindsDB-23.11.4.1/mindsdb/integrations/handlers/autogluon_handler/requirements.txt +2 -0
  72. MindsDB-23.11.4.1/mindsdb/integrations/handlers/autokeras_handler/__about__.py +9 -0
  73. MindsDB-23.11.4.1/mindsdb/integrations/handlers/autokeras_handler/requirements.txt +2 -0
  74. MindsDB-23.11.4.1/mindsdb/integrations/handlers/autosklearn_handler/__about__.py +9 -0
  75. MindsDB-23.11.4.1/mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +2 -0
  76. MindsDB-23.11.4.1/mindsdb/integrations/handlers/bigquery_handler/__about__.py +9 -0
  77. MindsDB-23.11.4.1/mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +171 -0
  78. MindsDB-23.11.4.1/mindsdb/integrations/handlers/bigquery_handler/requirements.txt +2 -0
  79. MindsDB-23.11.4.1/mindsdb/integrations/handlers/binance_handler/__about__.py +9 -0
  80. MindsDB-23.11.4.1/mindsdb/integrations/handlers/binance_handler/binance_handler.py +144 -0
  81. MindsDB-23.11.4.1/mindsdb/integrations/handlers/byom_handler/__about__.py +9 -0
  82. MindsDB-23.11.4.1/mindsdb/integrations/handlers/byom_handler/byom_handler.py +597 -0
  83. MindsDB-23.11.4.1/mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +183 -0
  84. MindsDB-23.11.4.1/mindsdb/integrations/handlers/byom_handler/requirements.txt +2 -0
  85. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cassandra_handler/__about__.py +9 -0
  86. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +61 -0
  87. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cassandra_handler/requirements.txt +1 -0
  88. MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/__about__.py +9 -0
  89. MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +445 -0
  90. MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/requirements.txt +3 -0
  91. MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/settings.py +59 -0
  92. MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/tests/test_chromadb_handler.py +496 -0
  93. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ckan_handler/__about__.py +9 -0
  94. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +101 -0
  95. MindsDB-23.11.4.1/mindsdb/integrations/handlers/clickhouse_handler/__about__.py +9 -0
  96. MindsDB-23.11.4.1/mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +212 -0
  97. MindsDB-23.11.4.1/mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +1 -0
  98. MindsDB-23.11.4.1/mindsdb/integrations/handlers/clipdrop_handler/__about__.py +9 -0
  99. MindsDB-23.11.4.1/mindsdb/integrations/handlers/clipdrop_handler/__init__.py +21 -0
  100. MindsDB-23.11.4.1/mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +83 -0
  101. MindsDB-23.11.4.1/mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +206 -0
  102. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +9 -0
  103. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +249 -0
  104. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +1 -0
  105. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +9 -0
  106. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +3 -0
  107. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cockroach_handler/__about__.py +9 -0
  108. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cockroach_handler/requirements.txt +1 -0
  109. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cohere_handler/__about__.py +9 -0
  110. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cohere_handler/__init__.py +20 -0
  111. MindsDB-23.11.4.1/mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +134 -0
  112. MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/__about__.py +9 -0
  113. MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/__init__.py +20 -0
  114. MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +167 -0
  115. MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +56 -0
  116. MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/icon.svg +1 -0
  117. MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/__about__.py +9 -0
  118. MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/__init__.py +26 -0
  119. MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +98 -0
  120. MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/confluence_table.py +220 -0
  121. MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +68 -0
  122. MindsDB-23.11.4.1/mindsdb/integrations/handlers/couchbase_handler/__about__.py +9 -0
  123. MindsDB-23.11.4.1/mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +239 -0
  124. MindsDB-23.11.4.1/mindsdb/integrations/handlers/crate_handler/__about__.py +9 -0
  125. MindsDB-23.11.4.1/mindsdb/integrations/handlers/crate_handler/crate_handler.py +213 -0
  126. MindsDB-23.11.4.1/mindsdb/integrations/handlers/d0lt_handler/__about__.py +9 -0
  127. MindsDB-23.11.4.1/mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +12 -0
  128. MindsDB-23.11.4.1/mindsdb/integrations/handlers/d0lt_handler/requirements.txt +1 -0
  129. MindsDB-23.11.4.1/mindsdb/integrations/handlers/databend_handler/__about__.py +9 -0
  130. MindsDB-23.11.4.1/mindsdb/integrations/handlers/databend_handler/databend_handler.py +226 -0
  131. MindsDB-23.11.4.1/mindsdb/integrations/handlers/databricks_handler/__about__.py +9 -0
  132. MindsDB-23.11.4.1/mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +262 -0
  133. MindsDB-23.11.4.1/mindsdb/integrations/handlers/datastax_handler/__about__.py +9 -0
  134. MindsDB-23.11.4.1/mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +12 -0
  135. MindsDB-23.11.4.1/mindsdb/integrations/handlers/datastax_handler/requirements.txt +1 -0
  136. MindsDB-23.11.4.1/mindsdb/integrations/handlers/db2_handler/__about__.py +9 -0
  137. MindsDB-23.11.4.1/mindsdb/integrations/handlers/db2_handler/db2_handler.py +266 -0
  138. MindsDB-23.11.4.1/mindsdb/integrations/handlers/derby_handler/__about__.py +9 -0
  139. MindsDB-23.11.4.1/mindsdb/integrations/handlers/derby_handler/derby_handler.py +249 -0
  140. MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/__about__.py +9 -0
  141. MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/__init__.py +27 -0
  142. MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/discord_handler.py +187 -0
  143. MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/discord_tables.py +189 -0
  144. MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/icon.png +0 -0
  145. MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +60 -0
  146. MindsDB-23.11.4.1/mindsdb/integrations/handlers/dockerhub_handler/__about__.py +9 -0
  147. MindsDB-23.11.4.1/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +136 -0
  148. MindsDB-23.11.4.1/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +509 -0
  149. MindsDB-23.11.4.1/mindsdb/integrations/handlers/documentdb_handler/__about__.py +9 -0
  150. MindsDB-23.11.4.1/mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +93 -0
  151. MindsDB-23.11.4.1/mindsdb/integrations/handlers/documentdb_handler/requirements.txt +1 -0
  152. MindsDB-23.11.4.1/mindsdb/integrations/handlers/dremio_handler/__about__.py +9 -0
  153. MindsDB-23.11.4.1/mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +240 -0
  154. MindsDB-23.11.4.1/mindsdb/integrations/handlers/druid_handler/__about__.py +9 -0
  155. MindsDB-23.11.4.1/mindsdb/integrations/handlers/druid_handler/druid_handler.py +263 -0
  156. MindsDB-23.11.4.1/mindsdb/integrations/handlers/druid_handler/requirements.txt +1 -0
  157. MindsDB-23.11.4.1/mindsdb/integrations/handlers/duckdb_handler/__about__.py +9 -0
  158. MindsDB-23.11.4.1/mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +189 -0
  159. MindsDB-23.11.4.1/mindsdb/integrations/handlers/dynamodb_handler/__about__.py +9 -0
  160. MindsDB-23.11.4.1/mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +232 -0
  161. MindsDB-23.11.4.1/mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +9 -0
  162. MindsDB-23.11.4.1/mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +56 -0
  163. MindsDB-23.11.4.1/mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +1 -0
  164. MindsDB-23.11.4.1/mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +9 -0
  165. MindsDB-23.11.4.1/mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +252 -0
  166. MindsDB-23.11.4.1/mindsdb/integrations/handlers/email_handler/__about__.py +9 -0
  167. MindsDB-23.11.4.1/mindsdb/integrations/handlers/email_handler/__init__.py +21 -0
  168. MindsDB-23.11.4.1/mindsdb/integrations/handlers/email_handler/email_handler.py +84 -0
  169. MindsDB-23.11.4.1/mindsdb/integrations/handlers/email_handler/email_helpers.py +94 -0
  170. MindsDB-23.11.4.1/mindsdb/integrations/handlers/empress_handler/__about__.py +9 -0
  171. MindsDB-23.11.4.1/mindsdb/integrations/handlers/empress_handler/empress_handler.py +251 -0
  172. MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/__about__.py +9 -0
  173. MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/__init__.py +27 -0
  174. MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +94 -0
  175. MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +612 -0
  176. MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +1 -0
  177. MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +9 -0
  178. MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +214 -0
  179. MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/__about__.py +9 -0
  180. MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/__init__.py +31 -0
  181. MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +304 -0
  182. MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/icon.svg +7 -0
  183. MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/requirements.txt +1 -0
  184. MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +41 -0
  185. MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler/__about__.py +9 -0
  186. MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler/file_handler.py +430 -0
  187. MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler/requirements.txt +5 -0
  188. MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +392 -0
  189. MindsDB-23.11.4.1/mindsdb/integrations/handlers/firebird_handler/__about__.py +9 -0
  190. MindsDB-23.11.4.1/mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +271 -0
  191. MindsDB-23.11.4.1/mindsdb/integrations/handlers/flaml_handler/__about__.py +9 -0
  192. MindsDB-23.11.4.1/mindsdb/integrations/handlers/flaml_handler/requirements.txt +2 -0
  193. MindsDB-23.11.4.1/mindsdb/integrations/handlers/frappe_handler/__about__.py +9 -0
  194. MindsDB-23.11.4.1/mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +209 -0
  195. MindsDB-23.11.4.1/mindsdb/integrations/handlers/github_handler/__about__.py +9 -0
  196. MindsDB-23.11.4.1/mindsdb/integrations/handlers/github_handler/github_handler.py +159 -0
  197. MindsDB-23.11.4.1/mindsdb/integrations/handlers/github_handler/github_tables.py +1315 -0
  198. MindsDB-23.11.4.1/mindsdb/integrations/handlers/gitlab_handler/__about__.py +9 -0
  199. MindsDB-23.11.4.1/mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +84 -0
  200. MindsDB-23.11.4.1/mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +393 -0
  201. MindsDB-23.11.4.1/mindsdb/integrations/handlers/gmail_handler/__about__.py +9 -0
  202. MindsDB-23.11.4.1/mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +593 -0
  203. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_books_handler/__about__.py +9 -0
  204. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +184 -0
  205. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_books_handler/requirements.txt +2 -0
  206. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_calendar_handler/__about__.py +9 -0
  207. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +303 -0
  208. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +3 -0
  209. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +9 -0
  210. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +414 -0
  211. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +2 -0
  212. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_fit_handler/__about__.py +9 -0
  213. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +155 -0
  214. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_fit_handler/requirements.txt +5 -0
  215. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_search_handler/__about__.py +9 -0
  216. MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +221 -0
  217. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hackernews_handler/__about__.py +9 -0
  218. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +102 -0
  219. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hana_handler/__about__.py +9 -0
  220. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hana_handler/hana_handler.py +309 -0
  221. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hive_handler/__about__.py +9 -0
  222. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hive_handler/hive_handler.py +192 -0
  223. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hive_handler/requirements.txt +1 -0
  224. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hsqldb_handler/__about__.py +9 -0
  225. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +234 -0
  226. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/__about__.py +9 -0
  227. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/__init__.py +27 -0
  228. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +96 -0
  229. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +591 -0
  230. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/icon.svg +22 -0
  231. MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -0
  232. MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +9 -0
  233. MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +18 -0
  234. MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_handler/__about__.py +9 -0
  235. MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +373 -0
  236. MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_handler/requirements.txt +6 -0
  237. MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +7 -0
  238. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ignite_handler/__about__.py +9 -0
  239. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +251 -0
  240. MindsDB-23.11.4.1/mindsdb/integrations/handlers/impala_handler/__about__.py +9 -0
  241. MindsDB-23.11.4.1/mindsdb/integrations/handlers/impala_handler/impala_handler.py +194 -0
  242. MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/__about__.py +9 -0
  243. MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/__init__.py +26 -0
  244. MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +105 -0
  245. MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +81 -0
  246. MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/requirements.txt +1 -0
  247. MindsDB-23.11.4.1/mindsdb/integrations/handlers/informix_handler/__about__.py +9 -0
  248. MindsDB-23.11.4.1/mindsdb/integrations/handlers/informix_handler/informix_handler.py +318 -0
  249. MindsDB-23.11.4.1/mindsdb/integrations/handlers/informix_handler/requirements.txt +2 -0
  250. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ingres_handler/__about__.py +10 -0
  251. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +243 -0
  252. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ingres_handler/requirements.txt +2 -0
  253. MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/__about__.py +9 -0
  254. MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/__init__.py +28 -0
  255. MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/icon.svg +20 -0
  256. MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +131 -0
  257. MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +169 -0
  258. MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/__about__.py +9 -0
  259. MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/__init__.py +28 -0
  260. MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/icon.svg +11 -0
  261. MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +117 -0
  262. MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +152 -0
  263. MindsDB-23.11.4.1/mindsdb/integrations/handlers/jira_handler/__about__.py +9 -0
  264. MindsDB-23.11.4.1/mindsdb/integrations/handlers/jira_handler/__init__.py +26 -0
  265. MindsDB-23.11.4.1/mindsdb/integrations/handlers/jira_handler/jira_handler.py +119 -0
  266. MindsDB-23.11.4.1/mindsdb/integrations/handlers/jira_handler/jira_table.py +151 -0
  267. MindsDB-23.11.4.1/mindsdb/integrations/handlers/kinetica_handler/__about__.py +9 -0
  268. MindsDB-23.11.4.1/mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +65 -0
  269. MindsDB-23.11.4.1/mindsdb/integrations/handlers/kinetica_handler/requirements.txt +1 -0
  270. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/__about__.py +9 -0
  271. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/__init__.py +31 -0
  272. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/icon.png +0 -0
  273. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +377 -0
  274. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/requirements.txt +3 -0
  275. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +99 -0
  276. MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +9 -0
  277. MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +205 -0
  278. MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +3 -0
  279. MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/__about__.py +9 -0
  280. MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +417 -0
  281. MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/mindsdb_database_agent.py +157 -0
  282. MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/requirements.txt +6 -0
  283. MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/tools.py +218 -0
  284. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/__about__.py +9 -0
  285. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/__init__.py +27 -0
  286. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/api.py +513 -0
  287. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
  288. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +108 -0
  289. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +648 -0
  290. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightfm_handler/__about__.py +9 -0
  291. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightfm_handler/__init__.py +20 -0
  292. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightfm_handler/requirements.txt +2 -0
  293. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/__about__.py +9 -0
  294. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/__init__.py +18 -0
  295. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/functions.py +252 -0
  296. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +581 -0
  297. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/requirements.txt +2 -0
  298. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/utils.py +76 -0
  299. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lindorm_handler/__about__.py +9 -0
  300. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +220 -0
  301. MindsDB-23.11.4.1/mindsdb/integrations/handlers/lindorm_handler/requirements.txt +2 -0
  302. MindsDB-23.11.4.1/mindsdb/integrations/handlers/llama_index_handler/__about__.py +9 -0
  303. MindsDB-23.11.4.1/mindsdb/integrations/handlers/llama_index_handler/__init__.py +18 -0
  304. MindsDB-23.11.4.1/mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +231 -0
  305. MindsDB-23.11.4.1/mindsdb/integrations/handlers/llama_index_handler/requirements.txt +3 -0
  306. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ludwig_handler/__about__.py +9 -0
  307. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ludwig_handler/requirements.txt +3 -0
  308. MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/__about__.py +9 -0
  309. MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/__init__.py +33 -0
  310. MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/luma.py +47 -0
  311. MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/luma_handler.py +93 -0
  312. MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/luma_tables.py +164 -0
  313. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mariadb_handler/__about__.py +9 -0
  314. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +12 -0
  315. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mariadb_handler/requirements.txt +1 -0
  316. MindsDB-23.11.4.1/mindsdb/integrations/handlers/materialize_handler/__about__.py +9 -0
  317. MindsDB-23.11.4.1/mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +43 -0
  318. MindsDB-23.11.4.1/mindsdb/integrations/handlers/materialize_handler/requirements.txt +1 -0
  319. MindsDB-23.11.4.1/mindsdb/integrations/handlers/matrixone_handler/__about__.py +9 -0
  320. MindsDB-23.11.4.1/mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +216 -0
  321. MindsDB-23.11.4.1/mindsdb/integrations/handlers/maxdb_handler/__about__.py +9 -0
  322. MindsDB-23.11.4.1/mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +225 -0
  323. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mediawiki_handler/__about__.py +9 -0
  324. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +87 -0
  325. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +98 -0
  326. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mendeley_handler/__about__.py +9 -0
  327. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +225 -0
  328. MindsDB-23.11.4.1/mindsdb/integrations/handlers/merlion_handler/__about__.py +9 -0
  329. MindsDB-23.11.4.1/mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +205 -0
  330. MindsDB-23.11.4.1/mindsdb/integrations/handlers/merlion_handler/requirements.txt +2 -0
  331. MindsDB-23.11.4.1/mindsdb/integrations/handlers/milvus_handler/__about__.py +9 -0
  332. MindsDB-23.11.4.1/mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +515 -0
  333. MindsDB-23.11.4.1/mindsdb/integrations/handlers/milvus_handler/requirements.txt +1 -0
  334. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mlflow_handler/__about__.py +9 -0
  335. MindsDB-23.11.4.1/mindsdb/integrations/handlers/monetdb_handler/__about__.py +9 -0
  336. MindsDB-23.11.4.1/mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +270 -0
  337. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mongodb_handler/__about__.py +9 -0
  338. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +320 -0
  339. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mongodb_handler/requirements.txt +1 -0
  340. MindsDB-23.11.4.1/mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +9 -0
  341. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ms_teams_handler/__about__.py +9 -0
  342. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +90 -0
  343. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +64 -0
  344. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mssql_handler/__about__.py +9 -0
  345. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +150 -0
  346. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mysql_handler/__about__.py +9 -0
  347. MindsDB-23.11.4.1/mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +314 -0
  348. MindsDB-23.11.4.1/mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +9 -0
  349. MindsDB-23.11.4.1/mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +135 -0
  350. MindsDB-23.11.4.1/mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +2 -0
  351. MindsDB-23.11.4.1/mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +3 -0
  352. MindsDB-23.11.4.1/mindsdb/integrations/handlers/newsapi_handler/__about__.py +9 -0
  353. MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler/__about__.py +9 -0
  354. MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler/__init__.py +30 -0
  355. MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler/notion_handler.py +238 -0
  356. MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler/notion_table.py +422 -0
  357. MindsDB-23.11.4.1/mindsdb/integrations/handlers/npm_handler/__about__.py +9 -0
  358. MindsDB-23.11.4.1/mindsdb/integrations/handlers/npm_handler/api.py +26 -0
  359. MindsDB-23.11.4.1/mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +9 -0
  360. MindsDB-23.11.4.1/mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +292 -0
  361. MindsDB-23.11.4.1/mindsdb/integrations/handlers/oceanbase_handler/__about__.py +9 -0
  362. MindsDB-23.11.4.1/mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +48 -0
  363. MindsDB-23.11.4.1/mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +1 -0
  364. MindsDB-23.11.4.1/mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +9 -0
  365. MindsDB-23.11.4.1/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +117 -0
  366. MindsDB-23.11.4.1/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +208 -0
  367. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ollama_handler/__about__.py +9 -0
  368. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/__about__.py +9 -0
  369. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/constants.py +31 -0
  370. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/helpers.py +151 -0
  371. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/openai_handler.py +831 -0
  372. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/requirements.txt +2 -0
  373. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +186 -0
  374. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +163 -0
  375. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openbb_handler/requirements.txt +2 -0
  376. MindsDB-23.11.4.1/mindsdb/integrations/handlers/opengauss_handler/__about__.py +9 -0
  377. MindsDB-23.11.4.1/mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +45 -0
  378. MindsDB-23.11.4.1/mindsdb/integrations/handlers/opengauss_handler/requirements.txt +1 -0
  379. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +9 -0
  380. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +27 -0
  381. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +4 -0
  382. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +90 -0
  383. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +243 -0
  384. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +1 -0
  385. MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +37 -0
  386. MindsDB-23.11.4.1/mindsdb/integrations/handlers/oracle_handler/__about__.py +9 -0
  387. MindsDB-23.11.4.1/mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +217 -0
  388. MindsDB-23.11.4.1/mindsdb/integrations/handlers/orioledb_handler/__about__.py +9 -0
  389. MindsDB-23.11.4.1/mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +48 -0
  390. MindsDB-23.11.4.1/mindsdb/integrations/handlers/orioledb_handler/requirements.txt +1 -0
  391. MindsDB-23.11.4.1/mindsdb/integrations/handlers/palm_handler/__about__.py +9 -0
  392. MindsDB-23.11.4.1/mindsdb/integrations/handlers/palm_handler/palm_handler.py +448 -0
  393. MindsDB-23.11.4.1/mindsdb/integrations/handlers/palm_handler/requirements.txt +2 -0
  394. MindsDB-23.11.4.1/mindsdb/integrations/handlers/paypal_handler/__about__.py +9 -0
  395. MindsDB-23.11.4.1/mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +145 -0
  396. MindsDB-23.11.4.1/mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +274 -0
  397. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pgvector_handler/__about__.py +9 -0
  398. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +342 -0
  399. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pgvector_handler/requirements.txt +2 -0
  400. MindsDB-23.11.4.1/mindsdb/integrations/handlers/phoenix_handler/__about__.py +9 -0
  401. MindsDB-23.11.4.1/mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +278 -0
  402. MindsDB-23.11.4.1/mindsdb/integrations/handlers/phoenix_handler/requirements.txt +2 -0
  403. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinecone_handler/__about__.py +9 -0
  404. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +398 -0
  405. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinot_handler/__about__.py +9 -0
  406. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +269 -0
  407. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pirateweather_handler/__about__.py +9 -0
  408. MindsDB-23.11.4.1/mindsdb/integrations/handlers/plaid_handler/__about__.py +9 -0
  409. MindsDB-23.11.4.1/mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +225 -0
  410. MindsDB-23.11.4.1/mindsdb/integrations/handlers/planetscale_handler/__about__.py +9 -0
  411. MindsDB-23.11.4.1/mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +45 -0
  412. MindsDB-23.11.4.1/mindsdb/integrations/handlers/planetscale_handler/requirements.txt +1 -0
  413. MindsDB-23.11.4.1/mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +9 -0
  414. MindsDB-23.11.4.1/mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +20 -0
  415. MindsDB-23.11.4.1/mindsdb/integrations/handlers/postgres_handler/__about__.py +9 -0
  416. MindsDB-23.11.4.1/mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +264 -0
  417. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/__about__.py +9 -0
  418. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/__init__.py +23 -0
  419. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +116 -0
  420. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/requirements.txt +2 -0
  421. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +246 -0
  422. MindsDB-23.11.4.1/mindsdb/integrations/handlers/pypi_handler/__about__.py +9 -0
  423. MindsDB-23.11.4.1/mindsdb/integrations/handlers/qdrant_handler/__about__.py +9 -0
  424. MindsDB-23.11.4.1/mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +478 -0
  425. MindsDB-23.11.4.1/mindsdb/integrations/handlers/questdb_handler/__about__.py +9 -0
  426. MindsDB-23.11.4.1/mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +28 -0
  427. MindsDB-23.11.4.1/mindsdb/integrations/handlers/questdb_handler/requirements.txt +1 -0
  428. MindsDB-23.11.4.1/mindsdb/integrations/handlers/quickbooks_handler/__about__.py +9 -0
  429. MindsDB-23.11.4.1/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +97 -0
  430. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/__about__.py +9 -0
  431. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/ingest.py +211 -0
  432. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/rag.py +143 -0
  433. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/rag_handler.py +138 -0
  434. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/requirements.txt +7 -0
  435. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/settings.py +470 -0
  436. MindsDB-23.11.4.1/mindsdb/integrations/handlers/ray_serve_handler/__about__.py +9 -0
  437. MindsDB-23.11.4.1/mindsdb/integrations/handlers/reddit_handler/__about__.py +9 -0
  438. MindsDB-23.11.4.1/mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +106 -0
  439. MindsDB-23.11.4.1/mindsdb/integrations/handlers/redshift_handler/__about__.py +9 -0
  440. MindsDB-23.11.4.1/mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +242 -0
  441. MindsDB-23.11.4.1/mindsdb/integrations/handlers/replicate_handler/__about__.py +9 -0
  442. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +9 -0
  443. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +153 -0
  444. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rockset_handler/__about__.py +9 -0
  445. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rockset_handler/requirements.txt +2 -0
  446. MindsDB-23.11.4.1/mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +56 -0
  447. MindsDB-23.11.4.1/mindsdb/integrations/handlers/s3_handler/__about__.py +9 -0
  448. MindsDB-23.11.4.1/mindsdb/integrations/handlers/s3_handler/s3_handler.py +248 -0
  449. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/__about__.py +9 -0
  450. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/__init__.py +27 -0
  451. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/api.py +79 -0
  452. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/icon.png +0 -0
  453. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +161 -0
  454. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +1928 -0
  455. MindsDB-23.11.4.1/mindsdb/integrations/handlers/scylla_handler/__about__.py +9 -0
  456. MindsDB-23.11.4.1/mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +249 -0
  457. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sendinblue_handler/__about__.py +9 -0
  458. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +94 -0
  459. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +181 -0
  460. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sentence_transformer_handler/__about__.py +9 -0
  461. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sentence_transformer_handler/sentence_transformer_handler.py +66 -0
  462. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sharepoint_handler/__about__.py +9 -0
  463. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +147 -0
  464. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sheets_handler/__about__.py +9 -0
  465. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +195 -0
  466. MindsDB-23.11.4.1/mindsdb/integrations/handlers/shopify_handler/__about__.py +9 -0
  467. MindsDB-23.11.4.1/mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
  468. MindsDB-23.11.4.1/mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +143 -0
  469. MindsDB-23.11.4.1/mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +928 -0
  470. MindsDB-23.11.4.1/mindsdb/integrations/handlers/singlestore_handler/__about__.py +9 -0
  471. MindsDB-23.11.4.1/mindsdb/integrations/handlers/singlestore_handler/requirements.txt +1 -0
  472. MindsDB-23.11.4.1/mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +12 -0
  473. MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler/__about__.py +9 -0
  474. MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler/requirements.txt +1 -0
  475. MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler/slack_handler.py +547 -0
  476. MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +29 -0
  477. MindsDB-23.11.4.1/mindsdb/integrations/handlers/snowflake_handler/__about__.py +9 -0
  478. MindsDB-23.11.4.1/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +137 -0
  479. MindsDB-23.11.4.1/mindsdb/integrations/handlers/solace_handler/__about__.py +9 -0
  480. MindsDB-23.11.4.1/mindsdb/integrations/handlers/solace_handler/solace_handler.py +169 -0
  481. MindsDB-23.11.4.1/mindsdb/integrations/handlers/solr_handler/__about__.py +9 -0
  482. MindsDB-23.11.4.1/mindsdb/integrations/handlers/solr_handler/solr_handler.py +220 -0
  483. MindsDB-23.11.4.1/mindsdb/integrations/handlers/spacy_handler/__about__.py +9 -0
  484. MindsDB-23.11.4.1/mindsdb/integrations/handlers/spacy_handler/__init__.py +18 -0
  485. MindsDB-23.11.4.1/mindsdb/integrations/handlers/spacy_handler/requirements.txt +1 -0
  486. MindsDB-23.11.4.1/mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +194 -0
  487. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlany_handler/__about__.py +9 -0
  488. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +224 -0
  489. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlite_handler/__about__.py +9 -0
  490. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +195 -0
  491. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +9 -0
  492. MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +206 -0
  493. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/__about__.py +9 -0
  494. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/__init__.py +18 -0
  495. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/icon.svg +1 -0
  496. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +2 -0
  497. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +186 -0
  498. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +185 -0
  499. MindsDB-23.11.4.1/mindsdb/integrations/handlers/starrocks_handler/__about__.py +9 -0
  500. MindsDB-23.11.4.1/mindsdb/integrations/handlers/starrocks_handler/requirements.txt +1 -0
  501. MindsDB-23.11.4.1/mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +48 -0
  502. MindsDB-23.11.4.1/mindsdb/integrations/handlers/statsforecast_handler/__about__.py +9 -0
  503. MindsDB-23.11.4.1/mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
  504. MindsDB-23.11.4.1/mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +2 -0
  505. MindsDB-23.11.4.1/mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +191 -0
  506. MindsDB-23.11.4.1/mindsdb/integrations/handlers/strapi_handler/__about__.py +9 -0
  507. MindsDB-23.11.4.1/mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +153 -0
  508. MindsDB-23.11.4.1/mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +51 -0
  509. MindsDB-23.11.4.1/mindsdb/integrations/handlers/strava_handler/__about__.py +9 -0
  510. MindsDB-23.11.4.1/mindsdb/integrations/handlers/strava_handler/__init__.py +27 -0
  511. MindsDB-23.11.4.1/mindsdb/integrations/handlers/strava_handler/strava_handler.py +113 -0
  512. MindsDB-23.11.4.1/mindsdb/integrations/handlers/strava_handler/strava_tables.py +247 -0
  513. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stripe_handler/__about__.py +9 -0
  514. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +102 -0
  515. MindsDB-23.11.4.1/mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +508 -0
  516. MindsDB-23.11.4.1/mindsdb/integrations/handlers/supabase_handler/__about__.py +9 -0
  517. MindsDB-23.11.4.1/mindsdb/integrations/handlers/supabase_handler/requirements.txt +1 -0
  518. MindsDB-23.11.4.1/mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +11 -0
  519. MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler/__about__.py +9 -0
  520. MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +1 -0
  521. MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +244 -0
  522. MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/__about__.py +9 -0
  523. MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/__init__.py +33 -0
  524. MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/icon.svg +13 -0
  525. MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/requirements.txt +1 -0
  526. MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +129 -0
  527. MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +648 -0
  528. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tdengine_handler/__about__.py +9 -0
  529. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +182 -0
  530. MindsDB-23.11.4.1/mindsdb/integrations/handlers/teradata_handler/__about__.py +9 -0
  531. MindsDB-23.11.4.1/mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +263 -0
  532. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tidb_handler/__about__.py +9 -0
  533. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tidb_handler/requirements.txt +1 -0
  534. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +45 -0
  535. MindsDB-23.11.4.1/mindsdb/integrations/handlers/timegpt_handler/__about__.py +9 -0
  536. MindsDB-23.11.4.1/mindsdb/integrations/handlers/timescaledb_handler/__about__.py +9 -0
  537. MindsDB-23.11.4.1/mindsdb/integrations/handlers/timescaledb_handler/requirements.txt +1 -0
  538. MindsDB-23.11.4.1/mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +46 -0
  539. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tpot_handler/__about__.py +9 -0
  540. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tpot_handler/requirements.txt +2 -0
  541. MindsDB-23.11.4.1/mindsdb/integrations/handlers/trino_handler/__about__.py +9 -0
  542. MindsDB-23.11.4.1/mindsdb/integrations/handlers/trino_handler/requirements.txt +2 -0
  543. MindsDB-23.11.4.1/mindsdb/integrations/handlers/trino_handler/trino_handler.py +182 -0
  544. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +9 -0
  545. MindsDB-23.11.4.1/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +275 -0
  546. MindsDB-23.11.4.1/mindsdb/integrations/handlers/twilio_handler/__about__.py +9 -0
  547. MindsDB-23.11.4.1/mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +385 -0
  548. MindsDB-23.11.4.1/mindsdb/integrations/handlers/twitter_handler/__about__.py +9 -0
  549. MindsDB-23.11.4.1/mindsdb/integrations/handlers/twitter_handler/requirements.txt +1 -0
  550. MindsDB-23.11.4.1/mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +471 -0
  551. MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/auth_utilities/__init__.py +1 -0
  552. MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/auth_utilities/exceptions.py +6 -0
  553. MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/auth_utilities/google_oauth_utilities.py +108 -0
  554. MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/query_utilities/base_query_utilities.py +63 -0
  555. MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/query_utilities/select_query_utilities.py +135 -0
  556. MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertex_handler/__about__.py +9 -0
  557. MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertex_handler/vertex_client.py +88 -0
  558. MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +87 -0
  559. MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertica_handler/__about__.py +9 -0
  560. MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +200 -0
  561. MindsDB-23.11.4.1/mindsdb/integrations/handlers/vitess_handler/__about__.py +9 -0
  562. MindsDB-23.11.4.1/mindsdb/integrations/handlers/vitess_handler/requirements.txt +1 -0
  563. MindsDB-23.11.4.1/mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +48 -0
  564. MindsDB-23.11.4.1/mindsdb/integrations/handlers/weaviate_handler/__about__.py +9 -0
  565. MindsDB-23.11.4.1/mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +691 -0
  566. MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/__about__.py +9 -0
  567. MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/tests/example_data.py +18 -0
  568. MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/tests/test_helpers.py +49 -0
  569. MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +331 -0
  570. MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/web_handler.py +113 -0
  571. MindsDB-23.11.4.1/mindsdb/integrations/handlers/webz_handler/__about__.py +9 -0
  572. MindsDB-23.11.4.1/mindsdb/integrations/handlers/webz_handler/webz_handler.py +175 -0
  573. MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/__about__.py +9 -0
  574. MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/evaluate.py +362 -0
  575. MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/requirements.txt +6 -0
  576. MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/settings.py +87 -0
  577. MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/writer_handler.py +188 -0
  578. MindsDB-23.11.4.1/mindsdb/integrations/handlers/xata_handler/__about__.py +9 -0
  579. MindsDB-23.11.4.1/mindsdb/integrations/handlers/xata_handler/xata_handler.py +421 -0
  580. MindsDB-23.11.4.1/mindsdb/integrations/handlers/youtube_handler/__about__.py +9 -0
  581. MindsDB-23.11.4.1/mindsdb/integrations/handlers/youtube_handler/__init__.py +27 -0
  582. MindsDB-23.11.4.1/mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +164 -0
  583. MindsDB-23.11.4.1/mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +436 -0
  584. MindsDB-23.11.4.1/mindsdb/integrations/handlers/yugabyte_handler/__about__.py +9 -0
  585. MindsDB-23.11.4.1/mindsdb/integrations/handlers/yugabyte_handler/requirements.txt +1 -0
  586. MindsDB-23.11.4.1/mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +60 -0
  587. MindsDB-23.11.4.1/mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +9 -0
  588. MindsDB-23.11.4.1/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +124 -0
  589. MindsDB-23.11.4.1/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +499 -0
  590. MindsDB-23.11.4.1/mindsdb/integrations/handlers_client/db_client_factory.py +38 -0
  591. MindsDB-23.11.4.1/mindsdb/integrations/handlers_client/db_grpc_client.py +141 -0
  592. MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper/db_grpc_wrapper.py +241 -0
  593. MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper/db_handler_service.py +16 -0
  594. MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper/ml_grpc_wrapper.py +179 -0
  595. MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper/ml_handler_service.py +30 -0
  596. MindsDB-23.11.4.1/mindsdb/integrations/libs/base.py +361 -0
  597. MindsDB-23.11.4.1/mindsdb/integrations/libs/handler_helpers.py +55 -0
  598. MindsDB-23.11.4.1/mindsdb/integrations/libs/learn_process.py +220 -0
  599. MindsDB-23.11.4.1/mindsdb/integrations/libs/ml_exec_base.py +405 -0
  600. MindsDB-23.11.4.1/mindsdb/integrations/libs/response.py +96 -0
  601. MindsDB-23.11.4.1/mindsdb/integrations/libs/vectordatabase_handler.py +543 -0
  602. MindsDB-23.11.4.1/mindsdb/integrations/utilities/time_series_utils.py +191 -0
  603. MindsDB-23.11.4.1/mindsdb/integrations/utilities/utils.py +23 -0
  604. MindsDB-23.11.4.1/mindsdb/interfaces/agents/agents_controller.py +251 -0
  605. MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/chatbot_controller.py +314 -0
  606. MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/chatbot_executor.py +180 -0
  607. MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/chatbot_task.py +108 -0
  608. MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/model_executor.py +104 -0
  609. MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/polling.py +149 -0
  610. MindsDB-23.11.4.1/mindsdb/interfaces/database/database.py +94 -0
  611. MindsDB-23.11.4.1/mindsdb/interfaces/database/integrations.py +656 -0
  612. MindsDB-23.11.4.1/mindsdb/interfaces/database/projects.py +333 -0
  613. MindsDB-23.11.4.1/mindsdb/interfaces/database/views.py +104 -0
  614. MindsDB-23.11.4.1/mindsdb/interfaces/file/file_controller.py +147 -0
  615. MindsDB-23.11.4.1/mindsdb/interfaces/jobs/jobs_controller.py +409 -0
  616. MindsDB-23.11.4.1/mindsdb/interfaces/jobs/scheduler.py +142 -0
  617. MindsDB-23.11.4.1/mindsdb/interfaces/knowledge_base/controller.py +376 -0
  618. MindsDB-23.11.4.1/mindsdb/interfaces/model/__init__.py +0 -0
  619. MindsDB-23.11.4.1/mindsdb/interfaces/model/functions.py +155 -0
  620. MindsDB-23.11.4.1/mindsdb/interfaces/model/model_controller.py +515 -0
  621. MindsDB-23.11.4.1/mindsdb/interfaces/query_context/__init__.py +0 -0
  622. MindsDB-23.11.4.1/mindsdb/interfaces/query_context/context_controller.py +274 -0
  623. MindsDB-23.11.4.1/mindsdb/interfaces/query_context/last_query.py +216 -0
  624. MindsDB-23.11.4.1/mindsdb/interfaces/skills/skill_tool.py +117 -0
  625. MindsDB-23.11.4.1/mindsdb/interfaces/skills/skills_controller.py +162 -0
  626. MindsDB-23.11.4.1/mindsdb/interfaces/storage/db.py +540 -0
  627. MindsDB-23.11.4.1/mindsdb/interfaces/storage/fs.py +611 -0
  628. MindsDB-23.11.4.1/mindsdb/interfaces/storage/json.py +97 -0
  629. MindsDB-23.11.4.1/mindsdb/interfaces/storage/model_fs.py +282 -0
  630. MindsDB-23.11.4.1/mindsdb/interfaces/stream/__init__.py +0 -0
  631. MindsDB-23.11.4.1/mindsdb/interfaces/stream/base/integration.py +165 -0
  632. MindsDB-23.11.4.1/mindsdb/interfaces/stream/stream.py +28 -0
  633. MindsDB-23.11.4.1/mindsdb/interfaces/tasks/__init__.py +0 -0
  634. MindsDB-23.11.4.1/mindsdb/interfaces/tasks/task_monitor.py +150 -0
  635. MindsDB-23.11.4.1/mindsdb/interfaces/tasks/task_thread.py +55 -0
  636. MindsDB-23.11.4.1/mindsdb/interfaces/triggers/__init__.py +0 -0
  637. MindsDB-23.11.4.1/mindsdb/interfaces/triggers/trigger_task.py +95 -0
  638. MindsDB-23.11.4.1/mindsdb/microservices_grpc/__init__.py +0 -0
  639. MindsDB-23.11.4.1/mindsdb/microservices_grpc/db/__init__.py +0 -0
  640. MindsDB-23.11.4.1/mindsdb/microservices_grpc/db/common_pb2.pyi +27 -0
  641. MindsDB-23.11.4.1/mindsdb/microservices_grpc/db/db_pb2.pyi +40 -0
  642. MindsDB-23.11.4.1/mindsdb/microservices_grpc/executor/__init__.py +0 -0
  643. MindsDB-23.11.4.1/mindsdb/microservices_grpc/executor/executor_pb2.pyi +81 -0
  644. MindsDB-23.11.4.1/mindsdb/microservices_grpc/ml/__init__.py +0 -0
  645. MindsDB-23.11.4.1/mindsdb/microservices_grpc/ml/common_pb2.pyi +27 -0
  646. MindsDB-23.11.4.1/mindsdb/microservices_grpc/ml/ml_pb2.pyi +50 -0
  647. MindsDB-23.11.4.1/mindsdb/migrations/__init__.py +0 -0
  648. MindsDB-23.11.4.1/mindsdb/migrations/alembic.ini +65 -0
  649. MindsDB-23.11.4.1/mindsdb/migrations/env.py +88 -0
  650. MindsDB-23.11.4.1/mindsdb/migrations/migrate.py +50 -0
  651. MindsDB-23.11.4.1/mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +178 -0
  652. MindsDB-23.11.4.1/mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +33 -0
  653. MindsDB-23.11.4.1/mindsdb/migrations/versions/__init__.py +0 -0
  654. MindsDB-23.11.4.1/mindsdb/utilities/__init__.py +0 -0
  655. MindsDB-23.11.4.1/mindsdb/utilities/exception.py +29 -0
  656. MindsDB-23.11.4.1/mindsdb/utilities/fs.py +164 -0
  657. MindsDB-23.11.4.1/mindsdb/utilities/functions.py +185 -0
  658. MindsDB-23.11.4.1/mindsdb/utilities/hooks/profiling.py +74 -0
  659. MindsDB-23.11.4.1/mindsdb/utilities/json_encoder.py +27 -0
  660. MindsDB-23.11.4.1/mindsdb/utilities/log.py +78 -0
  661. MindsDB-23.11.4.1/mindsdb/utilities/ml_task_queue/consumer.py +251 -0
  662. MindsDB-23.11.4.1/mindsdb/utilities/ml_task_queue/producer.py +80 -0
  663. MindsDB-23.11.4.1/mindsdb/utilities/security.py +33 -0
  664. MindsDB-23.11.4.1/requirements/requirements-grpc.txt +1 -0
  665. MindsDB-23.11.4.1/requirements/requirements.txt +35 -0
  666. MindsDB-23.11.4.1/setup.py +193 -0
  667. MindsDB-23.11.1.0/MindsDB.egg-info/PKG-INFO +0 -332
  668. MindsDB-23.11.1.0/MindsDB.egg-info/SOURCES.txt +0 -1448
  669. MindsDB-23.11.1.0/MindsDB.egg-info/requires.txt +0 -884
  670. MindsDB-23.11.1.0/PKG-INFO +0 -332
  671. MindsDB-23.11.1.0/README.md +0 -154
  672. MindsDB-23.11.1.0/mindsdb/__about__.py +0 -10
  673. MindsDB-23.11.1.0/mindsdb/__main__.py +0 -354
  674. MindsDB-23.11.1.0/mindsdb/api/common/check_auth.py +0 -41
  675. MindsDB-23.11.1.0/mindsdb/api/http/gui.py +0 -89
  676. MindsDB-23.11.1.0/mindsdb/api/http/initialize.py +0 -383
  677. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/analysis.py +0 -104
  678. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/auth.py +0 -178
  679. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/config.py +0 -257
  680. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/default.py +0 -148
  681. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/file.py +0 -168
  682. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/handlers.py +0 -145
  683. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/skills.py +0 -164
  684. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/sql.py +0 -135
  685. MindsDB-23.11.1.0/mindsdb/api/http/namespaces/tab.py +0 -66
  686. MindsDB-23.11.1.0/mindsdb/api/http/start.py +0 -68
  687. MindsDB-23.11.1.0/mindsdb/api/mongo/classes/responder_collection.py +0 -33
  688. MindsDB-23.11.1.0/mindsdb/api/mongo/responders/insert.py +0 -267
  689. MindsDB-23.11.1.0/mindsdb/api/mongo/responders/sasl_start.py +0 -34
  690. MindsDB-23.11.1.0/mindsdb/api/mongo/server.py +0 -395
  691. MindsDB-23.11.1.0/mindsdb/api/mongo/start.py +0 -15
  692. MindsDB-23.11.1.0/mindsdb/api/mongo/utilities/__init__.py +0 -1
  693. MindsDB-23.11.1.0/mindsdb/api/mongo/utilities/log.py +0 -3
  694. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/classes/sql_query.py +0 -1648
  695. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/controllers/session_controller.py +0 -115
  696. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +0 -168
  697. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +0 -150
  698. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/information_schema_datanode.py +0 -964
  699. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/integration_datanode.py +0 -182
  700. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/project_datanode.py +0 -120
  701. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor.py +0 -224
  702. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_client_factory.py +0 -38
  703. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_commands.py +0 -1956
  704. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_grpc_client.py +0 -144
  705. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_grpc_wrapper.py +0 -254
  706. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_service.py +0 -17
  707. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +0 -857
  708. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +0 -2
  709. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/utilities/log.py +0 -3
  710. MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/utilities/sql.py +0 -146
  711. MindsDB-23.11.1.0/mindsdb/api/mysql/start.py +0 -16
  712. MindsDB-23.11.1.0/mindsdb/api/nlp/nlp.py +0 -42
  713. MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy/executor/executor.py +0 -191
  714. MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +0 -253
  715. MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +0 -479
  716. MindsDB-23.11.1.0/mindsdb/api/postgres/start.py +0 -14
  717. MindsDB-23.11.1.0/mindsdb/integrations/handlers/access_handler/access_handler.py +0 -209
  718. MindsDB-23.11.1.0/mindsdb/integrations/handlers/aerospike_handler/requirements.txt +0 -2
  719. MindsDB-23.11.1.0/mindsdb/integrations/handlers/airtable_handler/__about__.py +0 -9
  720. MindsDB-23.11.1.0/mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +0 -234
  721. MindsDB-23.11.1.0/mindsdb/integrations/handlers/airtable_handler/requirements.txt +0 -1
  722. MindsDB-23.11.1.0/mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +0 -246
  723. MindsDB-23.11.1.0/mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +0 -2
  724. MindsDB-23.11.1.0/mindsdb/integrations/handlers/anomaly_detection_handler/setup.py +0 -31
  725. MindsDB-23.11.1.0/mindsdb/integrations/handlers/anthropic_handler/__about__.py +0 -9
  726. MindsDB-23.11.1.0/mindsdb/integrations/handlers/anthropic_handler/__init__.py +0 -20
  727. MindsDB-23.11.1.0/mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +0 -110
  728. MindsDB-23.11.1.0/mindsdb/integrations/handlers/anthropic_handler/setup.py +0 -26
  729. MindsDB-23.11.1.0/mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +0 -2
  730. MindsDB-23.11.1.0/mindsdb/integrations/handlers/anyscale_endpoints_handler/setup.py +0 -26
  731. MindsDB-23.11.1.0/mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +0 -10
  732. MindsDB-23.11.1.0/mindsdb/integrations/handlers/aurora_handler/__about__.py +0 -9
  733. MindsDB-23.11.1.0/mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +0 -187
  734. MindsDB-23.11.1.0/mindsdb/integrations/handlers/aurora_handler/requirements.txt +0 -3
  735. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autogluon_handler/__about__.py +0 -9
  736. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +0 -57
  737. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autogluon_handler/requirements.txt +0 -2
  738. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autogluon_handler/setup.py +0 -26
  739. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autokeras_handler/__about__.py +0 -9
  740. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autokeras_handler/requirements.txt +0 -5
  741. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autokeras_handler/setup.py +0 -31
  742. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autosklearn_handler/__about__.py +0 -9
  743. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +0 -3
  744. MindsDB-23.11.1.0/mindsdb/integrations/handlers/autosklearn_handler/setup.py +0 -23
  745. MindsDB-23.11.1.0/mindsdb/integrations/handlers/bigquery_handler/__about__.py +0 -9
  746. MindsDB-23.11.1.0/mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +0 -169
  747. MindsDB-23.11.1.0/mindsdb/integrations/handlers/bigquery_handler/requirements.txt +0 -3
  748. MindsDB-23.11.1.0/mindsdb/integrations/handlers/binance_handler/__about__.py +0 -9
  749. MindsDB-23.11.1.0/mindsdb/integrations/handlers/binance_handler/binance_handler.py +0 -143
  750. MindsDB-23.11.1.0/mindsdb/integrations/handlers/byom_handler/__about__.py +0 -9
  751. MindsDB-23.11.1.0/mindsdb/integrations/handlers/byom_handler/byom_handler.py +0 -411
  752. MindsDB-23.11.1.0/mindsdb/integrations/handlers/byom_handler/const.py +0 -9
  753. MindsDB-23.11.1.0/mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +0 -175
  754. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cassandra_handler/__about__.py +0 -9
  755. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +0 -60
  756. MindsDB-23.11.1.0/mindsdb/integrations/handlers/chromadb_handler/__about__.py +0 -9
  757. MindsDB-23.11.1.0/mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +0 -395
  758. MindsDB-23.11.1.0/mindsdb/integrations/handlers/chromadb_handler/requirements.txt +0 -2
  759. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ckan_handler/__about__.py +0 -9
  760. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +0 -99
  761. MindsDB-23.11.1.0/mindsdb/integrations/handlers/clickhouse_handler/__about__.py +0 -9
  762. MindsDB-23.11.1.0/mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +0 -210
  763. MindsDB-23.11.1.0/mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +0 -2
  764. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +0 -9
  765. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +0 -248
  766. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +0 -2
  767. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +0 -9
  768. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +0 -3
  769. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cockroach_handler/__about__.py +0 -9
  770. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cockroach_handler/requirements.txt +0 -1
  771. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cohere_handler/__about__.py +0 -9
  772. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cohere_handler/__init__.py +0 -20
  773. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +0 -134
  774. MindsDB-23.11.1.0/mindsdb/integrations/handlers/cohere_handler/setup.py +0 -26
  775. MindsDB-23.11.1.0/mindsdb/integrations/handlers/confluence_handler/__about__.py +0 -9
  776. MindsDB-23.11.1.0/mindsdb/integrations/handlers/confluence_handler/__init__.py +0 -31
  777. MindsDB-23.11.1.0/mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +0 -87
  778. MindsDB-23.11.1.0/mindsdb/integrations/handlers/confluence_handler/confluence_table.py +0 -120
  779. MindsDB-23.11.1.0/mindsdb/integrations/handlers/couchbase_handler/__about__.py +0 -9
  780. MindsDB-23.11.1.0/mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +0 -237
  781. MindsDB-23.11.1.0/mindsdb/integrations/handlers/crate_handler/__about__.py +0 -9
  782. MindsDB-23.11.1.0/mindsdb/integrations/handlers/crate_handler/crate_handler.py +0 -211
  783. MindsDB-23.11.1.0/mindsdb/integrations/handlers/d0lt_handler/__about__.py +0 -9
  784. MindsDB-23.11.1.0/mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +0 -12
  785. MindsDB-23.11.1.0/mindsdb/integrations/handlers/d0lt_handler/requirements.txt +0 -1
  786. MindsDB-23.11.1.0/mindsdb/integrations/handlers/databend_handler/__about__.py +0 -9
  787. MindsDB-23.11.1.0/mindsdb/integrations/handlers/databend_handler/databend_handler.py +0 -224
  788. MindsDB-23.11.1.0/mindsdb/integrations/handlers/databricks_handler/__about__.py +0 -9
  789. MindsDB-23.11.1.0/mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +0 -260
  790. MindsDB-23.11.1.0/mindsdb/integrations/handlers/datastax_handler/__about__.py +0 -9
  791. MindsDB-23.11.1.0/mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +0 -12
  792. MindsDB-23.11.1.0/mindsdb/integrations/handlers/datastax_handler/requirements.txt +0 -1
  793. MindsDB-23.11.1.0/mindsdb/integrations/handlers/db2_handler/__about__.py +0 -9
  794. MindsDB-23.11.1.0/mindsdb/integrations/handlers/db2_handler/db2_handler.py +0 -264
  795. MindsDB-23.11.1.0/mindsdb/integrations/handlers/derby_handler/__about__.py +0 -9
  796. MindsDB-23.11.1.0/mindsdb/integrations/handlers/derby_handler/derby_handler.py +0 -248
  797. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dockerhub_handler/__about__.py +0 -9
  798. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +0 -137
  799. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +0 -509
  800. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dockerhub_handler/requirements.txt +0 -1
  801. MindsDB-23.11.1.0/mindsdb/integrations/handlers/documentdb_handler/__about__.py +0 -9
  802. MindsDB-23.11.1.0/mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +0 -94
  803. MindsDB-23.11.1.0/mindsdb/integrations/handlers/documentdb_handler/requirements.txt +0 -2
  804. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dremio_handler/__about__.py +0 -9
  805. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +0 -238
  806. MindsDB-23.11.1.0/mindsdb/integrations/handlers/druid_handler/__about__.py +0 -9
  807. MindsDB-23.11.1.0/mindsdb/integrations/handlers/druid_handler/druid_handler.py +0 -261
  808. MindsDB-23.11.1.0/mindsdb/integrations/handlers/druid_handler/requirements.txt +0 -2
  809. MindsDB-23.11.1.0/mindsdb/integrations/handlers/duckdb_handler/__about__.py +0 -9
  810. MindsDB-23.11.1.0/mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +0 -187
  811. MindsDB-23.11.1.0/mindsdb/integrations/handlers/duckdb_handler/requirements.txt +0 -3
  812. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dynamodb_handler/__about__.py +0 -9
  813. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +0 -231
  814. MindsDB-23.11.1.0/mindsdb/integrations/handlers/dynamodb_handler/requirements.txt +0 -1
  815. MindsDB-23.11.1.0/mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +0 -9
  816. MindsDB-23.11.1.0/mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +0 -64
  817. MindsDB-23.11.1.0/mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +0 -1
  818. MindsDB-23.11.1.0/mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +0 -9
  819. MindsDB-23.11.1.0/mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +0 -251
  820. MindsDB-23.11.1.0/mindsdb/integrations/handlers/email_handler/__about__.py +0 -9
  821. MindsDB-23.11.1.0/mindsdb/integrations/handlers/email_handler/__init__.py +0 -22
  822. MindsDB-23.11.1.0/mindsdb/integrations/handlers/email_handler/email_handler.py +0 -83
  823. MindsDB-23.11.1.0/mindsdb/integrations/handlers/email_handler/email_helpers.py +0 -96
  824. MindsDB-23.11.1.0/mindsdb/integrations/handlers/empress_handler/__about__.py +0 -9
  825. MindsDB-23.11.1.0/mindsdb/integrations/handlers/empress_handler/empress_handler.py +0 -249
  826. MindsDB-23.11.1.0/mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +0 -9
  827. MindsDB-23.11.1.0/mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +0 -212
  828. MindsDB-23.11.1.0/mindsdb/integrations/handlers/file_handler/__about__.py +0 -9
  829. MindsDB-23.11.1.0/mindsdb/integrations/handlers/file_handler/file_handler.py +0 -421
  830. MindsDB-23.11.1.0/mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +0 -392
  831. MindsDB-23.11.1.0/mindsdb/integrations/handlers/firebird_handler/__about__.py +0 -9
  832. MindsDB-23.11.1.0/mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +0 -270
  833. MindsDB-23.11.1.0/mindsdb/integrations/handlers/flaml_handler/__about__.py +0 -9
  834. MindsDB-23.11.1.0/mindsdb/integrations/handlers/flaml_handler/requirements.txt +0 -2
  835. MindsDB-23.11.1.0/mindsdb/integrations/handlers/flaml_handler/setup.py +0 -23
  836. MindsDB-23.11.1.0/mindsdb/integrations/handlers/frappe_handler/__about__.py +0 -9
  837. MindsDB-23.11.1.0/mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +0 -208
  838. MindsDB-23.11.1.0/mindsdb/integrations/handlers/github_handler/__about__.py +0 -9
  839. MindsDB-23.11.1.0/mindsdb/integrations/handlers/github_handler/github_handler.py +0 -160
  840. MindsDB-23.11.1.0/mindsdb/integrations/handlers/github_handler/github_tables.py +0 -1313
  841. MindsDB-23.11.1.0/mindsdb/integrations/handlers/gitlab_handler/__about__.py +0 -9
  842. MindsDB-23.11.1.0/mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +0 -85
  843. MindsDB-23.11.1.0/mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +0 -393
  844. MindsDB-23.11.1.0/mindsdb/integrations/handlers/gmail_handler/__about__.py +0 -9
  845. MindsDB-23.11.1.0/mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +0 -585
  846. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_books_handler/__about__.py +0 -9
  847. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +0 -183
  848. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_books_handler/requirements.txt +0 -3
  849. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_calendar_handler/__about__.py +0 -9
  850. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +0 -302
  851. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +0 -3
  852. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +0 -9
  853. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +0 -413
  854. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +0 -3
  855. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_fit_handler/__about__.py +0 -9
  856. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +0 -151
  857. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_fit_handler/requirements.txt +0 -5
  858. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_search_handler/__about__.py +0 -9
  859. MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +0 -220
  860. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hackernews_handler/__about__.py +0 -9
  861. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +0 -100
  862. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hana_handler/__about__.py +0 -9
  863. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hana_handler/hana_handler.py +0 -308
  864. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hive_handler/__about__.py +0 -9
  865. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hive_handler/hive_handler.py +0 -191
  866. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hive_handler/requirements.txt +0 -4
  867. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hsqldb_handler/__about__.py +0 -9
  868. MindsDB-23.11.1.0/mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +0 -232
  869. MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +0 -9
  870. MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +0 -18
  871. MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_api_handler/setup.py +0 -23
  872. MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_handler/__about__.py +0 -9
  873. MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +0 -376
  874. MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_handler/requirements.txt +0 -11
  875. MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_handler/setup.py +0 -25
  876. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ignite_handler/__about__.py +0 -9
  877. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +0 -250
  878. MindsDB-23.11.1.0/mindsdb/integrations/handlers/impala_handler/__about__.py +0 -9
  879. MindsDB-23.11.1.0/mindsdb/integrations/handlers/impala_handler/impala_handler.py +0 -194
  880. MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler/__about__.py +0 -9
  881. MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler/__init__.py +0 -31
  882. MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +0 -117
  883. MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +0 -81
  884. MindsDB-23.11.1.0/mindsdb/integrations/handlers/informix_handler/__about__.py +0 -9
  885. MindsDB-23.11.1.0/mindsdb/integrations/handlers/informix_handler/informix_handler.py +0 -318
  886. MindsDB-23.11.1.0/mindsdb/integrations/handlers/informix_handler/requirements.txt +0 -2
  887. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ingres_handler/__about__.py +0 -10
  888. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +0 -242
  889. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ingres_handler/requirements.txt +0 -3
  890. MindsDB-23.11.1.0/mindsdb/integrations/handlers/jira_handler/__about__.py +0 -9
  891. MindsDB-23.11.1.0/mindsdb/integrations/handlers/jira_handler/__init__.py +0 -27
  892. MindsDB-23.11.1.0/mindsdb/integrations/handlers/jira_handler/jira_handler.py +0 -120
  893. MindsDB-23.11.1.0/mindsdb/integrations/handlers/jira_handler/jira_table.py +0 -151
  894. MindsDB-23.11.1.0/mindsdb/integrations/handlers/kinetica_handler/__about__.py +0 -9
  895. MindsDB-23.11.1.0/mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +0 -67
  896. MindsDB-23.11.1.0/mindsdb/integrations/handlers/kinetica_handler/requirements.txt +0 -1
  897. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +0 -9
  898. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +0 -205
  899. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +0 -3
  900. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_embedding_handler/setup.py +0 -26
  901. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/__about__.py +0 -9
  902. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +0 -414
  903. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/mindsdb_database_agent.py +0 -154
  904. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/requirements.txt +0 -7
  905. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/setup.py +0 -26
  906. MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/tools.py +0 -205
  907. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightfm_handler/__about__.py +0 -9
  908. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightfm_handler/__init__.py +0 -22
  909. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightfm_handler/requirements.txt +0 -4
  910. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightfm_handler/setup.py +0 -32
  911. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/__init__.py +0 -20
  912. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/__about__.py +0 -9
  913. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/__init__.py +0 -17
  914. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/functions.py +0 -229
  915. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/lightwood_handler.py +0 -517
  916. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/utils.py +0 -79
  917. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/requirements.txt +0 -1
  918. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/setup.py +0 -32
  919. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lindorm_handler/__about__.py +0 -9
  920. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +0 -218
  921. MindsDB-23.11.1.0/mindsdb/integrations/handlers/lindorm_handler/requirements.txt +0 -3
  922. MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/__about__.py +0 -9
  923. MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/__init__.py +0 -23
  924. MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +0 -224
  925. MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/requirements.txt +0 -4
  926. MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/setup.py +0 -26
  927. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ludwig_handler/__about__.py +0 -9
  928. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ludwig_handler/requirements.txt +0 -5
  929. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ludwig_handler/setup.py +0 -23
  930. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mariadb_handler/__about__.py +0 -9
  931. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +0 -11
  932. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mariadb_handler/requirements.txt +0 -1
  933. MindsDB-23.11.1.0/mindsdb/integrations/handlers/materialize_handler/__about__.py +0 -9
  934. MindsDB-23.11.1.0/mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +0 -55
  935. MindsDB-23.11.1.0/mindsdb/integrations/handlers/materialize_handler/requirements.txt +0 -1
  936. MindsDB-23.11.1.0/mindsdb/integrations/handlers/matrixone_handler/__about__.py +0 -9
  937. MindsDB-23.11.1.0/mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +0 -215
  938. MindsDB-23.11.1.0/mindsdb/integrations/handlers/maxdb_handler/__about__.py +0 -9
  939. MindsDB-23.11.1.0/mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +0 -224
  940. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mediawiki_handler/__about__.py +0 -9
  941. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +0 -86
  942. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +0 -98
  943. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mendeley_handler/__about__.py +0 -9
  944. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +0 -223
  945. MindsDB-23.11.1.0/mindsdb/integrations/handlers/merlion_handler/__about__.py +0 -9
  946. MindsDB-23.11.1.0/mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +0 -204
  947. MindsDB-23.11.1.0/mindsdb/integrations/handlers/merlion_handler/requirements.txt +0 -2
  948. MindsDB-23.11.1.0/mindsdb/integrations/handlers/merlion_handler/setup.py +0 -28
  949. MindsDB-23.11.1.0/mindsdb/integrations/handlers/milvus_handler/__about__.py +0 -9
  950. MindsDB-23.11.1.0/mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +0 -513
  951. MindsDB-23.11.1.0/mindsdb/integrations/handlers/milvus_handler/requirements.txt +0 -3
  952. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mlflow_handler/__about__.py +0 -9
  953. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mlflow_handler/setup.py +0 -23
  954. MindsDB-23.11.1.0/mindsdb/integrations/handlers/monetdb_handler/__about__.py +0 -9
  955. MindsDB-23.11.1.0/mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +0 -270
  956. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mongodb_handler/__about__.py +0 -9
  957. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +0 -313
  958. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mongodb_handler/requirements.txt +0 -2
  959. MindsDB-23.11.1.0/mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +0 -9
  960. MindsDB-23.11.1.0/mindsdb/integrations/handlers/monkeylearn_handler/setup.py +0 -23
  961. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ms_teams_handler/__about__.py +0 -9
  962. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +0 -88
  963. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +0 -64
  964. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mssql_handler/__about__.py +0 -9
  965. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +0 -149
  966. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mysql_handler/__about__.py +0 -9
  967. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +0 -313
  968. MindsDB-23.11.1.0/mindsdb/integrations/handlers/mysql_handler/requirements.txt +0 -1
  969. MindsDB-23.11.1.0/mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +0 -9
  970. MindsDB-23.11.1.0/mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +0 -137
  971. MindsDB-23.11.1.0/mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +0 -3
  972. MindsDB-23.11.1.0/mindsdb/integrations/handlers/neuralforecast_handler/setup.py +0 -31
  973. MindsDB-23.11.1.0/mindsdb/integrations/handlers/newsapi_handler/__about__.py +0 -9
  974. MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler/__about__.py +0 -9
  975. MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler/__init__.py +0 -29
  976. MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler/notion_handler.py +0 -236
  977. MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler/notion_table.py +0 -422
  978. MindsDB-23.11.1.0/mindsdb/integrations/handlers/npm_handler/__about__.py +0 -9
  979. MindsDB-23.11.1.0/mindsdb/integrations/handlers/npm_handler/api.py +0 -26
  980. MindsDB-23.11.1.0/mindsdb/integrations/handlers/npm_handler/requirements.txt +0 -1
  981. MindsDB-23.11.1.0/mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +0 -9
  982. MindsDB-23.11.1.0/mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +0 -291
  983. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oceanbase_handler/__about__.py +0 -9
  984. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +0 -48
  985. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +0 -1
  986. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +0 -9
  987. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +0 -117
  988. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +0 -208
  989. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oilpriceapi_handler/requirements.txt +0 -1
  990. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ollama_handler/__about__.py +0 -9
  991. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ollama_handler/requirements.txt +0 -1
  992. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/__about__.py +0 -9
  993. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/constants.py +0 -20
  994. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/helpers.py +0 -147
  995. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/openai_handler.py +0 -685
  996. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/requirements.txt +0 -3
  997. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/setup.py +0 -26
  998. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +0 -170
  999. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +0 -46
  1000. MindsDB-23.11.1.0/mindsdb/integrations/handlers/openbb_handler/requirements.txt +0 -1
  1001. MindsDB-23.11.1.0/mindsdb/integrations/handlers/opengauss_handler/__about__.py +0 -9
  1002. MindsDB-23.11.1.0/mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +0 -45
  1003. MindsDB-23.11.1.0/mindsdb/integrations/handlers/opengauss_handler/requirements.txt +0 -1
  1004. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oracle_handler/__about__.py +0 -9
  1005. MindsDB-23.11.1.0/mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +0 -215
  1006. MindsDB-23.11.1.0/mindsdb/integrations/handlers/orioledb_handler/__about__.py +0 -9
  1007. MindsDB-23.11.1.0/mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +0 -48
  1008. MindsDB-23.11.1.0/mindsdb/integrations/handlers/orioledb_handler/requirements.txt +0 -1
  1009. MindsDB-23.11.1.0/mindsdb/integrations/handlers/palm_handler/__about__.py +0 -9
  1010. MindsDB-23.11.1.0/mindsdb/integrations/handlers/palm_handler/palm_handler.py +0 -446
  1011. MindsDB-23.11.1.0/mindsdb/integrations/handlers/palm_handler/requirements.txt +0 -2
  1012. MindsDB-23.11.1.0/mindsdb/integrations/handlers/palm_handler/setup.py +0 -26
  1013. MindsDB-23.11.1.0/mindsdb/integrations/handlers/paypal_handler/__about__.py +0 -9
  1014. MindsDB-23.11.1.0/mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +0 -141
  1015. MindsDB-23.11.1.0/mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +0 -183
  1016. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pgvector_handler/__about__.py +0 -9
  1017. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +0 -321
  1018. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -1
  1019. MindsDB-23.11.1.0/mindsdb/integrations/handlers/phoenix_handler/__about__.py +0 -9
  1020. MindsDB-23.11.1.0/mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +0 -277
  1021. MindsDB-23.11.1.0/mindsdb/integrations/handlers/phoenix_handler/requirements.txt +0 -3
  1022. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinecone_handler/__about__.py +0 -9
  1023. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +0 -396
  1024. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinot_handler/__about__.py +0 -9
  1025. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +0 -268
  1026. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pirateweather_handler/__about__.py +0 -9
  1027. MindsDB-23.11.1.0/mindsdb/integrations/handlers/plaid_handler/__about__.py +0 -9
  1028. MindsDB-23.11.1.0/mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +0 -224
  1029. MindsDB-23.11.1.0/mindsdb/integrations/handlers/planetscale_handler/__about__.py +0 -9
  1030. MindsDB-23.11.1.0/mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +0 -45
  1031. MindsDB-23.11.1.0/mindsdb/integrations/handlers/planetscale_handler/requirements.txt +0 -1
  1032. MindsDB-23.11.1.0/mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +0 -9
  1033. MindsDB-23.11.1.0/mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +0 -22
  1034. MindsDB-23.11.1.0/mindsdb/integrations/handlers/popularity_recommender_handler/setup.py +0 -32
  1035. MindsDB-23.11.1.0/mindsdb/integrations/handlers/postgres_handler/__about__.py +0 -9
  1036. MindsDB-23.11.1.0/mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +0 -230
  1037. MindsDB-23.11.1.0/mindsdb/integrations/handlers/postgres_handler/requirements.txt +0 -1
  1038. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pypi_handler/__about__.py +0 -9
  1039. MindsDB-23.11.1.0/mindsdb/integrations/handlers/pypi_handler/requirements.txt +0 -3
  1040. MindsDB-23.11.1.0/mindsdb/integrations/handlers/qdrant_handler/__about__.py +0 -9
  1041. MindsDB-23.11.1.0/mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +0 -476
  1042. MindsDB-23.11.1.0/mindsdb/integrations/handlers/questdb_handler/__about__.py +0 -9
  1043. MindsDB-23.11.1.0/mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +0 -28
  1044. MindsDB-23.11.1.0/mindsdb/integrations/handlers/questdb_handler/requirements.txt +0 -1
  1045. MindsDB-23.11.1.0/mindsdb/integrations/handlers/quickbooks_handler/__about__.py +0 -9
  1046. MindsDB-23.11.1.0/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +0 -96
  1047. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/__about__.py +0 -9
  1048. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/ingest.py +0 -175
  1049. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/rag.py +0 -141
  1050. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/rag_handler.py +0 -139
  1051. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/requirements.txt +0 -15
  1052. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/settings.py +0 -462
  1053. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/setup.py +0 -26
  1054. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ray_serve_handler/__about__.py +0 -9
  1055. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ray_serve_handler/requirements.txt +0 -1
  1056. MindsDB-23.11.1.0/mindsdb/integrations/handlers/ray_serve_handler/setup.py +0 -23
  1057. MindsDB-23.11.1.0/mindsdb/integrations/handlers/reddit_handler/__about__.py +0 -9
  1058. MindsDB-23.11.1.0/mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +0 -103
  1059. MindsDB-23.11.1.0/mindsdb/integrations/handlers/redshift_handler/__about__.py +0 -9
  1060. MindsDB-23.11.1.0/mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +0 -241
  1061. MindsDB-23.11.1.0/mindsdb/integrations/handlers/replicate_handler/__about__.py +0 -9
  1062. MindsDB-23.11.1.0/mindsdb/integrations/handlers/replicate_handler/setup.py +0 -23
  1063. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +0 -9
  1064. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +0 -152
  1065. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rockset_handler/__about__.py +0 -9
  1066. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rockset_handler/requirements.txt +0 -2
  1067. MindsDB-23.11.1.0/mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +0 -56
  1068. MindsDB-23.11.1.0/mindsdb/integrations/handlers/s3_handler/__about__.py +0 -9
  1069. MindsDB-23.11.1.0/mindsdb/integrations/handlers/s3_handler/requirements.txt +0 -1
  1070. MindsDB-23.11.1.0/mindsdb/integrations/handlers/s3_handler/s3_handler.py +0 -247
  1071. MindsDB-23.11.1.0/mindsdb/integrations/handlers/scylla_handler/__about__.py +0 -9
  1072. MindsDB-23.11.1.0/mindsdb/integrations/handlers/scylla_handler/requirements.txt +0 -1
  1073. MindsDB-23.11.1.0/mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +0 -248
  1074. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sendinblue_handler/__about__.py +0 -9
  1075. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +0 -93
  1076. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +0 -61
  1077. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sentence_transformer_handler/__about__.py +0 -9
  1078. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sentence_transformer_handler/sentence_transformer_handler.py +0 -66
  1079. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sentence_transformer_handler/setup.py +0 -32
  1080. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sharepoint_handler/__about__.py +0 -9
  1081. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sharepoint_handler/requirements.txt +0 -1
  1082. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +0 -149
  1083. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sheets_handler/__about__.py +0 -9
  1084. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sheets_handler/requirements.txt +0 -1
  1085. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +0 -195
  1086. MindsDB-23.11.1.0/mindsdb/integrations/handlers/shopify_handler/__about__.py +0 -9
  1087. MindsDB-23.11.1.0/mindsdb/integrations/handlers/shopify_handler/requirements.txt +0 -2
  1088. MindsDB-23.11.1.0/mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +0 -142
  1089. MindsDB-23.11.1.0/mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +0 -889
  1090. MindsDB-23.11.1.0/mindsdb/integrations/handlers/singlestore_handler/__about__.py +0 -9
  1091. MindsDB-23.11.1.0/mindsdb/integrations/handlers/singlestore_handler/requirements.txt +0 -1
  1092. MindsDB-23.11.1.0/mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +0 -12
  1093. MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler/__about__.py +0 -9
  1094. MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler/requirements.txt +0 -1
  1095. MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler/slack_handler.py +0 -544
  1096. MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +0 -29
  1097. MindsDB-23.11.1.0/mindsdb/integrations/handlers/snowflake_handler/__about__.py +0 -9
  1098. MindsDB-23.11.1.0/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +0 -136
  1099. MindsDB-23.11.1.0/mindsdb/integrations/handlers/solace_handler/__about__.py +0 -9
  1100. MindsDB-23.11.1.0/mindsdb/integrations/handlers/solace_handler/solace_handler.py +0 -167
  1101. MindsDB-23.11.1.0/mindsdb/integrations/handlers/solr_handler/__about__.py +0 -9
  1102. MindsDB-23.11.1.0/mindsdb/integrations/handlers/solr_handler/solr_handler.py +0 -219
  1103. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlany_handler/__about__.py +0 -9
  1104. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +0 -225
  1105. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlite_handler/__about__.py +0 -9
  1106. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +0 -194
  1107. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +0 -9
  1108. MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +0 -206
  1109. MindsDB-23.11.1.0/mindsdb/integrations/handlers/starrocks_handler/__about__.py +0 -9
  1110. MindsDB-23.11.1.0/mindsdb/integrations/handlers/starrocks_handler/requirements.txt +0 -1
  1111. MindsDB-23.11.1.0/mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +0 -48
  1112. MindsDB-23.11.1.0/mindsdb/integrations/handlers/statsforecast_handler/__about__.py +0 -9
  1113. MindsDB-23.11.1.0/mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +0 -2
  1114. MindsDB-23.11.1.0/mindsdb/integrations/handlers/statsforecast_handler/setup.py +0 -31
  1115. MindsDB-23.11.1.0/mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +0 -185
  1116. MindsDB-23.11.1.0/mindsdb/integrations/handlers/strapi_handler/__about__.py +0 -9
  1117. MindsDB-23.11.1.0/mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +0 -151
  1118. MindsDB-23.11.1.0/mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +0 -51
  1119. MindsDB-23.11.1.0/mindsdb/integrations/handlers/strava_handler/__about__.py +0 -9
  1120. MindsDB-23.11.1.0/mindsdb/integrations/handlers/strava_handler/__init__.py +0 -31
  1121. MindsDB-23.11.1.0/mindsdb/integrations/handlers/strava_handler/strava_handler.py +0 -113
  1122. MindsDB-23.11.1.0/mindsdb/integrations/handlers/strava_handler/strava_tables.py +0 -247
  1123. MindsDB-23.11.1.0/mindsdb/integrations/handlers/stripe_handler/__about__.py +0 -9
  1124. MindsDB-23.11.1.0/mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +0 -101
  1125. MindsDB-23.11.1.0/mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +0 -508
  1126. MindsDB-23.11.1.0/mindsdb/integrations/handlers/supabase_handler/__about__.py +0 -9
  1127. MindsDB-23.11.1.0/mindsdb/integrations/handlers/supabase_handler/requirements.txt +0 -1
  1128. MindsDB-23.11.1.0/mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +0 -11
  1129. MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler/__about__.py +0 -9
  1130. MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +0 -2
  1131. MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +0 -243
  1132. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tdengine_handler/__about__.py +0 -9
  1133. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +0 -183
  1134. MindsDB-23.11.1.0/mindsdb/integrations/handlers/teradata_handler/__about__.py +0 -9
  1135. MindsDB-23.11.1.0/mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +0 -262
  1136. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tidb_handler/__about__.py +0 -9
  1137. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tidb_handler/requirements.txt +0 -1
  1138. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +0 -45
  1139. MindsDB-23.11.1.0/mindsdb/integrations/handlers/timegpt_handler/__about__.py +0 -9
  1140. MindsDB-23.11.1.0/mindsdb/integrations/handlers/timegpt_handler/setup.py +0 -31
  1141. MindsDB-23.11.1.0/mindsdb/integrations/handlers/timescaledb_handler/__about__.py +0 -9
  1142. MindsDB-23.11.1.0/mindsdb/integrations/handlers/timescaledb_handler/requirements.txt +0 -1
  1143. MindsDB-23.11.1.0/mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +0 -46
  1144. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tpot_handler/__about__.py +0 -9
  1145. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tpot_handler/requirements.txt +0 -2
  1146. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tpot_handler/setup.py +0 -23
  1147. MindsDB-23.11.1.0/mindsdb/integrations/handlers/trino_handler/__about__.py +0 -9
  1148. MindsDB-23.11.1.0/mindsdb/integrations/handlers/trino_handler/requirements.txt +0 -3
  1149. MindsDB-23.11.1.0/mindsdb/integrations/handlers/trino_handler/trino_handler.py +0 -181
  1150. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +0 -9
  1151. MindsDB-23.11.1.0/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +0 -276
  1152. MindsDB-23.11.1.0/mindsdb/integrations/handlers/twilio_handler/__about__.py +0 -9
  1153. MindsDB-23.11.1.0/mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +0 -383
  1154. MindsDB-23.11.1.0/mindsdb/integrations/handlers/twitter_handler/__about__.py +0 -9
  1155. MindsDB-23.11.1.0/mindsdb/integrations/handlers/twitter_handler/requirements.txt +0 -1
  1156. MindsDB-23.11.1.0/mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +0 -469
  1157. MindsDB-23.11.1.0/mindsdb/integrations/handlers/utilities/query_utilities/base_query_utilities.py +0 -69
  1158. MindsDB-23.11.1.0/mindsdb/integrations/handlers/utilities/query_utilities/select_query_utilities.py +0 -152
  1159. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/__about__.py +0 -9
  1160. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/requirements.txt +0 -2
  1161. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/setup.py +0 -31
  1162. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/vertex_client.py +0 -86
  1163. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +0 -85
  1164. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertica_handler/__about__.py +0 -9
  1165. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +0 -200
  1166. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vitess_handler/__about__.py +0 -9
  1167. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vitess_handler/requirements.txt +0 -1
  1168. MindsDB-23.11.1.0/mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +0 -48
  1169. MindsDB-23.11.1.0/mindsdb/integrations/handlers/weaviate_handler/__about__.py +0 -9
  1170. MindsDB-23.11.1.0/mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +0 -689
  1171. MindsDB-23.11.1.0/mindsdb/integrations/handlers/web_handler/__about__.py +0 -9
  1172. MindsDB-23.11.1.0/mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +0 -311
  1173. MindsDB-23.11.1.0/mindsdb/integrations/handlers/web_handler/web_handler.py +0 -106
  1174. MindsDB-23.11.1.0/mindsdb/integrations/handlers/webz_handler/__about__.py +0 -9
  1175. MindsDB-23.11.1.0/mindsdb/integrations/handlers/webz_handler/webz_handler.py +0 -173
  1176. MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/__about__.py +0 -9
  1177. MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/evaluate.py +0 -362
  1178. MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/requirements.txt +0 -14
  1179. MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/settings.py +0 -87
  1180. MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/setup.py +0 -26
  1181. MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/writer_handler.py +0 -189
  1182. MindsDB-23.11.1.0/mindsdb/integrations/handlers/xata_handler/__about__.py +0 -9
  1183. MindsDB-23.11.1.0/mindsdb/integrations/handlers/xata_handler/xata_handler.py +0 -419
  1184. MindsDB-23.11.1.0/mindsdb/integrations/handlers/youtube_handler/__about__.py +0 -9
  1185. MindsDB-23.11.1.0/mindsdb/integrations/handlers/youtube_handler/__init__.py +0 -31
  1186. MindsDB-23.11.1.0/mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +0 -112
  1187. MindsDB-23.11.1.0/mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +0 -342
  1188. MindsDB-23.11.1.0/mindsdb/integrations/handlers/yugabyte_handler/__about__.py +0 -9
  1189. MindsDB-23.11.1.0/mindsdb/integrations/handlers/yugabyte_handler/requirements.txt +0 -1
  1190. MindsDB-23.11.1.0/mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +0 -66
  1191. MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +0 -9
  1192. MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler/requirements.txt +0 -1
  1193. MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +0 -124
  1194. MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +0 -499
  1195. MindsDB-23.11.1.0/mindsdb/integrations/handlers_client/db_client_factory.py +0 -38
  1196. MindsDB-23.11.1.0/mindsdb/integrations/handlers_client/db_grpc_client.py +0 -141
  1197. MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper/db_grpc_wrapper.py +0 -241
  1198. MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper/db_handler_service.py +0 -17
  1199. MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper/ml_grpc_wrapper.py +0 -180
  1200. MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper/ml_handler_service.py +0 -31
  1201. MindsDB-23.11.1.0/mindsdb/integrations/libs/base.py +0 -354
  1202. MindsDB-23.11.1.0/mindsdb/integrations/libs/handler_helpers.py +0 -55
  1203. MindsDB-23.11.1.0/mindsdb/integrations/libs/learn_process.py +0 -217
  1204. MindsDB-23.11.1.0/mindsdb/integrations/libs/ml_exec_base.py +0 -398
  1205. MindsDB-23.11.1.0/mindsdb/integrations/libs/response.py +0 -92
  1206. MindsDB-23.11.1.0/mindsdb/integrations/libs/vectordatabase_handler.py +0 -554
  1207. MindsDB-23.11.1.0/mindsdb/integrations/utilities/time_series_utils.py +0 -175
  1208. MindsDB-23.11.1.0/mindsdb/integrations/utilities/utils.py +0 -12
  1209. MindsDB-23.11.1.0/mindsdb/interfaces/agents/agents_controller.py +0 -244
  1210. MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/chatbot_controller.py +0 -314
  1211. MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/chatbot_executor.py +0 -163
  1212. MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/chatbot_task.py +0 -104
  1213. MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/model_executor.py +0 -105
  1214. MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/polling.py +0 -147
  1215. MindsDB-23.11.1.0/mindsdb/interfaces/database/database.py +0 -93
  1216. MindsDB-23.11.1.0/mindsdb/interfaces/database/integrations.py +0 -655
  1217. MindsDB-23.11.1.0/mindsdb/interfaces/database/projects.py +0 -332
  1218. MindsDB-23.11.1.0/mindsdb/interfaces/database/views.py +0 -103
  1219. MindsDB-23.11.1.0/mindsdb/interfaces/file/file_controller.py +0 -128
  1220. MindsDB-23.11.1.0/mindsdb/interfaces/jobs/jobs_controller.py +0 -406
  1221. MindsDB-23.11.1.0/mindsdb/interfaces/jobs/scheduler.py +0 -144
  1222. MindsDB-23.11.1.0/mindsdb/interfaces/knowledge_base/controller.py +0 -498
  1223. MindsDB-23.11.1.0/mindsdb/interfaces/model/functions.py +0 -155
  1224. MindsDB-23.11.1.0/mindsdb/interfaces/model/model_controller.py +0 -512
  1225. MindsDB-23.11.1.0/mindsdb/interfaces/query_context/context_controller.py +0 -263
  1226. MindsDB-23.11.1.0/mindsdb/interfaces/query_context/last_query.py +0 -183
  1227. MindsDB-23.11.1.0/mindsdb/interfaces/skills/skills_controller.py +0 -156
  1228. MindsDB-23.11.1.0/mindsdb/interfaces/storage/db.py +0 -539
  1229. MindsDB-23.11.1.0/mindsdb/interfaces/storage/fs.py +0 -608
  1230. MindsDB-23.11.1.0/mindsdb/interfaces/storage/json.py +0 -94
  1231. MindsDB-23.11.1.0/mindsdb/interfaces/storage/model_fs.py +0 -250
  1232. MindsDB-23.11.1.0/mindsdb/interfaces/stream/base/integration.py +0 -118
  1233. MindsDB-23.11.1.0/mindsdb/interfaces/stream/stream.py +0 -24
  1234. MindsDB-23.11.1.0/mindsdb/interfaces/tasks/task_monitor.py +0 -149
  1235. MindsDB-23.11.1.0/mindsdb/interfaces/tasks/task_thread.py +0 -53
  1236. MindsDB-23.11.1.0/mindsdb/interfaces/triggers/trigger_task.py +0 -93
  1237. MindsDB-23.11.1.0/mindsdb/migrations/alembic.ini +0 -100
  1238. MindsDB-23.11.1.0/mindsdb/migrations/env.py +0 -98
  1239. MindsDB-23.11.1.0/mindsdb/migrations/migrate.py +0 -47
  1240. MindsDB-23.11.1.0/mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +0 -175
  1241. MindsDB-23.11.1.0/mindsdb/utilities/fs.py +0 -164
  1242. MindsDB-23.11.1.0/mindsdb/utilities/functions.py +0 -182
  1243. MindsDB-23.11.1.0/mindsdb/utilities/hooks/profiling.py +0 -70
  1244. MindsDB-23.11.1.0/mindsdb/utilities/json_encoder.py +0 -37
  1245. MindsDB-23.11.1.0/mindsdb/utilities/log.py +0 -151
  1246. MindsDB-23.11.1.0/mindsdb/utilities/ml_task_queue/consumer.py +0 -234
  1247. MindsDB-23.11.1.0/mindsdb/utilities/ml_task_queue/producer.py +0 -77
  1248. MindsDB-23.11.1.0/requirements/requirements-grpc.txt +0 -1
  1249. MindsDB-23.11.1.0/requirements/requirements-telemetry.txt +0 -1
  1250. MindsDB-23.11.1.0/requirements/requirements.txt +0 -47
  1251. MindsDB-23.11.1.0/setup.py +0 -110
  1252. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/MANIFEST.in +0 -0
  1253. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/MindsDB.egg-info/dependency_links.txt +0 -0
  1254. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/MindsDB.egg-info/top_level.txt +0 -0
  1255. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/__init__.py +0 -0
  1256. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/__init__.py +0 -0
  1257. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/common/__init__.py +0 -0
  1258. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/__init__.py +0 -0
  1259. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/gunicorn_wrapper.py +0 -0
  1260. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/__init__.py +0 -0
  1261. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/agents.py +0 -0
  1262. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/chatbots.py +0 -0
  1263. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/__init__.py +0 -0
  1264. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/agents.py +0 -0
  1265. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/analysis.py +0 -0
  1266. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/auth.py +0 -0
  1267. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/chatbots.py +0 -0
  1268. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/config.py +0 -0
  1269. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/databases.py +0 -0
  1270. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/default.py +0 -0
  1271. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/files.py +0 -0
  1272. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/handlers.py +0 -0
  1273. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/projects.py +0 -0
  1274. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/skills.py +0 -0
  1275. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/sql.py +0 -0
  1276. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/tabs.py +0 -0
  1277. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/tree.py +0 -0
  1278. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/util.py +0 -0
  1279. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/databases.py +0 -0
  1280. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/models.py +0 -0
  1281. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/projects.py +0 -0
  1282. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/tree.py +0 -0
  1283. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/util.py +0 -0
  1284. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/views.py +0 -0
  1285. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/utils.py +0 -0
  1286. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/__init__.py +0 -0
  1287. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/__init__.py +0 -0
  1288. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/query_sql.py +0 -0
  1289. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/responder.py +0 -0
  1290. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/scram.py +0 -0
  1291. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/session.py +0 -0
  1292. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/functions/__init__.py +0 -0
  1293. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/__init__.py +0 -0
  1294. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/add_shard.py +0 -0
  1295. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/aggregate.py +0 -0
  1296. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/buildinfo.py +0 -0
  1297. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/coll_stats.py +0 -0
  1298. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/company_id.py +0 -0
  1299. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/connection_status.py +0 -0
  1300. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/count.py +0 -0
  1301. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/db_stats.py +0 -0
  1302. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/delete.py +0 -0
  1303. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/end_sessions.py +0 -0
  1304. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/find.py +0 -0
  1305. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/get_cmd_line_opts.py +0 -0
  1306. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/get_free_monitoring_status.py +0 -0
  1307. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/get_parameter.py +0 -0
  1308. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/getlog.py +0 -0
  1309. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/host_info.py +0 -0
  1310. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/is_master.py +0 -0
  1311. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/is_master_lower.py +0 -0
  1312. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/list_collections.py +0 -0
  1313. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/list_databases.py +0 -0
  1314. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/list_indexes.py +0 -0
  1315. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/ping.py +0 -0
  1316. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/recv_chunk_start.py +0 -0
  1317. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/replsetgetstatus.py +0 -0
  1318. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/sasl_continue.py +0 -0
  1319. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/update_range_deletions.py +0 -0
  1320. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/whatsmyuri.py +0 -0
  1321. {MindsDB-23.11.1.0/mindsdb/api/mysql → MindsDB-23.11.4.1/mindsdb/api/mongo/utilities}/__init__.py +0 -0
  1322. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/utilities/mongodb_ast.py +0 -0
  1323. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/utilities/mongodb_parser.py +0 -0
  1324. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/utilities/mongodb_query.py +0 -0
  1325. {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy → MindsDB-23.11.4.1/mindsdb/api/mysql}/__init__.py +0 -0
  1326. {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/classes → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy}/__init__.py +0 -0
  1327. {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/data_types → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/classes}/__init__.py +0 -0
  1328. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +0 -0
  1329. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/com_operators.py +0 -0
  1330. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +0 -0
  1331. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +0 -0
  1332. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +0 -0
  1333. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +0 -0
  1334. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/controllers/__init__.py +0 -0
  1335. {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/datahub/classes → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/data_types}/__init__.py +0 -0
  1336. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +0 -0
  1337. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +0 -0
  1338. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +0 -0
  1339. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +0 -0
  1340. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +0 -0
  1341. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +0 -0
  1342. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +0 -0
  1343. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +0 -0
  1344. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +0 -0
  1345. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +0 -0
  1346. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +0 -0
  1347. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +0 -0
  1348. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +0 -0
  1349. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +0 -0
  1350. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +0 -0
  1351. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +0 -0
  1352. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/__init__.py +0 -0
  1353. {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/external_libs → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/datahub/classes}/__init__.py +0 -0
  1354. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/classes/tables_row.py +0 -0
  1355. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/datahub.py +0 -0
  1356. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/__init__.py +0 -0
  1357. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/datanode.py +0 -0
  1358. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/executor/__init__.py +0 -0
  1359. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/executor/data_types.py +0 -0
  1360. {MindsDB-23.11.1.0/mindsdb/api/nlp → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/external_libs}/__init__.py +0 -0
  1361. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +0 -0
  1362. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/libs/__init__.py +0 -0
  1363. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +0 -0
  1364. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +0 -0
  1365. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/libs/constants/response_type.py +0 -0
  1366. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -0
  1367. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/utilities/functions.py +0 -0
  1368. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +0 -0
  1369. {MindsDB-23.11.1.0/mindsdb/api/postgres → MindsDB-23.11.4.1/mindsdb/api/nlp}/__init__.py +0 -0
  1370. {MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy → MindsDB-23.11.4.1/mindsdb/api/postgres}/__init__.py +0 -0
  1371. {MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy/postgres_packets → MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy}/__init__.py +0 -0
  1372. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/executor/__init__.py +0 -0
  1373. {MindsDB-23.11.1.0/mindsdb/integrations → MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy/postgres_packets}/__init__.py +0 -0
  1374. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +0 -0
  1375. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +0 -0
  1376. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +0 -0
  1377. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +0 -0
  1378. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +0 -0
  1379. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +0 -0
  1380. {MindsDB-23.11.1.0/mindsdb/integrations/handlers → MindsDB-23.11.4.1/mindsdb/integrations}/__init__.py +0 -0
  1381. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/access_handler/tests → MindsDB-23.11.4.1/mindsdb/integrations/handlers}/__init__.py +0 -0
  1382. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/__about__.py +0 -0
  1383. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/__init__.py +0 -0
  1384. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/icon.png +0 -0
  1385. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/requirements.txt +0 -0
  1386. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/aerospike_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/access_handler}/tests/__init__.py +0 -0
  1387. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +0 -0
  1388. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/__about__.py +0 -0
  1389. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/__init__.py +0 -0
  1390. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +0 -0
  1391. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/icon.svg +0 -0
  1392. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/airtable_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/aerospike_handler}/tests/__init__.py +0 -0
  1393. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +0 -0
  1394. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/airtable_handler/__init__.py +0 -0
  1395. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/airtable_handler/icon.png +0 -0
  1396. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/altibase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/airtable_handler}/tests/__init__.py +0 -0
  1397. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +0 -0
  1398. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/__about__.py +0 -0
  1399. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/__init__.py +0 -0
  1400. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/icon.png +0 -0
  1401. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/requirements.txt +0 -0
  1402. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/aurora_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/altibase_handler}/tests/__init__.py +0 -0
  1403. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +0 -0
  1404. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +0 -0
  1405. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +0 -0
  1406. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +0 -0
  1407. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +0 -0
  1408. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anthropic_handler/requirements.txt +0 -0
  1409. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +0 -0
  1410. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +0 -0
  1411. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +0 -0
  1412. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/apache_doris_handler/__about__.py +0 -0
  1413. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/apache_doris_handler/__init__.py +0 -0
  1414. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/apache_doris_handler/icon.png +0 -0
  1415. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/bigquery_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler}/tests/__init__.py +0 -0
  1416. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aurora_handler/__init__.py +0 -0
  1417. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aurora_handler/icon.png +0 -0
  1418. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cassandra_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/aurora_handler}/tests/__init__.py +0 -0
  1419. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +0 -0
  1420. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +0 -0
  1421. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autogluon_handler/__init__.py +0 -0
  1422. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autogluon_handler/config.py +0 -0
  1423. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autokeras_handler/__init__.py +0 -0
  1424. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +0 -0
  1425. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autosklearn_handler/__init__.py +0 -0
  1426. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +0 -0
  1427. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autosklearn_handler/config.py +0 -0
  1428. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/bigquery_handler/__init__.py +0 -0
  1429. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/bigquery_handler/logo.svg +0 -0
  1430. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/chromadb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/bigquery_handler}/tests/__init__.py +0 -0
  1431. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +0 -0
  1432. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/binance_handler/__init__.py +0 -0
  1433. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/binance_handler/binance_tables.py +0 -0
  1434. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/binance_handler/icon.svg +0 -0
  1435. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/binance_handler/requirements.txt +0 -0
  1436. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/byom_handler/__init__.py +0 -0
  1437. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cassandra_handler/__init__.py +0 -0
  1438. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cassandra_handler/logo.png +0 -0
  1439. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/ckan_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/cassandra_handler}/tests/__init__.py +0 -0
  1440. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +0 -0
  1441. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/chromadb_handler/__init__.py +0 -0
  1442. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
  1443. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/clickhouse_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler}/tests/__init__.py +0 -0
  1444. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ckan_handler/__init__.py +0 -0
  1445. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ckan_handler/logo.png +0 -0
  1446. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ckan_handler/requirements.txt +0 -0
  1447. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_spanner_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/ckan_handler}/tests/__init__.py +0 -0
  1448. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +0 -0
  1449. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/clickhouse_handler/__init__.py +0 -0
  1450. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_sql_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/clickhouse_handler}/tests/__init__.py +0 -0
  1451. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +0 -0
  1452. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +0 -0
  1453. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
  1454. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cockroach_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_spanner_handler}/tests/__init__.py +0 -0
  1455. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +0 -0
  1456. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +0 -0
  1457. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +0 -0
  1458. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
  1459. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/couchbase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_sql_handler}/tests/__init__.py +0 -0
  1460. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +0 -0
  1461. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +0 -0
  1462. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cockroach_handler/__init__.py +0 -0
  1463. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +0 -0
  1464. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/crate_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/cockroach_handler}/tests/__init__.py +0 -0
  1465. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +0 -0
  1466. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cohere_handler/requirements.txt +0 -0
  1467. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/frappe_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler}/requirements.txt +0 -0
  1468. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/confluence_handler/icon.png +0 -0
  1469. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/confluence_handler/requirements.txt +0 -0
  1470. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/d0lt_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler}/tests/__init__.py +0 -0
  1471. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/couchbase_handler/__init__.py +0 -0
  1472. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/couchbase_handler/icon.svg +0 -0
  1473. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/couchbase_handler/requirements.txt +0 -0
  1474. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/databend_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/couchbase_handler}/tests/__init__.py +0 -0
  1475. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +0 -0
  1476. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/crate_handler/__init__.py +0 -0
  1477. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/crate_handler/icon.svg +0 -0
  1478. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/crate_handler/requirements.txt +0 -0
  1479. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/databricks_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/crate_handler}/tests/__init__.py +0 -0
  1480. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +0 -0
  1481. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/d0lt_handler/__init__.py +0 -0
  1482. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/d0lt_handler/icon.svg +0 -0
  1483. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/datastax_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/d0lt_handler}/tests/__init__.py +0 -0
  1484. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +0 -0
  1485. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databend_handler/__init__.py +0 -0
  1486. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databend_handler/icon.png +0 -0
  1487. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databend_handler/requirements.txt +0 -0
  1488. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/db2_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/databend_handler}/tests/__init__.py +0 -0
  1489. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +0 -0
  1490. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/__init__.py +0 -0
  1491. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/createdb.jpg +0 -0
  1492. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/createpred.jpg +0 -0
  1493. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/hivmetastore.jpg +0 -0
  1494. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/mindsdbdatabricks.jpg +0 -0
  1495. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/selectfrom.jpg +0 -0
  1496. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/icon.png +0 -0
  1497. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/requirements.txt +0 -0
  1498. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/derby_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/databricks_handler}/tests/__init__.py +0 -0
  1499. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +0 -0
  1500. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/datastax_handler/__init__.py +0 -0
  1501. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/datastax_handler/logo.png +0 -0
  1502. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/dremio_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/datastax_handler}/tests/__init__.py +0 -0
  1503. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +0 -0
  1504. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/db2_handler/__init__.py +0 -0
  1505. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/db2_handler/icon.png +0 -0
  1506. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/db2_handler/requirements.txt +0 -0
  1507. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/druid_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/db2_handler}/tests/__init__.py +0 -0
  1508. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +0 -0
  1509. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/derby_handler/__init__.py +0 -0
  1510. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/derby_handler/icon.png +0 -0
  1511. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/derby_handler/requirements.txt +0 -0
  1512. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/duckdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/derby_handler}/tests/__init__.py +0 -0
  1513. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +0 -0
  1514. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler}/requirements.txt +0 -0
  1515. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/dynamodb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler}/tests/__init__.py +0 -0
  1516. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dockerhub_handler/__init__.py +0 -0
  1517. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +0 -0
  1518. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dockerhub_handler/icon.svg +0 -0
  1519. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/documentdb_handler/__init__.py +0 -0
  1520. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/documentdb_handler/icon.svg +0 -0
  1521. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dremio_handler/__init__.py +0 -0
  1522. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dremio_handler/icon.png +0 -0
  1523. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dremio_handler/requirements.txt +0 -0
  1524. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/edgelessdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/dremio_handler}/tests/__init__.py +0 -0
  1525. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +0 -0
  1526. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/druid_handler/__init__.py +0 -0
  1527. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/druid_handler/icon.png +0 -0
  1528. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/elasticsearch_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/druid_handler}/tests/__init__.py +0 -0
  1529. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +0 -0
  1530. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/duckdb_handler/__init__.py +0 -0
  1531. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/duckdb_handler/icon.png +0 -0
  1532. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/empress_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/duckdb_handler}/tests/__init__.py +0 -0
  1533. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +0 -0
  1534. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dynamodb_handler/__init__.py +0 -0
  1535. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dynamodb_handler/icon.png +0 -0
  1536. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/file_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/dynamodb_handler}/tests/__init__.py +0 -0
  1537. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +0 -0
  1538. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +0 -0
  1539. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +0 -0
  1540. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/firebird_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/edgelessdb_handler}/tests/__init__.py +0 -0
  1541. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +0 -0
  1542. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +0 -0
  1543. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/elasticsearch_handler/icon.png +0 -0
  1544. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +0 -0
  1545. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/gmail_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/elasticsearch_handler}/tests/__init__.py +0 -0
  1546. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +0 -0
  1547. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/email_handler/email_tables.py +0 -0
  1548. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/email_handler/icon.png +0 -0
  1549. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/empress_handler/__init__.py +0 -0
  1550. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/empress_handler/requirements.txt +0 -0
  1551. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_books_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/empress_handler}/tests/__init__.py +0 -0
  1552. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +0 -0
  1553. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/empress_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler}/icon.svg +0 -0
  1554. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +0 -0
  1555. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +0 -0
  1556. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_calendar_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler}/tests/__init__.py +0 -0
  1557. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/file_handler/__init__.py +0 -0
  1558. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_content_shopping_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler}/tests/__init__.py +0 -0
  1559. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/file_handler/tests/data/test.txt +0 -0
  1560. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/firebird_handler/__init__.py +0 -0
  1561. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/firebird_handler/icon.png +0 -0
  1562. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/firebird_handler/requirements.txt +0 -0
  1563. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_search_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/firebird_handler}/tests/__init__.py +0 -0
  1564. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +0 -0
  1565. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/flaml_handler/__init__.py +0 -0
  1566. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +0 -0
  1567. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/frappe_handler/__init__.py +0 -0
  1568. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/frappe_handler/frappe_client.py +0 -0
  1569. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +0 -0
  1570. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/frappe_handler/icon.svg +0 -0
  1571. /MindsDB-23.11.1.0/mindsdb/integrations/handlers/autokeras_handler/functions.py → /MindsDB-23.11.4.1/mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
  1572. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/github_handler/__init__.py +0 -0
  1573. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/github_handler/icon.svg +0 -0
  1574. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/github_handler/requirements.txt +0 -0
  1575. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gitlab_handler/__init__.py +0 -0
  1576. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gitlab_handler/icon.svg +0 -0
  1577. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gitlab_handler/requirements.txt +0 -0
  1578. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/__init__.py +0 -0
  1579. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/icon.svg +0 -0
  1580. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/requirements.txt +0 -0
  1581. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/hive_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/gmail_handler}/tests/__init__.py +0 -0
  1582. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +0 -0
  1583. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/utils.py +0 -0
  1584. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_books_handler/__init__.py +0 -0
  1585. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +0 -0
  1586. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_books_handler/icon.svg +0 -0
  1587. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_api_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_books_handler}/tests/__init__.py +0 -0
  1588. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +0 -0
  1589. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_calendar_handler/__init__.py +0 -0
  1590. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +0 -0
  1591. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_calendar_handler/icon.svg +0 -0
  1592. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/ignite_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_calendar_handler}/tests/__init__.py +0 -0
  1593. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +0 -0
  1594. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +0 -0
  1595. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +0 -0
  1596. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_content_shopping_handler/icon.png +0 -0
  1597. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/impala_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_content_shopping_handler}/tests/__init__.py +0 -0
  1598. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +0 -0
  1599. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_fit_handler/__init__.py +0 -0
  1600. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +0 -0
  1601. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_fit_handler/icon.png +0 -0
  1602. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/__init__.py +0 -0
  1603. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +0 -0
  1604. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/icon.svg +0 -0
  1605. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/requirements.txt +0 -0
  1606. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/informix_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_search_handler}/tests/__init__.py +0 -0
  1607. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +0 -0
  1608. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hackernews_handler/__init__.py +0 -0
  1609. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hackernews_handler/hn_table.py +0 -0
  1610. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hackernews_handler/icon.svg +0 -0
  1611. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hana_handler/__init__.py +0 -0
  1612. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hana_handler/icon.svg +0 -0
  1613. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hana_handler/requirements.txt +0 -0
  1614. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hive_handler/__init__.py +0 -0
  1615. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hive_handler/icon.svg +0 -0
  1616. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/ingres_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/hive_handler}/tests/__init__.py +0 -0
  1617. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +0 -0
  1618. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hsqldb_handler/__init__.py +0 -0
  1619. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
  1620. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +0 -0
  1621. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +0 -0
  1622. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +0 -0
  1623. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +0 -0
  1624. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_api_handler}/tests/__init__.py +0 -0
  1625. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +0 -0
  1626. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_handler/__init__.py +0 -0
  1627. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_handler/finetune.py +0 -0
  1628. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_handler/settings.py +0 -0
  1629. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ignite_handler/__init__.py +0 -0
  1630. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ignite_handler/icon.png +0 -0
  1631. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ignite_handler/requirements.txt +0 -0
  1632. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/lindorm_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/ignite_handler}/tests/__init__.py +0 -0
  1633. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +0 -0
  1634. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/impala_handler/__init__.py +0 -0
  1635. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/impala_handler/icon.svg +0 -0
  1636. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/impala_handler/requirements.txt +0 -0
  1637. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/materialize_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/impala_handler}/tests/__init__.py +0 -0
  1638. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +0 -0
  1639. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/influxdb_handler/icon.png +0 -0
  1640. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/informix_handler/__init__.py +0 -0
  1641. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/informix_handler/icon.png +0 -0
  1642. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/matrixone_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/informix_handler}/tests/__init__.py +0 -0
  1643. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +0 -0
  1644. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ingres_handler/__init__.py +0 -0
  1645. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ingres_handler/icon.svg +0 -0
  1646. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/maxdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/ingres_handler}/tests/__init__.py +0 -0
  1647. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +0 -0
  1648. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/jira_handler/icon.png +0 -0
  1649. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/jira_handler/requirements.txt +0 -0
  1650. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/kinetica_handler/__init__.py +0 -0
  1651. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/kinetica_handler/icon.svg +0 -0
  1652. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/mendeley_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler}/tests/__init__.py +0 -0
  1653. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +0 -0
  1654. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/langchain_handler/__init__.py +0 -0
  1655. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/milvus_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler}/tests/__init__.py +0 -0
  1656. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lightfm_handler/helpers.py +0 -0
  1657. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +0 -0
  1658. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lightfm_handler/settings.py +0 -0
  1659. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/monetdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler}/tests/__init__.py +0 -0
  1660. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +0 -0
  1661. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lindorm_handler/__init__.py +0 -0
  1662. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lindorm_handler/icon.png +0 -0
  1663. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/monetdb_handler/utils → MindsDB-23.11.4.1/mindsdb/integrations/handlers/lindorm_handler/tests}/__init__.py +0 -0
  1664. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +0 -0
  1665. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ludwig_handler/__init__.py +0 -0
  1666. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
  1667. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +0 -0
  1668. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ludwig_handler/utils.py +0 -0
  1669. /MindsDB-23.11.1.0/mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py → /MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
  1670. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mariadb_handler/__init__.py +0 -0
  1671. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mariadb_handler/icon.svg +0 -0
  1672. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/materialize_handler/__init__.py +0 -0
  1673. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/materialize_handler/icon.png +0 -0
  1674. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/mssql_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/materialize_handler}/tests/__init__.py +0 -0
  1675. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +0 -0
  1676. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/matrixone_handler/__init__.py +0 -0
  1677. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/matrixone_handler/icon.png +0 -0
  1678. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/matrixone_handler/requirements.txt +0 -0
  1679. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/newsapi_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/matrixone_handler}/tests/__init__.py +0 -0
  1680. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +0 -0
  1681. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/maxdb_handler/__init__.py +0 -0
  1682. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/maxdb_handler/icon.png +0 -0
  1683. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/maxdb_handler/requirements.txt +0 -0
  1684. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/maxdb_handler}/tests/__init__.py +0 -0
  1685. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +0 -0
  1686. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mediawiki_handler/__init__.py +0 -0
  1687. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mediawiki_handler/icon.png +0 -0
  1688. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +0 -0
  1689. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/__init__.py +0 -0
  1690. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/icon.svg +0 -0
  1691. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +0 -0
  1692. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/requirements.txt +0 -0
  1693. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/npm_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/mendeley_handler}/tests/__init__.py +0 -0
  1694. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +0 -0
  1695. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/merlion_handler/__init__.py +0 -0
  1696. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/merlion_handler/adapters.py +0 -0
  1697. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/milvus_handler/__init__.py +0 -0
  1698. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/milvus_handler/icon.png +0 -0
  1699. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/nuo_jdbc_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/milvus_handler}/tests/__init__.py +0 -0
  1700. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mlflow_handler/__init__.py +0 -0
  1701. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +0 -0
  1702. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mlflow_handler/requirements.txt +0 -0
  1703. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/__init__.py +0 -0
  1704. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/icon.png +0 -0
  1705. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/requirements.txt +0 -0
  1706. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/oceanbase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/monetdb_handler}/tests/__init__.py +0 -0
  1707. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +0 -0
  1708. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/opengauss_handler/tests → MindsDB-23.11.4.1/mindsdb/integrations/handlers/monetdb_handler/utils}/__init__.py +0 -0
  1709. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +0 -0
  1710. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mongodb_handler/__init__.py +0 -0
  1711. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mongodb_handler/icon.svg +0 -0
  1712. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/oracle_handler/tests → MindsDB-23.11.4.1/mindsdb/integrations/handlers/mongodb_handler/utils}/__init__.py +0 -0
  1713. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +0 -0
  1714. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +0 -0
  1715. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +0 -0
  1716. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +0 -0
  1717. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ms_teams_handler/__init__.py +0 -0
  1718. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ms_teams_handler/icon.png +0 -0
  1719. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +0 -0
  1720. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mssql_handler/__init__.py +0 -0
  1721. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mssql_handler/icon.png +0 -0
  1722. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mssql_handler/requirements.txt +0 -0
  1723. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/orioledb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/mssql_handler}/tests/__init__.py +0 -0
  1724. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +0 -0
  1725. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mysql_handler/__init__.py +0 -0
  1726. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mysql_handler/icon.svg +0 -0
  1727. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/apache_doris_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/mysql_handler}/requirements.txt +0 -0
  1728. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +0 -0
  1729. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/__init__.py +0 -0
  1730. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
  1731. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +0 -0
  1732. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/requirements.txt +0 -0
  1733. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/phoenix_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/newsapi_handler}/tests/__init__.py +0 -0
  1734. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +0 -0
  1735. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/notion_handler/icon.png +0 -0
  1736. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/notion_handler/requirements.txt +0 -0
  1737. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinecone_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler}/tests/__init__.py +0 -0
  1738. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +0 -0
  1739. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/npm_handler/__init__.py +0 -0
  1740. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/npm_handler/icon.png +0 -0
  1741. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/npm_handler/npm_handler.py +0 -0
  1742. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/npm_handler/npm_tables.py +0 -0
  1743. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinot_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/npm_handler}/tests/__init__.py +0 -0
  1744. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +0 -0
  1745. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/nuo_jdbc_handler/icon.png +0 -0
  1746. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +0 -0
  1747. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/questdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/nuo_jdbc_handler}/tests/__init__.py +0 -0
  1748. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +0 -0
  1749. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oceanbase_handler/__init__.py +0 -0
  1750. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oceanbase_handler/icon.png +0 -0
  1751. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/redshift_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/oceanbase_handler}/tests/__init__.py +0 -0
  1752. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +0 -0
  1753. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +0 -0
  1754. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +0 -0
  1755. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +0 -0
  1756. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ollama_handler/__init__.py +0 -0
  1757. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +0 -0
  1758. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/openai_handler/__init__.py +0 -0
  1759. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/openbb_handler/__about__.py +0 -0
  1760. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/openbb_handler/__init__.py +0 -0
  1761. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/openbb_handler/icon.svg +0 -0
  1762. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/opengauss_handler/__init__.py +0 -0
  1763. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/rockset_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/opengauss_handler}/tests/__init__.py +0 -0
  1764. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +0 -0
  1765. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/s3_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler}/tests/__init__.py +0 -0
  1766. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oracle_handler/__init__.py +0 -0
  1767. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oracle_handler/icon.svg +0 -0
  1768. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oracle_handler/requirements.txt +0 -0
  1769. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/scylla_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/oracle_handler}/tests/__init__.py +0 -0
  1770. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +0 -0
  1771. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/orioledb_handler/__init__.py +0 -0
  1772. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/orioledb_handler/icon.svg +0 -0
  1773. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/sharepoint_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/orioledb_handler}/tests/__init__.py +0 -0
  1774. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +0 -0
  1775. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/palm_handler/__init__.py +0 -0
  1776. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/paypal_handler/__init__.py +0 -0
  1777. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/paypal_handler/icon.png +0 -0
  1778. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/paypal_handler/requirements.txt +0 -0
  1779. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pgvector_handler/__init__.py +0 -0
  1780. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pgvector_handler/icon.svg +0 -0
  1781. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/phoenix_handler/__init__.py +0 -0
  1782. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
  1783. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/sheets_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/phoenix_handler}/tests/__init__.py +0 -0
  1784. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +0 -0
  1785. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinecone_handler/__init__.py +0 -0
  1786. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinecone_handler/icon.svg +0 -0
  1787. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinecone_handler/requirements.txt +0 -0
  1788. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/singlestore_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinecone_handler}/tests/__init__.py +0 -0
  1789. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinot_handler/__init__.py +0 -0
  1790. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinot_handler/icon.png +0 -0
  1791. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinot_handler/requirements.txt +0 -0
  1792. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinot_handler}/tests/__init__.py +0 -0
  1793. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +0 -0
  1794. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pirateweather_handler/__init__.py +0 -0
  1795. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
  1796. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +0 -0
  1797. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/__init__.py +0 -0
  1798. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/icon.svg +0 -0
  1799. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +0 -0
  1800. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/requirements.txt +0 -0
  1801. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/utils.py +0 -0
  1802. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/planetscale_handler/__init__.py +0 -0
  1803. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/planetscale_handler/icon.svg +0 -0
  1804. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +0 -0
  1805. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +0 -0
  1806. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/postgres_handler/__init__.py +0 -0
  1807. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/postgres_handler/icon.svg +0 -0
  1808. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/snowflake_handler/tests → MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/test}/__init__.py +0 -0
  1809. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/__init__.py +0 -0
  1810. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/api.py +0 -0
  1811. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/icon.svg +0 -0
  1812. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +0 -0
  1813. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +0 -0
  1814. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/qdrant_handler/__init__.py +0 -0
  1815. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/qdrant_handler/icon.png +0 -0
  1816. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/qdrant_handler/requirements.txt +0 -0
  1817. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/questdb_handler/__init__.py +0 -0
  1818. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/questdb_handler/icon.svg +0 -0
  1819. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/solr_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/questdb_handler}/tests/__init__.py +0 -0
  1820. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +0 -0
  1821. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/quickbooks_handler/__init__.py +0 -0
  1822. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/quickbooks_handler/icon.svg +0 -0
  1823. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +0 -0
  1824. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +0 -0
  1825. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rag_handler/__init__.py +0 -0
  1826. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rag_handler/exceptions.py +0 -0
  1827. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ray_serve_handler/__init__.py +0 -0
  1828. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +0 -0
  1829. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/reddit_handler/__init__.py +0 -0
  1830. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/reddit_handler/icon.svg +0 -0
  1831. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +0 -0
  1832. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/reddit_handler/requirements.txt +0 -0
  1833. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/redshift_handler/__init__.py +0 -0
  1834. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/redshift_handler/icon.png +0 -0
  1835. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/redshift_handler/requirements.txt +0 -0
  1836. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlite_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/redshift_handler}/tests/__init__.py +0 -0
  1837. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +0 -0
  1838. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/__init__.py +0 -0
  1839. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
  1840. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
  1841. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
  1842. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +0 -0
  1843. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/requirements.txt +0 -0
  1844. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +0 -0
  1845. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +0 -0
  1846. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +0 -0
  1847. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +0 -0
  1848. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/__init__.py +0 -0
  1849. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/icon.png +0 -0
  1850. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqreamdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/rockset_handler}/tests/__init__.py +0 -0
  1851. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
  1852. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
  1853. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +0 -0
  1854. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/s3_handler/__init__.py +0 -0
  1855. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/s3_handler/icon.png +0 -0
  1856. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/starrocks_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/s3_handler}/tests/__init__.py +0 -0
  1857. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +0 -0
  1858. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/strapi_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler}/tests/__init__.py +0 -0
  1859. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/scylla_handler/__init__.py +0 -0
  1860. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/scylla_handler/logo.png +0 -0
  1861. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cassandra_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/scylla_handler}/requirements.txt +0 -0
  1862. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/supabase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/scylla_handler}/tests/__init__.py +0 -0
  1863. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +0 -0
  1864. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sendinblue_handler/__init__.py +0 -0
  1865. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sendinblue_handler/icon.png +0 -0
  1866. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +0 -0
  1867. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sentence_transformer_handler/__init__.py +0 -0
  1868. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sentence_transformer_handler/requirements.txt +0 -0
  1869. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sentence_transformer_handler/settings.py +0 -0
  1870. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/__init__.py +0 -0
  1871. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/icon.png +0 -0
  1872. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +0 -0
  1873. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +0 -0
  1874. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sharepoint_handler}/tests/__init__.py +0 -0
  1875. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +0 -0
  1876. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/utils.py +0 -0
  1877. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sheets_handler/__init__.py +0 -0
  1878. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sheets_handler/icon.png +0 -0
  1879. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler/utils → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sheets_handler/tests}/__init__.py +0 -0
  1880. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +0 -0
  1881. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/shopify_handler/__init__.py +0 -0
  1882. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/shopify_handler/icon.png +0 -0
  1883. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/singlestore_handler/__init__.py +0 -0
  1884. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/tdengine_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/singlestore_handler}/tests/__init__.py +0 -0
  1885. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +0 -0
  1886. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/slack_handler/__init__.py +0 -0
  1887. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/slack_handler/icon.svg +0 -0
  1888. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/tidb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler}/tests/__init__.py +0 -0
  1889. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/snowflake_handler/__init__.py +0 -0
  1890. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/snowflake_handler/requirements.txt +0 -0
  1891. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/timescaledb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/snowflake_handler}/tests/__init__.py +0 -0
  1892. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py +0 -0
  1893. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solace_handler/__init__.py +0 -0
  1894. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solace_handler/icon.png +0 -0
  1895. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solace_handler/requirements.txt +0 -0
  1896. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solr_handler/__init__.py +0 -0
  1897. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solr_handler/requirements.txt +0 -0
  1898. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solr_handler/solr.svg +0 -0
  1899. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/trino_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/solr_handler}/tests/__init__.py +0 -0
  1900. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +0 -0
  1901. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlany_handler/__init__.py +0 -0
  1902. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlany_handler/icon.svg +0 -0
  1903. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlany_handler/requirements.txt +0 -0
  1904. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlite_handler/__init__.py +0 -0
  1905. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlite_handler/icon.png +0 -0
  1906. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/utilities → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlite_handler/tests}/__init__.py +0 -0
  1907. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +0 -0
  1908. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +0 -0
  1909. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqreamdb_handler/icon.png +0 -0
  1910. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +0 -0
  1911. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertica_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqreamdb_handler}/tests/__init__.py +0 -0
  1912. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +0 -0
  1913. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/starrocks_handler/__init__.py +0 -0
  1914. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/starrocks_handler/icon.png +0 -0
  1915. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/vitess_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/starrocks_handler}/tests/__init__.py +0 -0
  1916. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +0 -0
  1917. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/statsforecast_handler/__init__.py +0 -0
  1918. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strapi_handler/__init__.py +0 -0
  1919. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strapi_handler/icon.svg +0 -0
  1920. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +0 -0
  1921. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/xata_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/strapi_handler}/tests/__init__.py +0 -0
  1922. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strava_handler/icon.png +0 -0
  1923. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strava_handler/requirements.txt +0 -0
  1924. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/stripe_handler/__init__.py +0 -0
  1925. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/stripe_handler/icon.png +0 -0
  1926. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/stripe_handler/requirements.txt +0 -0
  1927. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/supabase_handler/__init__.py +0 -0
  1928. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/supabase_handler/icon.svg +0 -0
  1929. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/yugabyte_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/supabase_handler}/tests/__init__.py +0 -0
  1930. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +0 -0
  1931. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/surrealdb_handler/__init__.py +0 -0
  1932. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/surrealdb_handler/icon.png +0 -0
  1933. {MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler}/tests/__init__.py +0 -0
  1934. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +0 -0
  1935. {MindsDB-23.11.1.0/mindsdb/integrations/handlers_client → MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler/utils}/__init__.py +0 -0
  1936. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +0 -0
  1937. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tdengine_handler/__init__.py +0 -0
  1938. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tdengine_handler/icon.svg +0 -0
  1939. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tdengine_handler/requirements.txt +0 -0
  1940. {MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper → MindsDB-23.11.4.1/mindsdb/integrations/handlers/tdengine_handler/tests}/__init__.py +0 -0
  1941. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +0 -0
  1942. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/teradata_handler/__init__.py +0 -0
  1943. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/teradata_handler/icon.svg +0 -0
  1944. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/teradata_handler/requirements.txt +0 -0
  1945. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tidb_handler/__init__.py +0 -0
  1946. {MindsDB-23.11.1.0/mindsdb/integrations/utilities → MindsDB-23.11.4.1/mindsdb/integrations/handlers/tidb_handler/tests}/__init__.py +0 -0
  1947. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +0 -0
  1948. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timegpt_handler/__init__.py +0 -0
  1949. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timegpt_handler/requirements.txt +0 -0
  1950. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +0 -0
  1951. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timescaledb_handler/__init__.py +0 -0
  1952. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timescaledb_handler/icon.svg +0 -0
  1953. {MindsDB-23.11.1.0/mindsdb/integrations/utilities/datasets → MindsDB-23.11.4.1/mindsdb/integrations/handlers/timescaledb_handler/tests}/__init__.py +0 -0
  1954. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +0 -0
  1955. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tpot_handler/__init__.py +0 -0
  1956. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +0 -0
  1957. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/trino_handler/__init__.py +0 -0
  1958. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/trino_handler/icon.png +0 -0
  1959. {MindsDB-23.11.1.0/mindsdb/interfaces/agents → MindsDB-23.11.4.1/mindsdb/integrations/handlers/trino_handler/tests}/__init__.py +0 -0
  1960. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +0 -0
  1961. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +0 -0
  1962. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +0 -0
  1963. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +0 -0
  1964. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +0 -0
  1965. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +0 -0
  1966. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twilio_handler/__init__.py +0 -0
  1967. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twilio_handler/icon.svg +0 -0
  1968. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twilio_handler/requirements.txt +0 -0
  1969. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twitter_handler/__init__.py +0 -0
  1970. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twitter_handler/icon.svg +0 -0
  1971. {MindsDB-23.11.1.0/mindsdb/interfaces/database → MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities}/__init__.py +0 -0
  1972. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/__init__.py +0 -0
  1973. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/delete_query_utilities.py +0 -0
  1974. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/exceptions.py +0 -0
  1975. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/insert_query_utilities.py +0 -0
  1976. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/update_query_utilities.py +0 -0
  1977. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertex_handler/__init__.py +0 -0
  1978. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertica_handler/__init__.py +0 -0
  1979. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertica_handler/icon.svg +0 -0
  1980. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertica_handler/requirements.txt +0 -0
  1981. {MindsDB-23.11.1.0/mindsdb/interfaces/file → MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertica_handler/tests}/__init__.py +0 -0
  1982. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +0 -0
  1983. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vitess_handler/__init__.py +0 -0
  1984. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vitess_handler/icon.svg +0 -0
  1985. {MindsDB-23.11.1.0/mindsdb/interfaces/jobs → MindsDB-23.11.4.1/mindsdb/integrations/handlers/vitess_handler/tests}/__init__.py +0 -0
  1986. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +0 -0
  1987. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/weaviate_handler/__init__.py +0 -0
  1988. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/weaviate_handler/icon.png +0 -0
  1989. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/weaviate_handler/requirements.txt +0 -0
  1990. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/web_handler/__init__.py +0 -0
  1991. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/web_handler/icon.png +0 -0
  1992. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/web_handler/requirements.txt +0 -0
  1993. {MindsDB-23.11.1.0/mindsdb/interfaces/knowledge_base → MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/tests}/__init__.py +0 -0
  1994. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/webz_handler/__init__.py +0 -0
  1995. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/webz_handler/icon.svg +0 -0
  1996. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/webz_handler/requirements.txt +0 -0
  1997. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/webz_handler/webz_tables.py +0 -0
  1998. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/writer_handler/__init__.py +0 -0
  1999. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/writer_handler/ingest.py +0 -0
  2000. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/writer_handler/rag.py +0 -0
  2001. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/xata_handler/__init__.py +0 -0
  2002. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/xata_handler/icon.svg +0 -0
  2003. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/xata_handler/requirements.txt +0 -0
  2004. {MindsDB-23.11.1.0/mindsdb/interfaces/model → MindsDB-23.11.4.1/mindsdb/integrations/handlers/xata_handler/tests}/__init__.py +0 -0
  2005. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/youtube_handler/icon.png +0 -0
  2006. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/youtube_handler/requirements.txt +0 -0
  2007. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/yugabyte_handler/__init__.py +0 -0
  2008. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/yugabyte_handler/icon.svg +0 -0
  2009. {MindsDB-23.11.1.0/mindsdb/interfaces/query_context → MindsDB-23.11.4.1/mindsdb/integrations/handlers/yugabyte_handler/tests}/__init__.py +0 -0
  2010. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +0 -0
  2011. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +0 -0
  2012. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +0 -0
  2013. {MindsDB-23.11.1.0/mindsdb/interfaces/stream → MindsDB-23.11.4.1/mindsdb/integrations/handlers/zipcodebase_handler/tests}/__init__.py +0 -0
  2014. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +0 -0
  2015. {MindsDB-23.11.1.0/mindsdb/interfaces/tasks → MindsDB-23.11.4.1/mindsdb/integrations/handlers_client}/__init__.py +0 -0
  2016. {MindsDB-23.11.1.0/mindsdb/interfaces/triggers → MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper}/__init__.py +0 -0
  2017. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/__init__.py +0 -0
  2018. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/api_handler.py +0 -0
  2019. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/api_handler_exceptions.py +0 -0
  2020. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/const.py +0 -0
  2021. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/llm_utils.py +0 -0
  2022. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/net_helpers.py +0 -0
  2023. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/process_cache.py +0 -0
  2024. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/realtime_chat_handler.py +0 -0
  2025. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/storage_handler.py +0 -0
  2026. {MindsDB-23.11.1.0/mindsdb/microservices_grpc → MindsDB-23.11.4.1/mindsdb/integrations/utilities}/__init__.py +0 -0
  2027. {MindsDB-23.11.1.0/mindsdb/microservices_grpc/db → MindsDB-23.11.4.1/mindsdb/integrations/utilities/datasets}/__init__.py +0 -0
  2028. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/datasets/dataset.py +0 -0
  2029. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +0 -0
  2030. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +0 -0
  2031. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/date_utils.py +0 -0
  2032. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/handler_utils.py +0 -0
  2033. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/install.py +0 -0
  2034. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/processes.py +0 -0
  2035. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/sql_utils.py +0 -0
  2036. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/test_utils.py +0 -0
  2037. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/__init__.py +0 -0
  2038. {MindsDB-23.11.1.0/mindsdb/microservices_grpc/executor → MindsDB-23.11.4.1/mindsdb/interfaces/agents}/__init__.py +0 -0
  2039. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/chatbot/__init__.py +0 -0
  2040. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/chatbot/memory.py +0 -0
  2041. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/chatbot/types.py +0 -0
  2042. {MindsDB-23.11.1.0/mindsdb/microservices_grpc/ml → MindsDB-23.11.4.1/mindsdb/interfaces/database}/__init__.py +0 -0
  2043. {MindsDB-23.11.1.0/mindsdb/migrations → MindsDB-23.11.4.1/mindsdb/interfaces/file}/__init__.py +0 -0
  2044. {MindsDB-23.11.1.0/mindsdb/migrations/versions → MindsDB-23.11.4.1/mindsdb/interfaces/jobs}/__init__.py +0 -0
  2045. {MindsDB-23.11.1.0/mindsdb/utilities → MindsDB-23.11.4.1/mindsdb/interfaces/knowledge_base}/__init__.py +0 -0
  2046. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/skills/__init__.py +0 -0
  2047. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/storage/__init__.py +0 -0
  2048. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/stream/base/__init__.py +0 -0
  2049. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/stream/utilities.py +0 -0
  2050. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/tasks/task.py +0 -0
  2051. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/triggers/triggers_controller.py +0 -0
  2052. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/db/common_pb2.py +0 -0
  2053. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/db/common_pb2_grpc.py +0 -0
  2054. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/db/db_pb2.py +0 -0
  2055. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/db/db_pb2_grpc.py +0 -0
  2056. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/executor/executor_pb2.py +0 -0
  2057. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/executor/executor_pb2_grpc.py +0 -0
  2058. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/ml/common_pb2.py +0 -0
  2059. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/ml/common_pb2_grpc.py +0 -0
  2060. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/ml/ml_pb2.py +0 -0
  2061. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/ml/ml_pb2_grpc.py +0 -0
  2062. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +0 -0
  2063. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +0 -0
  2064. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +0 -0
  2065. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +0 -0
  2066. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +0 -0
  2067. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +0 -0
  2068. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +0 -0
  2069. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +0 -0
  2070. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +0 -0
  2071. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +0 -0
  2072. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +0 -0
  2073. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +0 -0
  2074. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +0 -0
  2075. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +0 -0
  2076. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +0 -0
  2077. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +0 -0
  2078. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +0 -0
  2079. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +0 -0
  2080. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +0 -0
  2081. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +0 -0
  2082. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +0 -0
  2083. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +0 -0
  2084. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +0 -0
  2085. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +0 -0
  2086. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +0 -0
  2087. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +0 -0
  2088. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +0 -0
  2089. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +0 -0
  2090. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +0 -0
  2091. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +0 -0
  2092. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +0 -0
  2093. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +0 -0
  2094. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +0 -0
  2095. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +0 -0
  2096. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +0 -0
  2097. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +0 -0
  2098. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +0 -0
  2099. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/auth.py +0 -0
  2100. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/cache.py +0 -0
  2101. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/config.py +0 -0
  2102. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/context.py +0 -0
  2103. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/hooks/__init__.py +0 -0
  2104. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/log_controller.py +0 -0
  2105. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/__init__.py +0 -0
  2106. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/base.py +0 -0
  2107. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/const.py +0 -0
  2108. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/task.py +0 -0
  2109. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/utils.py +0 -0
  2110. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/profiler/__init__.py +0 -0
  2111. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/profiler/profiler.py +0 -0
  2112. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ps.py +0 -0
  2113. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/telemetry.py +0 -0
  2114. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/wizards.py +0 -0
  2115. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/pyproject.toml +0 -0
  2116. {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/setup.cfg +0 -0
@@ -0,0 +1,86 @@
1
+
2
+ # Understanding the Diverse Licensing Structure of MindsDB's Repo
3
+
4
+ 1. MindsDB Core: The MindsDB Core component specifically uses the Elastic License 2.0. This is a distinct license that applies to this particular part of the project.
5
+
6
+ 2. License File in Work's Directory: If there is a LICENSE file located in the same directory as the work, that license will apply to the work:
7
+ * `/mindsdb/integraions` directory that contains all integrations is Licensed under MIT License.
8
+
9
+ 3. Default to Elastic License 2.0: If no specific LICENSE file is found following the above rules, the work defaults to being licensed under the Elastic License 2.0.
10
+
11
+ For any questions or clarifications regarding licensing, please contact us at (admin@mindsdb.com).
12
+
13
+ ------------------------------------------------------------------------------------
14
+ ## MIT License
15
+
16
+ Copyright (c) 2019 MindsDB, Inc.
17
+
18
+ Permission is hereby granted, free of charge, to any person obtaining a copy
19
+ of this software and associated documentation files (the "Software"), to deal
20
+ in the Software without restriction, including without limitation the rights
21
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
22
+ copies of the Software, and to permit persons to whom the Software is
23
+ furnished to do so, subject to the following conditions:
24
+
25
+ The above copyright notice and this permission notice shall be included in all
26
+ copies or substantial portions of the Software.
27
+
28
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
33
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34
+ SOFTWARE.
35
+
36
+ ------------------------------------------------------------------------------------
37
+
38
+ # Elastic License 2.0 (ELv2)
39
+
40
+ ### Acceptance
41
+
42
+ By using the software, you agree to all of the terms and conditions below.
43
+
44
+ ### Copyright License
45
+
46
+ The licensor grants you a non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, distribute, make available, and prepare derivative works of the software, in each case subject to the limitations and conditions below.
47
+
48
+ ### Limitations
49
+
50
+ You may not provide the software to third parties as a hosted or managed service, where the service provides users with access to any substantial set of the features or functionality of the software.
51
+ You may not move, change, disable, or circumvent the license key functionality in the software, and you may not remove or obscure any functionality in the software that is protected by the license key.
52
+ You may not alter, remove, or obscure any licensing, copyright, or other notices of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law.
53
+
54
+ ### Patents
55
+ The licensor grants you a license, under any patent claims the licensor can license, or becomes able to license, to make, have made, use, sell, offer for sale, import and have imported the software, in each case subject to the limitations and conditions in this license. This license does not cover any patent claims that you cause to be infringed by modifications or additions to the software. If you or your company make any written claim that the software infringes or contributes to infringement of any patent, your patent license for the software granted under these terms ends immediately. If your company makes such a claim, your patent license ends immediately for work on behalf of your company.
56
+
57
+ ### Notices
58
+
59
+ You must ensure that anyone who gets a copy of any part of the software from you also gets a copy of these terms.
60
+ If you modify the software, you must include in any modified copies of the software prominent notices stating that you have modified the software.
61
+
62
+ ### No Other Rights
63
+
64
+ These terms do not imply any licenses other than those expressly granted in these terms.
65
+
66
+ ### Termination
67
+
68
+ If you use the software in violation of these terms, such use is not licensed, and your licenses will automatically terminate. If the licensor provides you with a notice of your violation, and you cease all violation of this license no later than 30 days after you receive that notice, your licenses will be reinstated retroactively. However, if you violate these terms after such reinstatement, any additional violation of these terms will cause your licenses to terminate automatically and permanently.
69
+
70
+ ### No Liability
71
+
72
+ As far as the law allows, the software comes as is, without any warranty or condition, and the licensor will not be liable to you for any damages arising out of these terms or the use or nature of the software, under any kind of legal claim.
73
+
74
+ ### Definitions
75
+
76
+ The licensor is the entity offering these terms, and the software is the software the licensor makes available under these terms, including any portion of it.
77
+
78
+ **you** refers to the individual or entity agreeing to these terms.
79
+
80
+ **your company** is any legal entity, sole proprietorship, or other kind of organization that you work for, plus all organizations that have control over, are under the control of, or are under common control with that organization. control means ownership of substantially all the assets of an entity, or the power to direct its management and policies by vote, contract, or otherwise. Control can be direct or indirect.
81
+
82
+ **your licenses** are all the licenses granted to you for the software under these terms.
83
+
84
+ **use** means anything you do with the software requiring one of your licenses.
85
+
86
+ **trademark** means trademarks, service marks, and similar rights.
@@ -0,0 +1,333 @@
1
+ Metadata-Version: 2.1
2
+ Name: MindsDB
3
+ Version: 23.11.4.1
4
+ Summary: MindsDB server, provides server capabilities to mindsdb native python library
5
+ Home-page: https://github.com/mindsdb/mindsdb
6
+ Download-URL: https://pypi.org/project/mindsdb/
7
+ Author: MindsDB Inc
8
+ Author-email: jorge@mindsdb.com
9
+ License: ELv2
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ Provides-Extra: test
15
+ Provides-Extra: grpc
16
+ Provides-Extra: dev
17
+ Provides-Extra: all_extras
18
+ Provides-Extra: cohere
19
+ Provides-Extra: mongodb
20
+ Provides-Extra: google_calendar
21
+ Provides-Extra: orioledb
22
+ Provides-Extra: youtube
23
+ Provides-Extra: coinbase
24
+ Provides-Extra: oracle
25
+ Provides-Extra: sentence_transformer
26
+ Provides-Extra: lindorm
27
+ Provides-Extra: discord
28
+ Provides-Extra: opengauss
29
+ Provides-Extra: chromadb
30
+ Provides-Extra: influxdb
31
+ Provides-Extra: nuo_jdbc
32
+ Provides-Extra: sendinblue
33
+ Provides-Extra: merlion
34
+ Provides-Extra: confluence
35
+ Provides-Extra: frappe
36
+ Provides-Extra: cloud_sql
37
+ Provides-Extra: openbb
38
+ Provides-Extra: flaml
39
+ Provides-Extra: huggingface
40
+ Provides-Extra: huggingface-cpu
41
+ Provides-Extra: pinecone
42
+ Provides-Extra: empress
43
+ Provides-Extra: reddit
44
+ Provides-Extra: timegpt
45
+ Provides-Extra: eventbrite
46
+ Provides-Extra: symbl
47
+ Provides-Extra: couchbase
48
+ Provides-Extra: slack
49
+ Provides-Extra: strava
50
+ Provides-Extra: quickbooks
51
+ Provides-Extra: redshift
52
+ Provides-Extra: file
53
+ Provides-Extra: github
54
+ Provides-Extra: vitess
55
+ Provides-Extra: web
56
+ Provides-Extra: luma
57
+ Provides-Extra: impala
58
+ Provides-Extra: tdengine
59
+ Provides-Extra: huggingface_api
60
+ Provides-Extra: ignite
61
+ Provides-Extra: hive
62
+ Provides-Extra: teradata
63
+ Provides-Extra: d0lt
64
+ Provides-Extra: google_books
65
+ Provides-Extra: edgelessdb
66
+ Provides-Extra: matrixone
67
+ Provides-Extra: elasticsearch
68
+ Provides-Extra: xata
69
+ Provides-Extra: google_fit
70
+ Provides-Extra: supabase
71
+ Provides-Extra: solace
72
+ Provides-Extra: weaviate
73
+ Provides-Extra: altibase
74
+ Provides-Extra: openstreetmap
75
+ Provides-Extra: lightfm
76
+ Provides-Extra: ms_teams
77
+ Provides-Extra: hana
78
+ Provides-Extra: access
79
+ Provides-Extra: bigquery
80
+ Provides-Extra: autosklearn
81
+ Provides-Extra: vertica
82
+ Provides-Extra: crate
83
+ Provides-Extra: twitter
84
+ Provides-Extra: snowflake
85
+ Provides-Extra: druid
86
+ Provides-Extra: statsforecast
87
+ Provides-Extra: statsforecast-extra
88
+ Provides-Extra: hubspot
89
+ Provides-Extra: aerospike
90
+ Provides-Extra: jira
91
+ Provides-Extra: singlestore
92
+ Provides-Extra: firebird
93
+ Provides-Extra: stripe
94
+ Provides-Extra: db2
95
+ Provides-Extra: writer
96
+ Provides-Extra: llama_index
97
+ Provides-Extra: rocket_chat
98
+ Provides-Extra: databricks
99
+ Provides-Extra: milvus
100
+ Provides-Extra: documentdb
101
+ Provides-Extra: dremio
102
+ Provides-Extra: mssql
103
+ Provides-Extra: langchain_embedding
104
+ Provides-Extra: stabilityai
105
+ Provides-Extra: timescaledb
106
+ Provides-Extra: mlflow
107
+ Provides-Extra: notion
108
+ Provides-Extra: sqlany
109
+ Provides-Extra: google_content_shopping
110
+ Provides-Extra: autogluon
111
+ Provides-Extra: oceanbase
112
+ Provides-Extra: ckan
113
+ Provides-Extra: cockroach
114
+ Provides-Extra: langchain
115
+ Provides-Extra: monetdb
116
+ Provides-Extra: trino
117
+ Provides-Extra: sqreamdb
118
+ Provides-Extra: gitlab
119
+ Provides-Extra: maxdb
120
+ Provides-Extra: paypal
121
+ Provides-Extra: rockset
122
+ Provides-Extra: solr
123
+ Provides-Extra: shopify
124
+ Provides-Extra: tidb
125
+ Provides-Extra: webz
126
+ Provides-Extra: anthropic
127
+ Provides-Extra: tpot
128
+ Provides-Extra: apache_doris
129
+ Provides-Extra: popularity_recommender
130
+ Provides-Extra: lancedb
131
+ Provides-Extra: derby
132
+ Provides-Extra: lightwood
133
+ Provides-Extra: autokeras
134
+ Provides-Extra: scylla
135
+ Provides-Extra: qdrant
136
+ Provides-Extra: clickhouse
137
+ Provides-Extra: phoenix
138
+ Provides-Extra: questdb
139
+ Provides-Extra: byom
140
+ Provides-Extra: replicate
141
+ Provides-Extra: pgvector
142
+ Provides-Extra: pinot
143
+ Provides-Extra: materialize
144
+ Provides-Extra: yugabyte
145
+ Provides-Extra: planetscale
146
+ Provides-Extra: starrocks
147
+ Provides-Extra: twilio
148
+ Provides-Extra: anomaly_detection
149
+ Provides-Extra: cassandra
150
+ Provides-Extra: ingres
151
+ Provides-Extra: informix
152
+ Provides-Extra: palm
153
+ Provides-Extra: anyscale_endpoints
154
+ Provides-Extra: binance
155
+ Provides-Extra: openai
156
+ Provides-Extra: mediawiki
157
+ Provides-Extra: mendeley
158
+ Provides-Extra: databend
159
+ Provides-Extra: cloud_spanner
160
+ Provides-Extra: gmail
161
+ Provides-Extra: hsqldb
162
+ Provides-Extra: mariadb
163
+ Provides-Extra: kinetica
164
+ Provides-Extra: newsapi
165
+ Provides-Extra: monkeylearn
166
+ Provides-Extra: mysql
167
+ Provides-Extra: google_search
168
+ Provides-Extra: aurora
169
+ Provides-Extra: surrealdb
170
+ Provides-Extra: datastax
171
+ Provides-Extra: pycaret
172
+ Provides-Extra: spacy
173
+ Provides-Extra: plaid
174
+ Provides-Extra: ludwig
175
+ Provides-Extra: rag
176
+ Provides-Extra: neuralforecast
177
+ Provides-Extra: neuralforecast-extra
178
+ Provides-Extra: faunadb
179
+ Provides-Extra: all_handlers_extras
180
+ License-File: LICENSE
181
+
182
+ <h1 align="center">
183
+ <img width="300" src="https://github.com/mindsdb/mindsdb_native/blob/stable/assets/MindsDBColorPurp@3x.png?raw=true" alt="MindsDB">
184
+ <br>
185
+ </h1>
186
+
187
+ <div align="center">
188
+
189
+ <a
190
+ href="https://runacap.com/ross-index/annual-2022/"
191
+ target="_blank"
192
+ rel="noopener"
193
+ />
194
+ <img
195
+ style="width: 260px; height: 56px"
196
+ src="https://runacap.com/wp-content/uploads/2023/02/Annual_ROSS_badge_white_2022.svg"
197
+ alt="ROSS Index - Fastest Growing Open-Source Startups | Runa Capital"
198
+ width="260"
199
+ height="56"
200
+ />
201
+ </a>
202
+
203
+ <p>
204
+ <a href="https://github.com/mindsdb/mindsdb/actions"><img src="https://github.com/mindsdb/mindsdb/actions/workflows/release.yml/badge.svg" alt="MindsDB Release"></a>
205
+ <a href="https://www.python.org/downloads/" target="_blank"><img src="https://img.shields.io/badge/python-3.8.x%7C%203.9.x%7C%203.10.x%7C%203.11.x-brightgreen.svg" alt="Python supported"></a>
206
+ <a href="https://pypi.org/project/MindsDB/" target="_blank"><img src="https://badge.fury.io/py/MindsDB.svg" alt="PyPi Version"></a>
207
+ <br />
208
+ <img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/Mindsdb"> <a href="https://hub.docker.com/u/mindsdb" target="_blank"><img src="https://img.shields.io/docker/pulls/mindsdb/mindsdb" alt="Docker pulls"></a>
209
+ <a href="https://ossrank.com/p/630"><img src="https://shields.io/endpoint?url=https://ossrank.com/shield/630"></a>
210
+ <a href="https://www.mindsdb.com/"><img src="https://img.shields.io/website?url=https%3A%2F%2Fwww.mindsdb.com%2F" alt="MindsDB Website"></a>
211
+ <a href="https://mindsdb.com/joincommunity" target="_blank"><img src="https://img.shields.io/badge/slack-@mindsdbcommunity-brightgreen.svg?logo=slack " alt="MindsDB Community"></a>
212
+ <br />
213
+ <a href="https://deepnote.com/project/Machine-Learning-With-SQL-8GDF7bc7SzKlhBLorqoIcw/%2Fmindsdb_demo.ipynb" target="_blank"><img src="https://deepnote.com/buttons/launch-in-deepnote-white.svg" alt="Launch in Deepnote"></a>
214
+ <br />
215
+ <a href="https://gitpod.io/#https://github.com/mindsdb/mindsdb" target="_blank"><img src="https://gitpod.io/button/open-in-gitpod.svg" alt="Open in Gitpod"></a>
216
+ </p>
217
+
218
+ <h3 align="center">
219
+ <a href="https://www.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Website</a>
220
+ <span> | </span>
221
+ <a href="https://docs.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Docs</a>
222
+ <span> | </span>
223
+ <a href="https://mindsdb.com/joincommunity">Community Slack</a>
224
+ <span> | </span>
225
+ <a href="https://github.com/mindsdb/mindsdb/projects?type=classic">Contribute</a>
226
+ <span> | </span>
227
+ <a href="https://cloud.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Demo</a>
228
+ <span> | </span>
229
+ <a href="https://mindsdb.com/hackerminds-ai-app-challenge">Hackathon</a>
230
+ </h3>
231
+
232
+ </div>
233
+
234
+ ----------------------------------------
235
+
236
+ [MindsDB's](https://mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo) **AI Virtual Database** empowers developers to connect any AI/ML model to any datasource. This includes relational and non-relational databases, data warehouses and SaaS applications.
237
+ [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Build%20AI-Centered%20Applications%20&url=https://www.mindsdb.com&via=mindsdb&hashtags=ai,ml,nlp,machine_learning,neural_networks,databases,gpt3)
238
+
239
+ MindsDB offers two primary benefits to its users.
240
+ 1. Hook AI models to run automatically as new data is observed and plug the output into any of our integrations.
241
+ 2. Automate training and finetuning AI models from data contained in any of the 130+ datasources we support.
242
+
243
+ <img width="1089" alt="image" src="https://github.com/mindsdb/mindsdb/assets/5898506/5451fe7e-a854-4c53-b34b-769b6c7c9863">
244
+
245
+ [Installation](#Installation)- [How it works](#Howitworks) - [DatabaseIntegrations](#DatabaseIntegrations) - [Documentation](#Documentation) - [Support](#Support) - [Contributing](#Contributing)
246
+ [Current contributors](#Currentcontributors) - [License](#License)
247
+
248
+ ----------------------------------------
249
+
250
+
251
+
252
+
253
+ ## Installation <a name="Installation"></a>
254
+
255
+ The preferred way is to use MindsDB Cloud [free demo instance](https://cloud.mindsdb.com/home) or use a [dedicated instance](https://cloud.mindsdb.com/home). If you want to move to production, use [the AWS AMI image](https://aws.amazon.com/marketplace/seller-profile?id=03a65520-86ca-4ab8-a394-c11eb54573a9).
256
+
257
+ To install locally or on-premise, pull the latest Docker image:
258
+
259
+ ```
260
+ docker pull mindsdb/mindsdb
261
+ ```
262
+
263
+ ## How it works <a name="How it works"></a>
264
+
265
+ 1. **Connect:** Link MindsDB to your data platform. With support for hundreds of integrations and counting, we're constantly expanding our list.
266
+ 2. **Create Model:** Select an AI Engine to learn from your data. Models are provisioned and deployed instantly for inference.
267
+ - Choose from pre-trained models like OpenAI's GPT, Hugging Face, LangChain, etc., for NLP and generative AI.
268
+ - Or select from a range of state-of-the-art engines for classic ML tasks (regression, classification, time-series).
269
+ - Even [import custom models](https://docs.mindsdb.com/custom-model/byom) built with any ML framework.
270
+ 3. **Query Models:** Use [SELECT statements](https://docs.mindsdb.com/sql/api/select), [API calls](https://docs.mindsdb.com/rest/usage), or [JOIN commands](https://docs.mindsdb.com/sql/api/join) to make predictions on thousands or millions of data points simultaneously.
271
+ 4. **Fine-Tune Models:** Experiment and [Fine-Tune](https://docs.mindsdb.com/sql/api/finetune) to achieve optimal results.
272
+ 5. **Automate Workflows:** Streamline operations with [JOBS](https://docs.mindsdb.com/sql/create/jobs).
273
+
274
+ Follow the [quickstart guide](https://docs.mindsdb.com/quickstart?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo) with sample data to get on-boarded as fast as possible.
275
+
276
+
277
+ ## Data Integrations <a name="DatabaseIntegrations"></a>
278
+
279
+ MindsDB works with most SQL, NoSQL databases, data warehouses, and popular applications. You can find the list of all supported integrations [here](https://docs.mindsdb.com/data-integrations/all-data-integrations).
280
+
281
+
282
+ [:question: :wave: Missing integration?](https://github.com/mindsdb/mindsdb/issues/new?assignees=&labels=&template=feature-mindsdb-request.yaml)
283
+
284
+
285
+ ## Documentation <a name="Documentation"></a>
286
+
287
+ You can find the complete documentation of MindsDB at [docs.mindsdb.com](https://docs.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
288
+
289
+ ## Support <a name="Support"></a>
290
+
291
+ If you found a bug, please submit an [issue on GitHub](https://github.com/mindsdb/mindsdb/issues/new/choose).
292
+
293
+ To get community support, you can:
294
+
295
+ * Post a question at MindsDB [Slack community](https://mindsdb.com/joincommunity).
296
+ * Ask for help at our [GitHub Discussions](https://github.com/mindsdb/mindsdb/discussions).
297
+ * Ask a question at [Stackoverflow](https://stackoverflow.com/questions/tagged/mindsdb) with a MindsDB tag.
298
+
299
+ If you need commercial support, please [contact](https://mindsdb.com/contact/?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo) MindsDB team.
300
+
301
+ ## Contributing <a name="Contributing"></a>
302
+
303
+ A great place to start contributing to MindsDB is to check our GitHub projects :checkered_flag:
304
+
305
+ * Community contributor's [dashboard tasks](https://github.com/mindsdb/mindsdb/projects/8).
306
+ * [First timers only issues](https://github.com/mindsdb/mindsdb/issues?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only), if this is your first time contributing to an open source project.
307
+
308
+ We are always open to suggestions, so feel free to open new issues with your ideas, and we can guide you!
309
+
310
+ Being part of the core team is accessible to anyone who is motivated and wants to be part of that journey!
311
+ If you'd like to contribute to the project, refer to the [contributing documentation](https://docs.mindsdb.com/contribute/?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
312
+
313
+ This project is released with a [Contributor Code of Conduct](https://github.com/mindsdb/mindsdb/blob/stable/CODE_OF_CONDUCT.md). By participating in this project, you agree to follow its terms.
314
+
315
+ Also, check out the [rewards and community programs](https://mindsdb.com/community?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
316
+
317
+
318
+ ### Current contributors <a name="Current contributors"></a>
319
+
320
+ <a href="https://github.com/mindsdb/mindsdb/graphs/contributors">
321
+ <img src="https://contributors-img.web.app/image?repo=mindsdb/mindsdb" />
322
+ </a>
323
+
324
+ Made with [contributors-img](https://contributors-img.web.app).
325
+
326
+ ## Subscribe to updates
327
+
328
+ Join our [Slack community](https://mindsdb.com/joincommunity) and subscribe to the monthly [Developer Newsletter](https://mindsdb.com/newsletter/?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo) to get product updates, information about MindsDB events and contests, and useful content, like tutorials.
329
+
330
+
331
+ ## License <a name="License"></a>
332
+
333
+ For detailed licensing information, please refer to the [LICENSE file](https://github.com/mindsdb/mindsdb/blob/master/LICENSE)