MindsDB 25.9.2.0a1__tar.gz → 25.10.0rc1__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 (2111) hide show
  1. mindsdb-25.10.0rc1/MindsDB.egg-info/PKG-INFO +970 -0
  2. mindsdb-25.10.0rc1/MindsDB.egg-info/SOURCES.txt +1951 -0
  3. mindsdb-25.10.0rc1/MindsDB.egg-info/requires.txt +1010 -0
  4. mindsdb-25.10.0rc1/PKG-INFO +970 -0
  5. mindsdb-25.10.0rc1/mindsdb/__about__.py +10 -0
  6. mindsdb-25.10.0rc1/mindsdb/__main__.py +582 -0
  7. mindsdb-25.10.0rc1/mindsdb/api/a2a/__init__.py +52 -0
  8. mindsdb-25.10.0rc1/mindsdb/api/a2a/agent.py +151 -0
  9. mindsdb-25.10.0rc1/mindsdb/api/a2a/common/server/server.py +164 -0
  10. mindsdb-25.10.0rc1/mindsdb/api/a2a/common/server/task_manager.py +280 -0
  11. mindsdb-25.10.0rc1/mindsdb/api/a2a/common/types.py +430 -0
  12. mindsdb-25.10.0rc1/mindsdb/api/a2a/task_manager.py +524 -0
  13. mindsdb-25.10.0rc1/mindsdb/api/common/middleware.py +104 -0
  14. mindsdb-25.10.0rc1/mindsdb/api/executor/command_executor.py +2047 -0
  15. mindsdb-25.10.0rc1/mindsdb/api/executor/datahub/datanodes/datanode.py +25 -0
  16. mindsdb-25.10.0rc1/mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +239 -0
  17. mindsdb-25.10.0rc1/mindsdb/api/executor/datahub/datanodes/integration_datanode.py +334 -0
  18. mindsdb-25.10.0rc1/mindsdb/api/executor/datahub/datanodes/project_datanode.py +197 -0
  19. mindsdb-25.10.0rc1/mindsdb/api/executor/datahub/datanodes/system_tables.py +819 -0
  20. mindsdb-25.10.0rc1/mindsdb/api/executor/exceptions.py +58 -0
  21. mindsdb-25.10.0rc1/mindsdb/api/executor/planner/plan_join.py +647 -0
  22. mindsdb-25.10.0rc1/mindsdb/api/executor/planner/query_prepare.py +490 -0
  23. mindsdb-25.10.0rc1/mindsdb/api/executor/sql_query/sql_query.py +319 -0
  24. mindsdb-25.10.0rc1/mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +121 -0
  25. mindsdb-25.10.0rc1/mindsdb/api/executor/sql_query/steps/subselect_step.py +219 -0
  26. mindsdb-25.10.0rc1/mindsdb/api/executor/utilities/functions.py +37 -0
  27. mindsdb-25.10.0rc1/mindsdb/api/executor/utilities/sql.py +281 -0
  28. mindsdb-25.10.0rc1/mindsdb/api/http/gui.py +89 -0
  29. mindsdb-25.10.0rc1/mindsdb/api/http/initialize.py +469 -0
  30. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/agents.py +420 -0
  31. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/analysis.py +123 -0
  32. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/auth.py +159 -0
  33. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/chatbots.py +277 -0
  34. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/config.py +234 -0
  35. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/databases.py +400 -0
  36. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/file.py +232 -0
  37. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/handlers.py +232 -0
  38. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/knowledge_bases.py +422 -0
  39. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/models.py +265 -0
  40. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/projects.py +37 -0
  41. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/sql.py +161 -0
  42. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/tab.py +121 -0
  43. mindsdb-25.10.0rc1/mindsdb/api/http/namespaces/views.py +136 -0
  44. mindsdb-25.10.0rc1/mindsdb/api/http/start.py +60 -0
  45. mindsdb-25.10.0rc1/mindsdb/api/mcp/__init__.py +166 -0
  46. mindsdb-25.10.0rc1/mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +109 -0
  47. mindsdb-25.10.0rc1/mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +847 -0
  48. mindsdb-25.10.0rc1/mindsdb/api/mysql/mysql_proxy/utilities/dump.py +409 -0
  49. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/byom_handler/byom_handler.py +653 -0
  50. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +313 -0
  51. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/druid_handler/druid_handler.py +208 -0
  52. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/file_handler/file_handler.py +216 -0
  53. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +88 -0
  54. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/lightwood_handler/functions.py +218 -0
  55. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +666 -0
  56. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/mssql_handler/requirements_odbc.txt +3 -0
  57. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +548 -0
  58. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/oracle_handler/__init__.py +30 -0
  59. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/oracle_handler/connection_args.py +82 -0
  60. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +698 -0
  61. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -0
  62. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +775 -0
  63. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +157 -0
  64. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +727 -0
  65. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +3 -0
  66. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +3 -0
  67. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +359 -0
  68. mindsdb-25.10.0rc1/mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +496 -0
  69. mindsdb-25.10.0rc1/mindsdb/integrations/libs/api_handler.py +665 -0
  70. mindsdb-25.10.0rc1/mindsdb/integrations/libs/base.py +510 -0
  71. mindsdb-25.10.0rc1/mindsdb/integrations/libs/llm/utils.py +593 -0
  72. mindsdb-25.10.0rc1/mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +25 -0
  73. mindsdb-25.10.0rc1/mindsdb/integrations/libs/ml_handler_process/func_call_process.py +21 -0
  74. mindsdb-25.10.0rc1/mindsdb/integrations/libs/ml_handler_process/learn_process.py +151 -0
  75. mindsdb-25.10.0rc1/mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +25 -0
  76. mindsdb-25.10.0rc1/mindsdb/integrations/libs/ml_handler_process/update_process.py +22 -0
  77. mindsdb-25.10.0rc1/mindsdb/integrations/libs/process_cache.py +422 -0
  78. mindsdb-25.10.0rc1/mindsdb/integrations/libs/response.py +169 -0
  79. mindsdb-25.10.0rc1/mindsdb/integrations/libs/vectordatabase_handler.py +626 -0
  80. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/files/file_reader.py +383 -0
  81. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/__init__.py +1 -0
  82. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/handlers/auth_utilities/snowflake/snowflake_jwt_gen.py +151 -0
  83. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/config_loader.py +88 -0
  84. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +410 -0
  85. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +99 -0
  86. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +805 -0
  87. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/settings.py +848 -0
  88. mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/splitters/file_splitter.py +122 -0
  89. mindsdb-25.10.0rc1/mindsdb/interfaces/agents/agents_controller.py +758 -0
  90. mindsdb-25.10.0rc1/mindsdb/interfaces/agents/constants.py +286 -0
  91. mindsdb-25.10.0rc1/mindsdb/interfaces/agents/litellm_server.py +321 -0
  92. mindsdb-25.10.0rc1/mindsdb/interfaces/agents/mcp_client_agent.py +260 -0
  93. mindsdb-25.10.0rc1/mindsdb/interfaces/agents/mindsdb_database_agent.py +129 -0
  94. mindsdb-25.10.0rc1/mindsdb/interfaces/agents/run_mcp_agent.py +196 -0
  95. mindsdb-25.10.0rc1/mindsdb/interfaces/chatbot/chatbot_task.py +182 -0
  96. mindsdb-25.10.0rc1/mindsdb/interfaces/chatbot/polling.py +245 -0
  97. mindsdb-25.10.0rc1/mindsdb/interfaces/data_catalog/data_catalog_loader.py +388 -0
  98. mindsdb-25.10.0rc1/mindsdb/interfaces/data_catalog/data_catalog_reader.py +68 -0
  99. mindsdb-25.10.0rc1/mindsdb/interfaces/database/data_handlers_cache.py +190 -0
  100. mindsdb-25.10.0rc1/mindsdb/interfaces/database/database.py +172 -0
  101. mindsdb-25.10.0rc1/mindsdb/interfaces/database/integrations.py +835 -0
  102. mindsdb-25.10.0rc1/mindsdb/interfaces/database/projects.py +581 -0
  103. mindsdb-25.10.0rc1/mindsdb/interfaces/database/views.py +149 -0
  104. mindsdb-25.10.0rc1/mindsdb/interfaces/file/file_controller.py +231 -0
  105. mindsdb-25.10.0rc1/mindsdb/interfaces/functions/controller.py +237 -0
  106. mindsdb-25.10.0rc1/mindsdb/interfaces/functions/to_markdown.py +112 -0
  107. mindsdb-25.10.0rc1/mindsdb/interfaces/jobs/jobs_controller.py +538 -0
  108. mindsdb-25.10.0rc1/mindsdb/interfaces/jobs/scheduler.py +137 -0
  109. mindsdb-25.10.0rc1/mindsdb/interfaces/knowledge_base/controller.py +1533 -0
  110. mindsdb-25.10.0rc1/mindsdb/interfaces/knowledge_base/evaluate.py +567 -0
  111. mindsdb-25.10.0rc1/mindsdb/interfaces/knowledge_base/executor.py +381 -0
  112. mindsdb-25.10.0rc1/mindsdb/interfaces/knowledge_base/llm_client.py +108 -0
  113. mindsdb-25.10.0rc1/mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +413 -0
  114. mindsdb-25.10.0rc1/mindsdb/interfaces/model/model_controller.py +490 -0
  115. mindsdb-25.10.0rc1/mindsdb/interfaces/query_context/context_controller.py +586 -0
  116. mindsdb-25.10.0rc1/mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +221 -0
  117. mindsdb-25.10.0rc1/mindsdb/interfaces/skills/retrieval_tool.py +199 -0
  118. mindsdb-25.10.0rc1/mindsdb/interfaces/skills/skill_tool.py +465 -0
  119. mindsdb-25.10.0rc1/mindsdb/interfaces/skills/skills_controller.py +188 -0
  120. mindsdb-25.10.0rc1/mindsdb/interfaces/skills/sql_agent.py +669 -0
  121. mindsdb-25.10.0rc1/mindsdb/interfaces/storage/db.py +829 -0
  122. mindsdb-25.10.0rc1/mindsdb/interfaces/storage/fs.py +607 -0
  123. mindsdb-25.10.0rc1/mindsdb/interfaces/storage/json.py +157 -0
  124. mindsdb-25.10.0rc1/mindsdb/interfaces/tabs/tabs_controller.py +268 -0
  125. mindsdb-25.10.0rc1/mindsdb/interfaces/tasks/task_monitor.py +148 -0
  126. mindsdb-25.10.0rc1/mindsdb/interfaces/tasks/task_thread.py +59 -0
  127. mindsdb-25.10.0rc1/mindsdb/interfaces/triggers/trigger_task.py +89 -0
  128. mindsdb-25.10.0rc1/mindsdb/interfaces/triggers/triggers_controller.py +163 -0
  129. mindsdb-25.10.0rc1/mindsdb/migrations/migrate.py +91 -0
  130. mindsdb-25.10.0rc1/mindsdb/utilities/api_status.py +58 -0
  131. mindsdb-25.10.0rc1/mindsdb/utilities/config.py +585 -0
  132. mindsdb-25.10.0rc1/mindsdb/utilities/exception.py +119 -0
  133. mindsdb-25.10.0rc1/mindsdb/utilities/fs.py +195 -0
  134. mindsdb-25.10.0rc1/mindsdb/utilities/hooks/profiling.py +77 -0
  135. mindsdb-25.10.0rc1/mindsdb/utilities/json_encoder.py +47 -0
  136. mindsdb-25.10.0rc1/mindsdb/utilities/langfuse.py +283 -0
  137. mindsdb-25.10.0rc1/mindsdb/utilities/log.py +418 -0
  138. mindsdb-25.10.0rc1/mindsdb/utilities/ml_task_queue/consumer.py +248 -0
  139. mindsdb-25.10.0rc1/mindsdb/utilities/ml_task_queue/producer.py +77 -0
  140. mindsdb-25.10.0rc1/mindsdb/utilities/render/sqlalchemy_render.py +872 -0
  141. mindsdb-25.10.0rc1/mindsdb/utilities/starters.py +59 -0
  142. mindsdb-25.10.0rc1/mindsdb/utilities/utils.py +34 -0
  143. mindsdb-25.10.0rc1/requirements/requirements-test.txt +23 -0
  144. mindsdb-25.10.0rc1/requirements/requirements.txt +70 -0
  145. mindsdb-25.9.2.0a1/MindsDB.egg-info/PKG-INFO +0 -953
  146. mindsdb-25.9.2.0a1/MindsDB.egg-info/SOURCES.txt +0 -1965
  147. mindsdb-25.9.2.0a1/MindsDB.egg-info/requires.txt +0 -989
  148. mindsdb-25.9.2.0a1/PKG-INFO +0 -953
  149. mindsdb-25.9.2.0a1/mindsdb/__about__.py +0 -10
  150. mindsdb-25.9.2.0a1/mindsdb/__main__.py +0 -571
  151. mindsdb-25.9.2.0a1/mindsdb/api/a2a/__init__.py +0 -52
  152. mindsdb-25.9.2.0a1/mindsdb/api/a2a/agent.py +0 -145
  153. mindsdb-25.9.2.0a1/mindsdb/api/a2a/common/server/server.py +0 -160
  154. mindsdb-25.9.2.0a1/mindsdb/api/a2a/common/server/task_manager.py +0 -273
  155. mindsdb-25.9.2.0a1/mindsdb/api/a2a/common/types.py +0 -364
  156. mindsdb-25.9.2.0a1/mindsdb/api/a2a/task_manager.py +0 -476
  157. mindsdb-25.9.2.0a1/mindsdb/api/common/middleware.py +0 -106
  158. mindsdb-25.9.2.0a1/mindsdb/api/executor/command_executor.py +0 -2036
  159. mindsdb-25.9.2.0a1/mindsdb/api/executor/datahub/datanodes/datanode.py +0 -25
  160. mindsdb-25.9.2.0a1/mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +0 -245
  161. mindsdb-25.9.2.0a1/mindsdb/api/executor/datahub/datanodes/integration_datanode.py +0 -282
  162. mindsdb-25.9.2.0a1/mindsdb/api/executor/datahub/datanodes/project_datanode.py +0 -193
  163. mindsdb-25.9.2.0a1/mindsdb/api/executor/datahub/datanodes/system_tables.py +0 -818
  164. mindsdb-25.9.2.0a1/mindsdb/api/executor/exceptions.py +0 -39
  165. mindsdb-25.9.2.0a1/mindsdb/api/executor/planner/plan_join.py +0 -633
  166. mindsdb-25.9.2.0a1/mindsdb/api/executor/planner/query_prepare.py +0 -508
  167. mindsdb-25.9.2.0a1/mindsdb/api/executor/sql_query/sql_query.py +0 -319
  168. mindsdb-25.9.2.0a1/mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +0 -122
  169. mindsdb-25.9.2.0a1/mindsdb/api/executor/sql_query/steps/subselect_step.py +0 -220
  170. mindsdb-25.9.2.0a1/mindsdb/api/executor/utilities/functions.py +0 -37
  171. mindsdb-25.9.2.0a1/mindsdb/api/executor/utilities/sql.py +0 -264
  172. mindsdb-25.9.2.0a1/mindsdb/api/http/gui.py +0 -95
  173. mindsdb-25.9.2.0a1/mindsdb/api/http/initialize.py +0 -455
  174. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/agents.py +0 -425
  175. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/analysis.py +0 -130
  176. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/auth.py +0 -159
  177. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/chatbots.py +0 -282
  178. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/config.py +0 -230
  179. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/databases.py +0 -461
  180. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/file.py +0 -219
  181. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/handlers.py +0 -222
  182. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/knowledge_bases.py +0 -401
  183. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/models.py +0 -297
  184. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/projects.py +0 -46
  185. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/sql.py +0 -153
  186. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/tab.py +0 -131
  187. mindsdb-25.9.2.0a1/mindsdb/api/http/namespaces/views.py +0 -136
  188. mindsdb-25.9.2.0a1/mindsdb/api/http/start.py +0 -54
  189. mindsdb-25.9.2.0a1/mindsdb/api/mcp/__init__.py +0 -165
  190. mindsdb-25.9.2.0a1/mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +0 -114
  191. mindsdb-25.9.2.0a1/mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +0 -871
  192. mindsdb-25.9.2.0a1/mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +0 -1
  193. mindsdb-25.9.2.0a1/mindsdb/api/mysql/mysql_proxy/utilities/dump.py +0 -403
  194. mindsdb-25.9.2.0a1/mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -14
  195. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/executor/__init__.py +0 -1
  196. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/executor/executor.py +0 -189
  197. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +0 -322
  198. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +0 -34
  199. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +0 -31
  200. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +0 -1265
  201. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +0 -31
  202. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +0 -253
  203. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +0 -477
  204. mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +0 -10
  205. mindsdb-25.9.2.0a1/mindsdb/api/postgres/start.py +0 -11
  206. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/byom_handler/byom_handler.py +0 -678
  207. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +0 -261
  208. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/druid_handler/druid_handler.py +0 -216
  209. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/file_handler/file_handler.py +0 -209
  210. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +0 -85
  211. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/lightwood_handler/functions.py +0 -252
  212. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +0 -328
  213. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +0 -169
  214. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +0 -316
  215. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/oracle_handler/__init__.py +0 -28
  216. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/oracle_handler/connection_args.py +0 -76
  217. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +0 -393
  218. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/oracle_handler/requirements.txt +0 -1
  219. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +0 -32
  220. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +0 -763
  221. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +0 -144
  222. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +0 -726
  223. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +0 -2
  224. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +0 -2
  225. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +0 -359
  226. mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +0 -463
  227. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/api_handler.py +0 -665
  228. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/base.py +0 -510
  229. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/llm/utils.py +0 -593
  230. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +0 -28
  231. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/ml_handler_process/func_call_process.py +0 -26
  232. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/ml_handler_process/learn_process.py +0 -161
  233. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +0 -28
  234. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/ml_handler_process/update_process.py +0 -27
  235. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/process_cache.py +0 -430
  236. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/response.py +0 -163
  237. mindsdb-25.9.2.0a1/mindsdb/integrations/libs/vectordatabase_handler.py +0 -600
  238. mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/files/file_reader.py +0 -384
  239. mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/config_loader.py +0 -77
  240. mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +0 -357
  241. mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +0 -99
  242. mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +0 -883
  243. mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/settings.py +0 -923
  244. mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/splitters/file_splitter.py +0 -132
  245. mindsdb-25.9.2.0a1/mindsdb/interfaces/agents/agents_controller.py +0 -759
  246. mindsdb-25.9.2.0a1/mindsdb/interfaces/agents/constants.py +0 -288
  247. mindsdb-25.9.2.0a1/mindsdb/interfaces/agents/litellm_server.py +0 -345
  248. mindsdb-25.9.2.0a1/mindsdb/interfaces/agents/mcp_client_agent.py +0 -260
  249. mindsdb-25.9.2.0a1/mindsdb/interfaces/agents/mindsdb_database_agent.py +0 -129
  250. mindsdb-25.9.2.0a1/mindsdb/interfaces/agents/run_mcp_agent.py +0 -205
  251. mindsdb-25.9.2.0a1/mindsdb/interfaces/chatbot/chatbot_task.py +0 -185
  252. mindsdb-25.9.2.0a1/mindsdb/interfaces/chatbot/polling.py +0 -233
  253. mindsdb-25.9.2.0a1/mindsdb/interfaces/data_catalog/data_catalog_loader.py +0 -389
  254. mindsdb-25.9.2.0a1/mindsdb/interfaces/data_catalog/data_catalog_reader.py +0 -57
  255. mindsdb-25.9.2.0a1/mindsdb/interfaces/database/database.py +0 -172
  256. mindsdb-25.9.2.0a1/mindsdb/interfaces/database/integrations.py +0 -938
  257. mindsdb-25.9.2.0a1/mindsdb/interfaces/database/projects.py +0 -585
  258. mindsdb-25.9.2.0a1/mindsdb/interfaces/database/views.py +0 -152
  259. mindsdb-25.9.2.0a1/mindsdb/interfaces/file/file_controller.py +0 -231
  260. mindsdb-25.9.2.0a1/mindsdb/interfaces/functions/controller.py +0 -237
  261. mindsdb-25.9.2.0a1/mindsdb/interfaces/functions/to_markdown.py +0 -112
  262. mindsdb-25.9.2.0a1/mindsdb/interfaces/jobs/jobs_controller.py +0 -542
  263. mindsdb-25.9.2.0a1/mindsdb/interfaces/jobs/scheduler.py +0 -143
  264. mindsdb-25.9.2.0a1/mindsdb/interfaces/knowledge_base/controller.py +0 -1417
  265. mindsdb-25.9.2.0a1/mindsdb/interfaces/knowledge_base/evaluate.py +0 -572
  266. mindsdb-25.9.2.0a1/mindsdb/interfaces/knowledge_base/executor.py +0 -370
  267. mindsdb-25.9.2.0a1/mindsdb/interfaces/knowledge_base/llm_client.py +0 -74
  268. mindsdb-25.9.2.0a1/mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +0 -434
  269. mindsdb-25.9.2.0a1/mindsdb/interfaces/model/model_controller.py +0 -486
  270. mindsdb-25.9.2.0a1/mindsdb/interfaces/query_context/context_controller.py +0 -574
  271. mindsdb-25.9.2.0a1/mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +0 -225
  272. mindsdb-25.9.2.0a1/mindsdb/interfaces/skills/retrieval_tool.py +0 -206
  273. mindsdb-25.9.2.0a1/mindsdb/interfaces/skills/skill_tool.py +0 -465
  274. mindsdb-25.9.2.0a1/mindsdb/interfaces/skills/skills_controller.py +0 -191
  275. mindsdb-25.9.2.0a1/mindsdb/interfaces/skills/sql_agent.py +0 -663
  276. mindsdb-25.9.2.0a1/mindsdb/interfaces/storage/db.py +0 -819
  277. mindsdb-25.9.2.0a1/mindsdb/interfaces/storage/fs.py +0 -662
  278. mindsdb-25.9.2.0a1/mindsdb/interfaces/storage/json.py +0 -156
  279. mindsdb-25.9.2.0a1/mindsdb/interfaces/tabs/tabs_controller.py +0 -291
  280. mindsdb-25.9.2.0a1/mindsdb/interfaces/tasks/task_monitor.py +0 -154
  281. mindsdb-25.9.2.0a1/mindsdb/interfaces/tasks/task_thread.py +0 -61
  282. mindsdb-25.9.2.0a1/mindsdb/interfaces/triggers/trigger_task.py +0 -95
  283. mindsdb-25.9.2.0a1/mindsdb/interfaces/triggers/triggers_controller.py +0 -168
  284. mindsdb-25.9.2.0a1/mindsdb/migrations/__init__.py +0 -0
  285. mindsdb-25.9.2.0a1/mindsdb/migrations/migrate.py +0 -91
  286. mindsdb-25.9.2.0a1/mindsdb/migrations/versions/__init__.py +0 -0
  287. mindsdb-25.9.2.0a1/mindsdb/utilities/__init__.py +0 -0
  288. mindsdb-25.9.2.0a1/mindsdb/utilities/config.py +0 -519
  289. mindsdb-25.9.2.0a1/mindsdb/utilities/exception.py +0 -80
  290. mindsdb-25.9.2.0a1/mindsdb/utilities/fs.py +0 -196
  291. mindsdb-25.9.2.0a1/mindsdb/utilities/hooks/profiling.py +0 -74
  292. mindsdb-25.9.2.0a1/mindsdb/utilities/json_encoder.py +0 -33
  293. mindsdb-25.9.2.0a1/mindsdb/utilities/langfuse.py +0 -288
  294. mindsdb-25.9.2.0a1/mindsdb/utilities/log.py +0 -146
  295. mindsdb-25.9.2.0a1/mindsdb/utilities/ml_task_queue/consumer.py +0 -254
  296. mindsdb-25.9.2.0a1/mindsdb/utilities/ml_task_queue/producer.py +0 -81
  297. mindsdb-25.9.2.0a1/mindsdb/utilities/render/__init__.py +0 -0
  298. mindsdb-25.9.2.0a1/mindsdb/utilities/render/sqlalchemy_render.py +0 -870
  299. mindsdb-25.9.2.0a1/mindsdb/utilities/starters.py +0 -69
  300. mindsdb-25.9.2.0a1/mindsdb/utilities/utils.py +0 -34
  301. mindsdb-25.9.2.0a1/requirements/requirements-test.txt +0 -19
  302. mindsdb-25.9.2.0a1/requirements/requirements.txt +0 -68
  303. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/LICENSE +0 -0
  304. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/MANIFEST.in +0 -0
  305. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/MindsDB.egg-info/dependency_links.txt +0 -0
  306. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/MindsDB.egg-info/top_level.txt +0 -0
  307. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/README.md +0 -0
  308. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/default_handlers.txt +0 -0
  309. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/__init__.py +0 -0
  310. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/__init__.py +0 -0
  311. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/a2a/common/__init__.py +0 -0
  312. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/a2a/common/server/__init__.py +0 -0
  313. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/a2a/common/server/utils.py +0 -0
  314. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/a2a/constants.py +0 -0
  315. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/a2a/utils.py +0 -0
  316. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/common/__init__.py +0 -0
  317. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/__init__.py +0 -0
  318. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/controllers/__init__.py +0 -0
  319. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/controllers/session_controller.py +0 -0
  320. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/data_types/__init__.py +0 -0
  321. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/data_types/answer.py +0 -0
  322. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/data_types/response_type.py +0 -0
  323. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/datahub/__init__.py +0 -0
  324. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/datahub/classes/__init__.py +0 -0
  325. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/datahub/classes/response.py +0 -0
  326. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/datahub/classes/tables_row.py +0 -0
  327. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/datahub/datanodes/__init__.py +0 -0
  328. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +0 -0
  329. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/__init__.py +0 -0
  330. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/exceptions.py +0 -0
  331. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/plan_join_ts.py +0 -0
  332. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/query_plan.py +0 -0
  333. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/query_planner.py +0 -0
  334. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/step_result.py +0 -0
  335. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/steps.py +0 -0
  336. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/ts_utils.py +0 -0
  337. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/planner/utils.py +0 -0
  338. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/__init__.py +0 -0
  339. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/result_set.py +0 -0
  340. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/__init__.py +0 -0
  341. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +0 -0
  342. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/base.py +0 -0
  343. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/delete_step.py +0 -0
  344. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py +0 -0
  345. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/insert_step.py +0 -0
  346. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/join_step.py +0 -0
  347. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/map_reduce_step.py +0 -0
  348. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/multiple_step.py +0 -0
  349. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/prepare_steps.py +0 -0
  350. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/project_step.py +0 -0
  351. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/sql_steps.py +0 -0
  352. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/union_step.py +0 -0
  353. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/sql_query/steps/update_step.py +0 -0
  354. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/utilities/__init__.py +0 -0
  355. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/executor/utilities/mysql_to_duckdb_functions.py +0 -0
  356. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/__init__.py +0 -0
  357. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/__init__.py +0 -0
  358. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/__init__.py +0 -0
  359. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/agents.py +0 -0
  360. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/analysis.py +0 -0
  361. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/auth.py +0 -0
  362. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/chatbots.py +0 -0
  363. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/config.py +0 -0
  364. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/databases.py +0 -0
  365. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/default.py +0 -0
  366. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/files.py +0 -0
  367. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/handlers.py +0 -0
  368. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/jobs.py +0 -0
  369. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/knowledge_bases.py +0 -0
  370. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/projects.py +0 -0
  371. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/skills.py +0 -0
  372. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/sql.py +0 -0
  373. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/tabs.py +0 -0
  374. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/tree.py +0 -0
  375. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/util.py +0 -0
  376. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/configs/webhooks.py +0 -0
  377. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/default.py +0 -0
  378. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/jobs.py +0 -0
  379. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/skills.py +0 -0
  380. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/tree.py +0 -0
  381. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/util.py +0 -0
  382. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/namespaces/webhooks.py +0 -0
  383. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/http/utils.py +0 -0
  384. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/litellm/__init__.py +0 -0
  385. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/litellm/start.py +0 -0
  386. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/__init__.py +0 -0
  387. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/__init__.py +0 -0
  388. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/classes/__init__.py +0 -0
  389. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +0 -0
  390. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +0 -0
  391. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +0 -0
  392. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +0 -0
  393. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/__init__.py +0 -0
  394. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +0 -0
  395. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +0 -0
  396. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +0 -0
  397. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +0 -0
  398. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +0 -0
  399. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +0 -0
  400. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +0 -0
  401. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +0 -0
  402. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +0 -0
  403. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +0 -0
  404. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +0 -0
  405. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +0 -0
  406. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +0 -0
  407. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +0 -0
  408. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +0 -0
  409. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +0 -0
  410. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +0 -0
  411. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +0 -0
  412. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/executor/__init__.py +0 -0
  413. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py +0 -0
  414. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +0 -0
  415. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/libs/__init__.py +0 -0
  416. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +0 -0
  417. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +0 -0
  418. {mindsdb-25.9.2.0a1/mindsdb/api/postgres → mindsdb-25.10.0rc1/mindsdb/api/mysql/mysql_proxy/utilities}/__init__.py +0 -0
  419. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +0 -0
  420. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/api/mysql/start.py +0 -0
  421. {mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy → mindsdb-25.10.0rc1/mindsdb/integrations}/__init__.py +0 -0
  422. {mindsdb-25.9.2.0a1/mindsdb/api/postgres/postgres_proxy/postgres_packets → mindsdb-25.10.0rc1/mindsdb/integrations/handlers}/__init__.py +0 -0
  423. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/access_handler/__about__.py +0 -0
  424. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/access_handler/__init__.py +0 -0
  425. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/access_handler/access_handler.py +0 -0
  426. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/access_handler/connection_args.py +0 -0
  427. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/access_handler/icon.svg +0 -0
  428. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/access_handler/requirements.txt +0 -0
  429. {mindsdb-25.9.2.0a1/mindsdb/integrations → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/access_handler/tests}/__init__.py +0 -0
  430. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +0 -0
  431. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aerospike_handler/__about__.py +0 -0
  432. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aerospike_handler/__init__.py +0 -0
  433. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +0 -0
  434. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aerospike_handler/connection_args.py +0 -0
  435. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aerospike_handler/icon.svg +0 -0
  436. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aerospike_handler/requirements.txt +0 -0
  437. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/aerospike_handler/tests}/__init__.py +0 -0
  438. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +0 -0
  439. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/airtable_handler/__about__.py +0 -0
  440. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/airtable_handler/__init__.py +0 -0
  441. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +0 -0
  442. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/airtable_handler/connection_args.py +0 -0
  443. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/airtable_handler/icon.svg +0 -0
  444. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/access_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/airtable_handler}/tests/__init__.py +0 -0
  445. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +0 -0
  446. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/altibase_handler/__about__.py +0 -0
  447. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/altibase_handler/__init__.py +0 -0
  448. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +0 -0
  449. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/altibase_handler/connection_args.py +0 -0
  450. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/altibase_handler/icon.svg +0 -0
  451. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/altibase_handler/requirements.txt +0 -0
  452. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/aerospike_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/altibase_handler}/tests/__init__.py +0 -0
  453. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +0 -0
  454. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +0 -0
  455. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +0 -0
  456. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +0 -0
  457. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +0 -0
  458. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg +0 -0
  459. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +0 -0
  460. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +0 -0
  461. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anthropic_handler/__about__.py +0 -0
  462. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anthropic_handler/__init__.py +0 -0
  463. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +0 -0
  464. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anthropic_handler/icon.svg +0 -0
  465. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/anthropic_handler/requirements.txt +0 -0
  466. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/apache_doris_handler/__about__.py +0 -0
  467. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/apache_doris_handler/__init__.py +0 -0
  468. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +0 -0
  469. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/apache_doris_handler/icon.svg +0 -0
  470. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +0 -0
  471. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aqicn_handler/__about__.py +0 -0
  472. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aqicn_handler/__init__.py +0 -0
  473. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aqicn_handler/aqicn.py +0 -0
  474. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +0 -0
  475. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +0 -0
  476. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aqicn_handler/connection_args.py +0 -0
  477. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
  478. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/airtable_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/aqicn_handler}/tests/__init__.py +0 -0
  479. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/athena_handler/__about__.py +0 -0
  480. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/athena_handler/__init__.py +0 -0
  481. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/athena_handler/athena_handler.py +0 -0
  482. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/athena_handler/connection_args.py +0 -0
  483. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/athena_handler/icon.svg +0 -0
  484. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/altibase_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/athena_handler}/tests/__init__.py +0 -0
  485. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py +0 -0
  486. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aurora_handler/__about__.py +0 -0
  487. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aurora_handler/__init__.py +0 -0
  488. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +0 -0
  489. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aurora_handler/connection_args.py +0 -0
  490. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aurora_handler/icon.svg +0 -0
  491. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aurora_handler/requirements.txt +0 -0
  492. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/aqicn_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/aurora_handler}/tests/__init__.py +0 -0
  493. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +0 -0
  494. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +0 -0
  495. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autogluon_handler/__about__.py +0 -0
  496. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autogluon_handler/__init__.py +0 -0
  497. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +0 -0
  498. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autogluon_handler/config.py +0 -0
  499. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autogluon_handler/icon.svg +0 -0
  500. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autogluon_handler/requirements.txt +0 -0
  501. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autokeras_handler/__about__.py +0 -0
  502. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autokeras_handler/__init__.py +0 -0
  503. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +0 -0
  504. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autokeras_handler/icon.svg +0 -0
  505. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autokeras_handler/requirements.txt +0 -0
  506. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autosklearn_handler/__about__.py +0 -0
  507. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autosklearn_handler/__init__.py +0 -0
  508. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +0 -0
  509. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autosklearn_handler/config.py +0 -0
  510. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autosklearn_handler/icon.png +0 -0
  511. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +0 -0
  512. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/azure_blob_handler/__about__.py +0 -0
  513. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/azure_blob_handler/__init__.py +0 -0
  514. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py +0 -0
  515. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/azure_blob_handler/connection_args.py +0 -0
  516. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/azure_blob_handler/icon.svg +0 -0
  517. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/azure_blob_handler/requirements.txt +0 -0
  518. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bedrock_handler/__about__.py +0 -0
  519. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bedrock_handler/__init__.py +0 -0
  520. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py +0 -0
  521. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bedrock_handler/icon.svg +0 -0
  522. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bedrock_handler/requirements.txt +0 -0
  523. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bedrock_handler/settings.py +0 -0
  524. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bedrock_handler/utilities.py +0 -0
  525. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bigquery_handler/__about__.py +0 -0
  526. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bigquery_handler/__init__.py +0 -0
  527. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +0 -0
  528. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bigquery_handler/connection_args.py +0 -0
  529. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bigquery_handler/icon.svg +0 -0
  530. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bigquery_handler/requirements.txt +0 -0
  531. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/athena_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/bigquery_handler}/tests/__init__.py +0 -0
  532. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +0 -0
  533. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/binance_handler/__about__.py +0 -0
  534. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/binance_handler/__init__.py +0 -0
  535. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/binance_handler/binance_handler.py +0 -0
  536. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/binance_handler/binance_tables.py +0 -0
  537. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/binance_handler/icon.svg +0 -0
  538. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/binance_handler/requirements.txt +0 -0
  539. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/box_handler/__about__.py +0 -0
  540. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/box_handler/__init__.py +0 -0
  541. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/box_handler/box_handler.py +0 -0
  542. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/box_handler/connection_args.py +0 -0
  543. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/box_handler/icon.svg +0 -0
  544. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/box_handler/requirements.txt +0 -0
  545. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/byom_handler/__about__.py +0 -0
  546. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/byom_handler/__init__.py +0 -0
  547. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/byom_handler/connection_args.py +0 -0
  548. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/byom_handler/icon.svg +0 -0
  549. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +0 -0
  550. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/byom_handler/requirements.txt +0 -0
  551. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cassandra_handler/__about__.py +0 -0
  552. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cassandra_handler/__init__.py +0 -0
  553. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +0 -0
  554. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cassandra_handler/connection_args.py +0 -0
  555. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cassandra_handler/icon.svg +0 -0
  556. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cassandra_handler/requirements.txt +0 -0
  557. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/aurora_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/cassandra_handler}/tests/__init__.py +0 -0
  558. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +0 -0
  559. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/chromadb_handler/__about__.py +0 -0
  560. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/chromadb_handler/__init__.py +0 -0
  561. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +0 -0
  562. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/chromadb_handler/connection_args.py +0 -0
  563. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
  564. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/chromadb_handler/requirements.txt +0 -0
  565. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/chromadb_handler/settings.py +0 -0
  566. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/bigquery_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/chromadb_handler}/tests/__init__.py +0 -0
  567. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ckan_handler/__about__.py +0 -0
  568. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ckan_handler/__init__.py +0 -0
  569. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +0 -0
  570. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ckan_handler/connection_args.py +0 -0
  571. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ckan_handler/icon.png +0 -0
  572. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ckan_handler/requirements.txt +0 -0
  573. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/cassandra_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/ckan_handler}/tests/__init__.py +0 -0
  574. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +0 -0
  575. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clickhouse_handler/__about__.py +0 -0
  576. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clickhouse_handler/__init__.py +0 -0
  577. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +0 -0
  578. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clickhouse_handler/connection_args.py +0 -0
  579. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clickhouse_handler/icon.svg +0 -0
  580. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +0 -0
  581. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/chromadb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/clickhouse_handler}/tests/__init__.py +0 -0
  582. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +0 -0
  583. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clipdrop_handler/__about__.py +0 -0
  584. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clipdrop_handler/__init__.py +0 -0
  585. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +0 -0
  586. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +0 -0
  587. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/clipdrop_handler/icon.svg +0 -0
  588. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +0 -0
  589. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +0 -0
  590. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +0 -0
  591. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py +0 -0
  592. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
  593. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +0 -0
  594. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/ckan_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/cloud_spanner_handler}/tests/__init__.py +0 -0
  595. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +0 -0
  596. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +0 -0
  597. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +0 -0
  598. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +0 -0
  599. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py +0 -0
  600. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
  601. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +0 -0
  602. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/clickhouse_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/cloud_sql_handler}/tests/__init__.py +0 -0
  603. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +0 -0
  604. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +0 -0
  605. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cockroach_handler/__about__.py +0 -0
  606. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cockroach_handler/__init__.py +0 -0
  607. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +0 -0
  608. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cockroach_handler/icon.svg +0 -0
  609. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/cloud_spanner_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/cockroach_handler}/tests/__init__.py +0 -0
  610. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +0 -0
  611. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cohere_handler/__about__.py +0 -0
  612. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cohere_handler/__init__.py +0 -0
  613. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +0 -0
  614. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cohere_handler/icon.svg +0 -0
  615. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/cohere_handler/requirements.txt +0 -0
  616. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/coinbase_handler/__about__.py +0 -0
  617. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/coinbase_handler/__init__.py +0 -0
  618. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +0 -0
  619. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +0 -0
  620. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/coinbase_handler/connection_args.py +0 -0
  621. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/coinbase_handler/icon.svg +0 -0
  622. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/coinbase_handler/requirements.txt +0 -0
  623. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/confluence_handler/__about__.py +0 -0
  624. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/confluence_handler/__init__.py +0 -0
  625. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/confluence_handler/confluence_api_client.py +0 -0
  626. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +0 -0
  627. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/confluence_handler/confluence_tables.py +0 -0
  628. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/confluence_handler/connection_args.py +0 -0
  629. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/confluence_handler/icon.svg +0 -0
  630. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/cloud_sql_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/confluence_handler}/tests/__init__.py +0 -0
  631. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +0 -0
  632. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbase_handler/__about__.py +0 -0
  633. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbase_handler/__init__.py +0 -0
  634. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbase_handler/connection_args.py +0 -0
  635. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +0 -0
  636. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbase_handler/icon.svg +0 -0
  637. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbase_handler/requirements.txt +0 -0
  638. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/cockroach_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/couchbase_handler}/tests/__init__.py +0 -0
  639. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +0 -0
  640. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbasevector_handler/__about__.py +0 -0
  641. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbasevector_handler/__init__.py +0 -0
  642. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py +0 -0
  643. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py +0 -0
  644. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbasevector_handler/icon.svg +0 -0
  645. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt +0 -0
  646. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/confluence_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/couchbasevector_handler}/tests/__init__.py +0 -0
  647. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/crate_handler/__about__.py +0 -0
  648. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/crate_handler/__init__.py +0 -0
  649. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/crate_handler/crate_handler.py +0 -0
  650. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/crate_handler/icon.svg +0 -0
  651. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/crate_handler/requirements.txt +0 -0
  652. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/couchbase_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/crate_handler}/tests/__init__.py +0 -0
  653. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +0 -0
  654. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/d0lt_handler/__about__.py +0 -0
  655. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/d0lt_handler/__init__.py +0 -0
  656. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +0 -0
  657. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/d0lt_handler/icon.svg +0 -0
  658. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/d0lt_handler/requirements.txt +0 -0
  659. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/couchbasevector_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/d0lt_handler}/tests/__init__.py +0 -0
  660. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +0 -0
  661. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databend_handler/__about__.py +0 -0
  662. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databend_handler/__init__.py +0 -0
  663. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databend_handler/connection_args.py +0 -0
  664. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databend_handler/databend_handler.py +0 -0
  665. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databend_handler/icon.svg +0 -0
  666. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databend_handler/requirements.txt +0 -0
  667. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/crate_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/databend_handler}/tests/__init__.py +0 -0
  668. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +0 -0
  669. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databricks_handler/__about__.py +0 -0
  670. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databricks_handler/__init__.py +0 -0
  671. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databricks_handler/connection_args.py +0 -0
  672. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databricks_handler/icon.svg +0 -0
  673. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databricks_handler/requirements.txt +0 -0
  674. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/d0lt_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/databricks_handler}/tests/__init__.py +0 -0
  675. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +0 -0
  676. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/datastax_handler/__about__.py +0 -0
  677. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/datastax_handler/__init__.py +0 -0
  678. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +0 -0
  679. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/datastax_handler/icon.svg +0 -0
  680. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/datastax_handler/requirements.txt +0 -0
  681. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/databend_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/datastax_handler}/tests/__init__.py +0 -0
  682. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +0 -0
  683. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/db2_handler/__about__.py +0 -0
  684. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/db2_handler/__init__.py +0 -0
  685. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/db2_handler/connection_args.py +0 -0
  686. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/db2_handler/db2_handler.py +0 -0
  687. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/db2_handler/icon.svg +0 -0
  688. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/db2_handler/requirements.txt +0 -0
  689. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/databricks_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/db2_handler}/tests/__init__.py +0 -0
  690. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +0 -0
  691. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/derby_handler/__about__.py +0 -0
  692. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/derby_handler/__init__.py +0 -0
  693. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/derby_handler/connection_args.py +0 -0
  694. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/derby_handler/derby_handler.py +0 -0
  695. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/derby_handler/icon.svg +0 -0
  696. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/derby_handler/requirements.txt +0 -0
  697. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/datastax_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/derby_handler}/tests/__init__.py +0 -0
  698. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +0 -0
  699. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/discord_handler/__about__.py +0 -0
  700. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/discord_handler/__init__.py +0 -0
  701. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/discord_handler/discord_handler.py +0 -0
  702. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/discord_handler/discord_tables.py +0 -0
  703. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/discord_handler/icon.svg +0 -0
  704. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/discord_handler/requirements.txt +0 -0
  705. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/db2_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/discord_handler}/tests/__init__.py +0 -0
  706. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +0 -0
  707. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dockerhub_handler/__about__.py +0 -0
  708. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dockerhub_handler/__init__.py +0 -0
  709. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dockerhub_handler/connection_args.py +0 -0
  710. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +0 -0
  711. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +0 -0
  712. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +0 -0
  713. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dockerhub_handler/icon.svg +0 -0
  714. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/documentdb_handler/__about__.py +0 -0
  715. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/documentdb_handler/__init__.py +0 -0
  716. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/documentdb_handler/connection_args.py +0 -0
  717. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +0 -0
  718. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/documentdb_handler/icon.svg +0 -0
  719. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/documentdb_handler/requirements.txt +0 -0
  720. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dremio_handler/__about__.py +0 -0
  721. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dremio_handler/__init__.py +0 -0
  722. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dremio_handler/connection_args.py +0 -0
  723. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +0 -0
  724. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dremio_handler/icon.svg +0 -0
  725. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dremio_handler/requirements.txt +0 -0
  726. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/derby_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/dremio_handler}/tests/__init__.py +0 -0
  727. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +0 -0
  728. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dropbox_handler/__about__.py +0 -0
  729. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dropbox_handler/__init__.py +0 -0
  730. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dropbox_handler/connection_args.py +0 -0
  731. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py +0 -0
  732. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dropbox_handler/icon.svg +0 -0
  733. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dropbox_handler/requirements.txt +0 -0
  734. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/discord_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/dropbox_handler}/tests/__init__.py +0 -0
  735. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py +0 -0
  736. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/druid_handler/__about__.py +0 -0
  737. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/druid_handler/__init__.py +0 -0
  738. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/druid_handler/connection_args.py +0 -0
  739. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/druid_handler/icon.svg +0 -0
  740. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/druid_handler/requirements.txt +0 -0
  741. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/dremio_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/druid_handler}/tests/__init__.py +0 -0
  742. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +0 -0
  743. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dspy_handler/__about__.py +0 -0
  744. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dspy_handler/__init__.py +0 -0
  745. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dspy_handler/dspy_handler.py +0 -0
  746. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dspy_handler/icon.svg +0 -0
  747. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dspy_handler/requirements.txt +0 -0
  748. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/duckdb_handler/__about__.py +0 -0
  749. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/duckdb_handler/__init__.py +0 -0
  750. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/duckdb_handler/connection_args.py +0 -0
  751. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +0 -0
  752. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/duckdb_handler/icon.svg +0 -0
  753. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/dropbox_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/duckdb_handler}/tests/__init__.py +0 -0
  754. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +0 -0
  755. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dummy_data_handler/__about__.py +0 -0
  756. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dummy_data_handler/__init__.py +0 -0
  757. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +0 -0
  758. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dummy_data_handler/icon.svg +0 -0
  759. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dynamodb_handler/__about__.py +0 -0
  760. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dynamodb_handler/__init__.py +0 -0
  761. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dynamodb_handler/connection_args.py +0 -0
  762. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +0 -0
  763. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dynamodb_handler/icon.svg +0 -0
  764. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/druid_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/dynamodb_handler}/tests/__init__.py +0 -0
  765. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +0 -0
  766. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +0 -0
  767. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +0 -0
  768. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py +0 -0
  769. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +0 -0
  770. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +0 -0
  771. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +0 -0
  772. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/duckdb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/edgelessdb_handler}/tests/__init__.py +0 -0
  773. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +0 -0
  774. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +0 -0
  775. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +0 -0
  776. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py +0 -0
  777. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +0 -0
  778. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/elasticsearch_handler/icon.svg +0 -0
  779. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +0 -0
  780. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/dynamodb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/elasticsearch_handler}/tests/__init__.py +0 -0
  781. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +0 -0
  782. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/__about__.py +0 -0
  783. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/__init__.py +0 -0
  784. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/email_client.py +0 -0
  785. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/email_handler.py +0 -0
  786. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/email_ingestor.py +0 -0
  787. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/email_tables.py +0 -0
  788. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/icon.png +0 -0
  789. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/requirements.txt +0 -0
  790. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/email_handler/settings.py +0 -0
  791. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/empress_handler/__about__.py +0 -0
  792. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/empress_handler/__init__.py +0 -0
  793. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/empress_handler/connection_args.py +0 -0
  794. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/empress_handler/empress_handler.py +0 -0
  795. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/empress_handler/icon.png +0 -0
  796. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/empress_handler/requirements.txt +0 -0
  797. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/edgelessdb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/empress_handler}/tests/__init__.py +0 -0
  798. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +0 -0
  799. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventbrite_handler/__about__.py +0 -0
  800. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventbrite_handler/__init__.py +0 -0
  801. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +0 -0
  802. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +0 -0
  803. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventbrite_handler/icon.png +0 -0
  804. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +0 -0
  805. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +0 -0
  806. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +0 -0
  807. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +0 -0
  808. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +0 -0
  809. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/faunadb_handler/__about__.py +0 -0
  810. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/faunadb_handler/__init__.py +0 -0
  811. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/faunadb_handler/connection_args.py +0 -0
  812. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +0 -0
  813. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/faunadb_handler/icon.svg +0 -0
  814. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/faunadb_handler/requirements.txt +0 -0
  815. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/elasticsearch_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/faunadb_handler}/tests/__init__.py +0 -0
  816. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +0 -0
  817. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/file_handler/__about__.py +0 -0
  818. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/file_handler/__init__.py +0 -0
  819. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/file_handler/icon.svg +0 -0
  820. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/file_handler/requirements.txt +0 -0
  821. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/empress_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/file_handler}/tests/__init__.py +0 -0
  822. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/file_handler/tests/data/test.txt +0 -0
  823. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +0 -0
  824. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py +0 -0
  825. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py +0 -0
  826. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py +0 -0
  827. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py +0 -0
  828. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg +0 -0
  829. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/firebird_handler/__about__.py +0 -0
  830. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/firebird_handler/__init__.py +0 -0
  831. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/firebird_handler/connection_args.py +0 -0
  832. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +0 -0
  833. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/firebird_handler/icon.svg +0 -0
  834. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/firebird_handler/requirements.txt +0 -0
  835. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/faunadb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/firebird_handler}/tests/__init__.py +0 -0
  836. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +0 -0
  837. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/flaml_handler/__about__.py +0 -0
  838. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/flaml_handler/__init__.py +0 -0
  839. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +0 -0
  840. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/flaml_handler/icon.svg +0 -0
  841. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/flaml_handler/requirements.txt +0 -0
  842. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/frappe_handler/__about__.py +0 -0
  843. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/frappe_handler/__init__.py +0 -0
  844. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/frappe_handler/frappe_client.py +0 -0
  845. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +0 -0
  846. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +0 -0
  847. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/frappe_handler/icon.svg +0 -0
  848. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
  849. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gcs_handler/__about__.py +0 -0
  850. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gcs_handler/__init__.py +0 -0
  851. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gcs_handler/connection_args.py +0 -0
  852. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gcs_handler/gcs_handler.py +0 -0
  853. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gcs_handler/gcs_tables.py +0 -0
  854. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gcs_handler/icon.svg +0 -0
  855. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gcs_handler/requirements.txt +0 -0
  856. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/github_handler/__about__.py +0 -0
  857. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/github_handler/__init__.py +0 -0
  858. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/github_handler/connection_args.py +0 -0
  859. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/github_handler/generate_api.py +0 -0
  860. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/github_handler/github_handler.py +0 -0
  861. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/github_handler/github_tables.py +0 -0
  862. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/github_handler/icon.svg +0 -0
  863. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/github_handler/requirements.txt +0 -0
  864. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gitlab_handler/__about__.py +0 -0
  865. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gitlab_handler/__init__.py +0 -0
  866. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +0 -0
  867. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gitlab_handler/icon.svg +0 -0
  868. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gitlab_handler/requirements.txt +0 -0
  869. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gmail_handler/__about__.py +0 -0
  870. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gmail_handler/__init__.py +0 -0
  871. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gmail_handler/connection_args.py +0 -0
  872. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +0 -0
  873. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gmail_handler/icon.svg +0 -0
  874. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gmail_handler/requirements.txt +0 -0
  875. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/file_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/gmail_handler}/tests/__init__.py +0 -0
  876. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +0 -0
  877. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gong_handler/__about__.py +0 -0
  878. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gong_handler/__init__.py +0 -0
  879. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gong_handler/connection_args.py +0 -0
  880. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gong_handler/gong_handler.py +0 -0
  881. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gong_handler/gong_tables.py +0 -0
  882. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gong_handler/icon.svg +0 -0
  883. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gong_handler/requirements.txt +0 -0
  884. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/gong_handler/test_gong_handler.py +0 -0
  885. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_analytics_handler/__about__.py +0 -0
  886. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_analytics_handler/__init__.py +0 -0
  887. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py +0 -0
  888. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py +0 -0
  889. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_analytics_handler/icon.svg +0 -0
  890. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +0 -0
  891. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/firebird_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/google_analytics_handler}/tests/__init__.py +0 -0
  892. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py +0 -0
  893. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_books_handler/__about__.py +0 -0
  894. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_books_handler/__init__.py +0 -0
  895. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +0 -0
  896. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +0 -0
  897. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_books_handler/icon.svg +0 -0
  898. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_books_handler/requirements.txt +0 -0
  899. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/gmail_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/google_books_handler}/tests/__init__.py +0 -0
  900. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +0 -0
  901. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_calendar_handler/__about__.py +0 -0
  902. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_calendar_handler/__init__.py +0 -0
  903. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +0 -0
  904. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +0 -0
  905. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +0 -0
  906. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_calendar_handler/icon.svg +0 -0
  907. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +0 -0
  908. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/google_analytics_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/google_calendar_handler}/tests/__init__.py +0 -0
  909. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +0 -0
  910. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +0 -0
  911. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +0 -0
  912. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py +0 -0
  913. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +0 -0
  914. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +0 -0
  915. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg +0 -0
  916. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +0 -0
  917. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/google_books_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/google_content_shopping_handler}/tests/__init__.py +0 -0
  918. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +0 -0
  919. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_fit_handler/__about__.py +0 -0
  920. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_fit_handler/__init__.py +0 -0
  921. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +0 -0
  922. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +0 -0
  923. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_fit_handler/icon.svg +0 -0
  924. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_fit_handler/requirements.txt +0 -0
  925. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_gemini_handler/__about__.py +0 -0
  926. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_gemini_handler/__init__.py +0 -0
  927. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py +0 -0
  928. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_gemini_handler/icon.svg +0 -0
  929. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_gemini_handler/requirements.txt +0 -0
  930. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_search_handler/__about__.py +0 -0
  931. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_search_handler/__init__.py +0 -0
  932. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_search_handler/connection_args.py +0 -0
  933. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +0 -0
  934. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +0 -0
  935. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_search_handler/icon.svg +0 -0
  936. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_search_handler/requirements.txt +0 -0
  937. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/google_calendar_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/google_search_handler}/tests/__init__.py +0 -0
  938. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +0 -0
  939. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/greptimedb_handler/__about__.py +0 -0
  940. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/greptimedb_handler/__init__.py +0 -0
  941. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py +0 -0
  942. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/greptimedb_handler/icon.svg +0 -0
  943. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/greptimedb_handler/requirements.txt +0 -0
  944. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/groq_handler/__about__.py +0 -0
  945. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/groq_handler/__init__.py +0 -0
  946. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/groq_handler/groq_handler.py +0 -0
  947. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/groq_handler/icon.svg +0 -0
  948. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/groq_handler/requirements.txt +0 -0
  949. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/groq_handler/settings.py +0 -0
  950. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hackernews_handler/__about__.py +0 -0
  951. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hackernews_handler/__init__.py +0 -0
  952. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +0 -0
  953. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hackernews_handler/hn_table.py +0 -0
  954. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hackernews_handler/icon.svg +0 -0
  955. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hana_handler/__about__.py +0 -0
  956. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hana_handler/__init__.py +0 -0
  957. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hana_handler/connection_args.py +0 -0
  958. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hana_handler/hana_handler.py +0 -0
  959. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hana_handler/icon.svg +0 -0
  960. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hana_handler/requirements.txt +0 -0
  961. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hive_handler/__about__.py +0 -0
  962. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hive_handler/__init__.py +0 -0
  963. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hive_handler/connection_args.py +0 -0
  964. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hive_handler/hive_handler.py +0 -0
  965. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hive_handler/icon.svg +0 -0
  966. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hive_handler/requirements.txt +0 -0
  967. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/google_content_shopping_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/hive_handler}/tests/__init__.py +0 -0
  968. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +0 -0
  969. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hsqldb_handler/__about__.py +0 -0
  970. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hsqldb_handler/__init__.py +0 -0
  971. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +0 -0
  972. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +0 -0
  973. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
  974. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +0 -0
  975. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hubspot_handler/__about__.py +0 -0
  976. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hubspot_handler/__init__.py +0 -0
  977. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +0 -0
  978. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +0 -0
  979. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hubspot_handler/icon.svg +0 -0
  980. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/hubspot_handler/requirements.txt +0 -0
  981. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +0 -0
  982. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +0 -0
  983. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +0 -0
  984. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +0 -0
  985. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_api_handler/icon.svg +0 -0
  986. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +0 -0
  987. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/google_search_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/huggingface_api_handler}/tests/__init__.py +0 -0
  988. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +0 -0
  989. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_handler/__about__.py +0 -0
  990. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_handler/__init__.py +0 -0
  991. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_handler/finetune.py +0 -0
  992. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +0 -0
  993. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_handler/icon.svg +0 -0
  994. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_handler/requirements.txt +0 -0
  995. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +0 -0
  996. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/huggingface_handler/settings.py +0 -0
  997. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ibm_cos_handler/__about__.py +0 -0
  998. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ibm_cos_handler/__init__.py +0 -0
  999. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py +0 -0
  1000. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py +0 -0
  1001. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ibm_cos_handler/icon.svg +0 -0
  1002. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt +0 -0
  1003. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/hive_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/ibm_cos_handler}/tests/__init__.py +0 -0
  1004. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py +0 -0
  1005. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ignite_handler/__about__.py +0 -0
  1006. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ignite_handler/__init__.py +0 -0
  1007. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ignite_handler/connection_args.py +0 -0
  1008. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ignite_handler/icon.svg +0 -0
  1009. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +0 -0
  1010. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ignite_handler/requirements.txt +0 -0
  1011. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/huggingface_api_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/ignite_handler}/tests/__init__.py +0 -0
  1012. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +0 -0
  1013. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/impala_handler/__about__.py +0 -0
  1014. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/impala_handler/__init__.py +0 -0
  1015. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/impala_handler/connection_args.py +0 -0
  1016. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/impala_handler/icon.svg +0 -0
  1017. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/impala_handler/impala_handler.py +0 -0
  1018. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/impala_handler/requirements.txt +0 -0
  1019. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/ibm_cos_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/impala_handler}/tests/__init__.py +0 -0
  1020. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +0 -0
  1021. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/influxdb_handler/__about__.py +0 -0
  1022. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/influxdb_handler/__init__.py +0 -0
  1023. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/influxdb_handler/icon.svg +0 -0
  1024. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +0 -0
  1025. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +0 -0
  1026. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/influxdb_handler/requirements.txt +0 -0
  1027. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/informix_handler/__about__.py +0 -0
  1028. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/informix_handler/__init__.py +0 -0
  1029. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/informix_handler/icon.svg +0 -0
  1030. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/informix_handler/informix_handler.py +0 -0
  1031. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/informix_handler/requirements.txt +0 -0
  1032. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/ignite_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/informix_handler}/tests/__init__.py +0 -0
  1033. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +0 -0
  1034. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ingres_handler/__about__.py +0 -0
  1035. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ingres_handler/__init__.py +0 -0
  1036. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ingres_handler/connection_args.py +0 -0
  1037. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ingres_handler/icon.svg +0 -0
  1038. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +0 -0
  1039. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ingres_handler/requirements.txt +0 -0
  1040. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/impala_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/ingres_handler}/tests/__init__.py +0 -0
  1041. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +0 -0
  1042. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/instatus_handler/__about__.py +0 -0
  1043. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/instatus_handler/__init__.py +0 -0
  1044. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/instatus_handler/icon.svg +0 -0
  1045. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +0 -0
  1046. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +0 -0
  1047. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/intercom_handler/__about__.py +0 -0
  1048. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/intercom_handler/__init__.py +0 -0
  1049. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/intercom_handler/icon.svg +0 -0
  1050. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +0 -0
  1051. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +0 -0
  1052. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/jira_handler/__about__.py +0 -0
  1053. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/jira_handler/__init__.py +0 -0
  1054. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/jira_handler/icon.svg +0 -0
  1055. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py +0 -0
  1056. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/jira_handler/jira_handler.py +0 -0
  1057. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/jira_handler/jira_tables.py +0 -0
  1058. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/jira_handler/requirements.txt +0 -0
  1059. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/kinetica_handler/__about__.py +0 -0
  1060. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/kinetica_handler/__init__.py +0 -0
  1061. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/kinetica_handler/connection_args.py +0 -0
  1062. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/kinetica_handler/icon.svg +0 -0
  1063. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +0 -0
  1064. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lancedb_handler/__about__.py +0 -0
  1065. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lancedb_handler/__init__.py +0 -0
  1066. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lancedb_handler/connection_args.py +0 -0
  1067. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lancedb_handler/icon.svg +0 -0
  1068. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +0 -0
  1069. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lancedb_handler/requirements.txt +0 -0
  1070. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/informix_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/lancedb_handler}/tests/__init__.py +0 -0
  1071. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +0 -0
  1072. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +0 -0
  1073. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +0 -0
  1074. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/fastapi_embeddings.py +0 -0
  1075. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg +0 -0
  1076. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +0 -0
  1077. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +0 -0
  1078. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py +0 -0
  1079. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_handler/__about__.py +0 -0
  1080. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_handler/__init__.py +0 -0
  1081. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_handler/icon.svg +0 -0
  1082. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +0 -0
  1083. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_handler/requirements.txt +0 -0
  1084. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/langchain_handler/tools.py +0 -0
  1085. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/leonardoai_handler/__about__.py +0 -0
  1086. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/leonardoai_handler/__init__.py +0 -0
  1087. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/leonardoai_handler/icon.svg +0 -0
  1088. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py +0 -0
  1089. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/leonardoai_handler/requirements.txt +0 -0
  1090. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/libsql_handler/__about__.py +0 -0
  1091. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/libsql_handler/__init__.py +0 -0
  1092. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/libsql_handler/connection_args.py +0 -0
  1093. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/libsql_handler/icon.svg +0 -0
  1094. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/libsql_handler/libsql_handler.py +0 -0
  1095. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/libsql_handler/requirements.txt +0 -0
  1096. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/ingres_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/libsql_handler}/tests/__init__.py +0 -0
  1097. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py +0 -0
  1098. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightdash_handler/__about__.py +0 -0
  1099. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightdash_handler/__init__.py +0 -0
  1100. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightdash_handler/api.py +0 -0
  1101. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
  1102. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +0 -0
  1103. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +0 -0
  1104. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/lancedb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/lightdash_handler}/tests/__init__.py +0 -0
  1105. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightfm_handler/__about__.py +0 -0
  1106. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightfm_handler/__init__.py +0 -0
  1107. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightfm_handler/helpers.py +0 -0
  1108. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightfm_handler/icon.svg +0 -0
  1109. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +0 -0
  1110. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightfm_handler/requirements.txt +0 -0
  1111. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightfm_handler/settings.py +0 -0
  1112. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightwood_handler/__about__.py +0 -0
  1113. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightwood_handler/__init__.py +0 -0
  1114. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightwood_handler/icon.svg +0 -0
  1115. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +0 -0
  1116. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightwood_handler/requirements.txt +0 -0
  1117. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/libsql_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/lightwood_handler}/tests/__init__.py +0 -0
  1118. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +0 -0
  1119. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lightwood_handler/utils.py +0 -0
  1120. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lindorm_handler/__about__.py +0 -0
  1121. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lindorm_handler/__init__.py +0 -0
  1122. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lindorm_handler/icon.svg +0 -0
  1123. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +0 -0
  1124. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lindorm_handler/requirements.txt +0 -0
  1125. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/lightdash_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/lindorm_handler}/tests/__init__.py +0 -0
  1126. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +0 -0
  1127. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/litellm_handler/__about__.py +0 -0
  1128. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/litellm_handler/__init__.py +0 -0
  1129. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/litellm_handler/icon.png +0 -0
  1130. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +0 -0
  1131. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/litellm_handler/requirements.txt +0 -0
  1132. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/litellm_handler/settings.py +0 -0
  1133. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/llama_index_handler/__about__.py +0 -0
  1134. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/llama_index_handler/__init__.py +0 -0
  1135. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/llama_index_handler/icon.svg +0 -0
  1136. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +0 -0
  1137. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/llama_index_handler/requirements.txt +0 -0
  1138. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/llama_index_handler/settings.py +0 -0
  1139. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ludwig_handler/__about__.py +0 -0
  1140. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ludwig_handler/__init__.py +0 -0
  1141. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
  1142. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ludwig_handler/icon.svg +0 -0
  1143. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +0 -0
  1144. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ludwig_handler/requirements.txt +0 -0
  1145. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ludwig_handler/utils.py +0 -0
  1146. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/luma_handler/__about__.py +0 -0
  1147. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/luma_handler/__init__.py +0 -0
  1148. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/luma_handler/connection_args.py +0 -0
  1149. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/luma_handler/icon.png +0 -0
  1150. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/luma_handler/luma.py +0 -0
  1151. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/luma_handler/luma_handler.py +0 -0
  1152. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/luma_handler/luma_tables.py +0 -0
  1153. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
  1154. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mariadb_handler/__about__.py +0 -0
  1155. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mariadb_handler/__init__.py +0 -0
  1156. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mariadb_handler/connection_args.py +0 -0
  1157. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mariadb_handler/icon.svg +0 -0
  1158. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +0 -0
  1159. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mariadb_handler/requirements.txt +0 -0
  1160. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/materialize_handler/__about__.py +0 -0
  1161. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/materialize_handler/__init__.py +0 -0
  1162. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/materialize_handler/icon.svg +0 -0
  1163. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +0 -0
  1164. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/lightwood_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/materialize_handler}/tests/__init__.py +0 -0
  1165. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +0 -0
  1166. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/matrixone_handler/__about__.py +0 -0
  1167. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/matrixone_handler/__init__.py +0 -0
  1168. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/matrixone_handler/connection_args.py +0 -0
  1169. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/matrixone_handler/icon.svg +0 -0
  1170. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +0 -0
  1171. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/matrixone_handler/requirements.txt +0 -0
  1172. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/lindorm_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/matrixone_handler}/tests/__init__.py +0 -0
  1173. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +0 -0
  1174. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/maxdb_handler/__about__.py +0 -0
  1175. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/maxdb_handler/__init__.py +0 -0
  1176. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/maxdb_handler/connection_args.py +0 -0
  1177. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/maxdb_handler/icon.svg +0 -0
  1178. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +0 -0
  1179. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/maxdb_handler/requirements.txt +0 -0
  1180. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/materialize_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/maxdb_handler}/tests/__init__.py +0 -0
  1181. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +0 -0
  1182. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mediawiki_handler/__about__.py +0 -0
  1183. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mediawiki_handler/__init__.py +0 -0
  1184. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mediawiki_handler/icon.svg +0 -0
  1185. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +0 -0
  1186. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +0 -0
  1187. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +0 -0
  1188. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mendeley_handler/__about__.py +0 -0
  1189. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mendeley_handler/__init__.py +0 -0
  1190. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mendeley_handler/icon.svg +0 -0
  1191. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +0 -0
  1192. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +0 -0
  1193. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mendeley_handler/requirements.txt +0 -0
  1194. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/matrixone_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/mendeley_handler}/tests/__init__.py +0 -0
  1195. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +0 -0
  1196. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/merlion_handler/__about__.py +0 -0
  1197. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/merlion_handler/__init__.py +0 -0
  1198. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/merlion_handler/adapters.py +0 -0
  1199. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/merlion_handler/icon.svg +0 -0
  1200. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +0 -0
  1201. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/merlion_handler/requirements.txt +0 -0
  1202. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/milvus_handler/__about__.py +0 -0
  1203. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/milvus_handler/__init__.py +0 -0
  1204. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/milvus_handler/connection_args.py +0 -0
  1205. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/milvus_handler/icon.svg +0 -0
  1206. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +0 -0
  1207. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/milvus_handler/requirements.txt +0 -0
  1208. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/maxdb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/milvus_handler}/tests/__init__.py +0 -0
  1209. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py +0 -0
  1210. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +0 -0
  1211. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg +0 -0
  1212. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py +0 -0
  1213. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt +0 -0
  1214. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/settings.py +0 -0
  1215. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/mendeley_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/minds_endpoint_handler}/tests/__init__.py +0 -0
  1216. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py +0 -0
  1217. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mlflow_handler/__about__.py +0 -0
  1218. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mlflow_handler/__init__.py +0 -0
  1219. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mlflow_handler/icon.svg +0 -0
  1220. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +0 -0
  1221. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mlflow_handler/requirements.txt +0 -0
  1222. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monetdb_handler/__about__.py +0 -0
  1223. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monetdb_handler/__init__.py +0 -0
  1224. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monetdb_handler/connection_args.py +0 -0
  1225. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monetdb_handler/icon.svg +0 -0
  1226. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +0 -0
  1227. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monetdb_handler/requirements.txt +0 -0
  1228. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/milvus_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/monetdb_handler}/tests/__init__.py +0 -0
  1229. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +0 -0
  1230. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/minds_endpoint_handler/tests → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/monetdb_handler/utils}/__init__.py +0 -0
  1231. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +0 -0
  1232. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/__about__.py +0 -0
  1233. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/__init__.py +0 -0
  1234. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/connection_args.py +0 -0
  1235. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/icon.svg +0 -0
  1236. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +0 -0
  1237. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/requirements.txt +0 -0
  1238. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/monetdb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/mongodb_handler}/tests/__init__.py +0 -0
  1239. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py +0 -0
  1240. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/monetdb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/mongodb_handler}/utils/__init__.py +0 -0
  1241. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_ast.py +0 -0
  1242. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_parser.py +0 -0
  1243. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_query.py +0 -0
  1244. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +0 -0
  1245. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +0 -0
  1246. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +0 -0
  1247. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monkeylearn_handler/icon.png +0 -0
  1248. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +0 -0
  1249. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py +0 -0
  1250. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py +0 -0
  1251. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg +0 -0
  1252. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +0 -0
  1253. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +0 -0
  1254. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +0 -0
  1255. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt +0 -0
  1256. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_teams_handler/__about__.py +0 -0
  1257. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_teams_handler/__init__.py +0 -0
  1258. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_teams_handler/icon.svg +0 -0
  1259. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py +0 -0
  1260. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +0 -0
  1261. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +0 -0
  1262. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +0 -0
  1263. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mssql_handler/__about__.py +0 -0
  1264. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mssql_handler/__init__.py +0 -0
  1265. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mssql_handler/connection_args.py +0 -0
  1266. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mssql_handler/icon.svg +0 -0
  1267. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mssql_handler/requirements.txt +0 -0
  1268. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mysql_handler/__about__.py +0 -0
  1269. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mysql_handler/__init__.py +0 -0
  1270. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mysql_handler/connection_args.py +0 -0
  1271. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mysql_handler/icon.svg +0 -0
  1272. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mysql_handler/requirements.txt +0 -0
  1273. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/mysql_handler/settings.py +0 -0
  1274. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +0 -0
  1275. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +0 -0
  1276. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/neuralforecast_handler/icon.svg +0 -0
  1277. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +0 -0
  1278. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +0 -0
  1279. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +0 -0
  1280. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/newsapi_handler/__about__.py +0 -0
  1281. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/newsapi_handler/__init__.py +0 -0
  1282. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/newsapi_handler/connection_args.py +0 -0
  1283. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
  1284. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +0 -0
  1285. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/newsapi_handler/requirements.txt +0 -0
  1286. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/mongodb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/newsapi_handler}/tests/__init__.py +0 -0
  1287. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +0 -0
  1288. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/notion_handler/__about__.py +0 -0
  1289. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/notion_handler/__init__.py +0 -0
  1290. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/notion_handler/icon.svg +0 -0
  1291. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/notion_handler/notion_handler.py +0 -0
  1292. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/notion_handler/notion_table.py +0 -0
  1293. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/notion_handler/requirements.txt +0 -0
  1294. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/mongodb_handler/utils → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/notion_handler/tests}/__init__.py +0 -0
  1295. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +0 -0
  1296. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/npm_handler/__about__.py +0 -0
  1297. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/npm_handler/__init__.py +0 -0
  1298. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/npm_handler/api.py +0 -0
  1299. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/npm_handler/icon.svg +0 -0
  1300. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/npm_handler/npm_handler.py +0 -0
  1301. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/npm_handler/npm_tables.py +0 -0
  1302. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/mssql_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/npm_handler}/tests/__init__.py +0 -0
  1303. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +0 -0
  1304. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +0 -0
  1305. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +0 -0
  1306. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg +0 -0
  1307. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +0 -0
  1308. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +0 -0
  1309. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/newsapi_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/nuo_jdbc_handler}/tests/__init__.py +0 -0
  1310. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +0 -0
  1311. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oceanbase_handler/__about__.py +0 -0
  1312. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oceanbase_handler/__init__.py +0 -0
  1313. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oceanbase_handler/icon.svg +0 -0
  1314. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +0 -0
  1315. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +0 -0
  1316. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/notion_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/oceanbase_handler}/tests/__init__.py +0 -0
  1317. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +0 -0
  1318. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +0 -0
  1319. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +0 -0
  1320. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py +0 -0
  1321. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +0 -0
  1322. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +0 -0
  1323. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +0 -0
  1324. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +0 -0
  1325. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ollama_handler/__about__.py +0 -0
  1326. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ollama_handler/__init__.py +0 -0
  1327. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ollama_handler/icon.png +0 -0
  1328. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +0 -0
  1329. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/__about__.py +0 -0
  1330. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/__init__.py +0 -0
  1331. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/constants.py +0 -0
  1332. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/creation_args.py +0 -0
  1333. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/helpers.py +0 -0
  1334. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/icon.svg +0 -0
  1335. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/model_using_args.py +0 -0
  1336. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/openai_handler.py +0 -0
  1337. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/requirements.txt +0 -0
  1338. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/npm_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/openai_handler}/tests/__init__.py +0 -0
  1339. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py +0 -0
  1340. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openbb_handler/__about__.py +0 -0
  1341. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openbb_handler/__init__.py +0 -0
  1342. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openbb_handler/icon.svg +0 -0
  1343. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +0 -0
  1344. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +0 -0
  1345. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openbb_handler/requirements.txt +0 -0
  1346. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/opengauss_handler/__about__.py +0 -0
  1347. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/opengauss_handler/__init__.py +0 -0
  1348. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/opengauss_handler/connection_args.py +0 -0
  1349. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/opengauss_handler/icon.svg +0 -0
  1350. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +0 -0
  1351. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/nuo_jdbc_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/opengauss_handler}/tests/__init__.py +0 -0
  1352. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +0 -0
  1353. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +0 -0
  1354. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +0 -0
  1355. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +0 -0
  1356. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +0 -0
  1357. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +0 -0
  1358. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +0 -0
  1359. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/oceanbase_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/openstreetmap_handler}/tests/__init__.py +0 -0
  1360. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +0 -0
  1361. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oracle_handler/__about__.py +0 -0
  1362. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/oracle_handler/icon.svg +0 -0
  1363. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/orioledb_handler/__about__.py +0 -0
  1364. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/orioledb_handler/__init__.py +0 -0
  1365. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/orioledb_handler/connection_args.py +0 -0
  1366. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/orioledb_handler/icon.svg +0 -0
  1367. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +0 -0
  1368. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/openai_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/orioledb_handler}/tests/__init__.py +0 -0
  1369. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +0 -0
  1370. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/palm_handler/__about__.py +0 -0
  1371. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/palm_handler/__init__.py +0 -0
  1372. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/palm_handler/icon.svg +0 -0
  1373. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/palm_handler/palm_handler.py +0 -0
  1374. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/palm_handler/requirements.txt +0 -0
  1375. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/paypal_handler/__about__.py +0 -0
  1376. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/paypal_handler/__init__.py +0 -0
  1377. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/paypal_handler/icon.svg +0 -0
  1378. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +0 -0
  1379. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +0 -0
  1380. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/paypal_handler/requirements.txt +0 -0
  1381. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pgvector_handler/__about__.py +0 -0
  1382. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pgvector_handler/__init__.py +0 -0
  1383. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pgvector_handler/connection_args.py +0 -0
  1384. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pgvector_handler/icon.svg +0 -0
  1385. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +0 -0
  1386. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -0
  1387. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/phoenix_handler/__about__.py +0 -0
  1388. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/phoenix_handler/__init__.py +0 -0
  1389. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/phoenix_handler/connection_args.py +0 -0
  1390. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
  1391. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +0 -0
  1392. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/phoenix_handler/requirements.txt +0 -0
  1393. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/opengauss_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/phoenix_handler}/tests/__init__.py +0 -0
  1394. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +0 -0
  1395. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinecone_handler/__about__.py +0 -0
  1396. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinecone_handler/__init__.py +0 -0
  1397. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinecone_handler/connection_args.py +0 -0
  1398. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinecone_handler/icon.svg +0 -0
  1399. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +0 -0
  1400. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinecone_handler/requirements.txt +0 -0
  1401. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/openstreetmap_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/pinecone_handler}/tests/__init__.py +0 -0
  1402. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinot_handler/__about__.py +0 -0
  1403. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinot_handler/__init__.py +0 -0
  1404. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinot_handler/connection_args.py +0 -0
  1405. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinot_handler/icon.svg +0 -0
  1406. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +0 -0
  1407. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinot_handler/requirements.txt +0 -0
  1408. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/oracle_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/pinot_handler}/tests/__init__.py +0 -0
  1409. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +0 -0
  1410. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pirateweather_handler/__about__.py +0 -0
  1411. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pirateweather_handler/__init__.py +0 -0
  1412. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pirateweather_handler/connection_args.py +0 -0
  1413. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
  1414. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +0 -0
  1415. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/plaid_handler/__about__.py +0 -0
  1416. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/plaid_handler/__init__.py +0 -0
  1417. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/plaid_handler/icon.svg +0 -0
  1418. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +0 -0
  1419. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +0 -0
  1420. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/plaid_handler/requirements.txt +0 -0
  1421. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/plaid_handler/utils.py +0 -0
  1422. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/planetscale_handler/__about__.py +0 -0
  1423. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/planetscale_handler/__init__.py +0 -0
  1424. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/planetscale_handler/connection_args.py +0 -0
  1425. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/planetscale_handler/icon.svg +0 -0
  1426. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +0 -0
  1427. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/planetscale_handler/requirements.txt +0 -0
  1428. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +0 -0
  1429. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +0 -0
  1430. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg +0 -0
  1431. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +0 -0
  1432. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +0 -0
  1433. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/portkey_handler/__about__.py +0 -0
  1434. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/portkey_handler/__init__.py +0 -0
  1435. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/portkey_handler/icon.svg +0 -0
  1436. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/portkey_handler/portkey_handler.py +0 -0
  1437. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/portkey_handler/requirements.txt +0 -0
  1438. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/postgres_handler/__about__.py +0 -0
  1439. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/postgres_handler/__init__.py +0 -0
  1440. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/postgres_handler/connection_args.py +0 -0
  1441. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/postgres_handler/icon.svg +0 -0
  1442. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/orioledb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/postgres_handler}/tests/__init__.py +0 -0
  1443. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +0 -0
  1444. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pycaret_handler/__about__.py +0 -0
  1445. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pycaret_handler/__init__.py +0 -0
  1446. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pycaret_handler/icon.png +0 -0
  1447. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +0 -0
  1448. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pycaret_handler/requirements.txt +0 -0
  1449. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/phoenix_handler/tests → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/pycaret_handler/test}/__init__.py +0 -0
  1450. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +0 -0
  1451. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pypi_handler/__about__.py +0 -0
  1452. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pypi_handler/__init__.py +0 -0
  1453. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pypi_handler/api.py +0 -0
  1454. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pypi_handler/icon.svg +0 -0
  1455. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +0 -0
  1456. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +0 -0
  1457. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/qdrant_handler/__about__.py +0 -0
  1458. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/qdrant_handler/__init__.py +0 -0
  1459. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/qdrant_handler/connection_args.py +0 -0
  1460. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/qdrant_handler/icon.svg +0 -0
  1461. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +0 -0
  1462. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/qdrant_handler/requirements.txt +0 -0
  1463. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/questdb_handler/__about__.py +0 -0
  1464. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/questdb_handler/__init__.py +0 -0
  1465. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/questdb_handler/icon.svg +0 -0
  1466. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +0 -0
  1467. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/questdb_handler/requirements.txt +0 -0
  1468. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/pinecone_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/questdb_handler}/tests/__init__.py +0 -0
  1469. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +0 -0
  1470. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/quickbooks_handler/__about__.py +0 -0
  1471. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/quickbooks_handler/__init__.py +0 -0
  1472. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/quickbooks_handler/icon.svg +0 -0
  1473. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +0 -0
  1474. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +0 -0
  1475. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +0 -0
  1476. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/__about__.py +0 -0
  1477. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/__init__.py +0 -0
  1478. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/exceptions.py +0 -0
  1479. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/icon.svg +0 -0
  1480. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/ingest.py +0 -0
  1481. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/rag.py +0 -0
  1482. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/rag_handler.py +0 -0
  1483. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/requirements.txt +0 -0
  1484. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rag_handler/settings.py +0 -0
  1485. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ray_serve_handler/__about__.py +0 -0
  1486. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ray_serve_handler/__init__.py +0 -0
  1487. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ray_serve_handler/icon.svg +0 -0
  1488. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +0 -0
  1489. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/reddit_handler/__about__.py +0 -0
  1490. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/reddit_handler/__init__.py +0 -0
  1491. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/reddit_handler/icon.svg +0 -0
  1492. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +0 -0
  1493. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +0 -0
  1494. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/reddit_handler/requirements.txt +0 -0
  1495. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/redshift_handler/__about__.py +0 -0
  1496. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/redshift_handler/__init__.py +0 -0
  1497. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/redshift_handler/connection_args.py +0 -0
  1498. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/redshift_handler/icon.svg +0 -0
  1499. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +0 -0
  1500. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/pinot_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/redshift_handler}/tests/__init__.py +0 -0
  1501. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +0 -0
  1502. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/replicate_handler/__about__.py +0 -0
  1503. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/replicate_handler/__init__.py +0 -0
  1504. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
  1505. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
  1506. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
  1507. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/replicate_handler/icon.svg +0 -0
  1508. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +0 -0
  1509. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/replicate_handler/requirements.txt +0 -0
  1510. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +0 -0
  1511. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +0 -0
  1512. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +0 -0
  1513. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +0 -0
  1514. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +0 -0
  1515. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +0 -0
  1516. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/__about__.py +0 -0
  1517. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/__init__.py +0 -0
  1518. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/connection_args.py +0 -0
  1519. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/icon.svg +0 -0
  1520. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/requirements.txt +0 -0
  1521. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +0 -0
  1522. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/postgres_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/rockset_handler}/tests/__init__.py +0 -0
  1523. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
  1524. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
  1525. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +0 -0
  1526. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/s3_handler/__about__.py +0 -0
  1527. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/s3_handler/__init__.py +0 -0
  1528. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/s3_handler/connection_args.py +0 -0
  1529. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/s3_handler/icon.svg +0 -0
  1530. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/s3_handler/s3_handler.py +0 -0
  1531. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/pycaret_handler/test → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/s3_handler/tests}/__init__.py +0 -0
  1532. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +0 -0
  1533. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/salesforce_handler/__about__.py +0 -0
  1534. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/salesforce_handler/__init__.py +0 -0
  1535. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/salesforce_handler/connection_args.py +0 -0
  1536. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/salesforce_handler/constants.py +0 -0
  1537. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/salesforce_handler/icon.svg +0 -0
  1538. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/salesforce_handler/requirements.txt +0 -0
  1539. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +0 -0
  1540. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +0 -0
  1541. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sap_erp_handler/__about__.py +0 -0
  1542. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sap_erp_handler/__init__.py +0 -0
  1543. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sap_erp_handler/api.py +0 -0
  1544. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sap_erp_handler/icon.svg +0 -0
  1545. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +0 -0
  1546. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +0 -0
  1547. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/questdb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/sap_erp_handler}/tests/__init__.py +0 -0
  1548. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/scylla_handler/__about__.py +0 -0
  1549. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/scylla_handler/__init__.py +0 -0
  1550. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/scylla_handler/connection_args.py +0 -0
  1551. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/scylla_handler/icon.svg +0 -0
  1552. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/scylla_handler/requirements.txt +0 -0
  1553. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +0 -0
  1554. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/redshift_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/scylla_handler}/tests/__init__.py +0 -0
  1555. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +0 -0
  1556. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sendinblue_handler/__about__.py +0 -0
  1557. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sendinblue_handler/__init__.py +0 -0
  1558. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sendinblue_handler/icon.svg +0 -0
  1559. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +0 -0
  1560. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +0 -0
  1561. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +0 -0
  1562. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py +0 -0
  1563. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +0 -0
  1564. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg +0 -0
  1565. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt +0 -0
  1566. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py +0 -0
  1567. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/settings.py +0 -0
  1568. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/serpstack_handler/__about__.py +0 -0
  1569. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/serpstack_handler/__init__.py +0 -0
  1570. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/serpstack_handler/icon.svg +0 -0
  1571. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py +0 -0
  1572. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py +0 -0
  1573. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sharepoint_handler/__about__.py +0 -0
  1574. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sharepoint_handler/__init__.py +0 -0
  1575. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sharepoint_handler/icon.svg +0 -0
  1576. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +0 -0
  1577. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +0 -0
  1578. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +0 -0
  1579. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/rockset_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/sharepoint_handler}/tests/__init__.py +0 -0
  1580. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +0 -0
  1581. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sharepoint_handler/utils.py +0 -0
  1582. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sheets_handler/__about__.py +0 -0
  1583. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sheets_handler/__init__.py +0 -0
  1584. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sheets_handler/connection_args.py +0 -0
  1585. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sheets_handler/icon.svg +0 -0
  1586. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +0 -0
  1587. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/s3_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/sheets_handler}/tests/__init__.py +0 -0
  1588. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +0 -0
  1589. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/shopify_handler/__about__.py +0 -0
  1590. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/shopify_handler/__init__.py +0 -0
  1591. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/shopify_handler/icon.svg +0 -0
  1592. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/shopify_handler/requirements.txt +0 -0
  1593. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +0 -0
  1594. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/singlestore_handler/__about__.py +0 -0
  1595. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/singlestore_handler/__init__.py +0 -0
  1596. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/singlestore_handler/icon.svg +0 -0
  1597. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/singlestore_handler/requirements.txt +0 -0
  1598. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +0 -0
  1599. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/sap_erp_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/singlestore_handler}/tests/__init__.py +0 -0
  1600. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +0 -0
  1601. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/slack_handler/__about__.py +0 -0
  1602. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/slack_handler/__init__.py +0 -0
  1603. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/slack_handler/connection_args.py +0 -0
  1604. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/slack_handler/icon.svg +0 -0
  1605. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/slack_handler/requirements.txt +0 -0
  1606. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/slack_handler/slack_handler.py +0 -0
  1607. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/slack_handler/slack_tables.py +0 -0
  1608. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/scylla_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/slack_handler}/tests/__init__.py +0 -0
  1609. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +0 -0
  1610. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/snowflake_handler/__about__.py +0 -0
  1611. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/snowflake_handler/__init__.py +0 -0
  1612. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/snowflake_handler/connection_args.py +0 -0
  1613. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/snowflake_handler/icon.svg +0 -0
  1614. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/snowflake_handler/requirements.txt +0 -0
  1615. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solace_handler/__about__.py +0 -0
  1616. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solace_handler/__init__.py +0 -0
  1617. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solace_handler/icon.svg +0 -0
  1618. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solace_handler/requirements.txt +0 -0
  1619. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solace_handler/solace_handler.py +0 -0
  1620. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solr_handler/__about__.py +0 -0
  1621. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solr_handler/__init__.py +0 -0
  1622. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solr_handler/connection_args.py +0 -0
  1623. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solr_handler/icon.svg +0 -0
  1624. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solr_handler/requirements.txt +0 -0
  1625. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solr_handler/solr_handler.py +0 -0
  1626. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/sharepoint_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/solr_handler}/tests/__init__.py +0 -0
  1627. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +0 -0
  1628. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/spacy_handler/__about__.py +0 -0
  1629. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/spacy_handler/__init__.py +0 -0
  1630. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/spacy_handler/icon.svg +0 -0
  1631. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/spacy_handler/requirements.txt +0 -0
  1632. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +0 -0
  1633. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlany_handler/__about__.py +0 -0
  1634. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlany_handler/__init__.py +0 -0
  1635. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlany_handler/connection_args.py +0 -0
  1636. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlany_handler/icon.svg +0 -0
  1637. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlany_handler/requirements.txt +0 -0
  1638. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +0 -0
  1639. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlite_handler/__about__.py +0 -0
  1640. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlite_handler/__init__.py +0 -0
  1641. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlite_handler/connection_args.py +0 -0
  1642. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlite_handler/icon.svg +0 -0
  1643. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +0 -0
  1644. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/sheets_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/sqlite_handler}/tests/__init__.py +0 -0
  1645. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +0 -0
  1646. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +0 -0
  1647. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +0 -0
  1648. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +0 -0
  1649. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqreamdb_handler/icon.svg +0 -0
  1650. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +0 -0
  1651. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +0 -0
  1652. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/singlestore_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/sqreamdb_handler}/tests/__init__.py +0 -0
  1653. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +0 -0
  1654. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stabilityai_handler/__about__.py +0 -0
  1655. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stabilityai_handler/__init__.py +0 -0
  1656. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stabilityai_handler/icon.svg +0 -0
  1657. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +0 -0
  1658. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +0 -0
  1659. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +0 -0
  1660. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/starrocks_handler/__about__.py +0 -0
  1661. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/starrocks_handler/__init__.py +0 -0
  1662. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/starrocks_handler/icon.svg +0 -0
  1663. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/starrocks_handler/requirements.txt +0 -0
  1664. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +0 -0
  1665. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/slack_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/starrocks_handler}/tests/__init__.py +0 -0
  1666. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +0 -0
  1667. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/statsforecast_handler/__about__.py +0 -0
  1668. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/statsforecast_handler/__init__.py +0 -0
  1669. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/statsforecast_handler/icon.svg +0 -0
  1670. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +0 -0
  1671. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strapi_handler/__about__.py +0 -0
  1672. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strapi_handler/__init__.py +0 -0
  1673. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strapi_handler/icon.svg +0 -0
  1674. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +0 -0
  1675. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +0 -0
  1676. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/solr_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/strapi_handler}/tests/__init__.py +0 -0
  1677. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +0 -0
  1678. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strava_handler/__about__.py +0 -0
  1679. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strava_handler/__init__.py +0 -0
  1680. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strava_handler/icon.svg +0 -0
  1681. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strava_handler/requirements.txt +0 -0
  1682. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strava_handler/strava_handler.py +0 -0
  1683. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/strava_handler/strava_tables.py +0 -0
  1684. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stripe_handler/__about__.py +0 -0
  1685. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stripe_handler/__init__.py +0 -0
  1686. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stripe_handler/icon.svg +0 -0
  1687. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stripe_handler/requirements.txt +0 -0
  1688. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +0 -0
  1689. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +0 -0
  1690. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/supabase_handler/__about__.py +0 -0
  1691. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/supabase_handler/__init__.py +0 -0
  1692. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/supabase_handler/icon.svg +0 -0
  1693. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +0 -0
  1694. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/sqlite_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/supabase_handler}/tests/__init__.py +0 -0
  1695. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +0 -0
  1696. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/surrealdb_handler/__about__.py +0 -0
  1697. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/surrealdb_handler/__init__.py +0 -0
  1698. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/surrealdb_handler/connection_args.py +0 -0
  1699. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/surrealdb_handler/icon.svg +0 -0
  1700. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +0 -0
  1701. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +0 -0
  1702. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/sqreamdb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/surrealdb_handler}/tests/__init__.py +0 -0
  1703. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +0 -0
  1704. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/starrocks_handler/tests → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/surrealdb_handler/utils}/__init__.py +0 -0
  1705. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +0 -0
  1706. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/symbl_handler/__about__.py +0 -0
  1707. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/symbl_handler/__init__.py +0 -0
  1708. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/symbl_handler/connection_args.py +0 -0
  1709. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/symbl_handler/icon.svg +0 -0
  1710. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/symbl_handler/requirements.txt +0 -0
  1711. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +0 -0
  1712. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +0 -0
  1713. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tdengine_handler/__about__.py +0 -0
  1714. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tdengine_handler/__init__.py +0 -0
  1715. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tdengine_handler/connection_args.py +0 -0
  1716. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tdengine_handler/icon.svg +0 -0
  1717. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tdengine_handler/requirements.txt +0 -0
  1718. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +0 -0
  1719. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/strapi_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/tdengine_handler}/tests/__init__.py +0 -0
  1720. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +0 -0
  1721. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/teradata_handler/__about__.py +0 -0
  1722. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/teradata_handler/__init__.py +0 -0
  1723. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/teradata_handler/connection_args.py +0 -0
  1724. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/teradata_handler/icon.svg +0 -0
  1725. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/teradata_handler/requirements.txt +0 -0
  1726. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +0 -0
  1727. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tidb_handler/__about__.py +0 -0
  1728. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tidb_handler/__init__.py +0 -0
  1729. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tidb_handler/connection_args.py +0 -0
  1730. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tidb_handler/icon.svg +0 -0
  1731. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tidb_handler/requirements.txt +0 -0
  1732. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/supabase_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/tidb_handler}/tests/__init__.py +0 -0
  1733. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +0 -0
  1734. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +0 -0
  1735. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timegpt_handler/__about__.py +0 -0
  1736. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timegpt_handler/__init__.py +0 -0
  1737. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timegpt_handler/icon.svg +0 -0
  1738. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timegpt_handler/requirements.txt +0 -0
  1739. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +0 -0
  1740. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timescaledb_handler/__about__.py +0 -0
  1741. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timescaledb_handler/__init__.py +0 -0
  1742. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timescaledb_handler/icon.svg +0 -0
  1743. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +0 -0
  1744. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/togetherai_handler/__about__.py +0 -0
  1745. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/togetherai_handler/__init__.py +0 -0
  1746. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/togetherai_handler/creation_args.py +0 -0
  1747. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/togetherai_handler/icon.svg +0 -0
  1748. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/togetherai_handler/model_using_args.py +0 -0
  1749. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/togetherai_handler/requirements.txt +0 -0
  1750. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/togetherai_handler/settings.py +0 -0
  1751. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/togetherai_handler/togetherai_handler.py +0 -0
  1752. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tpot_handler/__about__.py +0 -0
  1753. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tpot_handler/__init__.py +0 -0
  1754. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tpot_handler/icon.png +0 -0
  1755. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tpot_handler/requirements.txt +0 -0
  1756. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +0 -0
  1757. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/trino_handler/__about__.py +0 -0
  1758. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/trino_handler/__init__.py +0 -0
  1759. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/trino_handler/icon.svg +0 -0
  1760. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/trino_handler/requirements.txt +0 -0
  1761. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/surrealdb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/trino_handler}/tests/__init__.py +0 -0
  1762. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +0 -0
  1763. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +0 -0
  1764. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/trino_handler/trino_handler.py +0 -0
  1765. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +0 -0
  1766. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +0 -0
  1767. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +0 -0
  1768. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +0 -0
  1769. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +0 -0
  1770. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +0 -0
  1771. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twelve_labs_handler/__about__.py +0 -0
  1772. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twelve_labs_handler/__init__.py +0 -0
  1773. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twelve_labs_handler/icon.svg +0 -0
  1774. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt +0 -0
  1775. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twelve_labs_handler/settings.py +0 -0
  1776. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py +0 -0
  1777. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py +0 -0
  1778. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twilio_handler/__about__.py +0 -0
  1779. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twilio_handler/__init__.py +0 -0
  1780. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twilio_handler/icon.svg +0 -0
  1781. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twilio_handler/requirements.txt +0 -0
  1782. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +0 -0
  1783. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twitter_handler/__about__.py +0 -0
  1784. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twitter_handler/__init__.py +0 -0
  1785. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twitter_handler/icon.svg +0 -0
  1786. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twitter_handler/requirements.txt +0 -0
  1787. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +0 -0
  1788. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/unify_handler/__about__.py +0 -0
  1789. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/unify_handler/__init__.py +0 -0
  1790. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/unify_handler/creation_args.py +0 -0
  1791. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/unify_handler/icon.svg +0 -0
  1792. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/unify_handler/model_using_args.py +0 -0
  1793. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/unify_handler/requirements.txt +0 -0
  1794. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/surrealdb_handler/utils → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/unify_handler/tests}/__init__.py +0 -0
  1795. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +0 -0
  1796. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/unify_handler/unify_handler.py +0 -0
  1797. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertex_handler/__about__.py +0 -0
  1798. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertex_handler/__init__.py +0 -0
  1799. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertex_handler/icon.png +0 -0
  1800. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertex_handler/requirements.txt +0 -0
  1801. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertex_handler/vertex_client.py +0 -0
  1802. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +0 -0
  1803. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertica_handler/__about__.py +0 -0
  1804. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertica_handler/__init__.py +0 -0
  1805. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertica_handler/connection_args.py +0 -0
  1806. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertica_handler/icon.svg +0 -0
  1807. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertica_handler/requirements.txt +0 -0
  1808. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/tdengine_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/vertica_handler}/tests/__init__.py +0 -0
  1809. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +0 -0
  1810. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +0 -0
  1811. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vitess_handler/__about__.py +0 -0
  1812. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vitess_handler/__init__.py +0 -0
  1813. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vitess_handler/icon.svg +0 -0
  1814. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vitess_handler/requirements.txt +0 -0
  1815. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/tidb_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/vitess_handler}/tests/__init__.py +0 -0
  1816. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +0 -0
  1817. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +0 -0
  1818. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/weaviate_handler/__about__.py +0 -0
  1819. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/weaviate_handler/__init__.py +0 -0
  1820. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/weaviate_handler/connection_args.py +0 -0
  1821. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/weaviate_handler/icon.svg +0 -0
  1822. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/weaviate_handler/requirements.txt +0 -0
  1823. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +0 -0
  1824. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/web_handler/__about__.py +0 -0
  1825. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/web_handler/__init__.py +0 -0
  1826. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/web_handler/icon.svg +0 -0
  1827. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/web_handler/requirements.txt +0 -0
  1828. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/web_handler/web_handler.py +0 -0
  1829. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/webz_handler/__about__.py +0 -0
  1830. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/webz_handler/__init__.py +0 -0
  1831. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/webz_handler/icon.svg +0 -0
  1832. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/webz_handler/requirements.txt +0 -0
  1833. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/webz_handler/webz_handler.py +0 -0
  1834. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/webz_handler/webz_tables.py +0 -0
  1835. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/whatsapp_handler/__about__.py +0 -0
  1836. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/whatsapp_handler/__init__.py +0 -0
  1837. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/whatsapp_handler/icon.svg +0 -0
  1838. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/whatsapp_handler/requirements.txt +0 -0
  1839. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py +0 -0
  1840. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/__about__.py +0 -0
  1841. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/__init__.py +0 -0
  1842. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/evaluate.py +0 -0
  1843. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/icon.svg +0 -0
  1844. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/ingest.py +0 -0
  1845. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/rag.py +0 -0
  1846. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/requirements.txt +0 -0
  1847. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/settings.py +0 -0
  1848. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/writer_handler/writer_handler.py +0 -0
  1849. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/xata_handler/__about__.py +0 -0
  1850. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/xata_handler/__init__.py +0 -0
  1851. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/xata_handler/connection_args.py +0 -0
  1852. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/xata_handler/icon.svg +0 -0
  1853. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/xata_handler/requirements.txt +0 -0
  1854. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/trino_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/xata_handler}/tests/__init__.py +0 -0
  1855. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/xata_handler/xata_handler.py +0 -0
  1856. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/youtube_handler/__about__.py +0 -0
  1857. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/youtube_handler/__init__.py +0 -0
  1858. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/youtube_handler/connection_args.py +0 -0
  1859. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/youtube_handler/icon.svg +0 -0
  1860. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/youtube_handler/requirements.txt +0 -0
  1861. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +0 -0
  1862. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +0 -0
  1863. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/yugabyte_handler/__about__.py +0 -0
  1864. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/yugabyte_handler/__init__.py +0 -0
  1865. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/yugabyte_handler/icon.svg +0 -0
  1866. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/unify_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/yugabyte_handler}/tests/__init__.py +0 -0
  1867. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +0 -0
  1868. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +0 -0
  1869. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zendesk_handler/__about__.py +0 -0
  1870. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zendesk_handler/__init__.py +0 -0
  1871. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zendesk_handler/connection_args.py +0 -0
  1872. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zendesk_handler/icon.svg +0 -0
  1873. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zendesk_handler/requirements.txt +0 -0
  1874. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py +0 -0
  1875. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +0 -0
  1876. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +0 -0
  1877. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py +0 -0
  1878. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +0 -0
  1879. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/vertica_handler → mindsdb-25.10.0rc1/mindsdb/integrations/handlers/zipcodebase_handler}/tests/__init__.py +0 -0
  1880. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +0 -0
  1881. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +0 -0
  1882. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +0 -0
  1883. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zotero_handler/__about__.py +0 -0
  1884. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zotero_handler/__init__.py +0 -0
  1885. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zotero_handler/icon.svg +0 -0
  1886. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zotero_handler/requirements.txt +0 -0
  1887. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zotero_handler/zotero_handler.py +0 -0
  1888. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/handlers/zotero_handler/zotero_tables.py +0 -0
  1889. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/__init__.py +0 -0
  1890. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/api_handler_exceptions.py +0 -0
  1891. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/api_handler_generator.py +0 -0
  1892. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/const.py +0 -0
  1893. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/keyword_search_base.py +0 -0
  1894. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/vitess_handler/tests → mindsdb-25.10.0rc1/mindsdb/integrations/libs/llm}/__init__.py +0 -0
  1895. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/llm/config.py +0 -0
  1896. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/ml_exec_base.py +0 -0
  1897. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/ml_handler_process/__init__.py +0 -0
  1898. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/ml_handler_process/create_validation_process.py +0 -0
  1899. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/ml_handler_process/describe_process.py +0 -0
  1900. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py +0 -0
  1901. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/ml_handler_process/predict_process.py +0 -0
  1902. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/realtime_chat_handler.py +0 -0
  1903. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/libs/storage_handler.py +0 -0
  1904. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/xata_handler/tests → mindsdb-25.10.0rc1/mindsdb/integrations/utilities}/__init__.py +0 -0
  1905. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/yugabyte_handler/tests → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/datasets}/__init__.py +0 -0
  1906. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/datasets/dataset.py +0 -0
  1907. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +0 -0
  1908. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +0 -0
  1909. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/date_utils.py +0 -0
  1910. {mindsdb-25.9.2.0a1/mindsdb/integrations/handlers/zipcodebase_handler/tests → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/files}/__init__.py +0 -0
  1911. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handler_utils.py +0 -0
  1912. {mindsdb-25.9.2.0a1/mindsdb/integrations/libs/llm → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/handlers}/__init__.py +0 -0
  1913. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/handlers/api_utilities}/__init__.py +0 -0
  1914. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py +0 -0
  1915. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +0 -0
  1916. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/datasets → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/handlers/auth_utilities}/__init__.py +0 -0
  1917. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py +0 -0
  1918. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py +0 -0
  1919. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py +0 -0
  1920. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +0 -0
  1921. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py +0 -0
  1922. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +0 -0
  1923. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/query_utilities/__init__.py +0 -0
  1924. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py +0 -0
  1925. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py +0 -0
  1926. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py +0 -0
  1927. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py +0 -0
  1928. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py +0 -0
  1929. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py +0 -0
  1930. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py +0 -0
  1931. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py +0 -0
  1932. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/install.py +0 -0
  1933. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/pydantic_utils.py +0 -0
  1934. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/query_traversal.py +0 -0
  1935. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/files → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag}/__init__.py +0 -0
  1936. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/handlers → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/chains}/__init__.py +0 -0
  1937. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/chains/local_context_summarizer_chain.py +0 -0
  1938. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +0 -0
  1939. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/handlers/api_utilities → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/loaders}/__init__.py +0 -0
  1940. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/loaders/file_loader.py +0 -0
  1941. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py +0 -0
  1942. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/handlers/auth_utilities → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/loaders/vector_store_loader}/__init__.py +0 -0
  1943. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +0 -0
  1944. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +0 -0
  1945. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/pipelines}/__init__.py +0 -0
  1946. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/pipelines/rag.py +0 -0
  1947. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/rag_pipeline_builder.py +0 -0
  1948. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/chains → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/rerankers}/__init__.py +0 -0
  1949. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/retrievers/__init__.py +0 -0
  1950. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py +0 -0
  1951. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/retrievers/base.py +0 -0
  1952. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/retrievers/multi_hop_retriever.py +0 -0
  1953. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py +0 -0
  1954. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/retrievers/retriever_factory.py +0 -0
  1955. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/loaders → mindsdb-25.10.0rc1/mindsdb/integrations/utilities/rag/splitters}/__init__.py +0 -0
  1956. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/utils.py +0 -0
  1957. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/rag/vector_store.py +0 -0
  1958. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/sql_utils.py +0 -0
  1959. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/test_utils.py +0 -0
  1960. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/time_series_utils.py +0 -0
  1961. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/integrations/utilities/utils.py +0 -0
  1962. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/__init__.py +0 -0
  1963. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/loaders/vector_store_loader → mindsdb-25.10.0rc1/mindsdb/interfaces/agents}/__init__.py +0 -0
  1964. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/agents/callback_handlers.py +0 -0
  1965. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/agents/event_dispatch_callback_handler.py +0 -0
  1966. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/agents/langchain_agent.py +0 -0
  1967. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/agents/langfuse_callback_handler.py +0 -0
  1968. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/agents/mindsdb_chat_model.py +0 -0
  1969. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/agents/providers.py +0 -0
  1970. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/agents/safe_output_parser.py +0 -0
  1971. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/chatbot/__init__.py +0 -0
  1972. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/chatbot/chatbot_controller.py +0 -0
  1973. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/chatbot/chatbot_executor.py +0 -0
  1974. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/chatbot/memory.py +0 -0
  1975. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/chatbot/model_executor.py +0 -0
  1976. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/chatbot/types.py +0 -0
  1977. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/pipelines → mindsdb-25.10.0rc1/mindsdb/interfaces/data_catalog}/__init__.py +0 -0
  1978. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/data_catalog/base_data_catalog.py +0 -0
  1979. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/rerankers → mindsdb-25.10.0rc1/mindsdb/interfaces/database}/__init__.py +0 -0
  1980. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/database/log.py +0 -0
  1981. {mindsdb-25.9.2.0a1/mindsdb/integrations/utilities/rag/splitters → mindsdb-25.10.0rc1/mindsdb/interfaces/file}/__init__.py +0 -0
  1982. {mindsdb-25.9.2.0a1/mindsdb/interfaces/agents → mindsdb-25.10.0rc1/mindsdb/interfaces/functions}/__init__.py +0 -0
  1983. {mindsdb-25.9.2.0a1/mindsdb/interfaces/data_catalog → mindsdb-25.10.0rc1/mindsdb/interfaces/jobs}/__init__.py +0 -0
  1984. {mindsdb-25.9.2.0a1/mindsdb/interfaces/database → mindsdb-25.10.0rc1/mindsdb/interfaces/knowledge_base}/__init__.py +0 -0
  1985. {mindsdb-25.9.2.0a1/mindsdb/interfaces/file → mindsdb-25.10.0rc1/mindsdb/interfaces/knowledge_base/preprocessing}/__init__.py +0 -0
  1986. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/knowledge_base/preprocessing/constants.py +0 -0
  1987. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +0 -0
  1988. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +0 -0
  1989. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/knowledge_base/preprocessing/models.py +0 -0
  1990. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/knowledge_base/preprocessing/text_splitter.py +0 -0
  1991. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/knowledge_base/utils.py +0 -0
  1992. {mindsdb-25.9.2.0a1/mindsdb/interfaces/functions → mindsdb-25.10.0rc1/mindsdb/interfaces/model}/__init__.py +0 -0
  1993. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/model/functions.py +0 -0
  1994. {mindsdb-25.9.2.0a1/mindsdb/interfaces/jobs → mindsdb-25.10.0rc1/mindsdb/interfaces/query_context}/__init__.py +0 -0
  1995. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/query_context/last_query.py +0 -0
  1996. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/query_context/query_task.py +0 -0
  1997. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/skills/__init__.py +0 -0
  1998. {mindsdb-25.9.2.0a1/mindsdb/interfaces/knowledge_base → mindsdb-25.10.0rc1/mindsdb/interfaces/skills/custom}/__init__.py +0 -0
  1999. {mindsdb-25.9.2.0a1/mindsdb/interfaces/knowledge_base/preprocessing → mindsdb-25.10.0rc1/mindsdb/interfaces/skills/custom/text2sql}/__init__.py +0 -0
  2000. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +0 -0
  2001. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py +0 -0
  2002. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/storage/__init__.py +0 -0
  2003. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/storage/model_fs.py +0 -0
  2004. {mindsdb-25.9.2.0a1/mindsdb/interfaces/model → mindsdb-25.10.0rc1/mindsdb/interfaces/tabs}/__init__.py +0 -0
  2005. {mindsdb-25.9.2.0a1/mindsdb/interfaces/query_context → mindsdb-25.10.0rc1/mindsdb/interfaces/tasks}/__init__.py +0 -0
  2006. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/tasks/task.py +0 -0
  2007. {mindsdb-25.9.2.0a1/mindsdb/interfaces/skills/custom → mindsdb-25.10.0rc1/mindsdb/interfaces/triggers}/__init__.py +0 -0
  2008. {mindsdb-25.9.2.0a1/mindsdb/interfaces/skills/custom/text2sql → mindsdb-25.10.0rc1/mindsdb/interfaces/variables}/__init__.py +0 -0
  2009. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/interfaces/variables/variables_controller.py +0 -0
  2010. {mindsdb-25.9.2.0a1/mindsdb/interfaces/tabs → mindsdb-25.10.0rc1/mindsdb/metrics}/__init__.py +0 -0
  2011. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/metrics/metrics.py +0 -0
  2012. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/metrics/server.py +0 -0
  2013. {mindsdb-25.9.2.0a1/mindsdb/interfaces/tasks → mindsdb-25.10.0rc1/mindsdb/migrations}/__init__.py +0 -0
  2014. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/alembic.ini +0 -0
  2015. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/env.py +0 -0
  2016. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +0 -0
  2017. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +0 -0
  2018. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +0 -0
  2019. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +0 -0
  2020. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +0 -0
  2021. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +0 -0
  2022. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +0 -0
  2023. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +0 -0
  2024. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +0 -0
  2025. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +0 -0
  2026. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +0 -0
  2027. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +0 -0
  2028. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +0 -0
  2029. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +0 -0
  2030. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +0 -0
  2031. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +0 -0
  2032. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +0 -0
  2033. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +0 -0
  2034. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +0 -0
  2035. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +0 -0
  2036. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +0 -0
  2037. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +0 -0
  2038. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +0 -0
  2039. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +0 -0
  2040. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +0 -0
  2041. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +0 -0
  2042. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +0 -0
  2043. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +0 -0
  2044. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +0 -0
  2045. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +0 -0
  2046. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +0 -0
  2047. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +0 -0
  2048. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +0 -0
  2049. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +0 -0
  2050. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +0 -0
  2051. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +0 -0
  2052. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +0 -0
  2053. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +0 -0
  2054. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +0 -0
  2055. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py +0 -0
  2056. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py +0 -0
  2057. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py +0 -0
  2058. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py +0 -0
  2059. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py +0 -0
  2060. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py +0 -0
  2061. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py +0 -0
  2062. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py +0 -0
  2063. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py +0 -0
  2064. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py +0 -0
  2065. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py +0 -0
  2066. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py +0 -0
  2067. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py +0 -0
  2068. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-01-15_c06c35f7e8e1_project_company.py +0 -0
  2069. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-02-09_4943359e354a_file_metadata.py +0 -0
  2070. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-02-10_6ab9903fc59a_del_log_table.py +0 -0
  2071. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_json_storage.py +0 -0
  2072. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py +0 -0
  2073. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-03-21_fda503400e43_queries.py +0 -0
  2074. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-04-22_53502b6d63bf_query_database.py +0 -0
  2075. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-05-21_9f150e4f9a05_checkpoint_1.py +0 -0
  2076. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-05-28_a44643042fe8_added_data_catalog_tables.py +0 -0
  2077. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/migrations/versions/2025-06-09_608e376c19a7_updated_data_catalog_data_types.py +0 -0
  2078. {mindsdb-25.9.2.0a1/mindsdb/interfaces/triggers → mindsdb-25.10.0rc1/mindsdb/migrations/versions}/__init__.py +0 -0
  2079. {mindsdb-25.9.2.0a1/mindsdb/interfaces/variables → mindsdb-25.10.0rc1/mindsdb/utilities}/__init__.py +0 -0
  2080. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/auth.py +0 -0
  2081. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/cache.py +0 -0
  2082. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/context.py +0 -0
  2083. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/context_executor.py +0 -0
  2084. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/functions.py +0 -0
  2085. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/hooks/__init__.py +0 -0
  2086. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/ml_task_queue/__init__.py +0 -0
  2087. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/ml_task_queue/base.py +0 -0
  2088. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/ml_task_queue/const.py +0 -0
  2089. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/ml_task_queue/task.py +0 -0
  2090. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/ml_task_queue/utils.py +0 -0
  2091. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/otel/__init__.py +0 -0
  2092. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/otel/logger.py +0 -0
  2093. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/otel/meter.py +0 -0
  2094. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/otel/metric_handlers/__init__.py +0 -0
  2095. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/otel/prepare.py +0 -0
  2096. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/otel/tracer.py +0 -0
  2097. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/partitioning.py +0 -0
  2098. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/profiler/__init__.py +0 -0
  2099. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/profiler/profiler.py +0 -0
  2100. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/ps.py +0 -0
  2101. {mindsdb-25.9.2.0a1/mindsdb/metrics → mindsdb-25.10.0rc1/mindsdb/utilities/render}/__init__.py +0 -0
  2102. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/security.py +0 -0
  2103. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/sentry.py +0 -0
  2104. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/sql.py +0 -0
  2105. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/mindsdb/utilities/wizards.py +0 -0
  2106. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/pyproject.toml +0 -0
  2107. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/requirements/requirements-dev.txt +0 -0
  2108. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/requirements/requirements-langfuse.txt +0 -0
  2109. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/requirements/requirements-opentelemetry.txt +0 -0
  2110. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/setup.cfg +0 -0
  2111. {mindsdb-25.9.2.0a1 → mindsdb-25.10.0rc1}/setup.py +0 -0
@@ -0,0 +1,970 @@
1
+ Metadata-Version: 2.4
2
+ Name: MindsDB
3
+ Version: 25.10.0rc1
4
+ Summary: MindsDB's AI SQL Server enables developers to build AI tools that need access to real-time data to perform their tasks
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: Elastic License 2.0
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.10,<3.14
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: packaging
16
+ Requires-Dist: flask==3.0.3
17
+ Requires-Dist: werkzeug==3.0.6
18
+ Requires-Dist: flask-restx<2.0.0,>=1.3.0
19
+ Requires-Dist: pandas==2.2.3
20
+ Requires-Dist: python-multipart==0.0.20
21
+ Requires-Dist: cryptography>=35.0
22
+ Requires-Dist: psycopg[binary]
23
+ Requires-Dist: psutil~=7.0
24
+ Requires-Dist: sqlalchemy<3.0.0,>=2.0.0
25
+ Requires-Dist: psycopg2-binary
26
+ Requires-Dist: alembic>=1.3.3
27
+ Requires-Dist: redis<6.0.0,>=5.0.0
28
+ Requires-Dist: walrus==0.9.3
29
+ Requires-Dist: flask-compress>=1.0.0
30
+ Requires-Dist: appdirs>=1.0.0
31
+ Requires-Dist: mindsdb-sql-parser~=0.12.0
32
+ Requires-Dist: pydantic==2.11.4
33
+ Requires-Dist: mindsdb-evaluator==0.0.20
34
+ Requires-Dist: duckdb==1.3.0; sys_platform == "win32"
35
+ Requires-Dist: duckdb~=1.3.2; sys_platform != "win32"
36
+ Requires-Dist: requests==2.32.4
37
+ Requires-Dist: dateparser==1.2.0
38
+ Requires-Dist: dill==0.3.6
39
+ Requires-Dist: numpy
40
+ Requires-Dist: pytz
41
+ Requires-Dist: botocore
42
+ Requires-Dist: boto3>=1.34.131
43
+ Requires-Dist: python-dateutil
44
+ Requires-Dist: scikit-learn==1.5.2
45
+ Requires-Dist: hierarchicalforecast~=0.4.0
46
+ Requires-Dist: langchain==0.3.27
47
+ Requires-Dist: langchain-community==0.3.27
48
+ Requires-Dist: langchain-core==0.3.72
49
+ Requires-Dist: langchain-experimental==0.3.4
50
+ Requires-Dist: langchain-nvidia-ai-endpoints==0.3.3
51
+ Requires-Dist: langchain-openai==0.3.6
52
+ Requires-Dist: langchain-anthropic==0.2.4
53
+ Requires-Dist: langchain-text-splitters==0.3.9
54
+ Requires-Dist: langchain-google-genai>=2.0.0
55
+ Requires-Dist: langchain_writer==0.3.2
56
+ Requires-Dist: lark
57
+ Requires-Dist: lxml==5.3.0
58
+ Requires-Dist: pgvector==0.3.6
59
+ Requires-Dist: prometheus-client==0.20.0
60
+ Requires-Dist: sentry-sdk[flask]==2.14.0
61
+ Requires-Dist: openai<1.100.0,>=1.58.1
62
+ Requires-Dist: pyaml==23.12.0
63
+ Requires-Dist: mcp~=1.10.1
64
+ Requires-Dist: starlette>=0.27
65
+ Requires-Dist: a2wsgi~=1.10.10
66
+ Requires-Dist: fastapi<1.0.0,>=0.110.0
67
+ Requires-Dist: uvicorn<1.0.0,>=0.30.0
68
+ Requires-Dist: pymupdf==1.25.2
69
+ Requires-Dist: filetype
70
+ Requires-Dist: charset-normalizer
71
+ Requires-Dist: openpyxl
72
+ Requires-Dist: aipdf==0.0.5
73
+ Requires-Dist: pyarrow<=19.0.0
74
+ Requires-Dist: orjson==3.11.3
75
+ Requires-Dist: httpx==0.28.1
76
+ Requires-Dist: sse-starlette==2.3.3
77
+ Requires-Dist: typing-extensions==4.13.2
78
+ Requires-Dist: jwcrypto==1.5.6
79
+ Requires-Dist: pyjwt==2.10.1
80
+ Requires-Dist: pydantic_core>=2.33.2
81
+ Requires-Dist: anthropic>=0.26.1
82
+ Requires-Dist: chromadb~=0.6.3
83
+ Requires-Dist: litellm==1.63.14
84
+ Requires-Dist: wikipedia==1.4.0
85
+ Requires-Dist: tiktoken
86
+ Requires-Dist: mysql-connector-python==9.1.0
87
+ Requires-Dist: tiktoken
88
+ Requires-Dist: bs4
89
+ Requires-Dist: html2text
90
+ Provides-Extra: dev
91
+ Requires-Dist: pre-commit>=2.16.0; extra == "dev"
92
+ Requires-Dist: watchfiles==0.19.0; extra == "dev"
93
+ Requires-Dist: setuptools==78.1.1; extra == "dev"
94
+ Requires-Dist: wheel; extra == "dev"
95
+ Requires-Dist: deptry==0.20.0; extra == "dev"
96
+ Requires-Dist: twine; extra == "dev"
97
+ Requires-Dist: importlib_metadata==7.2.1; extra == "dev"
98
+ Requires-Dist: ruff==0.11.11; extra == "dev"
99
+ Provides-Extra: langfuse
100
+ Requires-Dist: langfuse==2.53.3; extra == "langfuse"
101
+ Provides-Extra: opentelemetry
102
+ Requires-Dist: opentelemetry-api==1.27.0; extra == "opentelemetry"
103
+ Requires-Dist: opentelemetry-sdk==1.27.0; extra == "opentelemetry"
104
+ Requires-Dist: opentelemetry-exporter-otlp==1.27.0; extra == "opentelemetry"
105
+ Requires-Dist: opentelemetry-instrumentation-requests==0.48b0; extra == "opentelemetry"
106
+ Requires-Dist: opentelemetry-instrumentation-flask==0.48b0; extra == "opentelemetry"
107
+ Requires-Dist: opentelemetry-distro==0.48b0; extra == "opentelemetry"
108
+ Provides-Extra: test
109
+ Requires-Dist: scipy==1.15.3; extra == "test"
110
+ Requires-Dist: docker>=5.0.3; extra == "test"
111
+ Requires-Dist: openai<2.0.0,>=1.54.0; extra == "test"
112
+ Requires-Dist: pytest<9.0.0,>=8.3.5; extra == "test"
113
+ Requires-Dist: pytest-subtests; extra == "test"
114
+ Requires-Dist: pytest-xdist; extra == "test"
115
+ Requires-Dist: pytest-cov; extra == "test"
116
+ Requires-Dist: pytest-json-report==1.5.0; extra == "test"
117
+ Requires-Dist: pytest-metadata==3.1.1; extra == "test"
118
+ Requires-Dist: python-dotenv==1.1.1; extra == "test"
119
+ Requires-Dist: lightwood>=25.9.1.0; extra == "test"
120
+ Requires-Dist: responses; extra == "test"
121
+ Requires-Dist: coveralls; extra == "test"
122
+ Requires-Dist: locust; extra == "test"
123
+ Requires-Dist: ollama>=0.1.7; extra == "test"
124
+ Requires-Dist: anthropic>=0.21.3; extra == "test"
125
+ Requires-Dist: langchain-google-genai>=2.0.0; extra == "test"
126
+ Requires-Dist: mindsdb-sdk; extra == "test"
127
+ Requires-Dist: filelock==3.18.0; extra == "test"
128
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "test"
129
+ Requires-Dist: walrus==0.9.3; extra == "test"
130
+ Requires-Dist: pymongo==4.8.0; extra == "test"
131
+ Requires-Dist: pytest-json-report==1.5.0; extra == "test"
132
+ Provides-Extra: all-extras
133
+ Requires-Dist: pytest-xdist; extra == "all-extras"
134
+ Requires-Dist: locust; extra == "all-extras"
135
+ Requires-Dist: pytest-json-report==1.5.0; extra == "all-extras"
136
+ Requires-Dist: responses; extra == "all-extras"
137
+ Requires-Dist: setuptools==78.1.1; extra == "all-extras"
138
+ Requires-Dist: deptry==0.20.0; extra == "all-extras"
139
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "all-extras"
140
+ Requires-Dist: pre-commit>=2.16.0; extra == "all-extras"
141
+ Requires-Dist: filelock==3.18.0; extra == "all-extras"
142
+ Requires-Dist: pytest-metadata==3.1.1; extra == "all-extras"
143
+ Requires-Dist: scipy==1.15.3; extra == "all-extras"
144
+ Requires-Dist: opentelemetry-exporter-otlp==1.27.0; extra == "all-extras"
145
+ Requires-Dist: opentelemetry-distro==0.48b0; extra == "all-extras"
146
+ Requires-Dist: docker>=5.0.3; extra == "all-extras"
147
+ Requires-Dist: pytest-subtests; extra == "all-extras"
148
+ Requires-Dist: ollama>=0.1.7; extra == "all-extras"
149
+ Requires-Dist: anthropic>=0.21.3; extra == "all-extras"
150
+ Requires-Dist: langfuse==2.53.3; extra == "all-extras"
151
+ Requires-Dist: pymongo==4.8.0; extra == "all-extras"
152
+ Requires-Dist: coveralls; extra == "all-extras"
153
+ Requires-Dist: opentelemetry-sdk==1.27.0; extra == "all-extras"
154
+ Requires-Dist: walrus==0.9.3; extra == "all-extras"
155
+ Requires-Dist: mindsdb-sdk; extra == "all-extras"
156
+ Requires-Dist: lightwood>=25.9.1.0; extra == "all-extras"
157
+ Requires-Dist: opentelemetry-instrumentation-requests==0.48b0; extra == "all-extras"
158
+ Requires-Dist: wheel; extra == "all-extras"
159
+ Requires-Dist: opentelemetry-api==1.27.0; extra == "all-extras"
160
+ Requires-Dist: opentelemetry-instrumentation-flask==0.48b0; extra == "all-extras"
161
+ Requires-Dist: openai<2.0.0,>=1.54.0; extra == "all-extras"
162
+ Requires-Dist: pytest<9.0.0,>=8.3.5; extra == "all-extras"
163
+ Requires-Dist: python-dotenv==1.1.1; extra == "all-extras"
164
+ Requires-Dist: twine; extra == "all-extras"
165
+ Requires-Dist: watchfiles==0.19.0; extra == "all-extras"
166
+ Requires-Dist: langchain-google-genai>=2.0.0; extra == "all-extras"
167
+ Requires-Dist: importlib_metadata==7.2.1; extra == "all-extras"
168
+ Requires-Dist: ruff==0.11.11; extra == "all-extras"
169
+ Requires-Dist: pytest-cov; extra == "all-extras"
170
+ Provides-Extra: access
171
+ Requires-Dist: sqlalchemy-access; extra == "access"
172
+ Requires-Dist: pyodbc; extra == "access"
173
+ Provides-Extra: aerospike
174
+ Requires-Dist: aerospike~=13.0.0; extra == "aerospike"
175
+ Provides-Extra: altibase
176
+ Requires-Dist: pyodbc; extra == "altibase"
177
+ Requires-Dist: jaydebeapi; extra == "altibase"
178
+ Provides-Extra: anomaly-detection
179
+ Requires-Dist: pyod>=1.1; extra == "anomaly-detection"
180
+ Requires-Dist: catboost>=1.2; extra == "anomaly-detection"
181
+ Requires-Dist: joblib; extra == "anomaly-detection"
182
+ Requires-Dist: xgboost; extra == "anomaly-detection"
183
+ Provides-Extra: anthropic
184
+ Requires-Dist: anthropic==0.18.1; extra == "anthropic"
185
+ Provides-Extra: apache-doris
186
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "apache-doris"
187
+ Provides-Extra: aurora
188
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "aurora"
189
+ Provides-Extra: autogluon
190
+ Requires-Dist: autogluon; extra == "autogluon"
191
+ Requires-Dist: type_infer==0.0.25; extra == "autogluon"
192
+ Provides-Extra: autokeras
193
+ Requires-Dist: tensorflow; extra == "autokeras"
194
+ Requires-Dist: autokeras; extra == "autokeras"
195
+ Provides-Extra: autosklearn
196
+ Requires-Dist: auto-sklearn; extra == "autosklearn"
197
+ Requires-Dist: type_infer==0.0.25; extra == "autosklearn"
198
+ Provides-Extra: azure-blob
199
+ Requires-Dist: azure-storage-blob; extra == "azure-blob"
200
+ Provides-Extra: bedrock
201
+ Requires-Dist: pydantic-settings>=2.1.0; extra == "bedrock"
202
+ Provides-Extra: bigquery
203
+ Requires-Dist: sqlalchemy-bigquery; extra == "bigquery"
204
+ Requires-Dist: google-auth; extra == "bigquery"
205
+ Requires-Dist: google-auth-oauthlib; extra == "bigquery"
206
+ Requires-Dist: google-cloud-bigquery[pandas]; extra == "bigquery"
207
+ Provides-Extra: binance
208
+ Requires-Dist: binance-connector; extra == "binance"
209
+ Provides-Extra: box
210
+ Requires-Dist: box-sdk-gen; extra == "box"
211
+ Provides-Extra: byom
212
+ Requires-Dist: virtualenv; extra == "byom"
213
+ Provides-Extra: cassandra
214
+ Requires-Dist: scylla-driver; extra == "cassandra"
215
+ Provides-Extra: chromadb
216
+ Requires-Dist: chromadb~=0.6.3; extra == "chromadb"
217
+ Requires-Dist: onnxruntime==1.20.1; extra == "chromadb"
218
+ Provides-Extra: ckan
219
+ Requires-Dist: ckanapi; extra == "ckan"
220
+ Provides-Extra: clickhouse
221
+ Requires-Dist: clickhouse-sqlalchemy>=0.3.1; extra == "clickhouse"
222
+ Provides-Extra: cloud-spanner
223
+ Requires-Dist: sqlalchemy-spanner; extra == "cloud-spanner"
224
+ Requires-Dist: google-cloud-spanner; extra == "cloud-spanner"
225
+ Provides-Extra: cloud-sql
226
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "cloud-sql"
227
+ Requires-Dist: pymssql>=2.1.4; extra == "cloud-sql"
228
+ Provides-Extra: cohere
229
+ Requires-Dist: cohere==4.5.1; extra == "cohere"
230
+ Provides-Extra: coinbase
231
+ Provides-Extra: couchbase
232
+ Requires-Dist: couchbase==4.3.1; extra == "couchbase"
233
+ Provides-Extra: couchbasevector
234
+ Requires-Dist: couchbase==4.3.1; extra == "couchbasevector"
235
+ Provides-Extra: crate
236
+ Requires-Dist: crate; extra == "crate"
237
+ Requires-Dist: sqlalchemy-cratedb; extra == "crate"
238
+ Provides-Extra: d0lt
239
+ Requires-Dist: pymysql; extra == "d0lt"
240
+ Provides-Extra: databend
241
+ Requires-Dist: databend-sqlalchemy; extra == "databend"
242
+ Provides-Extra: databricks
243
+ Requires-Dist: databricks-sql-connector<4.0.0,>=3.7.1; extra == "databricks"
244
+ Provides-Extra: datastax
245
+ Requires-Dist: scylla-driver; extra == "datastax"
246
+ Provides-Extra: db2
247
+ Requires-Dist: ibm-db-sa; extra == "db2"
248
+ Requires-Dist: ibm-db; extra == "db2"
249
+ Provides-Extra: derby
250
+ Requires-Dist: jaydebeapi; extra == "derby"
251
+ Provides-Extra: discord
252
+ Provides-Extra: documentdb
253
+ Requires-Dist: pymongo==4.8.0; extra == "documentdb"
254
+ Provides-Extra: dremio
255
+ Requires-Dist: sqlalchemy_dremio; extra == "dremio"
256
+ Provides-Extra: dropbox
257
+ Requires-Dist: dropbox; extra == "dropbox"
258
+ Provides-Extra: druid
259
+ Requires-Dist: pydruid; extra == "druid"
260
+ Provides-Extra: dspy
261
+ Requires-Dist: anthropic>=0.26.1; extra == "dspy"
262
+ Requires-Dist: chromadb; extra == "dspy"
263
+ Requires-Dist: dspy-ai==2.4.12; extra == "dspy"
264
+ Requires-Dist: wikipedia==1.4.0; extra == "dspy"
265
+ Requires-Dist: dspy==0.1.4; extra == "dspy"
266
+ Requires-Dist: tiktoken; extra == "dspy"
267
+ Provides-Extra: edgelessdb
268
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "edgelessdb"
269
+ Provides-Extra: elasticsearch
270
+ Requires-Dist: elasticsearch==7.13.4; extra == "elasticsearch"
271
+ Requires-Dist: elasticsearch-dbapi==0.2.11; extra == "elasticsearch"
272
+ Provides-Extra: email
273
+ Requires-Dist: chardet; extra == "email"
274
+ Requires-Dist: bs4; extra == "email"
275
+ Provides-Extra: empress
276
+ Requires-Dist: pyodbc; extra == "empress"
277
+ Provides-Extra: eventbrite
278
+ Requires-Dist: eventbrite-python; extra == "eventbrite"
279
+ Provides-Extra: faunadb
280
+ Requires-Dist: faunadb; extra == "faunadb"
281
+ Provides-Extra: file
282
+ Provides-Extra: firebird
283
+ Requires-Dist: fdb; extra == "firebird"
284
+ Requires-Dist: sqlalchemy-firebird<3.0.0,>=2.0.0; extra == "firebird"
285
+ Provides-Extra: flaml
286
+ Requires-Dist: type_infer==0.0.25; extra == "flaml"
287
+ Requires-Dist: flaml<=1.2.3; extra == "flaml"
288
+ Provides-Extra: frappe
289
+ Provides-Extra: gcs
290
+ Requires-Dist: gcsfs; extra == "gcs"
291
+ Requires-Dist: fsspec; extra == "gcs"
292
+ Requires-Dist: google-cloud-storage; extra == "gcs"
293
+ Requires-Dist: google-auth; extra == "gcs"
294
+ Provides-Extra: github
295
+ Requires-Dist: pygithub==2.6.1; extra == "github"
296
+ Provides-Extra: gitlab
297
+ Requires-Dist: python-gitlab; extra == "gitlab"
298
+ Provides-Extra: gmail
299
+ Requires-Dist: google-api-python-client; extra == "gmail"
300
+ Requires-Dist: google-auth-oauthlib; extra == "gmail"
301
+ Requires-Dist: google-auth; extra == "gmail"
302
+ Provides-Extra: gong
303
+ Provides-Extra: google-analytics
304
+ Requires-Dist: google-api-python-client; extra == "google-analytics"
305
+ Requires-Dist: google-analytics-admin; extra == "google-analytics"
306
+ Requires-Dist: google-auth; extra == "google-analytics"
307
+ Provides-Extra: google-books
308
+ Requires-Dist: google-api-python-client; extra == "google-books"
309
+ Requires-Dist: google-auth; extra == "google-books"
310
+ Provides-Extra: google-calendar
311
+ Requires-Dist: google-api-python-client; extra == "google-calendar"
312
+ Requires-Dist: google-auth-oauthlib; extra == "google-calendar"
313
+ Requires-Dist: google-auth; extra == "google-calendar"
314
+ Provides-Extra: google-content-shopping
315
+ Requires-Dist: google-api-python-client; extra == "google-content-shopping"
316
+ Requires-Dist: google-auth; extra == "google-content-shopping"
317
+ Provides-Extra: google-fit
318
+ Requires-Dist: google-auth-oauthlib; extra == "google-fit"
319
+ Requires-Dist: tzlocal; extra == "google-fit"
320
+ Requires-Dist: google-api-python-client; extra == "google-fit"
321
+ Requires-Dist: google; extra == "google-fit"
322
+ Requires-Dist: google-auth; extra == "google-fit"
323
+ Provides-Extra: google-gemini
324
+ Requires-Dist: google-generativeai==0.3.2; extra == "google-gemini"
325
+ Requires-Dist: pillow; extra == "google-gemini"
326
+ Provides-Extra: google-search
327
+ Requires-Dist: google-api-python-client; extra == "google-search"
328
+ Requires-Dist: google-auth; extra == "google-search"
329
+ Provides-Extra: greptimedb
330
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "greptimedb"
331
+ Provides-Extra: groq
332
+ Requires-Dist: tiktoken; extra == "groq"
333
+ Requires-Dist: pydantic-settings>=2.1.0; extra == "groq"
334
+ Provides-Extra: hana
335
+ Requires-Dist: sqlalchemy-hana; extra == "hana"
336
+ Requires-Dist: hdbcli; extra == "hana"
337
+ Provides-Extra: hive
338
+ Requires-Dist: thrift; extra == "hive"
339
+ Requires-Dist: thrift-sasl; extra == "hive"
340
+ Requires-Dist: pyhive; extra == "hive"
341
+ Provides-Extra: hsqldb
342
+ Requires-Dist: pyodbc==4.0.34; extra == "hsqldb"
343
+ Provides-Extra: hubspot
344
+ Requires-Dist: hubspot-api-client==11.1.0; extra == "hubspot"
345
+ Provides-Extra: huggingface-api
346
+ Requires-Dist: hugging_py_face; extra == "huggingface-api"
347
+ Requires-Dist: huggingface-hub; extra == "huggingface-api"
348
+ Provides-Extra: huggingface
349
+ Requires-Dist: huggingface-hub==0.29.3; extra == "huggingface"
350
+ Requires-Dist: transformers>=4.42.4; extra == "huggingface"
351
+ Requires-Dist: datasets==2.16.1; extra == "huggingface"
352
+ Requires-Dist: nltk==3.9.1; extra == "huggingface"
353
+ Requires-Dist: evaluate==0.4.3; extra == "huggingface"
354
+ Requires-Dist: torch==2.8.0; extra == "huggingface"
355
+ Provides-Extra: huggingface-cpu
356
+ Requires-Dist: huggingface-hub==0.29.3; extra == "huggingface-cpu"
357
+ Requires-Dist: transformers>=4.42.4; extra == "huggingface-cpu"
358
+ Requires-Dist: datasets==2.16.1; extra == "huggingface-cpu"
359
+ Requires-Dist: nltk==3.9.1; extra == "huggingface-cpu"
360
+ Requires-Dist: torch==2.8.0+cpu; extra == "huggingface-cpu"
361
+ Requires-Dist: evaluate==0.4.3; extra == "huggingface-cpu"
362
+ Provides-Extra: ibm-cos
363
+ Requires-Dist: ibm-cos-sdk; extra == "ibm-cos"
364
+ Provides-Extra: ignite
365
+ Requires-Dist: pyignite; extra == "ignite"
366
+ Provides-Extra: impala
367
+ Requires-Dist: impyla; extra == "impala"
368
+ Provides-Extra: influxdb
369
+ Requires-Dist: influxdb3-python; extra == "influxdb"
370
+ Provides-Extra: informix
371
+ Requires-Dist: sqlalchemy-informix; extra == "informix"
372
+ Provides-Extra: ingres
373
+ Requires-Dist: sqlalchemy-ingres[all]; extra == "ingres"
374
+ Requires-Dist: pyodbc; extra == "ingres"
375
+ Provides-Extra: jira
376
+ Requires-Dist: atlassian-python-api; extra == "jira"
377
+ Provides-Extra: lancedb
378
+ Requires-Dist: lance; extra == "lancedb"
379
+ Requires-Dist: lancedb~=0.3.1; extra == "lancedb"
380
+ Provides-Extra: langchain-embedding
381
+ Requires-Dist: tiktoken; extra == "langchain-embedding"
382
+ Provides-Extra: langchain
383
+ Requires-Dist: anthropic>=0.26.1; extra == "langchain"
384
+ Requires-Dist: chromadb~=0.6.3; extra == "langchain"
385
+ Requires-Dist: litellm==1.63.14; extra == "langchain"
386
+ Requires-Dist: wikipedia==1.4.0; extra == "langchain"
387
+ Requires-Dist: tiktoken; extra == "langchain"
388
+ Provides-Extra: leonardoai
389
+ Provides-Extra: libsql
390
+ Requires-Dist: libsql-experimental; extra == "libsql"
391
+ Provides-Extra: lightfm
392
+ Requires-Dist: dataprep_ml==0.0.25; extra == "lightfm"
393
+ Requires-Dist: lightfm==1.17; extra == "lightfm"
394
+ Provides-Extra: lightwood
395
+ Requires-Dist: lightwood[xai]>=25.9.1.0; extra == "lightwood"
396
+ Requires-Dist: lightwood>=25.9.1.0; extra == "lightwood"
397
+ Requires-Dist: lightwood[extra]>=25.9.1.0; extra == "lightwood"
398
+ Requires-Dist: type_infer==0.0.25; extra == "lightwood"
399
+ Provides-Extra: lindorm
400
+ Requires-Dist: protobuf==4.25.8; extra == "lindorm"
401
+ Requires-Dist: phoenixdb; extra == "lindorm"
402
+ Requires-Dist: pyphoenix; extra == "lindorm"
403
+ Provides-Extra: litellm
404
+ Requires-Dist: litellm==1.63.14; extra == "litellm"
405
+ Provides-Extra: llama-index
406
+ Requires-Dist: llama-index-readers-web; extra == "llama-index"
407
+ Requires-Dist: llama-index-embeddings-openai; extra == "llama-index"
408
+ Requires-Dist: pydantic-settings>=2.1.0; extra == "llama-index"
409
+ Requires-Dist: llama-index==0.12.41; extra == "llama-index"
410
+ Provides-Extra: ludwig
411
+ Requires-Dist: ludwig[distributed]>=0.5.2; extra == "ludwig"
412
+ Requires-Dist: dask; extra == "ludwig"
413
+ Requires-Dist: ray==2.43.0; extra == "ludwig"
414
+ Provides-Extra: luma
415
+ Provides-Extra: mariadb
416
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "mariadb"
417
+ Provides-Extra: matrixone
418
+ Requires-Dist: pymysql; extra == "matrixone"
419
+ Provides-Extra: maxdb
420
+ Requires-Dist: jaydebeapi; extra == "maxdb"
421
+ Provides-Extra: mediawiki
422
+ Requires-Dist: mediawikiapi; extra == "mediawiki"
423
+ Provides-Extra: mendeley
424
+ Requires-Dist: mendeley; extra == "mendeley"
425
+ Provides-Extra: merlion
426
+ Requires-Dist: scipy; extra == "merlion"
427
+ Requires-Dist: salesforce-merlion<=1.3.1,>=1.2.0; extra == "merlion"
428
+ Provides-Extra: milvus
429
+ Requires-Dist: pymilvus==2.3; extra == "milvus"
430
+ Provides-Extra: minds-endpoint
431
+ Requires-Dist: tiktoken; extra == "minds-endpoint"
432
+ Requires-Dist: pydantic-settings>=2.1.0; extra == "minds-endpoint"
433
+ Provides-Extra: mlflow
434
+ Requires-Dist: mlflow; extra == "mlflow"
435
+ Provides-Extra: monetdb
436
+ Requires-Dist: pymonetdb; extra == "monetdb"
437
+ Requires-Dist: sqlalchemy-monetdb; extra == "monetdb"
438
+ Provides-Extra: mongodb
439
+ Requires-Dist: pymongo==4.8.0; extra == "mongodb"
440
+ Provides-Extra: ms-one-drive
441
+ Requires-Dist: msal; extra == "ms-one-drive"
442
+ Provides-Extra: ms-teams
443
+ Requires-Dist: botframework-connector; extra == "ms-teams"
444
+ Requires-Dist: msal; extra == "ms-teams"
445
+ Requires-Dist: botbuilder-schema; extra == "ms-teams"
446
+ Provides-Extra: mssql
447
+ Requires-Dist: pymssql>=2.1.4; extra == "mssql"
448
+ Provides-Extra: mssql-odbc
449
+ Requires-Dist: pyodbc>=5.2.0; extra == "mssql-odbc"
450
+ Requires-Dist: pymssql>=2.1.4; extra == "mssql-odbc"
451
+ Provides-Extra: mysql
452
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "mysql"
453
+ Provides-Extra: neuralforecast
454
+ Requires-Dist: neuralforecast<1.7.0,>=1.6.0; extra == "neuralforecast"
455
+ Requires-Dist: ray[tune]>=2.8.1; extra == "neuralforecast"
456
+ Provides-Extra: neuralforecast-extra
457
+ Requires-Dist: neuralforecast<1.7.0,>=1.6.0; extra == "neuralforecast-extra"
458
+ Requires-Dist: ray[tune]>=2.2.0; extra == "neuralforecast-extra"
459
+ Provides-Extra: newsapi
460
+ Requires-Dist: newsapi-python; extra == "newsapi"
461
+ Provides-Extra: notion
462
+ Requires-Dist: notion-client; extra == "notion"
463
+ Provides-Extra: nuo-jdbc
464
+ Requires-Dist: jaydebeapi; extra == "nuo-jdbc"
465
+ Provides-Extra: oceanbase
466
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "oceanbase"
467
+ Provides-Extra: openai
468
+ Requires-Dist: tiktoken; extra == "openai"
469
+ Provides-Extra: openbb
470
+ Requires-Dist: openbb-core==1.3.1; extra == "openbb"
471
+ Requires-Dist: openbb==4.3.1; extra == "openbb"
472
+ Provides-Extra: openstreetmap
473
+ Requires-Dist: overpy; extra == "openstreetmap"
474
+ Provides-Extra: oracle
475
+ Requires-Dist: oracledb==3.3.0; extra == "oracle"
476
+ Provides-Extra: palm
477
+ Requires-Dist: google-generativeai>=0.1.0; extra == "palm"
478
+ Provides-Extra: paypal
479
+ Requires-Dist: paypalrestsdk; extra == "paypal"
480
+ Provides-Extra: pgvector
481
+ Provides-Extra: phoenix
482
+ Requires-Dist: phoenixdb; extra == "phoenix"
483
+ Requires-Dist: pyphoenix; extra == "phoenix"
484
+ Provides-Extra: pinecone
485
+ Requires-Dist: pinecone-client==5.0.1; extra == "pinecone"
486
+ Provides-Extra: pinot
487
+ Requires-Dist: pinotdb; extra == "pinot"
488
+ Provides-Extra: plaid
489
+ Requires-Dist: plaid-python; extra == "plaid"
490
+ Provides-Extra: planetscale
491
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "planetscale"
492
+ Provides-Extra: popularity-recommender
493
+ Requires-Dist: polars; extra == "popularity-recommender"
494
+ Provides-Extra: portkey
495
+ Requires-Dist: portkey-ai>=1.8.2; extra == "portkey"
496
+ Provides-Extra: pycaret
497
+ Requires-Dist: pycaret[models]; extra == "pycaret"
498
+ Requires-Dist: pycaret; extra == "pycaret"
499
+ Provides-Extra: qdrant
500
+ Requires-Dist: qdrant-client; extra == "qdrant"
501
+ Provides-Extra: questdb
502
+ Requires-Dist: questdb; extra == "questdb"
503
+ Provides-Extra: quickbooks
504
+ Requires-Dist: qbosdk; extra == "quickbooks"
505
+ Provides-Extra: rag
506
+ Requires-Dist: chromadb~=0.6.3; extra == "rag"
507
+ Requires-Dist: html2text; extra == "rag"
508
+ Requires-Dist: onnxruntime==1.20.1; extra == "rag"
509
+ Requires-Dist: faiss-cpu; extra == "rag"
510
+ Requires-Dist: writerai~=1.1.0; extra == "rag"
511
+ Requires-Dist: sentence-transformers; extra == "rag"
512
+ Provides-Extra: reddit
513
+ Requires-Dist: praw; extra == "reddit"
514
+ Provides-Extra: replicate
515
+ Requires-Dist: replicate; extra == "replicate"
516
+ Provides-Extra: rocket-chat
517
+ Requires-Dist: rocketchat_API; extra == "rocket-chat"
518
+ Provides-Extra: rockset
519
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "rockset"
520
+ Provides-Extra: salesforce
521
+ Requires-Dist: salesforce_api==0.1.45; extra == "salesforce"
522
+ Provides-Extra: scylla
523
+ Requires-Dist: scylla-driver; extra == "scylla"
524
+ Provides-Extra: sendinblue
525
+ Requires-Dist: sib_api_v3_sdk; extra == "sendinblue"
526
+ Provides-Extra: sentence-transformers
527
+ Requires-Dist: chromadb~=0.6.3; extra == "sentence-transformers"
528
+ Requires-Dist: html2text; extra == "sentence-transformers"
529
+ Requires-Dist: onnxruntime==1.20.1; extra == "sentence-transformers"
530
+ Requires-Dist: writerai~=1.1.0; extra == "sentence-transformers"
531
+ Requires-Dist: faiss-cpu; extra == "sentence-transformers"
532
+ Requires-Dist: sentence-transformers; extra == "sentence-transformers"
533
+ Provides-Extra: shopify
534
+ Requires-Dist: ShopifyAPI; extra == "shopify"
535
+ Provides-Extra: singlestore
536
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "singlestore"
537
+ Provides-Extra: slack
538
+ Requires-Dist: slack_sdk==3.30.0; extra == "slack"
539
+ Provides-Extra: snowflake
540
+ Requires-Dist: snowflake-connector-python[pandas]==3.15.0; extra == "snowflake"
541
+ Requires-Dist: snowflake-sqlalchemy==1.7.0; extra == "snowflake"
542
+ Provides-Extra: solace
543
+ Requires-Dist: solace-pubsubplus; extra == "solace"
544
+ Provides-Extra: solr
545
+ Requires-Dist: sqlalchemy-solr; extra == "solr"
546
+ Provides-Extra: spacy
547
+ Requires-Dist: spacy; extra == "spacy"
548
+ Provides-Extra: sqlany
549
+ Requires-Dist: sqlalchemy-sqlany; extra == "sqlany"
550
+ Requires-Dist: sqlanydb; extra == "sqlany"
551
+ Provides-Extra: sqreamdb
552
+ Requires-Dist: pysqream>=3.2.5; extra == "sqreamdb"
553
+ Requires-Dist: pysqream_sqlalchemy>=0.8; extra == "sqreamdb"
554
+ Provides-Extra: stabilityai
555
+ Requires-Dist: pillow; extra == "stabilityai"
556
+ Requires-Dist: stability-sdk; extra == "stabilityai"
557
+ Provides-Extra: starrocks
558
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "starrocks"
559
+ Provides-Extra: statsforecast
560
+ Requires-Dist: numba<=0.61.2,>=0.55.0; extra == "statsforecast"
561
+ Requires-Dist: scipy==1.15.3; extra == "statsforecast"
562
+ Requires-Dist: statsforecast==1.6.0; extra == "statsforecast"
563
+ Provides-Extra: statsforecast-extra
564
+ Requires-Dist: numba<=0.61.2,>=0.55.0; extra == "statsforecast-extra"
565
+ Requires-Dist: scipy==1.15.3; extra == "statsforecast-extra"
566
+ Requires-Dist: statsforecast==1.6.0; extra == "statsforecast-extra"
567
+ Provides-Extra: strava
568
+ Requires-Dist: stravalib; extra == "strava"
569
+ Provides-Extra: stripe
570
+ Requires-Dist: stripe; extra == "stripe"
571
+ Provides-Extra: surrealdb
572
+ Requires-Dist: pysurrealdb; extra == "surrealdb"
573
+ Provides-Extra: symbl
574
+ Requires-Dist: symbl; extra == "symbl"
575
+ Provides-Extra: tdengine
576
+ Requires-Dist: taospy; extra == "tdengine"
577
+ Provides-Extra: teradata
578
+ Requires-Dist: teradatasqlalchemy; extra == "teradata"
579
+ Requires-Dist: teradatasql; extra == "teradata"
580
+ Provides-Extra: tidb
581
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "tidb"
582
+ Provides-Extra: timegpt
583
+ Requires-Dist: nixtla==0.6.6; extra == "timegpt"
584
+ Provides-Extra: togetherai
585
+ Requires-Dist: tiktoken; extra == "togetherai"
586
+ Requires-Dist: pydantic-settings>=2.1.0; extra == "togetherai"
587
+ Provides-Extra: tpot
588
+ Requires-Dist: tpot<=0.11.7; extra == "tpot"
589
+ Requires-Dist: type_infer==0.0.25; extra == "tpot"
590
+ Provides-Extra: trino
591
+ Requires-Dist: trino~=0.313.0; extra == "trino"
592
+ Requires-Dist: pyhive; extra == "trino"
593
+ Provides-Extra: twelve-labs
594
+ Requires-Dist: requests_toolbelt; extra == "twelve-labs"
595
+ Requires-Dist: pydantic-settings>=2.1.0; extra == "twelve-labs"
596
+ Provides-Extra: twilio
597
+ Requires-Dist: twilio; extra == "twilio"
598
+ Provides-Extra: twitter
599
+ Requires-Dist: tweepy; extra == "twitter"
600
+ Provides-Extra: unify
601
+ Requires-Dist: unifyai==0.9.2; extra == "unify"
602
+ Provides-Extra: vertex
603
+ Requires-Dist: google-auth-oauthlib; extra == "vertex"
604
+ Requires-Dist: google-cloud-aiplatform>=1.35.0; extra == "vertex"
605
+ Requires-Dist: google-auth; extra == "vertex"
606
+ Provides-Extra: vertica
607
+ Requires-Dist: sqlalchemy-vertica-python; extra == "vertica"
608
+ Requires-Dist: vertica-python; extra == "vertica"
609
+ Provides-Extra: vitess
610
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "vitess"
611
+ Provides-Extra: weaviate
612
+ Requires-Dist: weaviate-client~=3.24.2; extra == "weaviate"
613
+ Provides-Extra: web
614
+ Requires-Dist: bs4; extra == "web"
615
+ Requires-Dist: html2text; extra == "web"
616
+ Provides-Extra: webz
617
+ Requires-Dist: dotty-dict==1.3.1; extra == "webz"
618
+ Requires-Dist: webzio==1.0.2; extra == "webz"
619
+ Provides-Extra: whatsapp
620
+ Requires-Dist: twilio; extra == "whatsapp"
621
+ Provides-Extra: writer
622
+ Requires-Dist: rouge-score>=0.1.2; extra == "writer"
623
+ Requires-Dist: chromadb~=0.6.3; extra == "writer"
624
+ Requires-Dist: html2text; extra == "writer"
625
+ Requires-Dist: onnxruntime==1.20.1; extra == "writer"
626
+ Requires-Dist: scipy; extra == "writer"
627
+ Requires-Dist: nltk>=3.9; extra == "writer"
628
+ Requires-Dist: writerai~=1.1.0; extra == "writer"
629
+ Requires-Dist: faiss-cpu; extra == "writer"
630
+ Requires-Dist: sentence-transformers; extra == "writer"
631
+ Provides-Extra: xata
632
+ Requires-Dist: xata; extra == "xata"
633
+ Provides-Extra: youtube
634
+ Requires-Dist: google-api-python-client; extra == "youtube"
635
+ Requires-Dist: google-auth-oauthlib; extra == "youtube"
636
+ Requires-Dist: youtube-transcript-api; extra == "youtube"
637
+ Requires-Dist: google-auth; extra == "youtube"
638
+ Provides-Extra: zendesk
639
+ Requires-Dist: zenpy; extra == "zendesk"
640
+ Provides-Extra: zotero
641
+ Requires-Dist: pyzotero; extra == "zotero"
642
+ Provides-Extra: all-handlers-extras
643
+ Requires-Dist: pycaret[models]; extra == "all-handlers-extras"
644
+ Requires-Dist: oracledb==3.3.0; extra == "all-handlers-extras"
645
+ Requires-Dist: binance-connector; extra == "all-handlers-extras"
646
+ Requires-Dist: rocketchat_API; extra == "all-handlers-extras"
647
+ Requires-Dist: zenpy; extra == "all-handlers-extras"
648
+ Requires-Dist: pydantic-settings>=2.1.0; extra == "all-handlers-extras"
649
+ Requires-Dist: ibm-db-sa; extra == "all-handlers-extras"
650
+ Requires-Dist: nltk==3.9.1; extra == "all-handlers-extras"
651
+ Requires-Dist: llama-index==0.12.41; extra == "all-handlers-extras"
652
+ Requires-Dist: box-sdk-gen; extra == "all-handlers-extras"
653
+ Requires-Dist: weaviate-client~=3.24.2; extra == "all-handlers-extras"
654
+ Requires-Dist: google-analytics-admin; extra == "all-handlers-extras"
655
+ Requires-Dist: youtube-transcript-api; extra == "all-handlers-extras"
656
+ Requires-Dist: sqlalchemy-sqlany; extra == "all-handlers-extras"
657
+ Requires-Dist: polars; extra == "all-handlers-extras"
658
+ Requires-Dist: joblib; extra == "all-handlers-extras"
659
+ Requires-Dist: hdbcli; extra == "all-handlers-extras"
660
+ Requires-Dist: influxdb3-python; extra == "all-handlers-extras"
661
+ Requires-Dist: nixtla==0.6.6; extra == "all-handlers-extras"
662
+ Requires-Dist: unifyai==0.9.2; extra == "all-handlers-extras"
663
+ Requires-Dist: pyignite; extra == "all-handlers-extras"
664
+ Requires-Dist: ckanapi; extra == "all-handlers-extras"
665
+ Requires-Dist: ray[tune]>=2.8.1; extra == "all-handlers-extras"
666
+ Requires-Dist: pinotdb; extra == "all-handlers-extras"
667
+ Requires-Dist: pysqream>=3.2.5; extra == "all-handlers-extras"
668
+ Requires-Dist: pysqream_sqlalchemy>=0.8; extra == "all-handlers-extras"
669
+ Requires-Dist: gcsfs; extra == "all-handlers-extras"
670
+ Requires-Dist: impyla; extra == "all-handlers-extras"
671
+ Requires-Dist: teradatasqlalchemy; extra == "all-handlers-extras"
672
+ Requires-Dist: lightfm==1.17; extra == "all-handlers-extras"
673
+ Requires-Dist: torch==2.8.0+cpu; extra == "all-handlers-extras"
674
+ Requires-Dist: autogluon; extra == "all-handlers-extras"
675
+ Requires-Dist: google-cloud-storage; extra == "all-handlers-extras"
676
+ Requires-Dist: google; extra == "all-handlers-extras"
677
+ Requires-Dist: eventbrite-python; extra == "all-handlers-extras"
678
+ Requires-Dist: rouge-score>=0.1.2; extra == "all-handlers-extras"
679
+ Requires-Dist: chromadb~=0.6.3; extra == "all-handlers-extras"
680
+ Requires-Dist: taospy; extra == "all-handlers-extras"
681
+ Requires-Dist: dropbox; extra == "all-handlers-extras"
682
+ Requires-Dist: sqlalchemy-firebird<3.0.0,>=2.0.0; extra == "all-handlers-extras"
683
+ Requires-Dist: llama-index-readers-web; extra == "all-handlers-extras"
684
+ Requires-Dist: pymonetdb; extra == "all-handlers-extras"
685
+ Requires-Dist: writerai~=1.1.0; extra == "all-handlers-extras"
686
+ Requires-Dist: stripe; extra == "all-handlers-extras"
687
+ Requires-Dist: evaluate==0.4.3; extra == "all-handlers-extras"
688
+ Requires-Dist: numba<=0.61.2,>=0.55.0; extra == "all-handlers-extras"
689
+ Requires-Dist: neuralforecast<1.7.0,>=1.6.0; extra == "all-handlers-extras"
690
+ Requires-Dist: sqlalchemy-cratedb; extra == "all-handlers-extras"
691
+ Requires-Dist: hubspot-api-client==11.1.0; extra == "all-handlers-extras"
692
+ Requires-Dist: google-auth; extra == "all-handlers-extras"
693
+ Requires-Dist: atlassian-python-api; extra == "all-handlers-extras"
694
+ Requires-Dist: huggingface-hub==0.29.3; extra == "all-handlers-extras"
695
+ Requires-Dist: pymilvus==2.3; extra == "all-handlers-extras"
696
+ Requires-Dist: msal; extra == "all-handlers-extras"
697
+ Requires-Dist: datasets==2.16.1; extra == "all-handlers-extras"
698
+ Requires-Dist: lightwood>=25.9.1.0; extra == "all-handlers-extras"
699
+ Requires-Dist: cohere==4.5.1; extra == "all-handlers-extras"
700
+ Requires-Dist: pyod>=1.1; extra == "all-handlers-extras"
701
+ Requires-Dist: chromadb~=0.6.3; extra == "all-handlers-extras"
702
+ Requires-Dist: questdb; extra == "all-handlers-extras"
703
+ Requires-Dist: wikipedia==1.4.0; extra == "all-handlers-extras"
704
+ Requires-Dist: plaid-python; extra == "all-handlers-extras"
705
+ Requires-Dist: openbb-core==1.3.1; extra == "all-handlers-extras"
706
+ Requires-Dist: qbosdk; extra == "all-handlers-extras"
707
+ Requires-Dist: replicate; extra == "all-handlers-extras"
708
+ Requires-Dist: torch==2.8.0; extra == "all-handlers-extras"
709
+ Requires-Dist: google-cloud-spanner; extra == "all-handlers-extras"
710
+ Requires-Dist: ibm-db; extra == "all-handlers-extras"
711
+ Requires-Dist: requests_toolbelt; extra == "all-handlers-extras"
712
+ Requires-Dist: google-generativeai>=0.1.0; extra == "all-handlers-extras"
713
+ Requires-Dist: pycaret; extra == "all-handlers-extras"
714
+ Requires-Dist: elasticsearch==7.13.4; extra == "all-handlers-extras"
715
+ Requires-Dist: sqlalchemy-access; extra == "all-handlers-extras"
716
+ Requires-Dist: qdrant-client; extra == "all-handlers-extras"
717
+ Requires-Dist: pygithub==2.6.1; extra == "all-handlers-extras"
718
+ Requires-Dist: litellm==1.63.14; extra == "all-handlers-extras"
719
+ Requires-Dist: scipy; extra == "all-handlers-extras"
720
+ Requires-Dist: trino~=0.313.0; extra == "all-handlers-extras"
721
+ Requires-Dist: clickhouse-sqlalchemy>=0.3.1; extra == "all-handlers-extras"
722
+ Requires-Dist: sentence-transformers; extra == "all-handlers-extras"
723
+ Requires-Dist: catboost>=1.2; extra == "all-handlers-extras"
724
+ Requires-Dist: scylla-driver; extra == "all-handlers-extras"
725
+ Requires-Dist: salesforce_api==0.1.45; extra == "all-handlers-extras"
726
+ Requires-Dist: phoenixdb; extra == "all-handlers-extras"
727
+ Requires-Dist: sqlalchemy-informix; extra == "all-handlers-extras"
728
+ Requires-Dist: chardet; extra == "all-handlers-extras"
729
+ Requires-Dist: ShopifyAPI; extra == "all-handlers-extras"
730
+ Requires-Dist: dspy-ai==2.4.12; extra == "all-handlers-extras"
731
+ Requires-Dist: jaydebeapi; extra == "all-handlers-extras"
732
+ Requires-Dist: newsapi-python; extra == "all-handlers-extras"
733
+ Requires-Dist: notion-client; extra == "all-handlers-extras"
734
+ Requires-Dist: autokeras; extra == "all-handlers-extras"
735
+ Requires-Dist: ray[tune]>=2.2.0; extra == "all-handlers-extras"
736
+ Requires-Dist: pydruid; extra == "all-handlers-extras"
737
+ Requires-Dist: snowflake-connector-python[pandas]==3.15.0; extra == "all-handlers-extras"
738
+ Requires-Dist: ludwig[distributed]>=0.5.2; extra == "all-handlers-extras"
739
+ Requires-Dist: statsforecast==1.6.0; extra == "all-handlers-extras"
740
+ Requires-Dist: azure-storage-blob; extra == "all-handlers-extras"
741
+ Requires-Dist: openbb==4.3.1; extra == "all-handlers-extras"
742
+ Requires-Dist: lancedb~=0.3.1; extra == "all-handlers-extras"
743
+ Requires-Dist: overpy; extra == "all-handlers-extras"
744
+ Requires-Dist: mendeley; extra == "all-handlers-extras"
745
+ Requires-Dist: pyzotero; extra == "all-handlers-extras"
746
+ Requires-Dist: huggingface-hub; extra == "all-handlers-extras"
747
+ Requires-Dist: mlflow; extra == "all-handlers-extras"
748
+ Requires-Dist: pinecone-client==5.0.1; extra == "all-handlers-extras"
749
+ Requires-Dist: dotty-dict==1.3.1; extra == "all-handlers-extras"
750
+ Requires-Dist: pyodbc==4.0.34; extra == "all-handlers-extras"
751
+ Requires-Dist: sqlalchemy-bigquery; extra == "all-handlers-extras"
752
+ Requires-Dist: fsspec; extra == "all-handlers-extras"
753
+ Requires-Dist: sqlalchemy-hana; extra == "all-handlers-extras"
754
+ Requires-Dist: sqlalchemy-spanner; extra == "all-handlers-extras"
755
+ Requires-Dist: elasticsearch-dbapi==0.2.11; extra == "all-handlers-extras"
756
+ Requires-Dist: dask; extra == "all-handlers-extras"
757
+ Requires-Dist: pymssql>=2.1.4; extra == "all-handlers-extras"
758
+ Requires-Dist: praw; extra == "all-handlers-extras"
759
+ Requires-Dist: dataprep_ml==0.0.25; extra == "all-handlers-extras"
760
+ Requires-Dist: google-generativeai==0.3.2; extra == "all-handlers-extras"
761
+ Requires-Dist: pyodbc; extra == "all-handlers-extras"
762
+ Requires-Dist: aerospike~=13.0.0; extra == "all-handlers-extras"
763
+ Requires-Dist: lance; extra == "all-handlers-extras"
764
+ Requires-Dist: type_infer==0.0.25; extra == "all-handlers-extras"
765
+ Requires-Dist: pyphoenix; extra == "all-handlers-extras"
766
+ Requires-Dist: fdb; extra == "all-handlers-extras"
767
+ Requires-Dist: pyhive; extra == "all-handlers-extras"
768
+ Requires-Dist: webzio==1.0.2; extra == "all-handlers-extras"
769
+ Requires-Dist: chromadb; extra == "all-handlers-extras"
770
+ Requires-Dist: tzlocal; extra == "all-handlers-extras"
771
+ Requires-Dist: google-cloud-aiplatform>=1.35.0; extra == "all-handlers-extras"
772
+ Requires-Dist: pyodbc>=5.2.0; extra == "all-handlers-extras"
773
+ Requires-Dist: spacy; extra == "all-handlers-extras"
774
+ Requires-Dist: symbl; extra == "all-handlers-extras"
775
+ Requires-Dist: anthropic==0.18.1; extra == "all-handlers-extras"
776
+ Requires-Dist: pymysql; extra == "all-handlers-extras"
777
+ Requires-Dist: databend-sqlalchemy; extra == "all-handlers-extras"
778
+ Requires-Dist: python-gitlab; extra == "all-handlers-extras"
779
+ Requires-Dist: sqlalchemy-ingres[all]; extra == "all-handlers-extras"
780
+ Requires-Dist: paypalrestsdk; extra == "all-handlers-extras"
781
+ Requires-Dist: protobuf==4.25.8; extra == "all-handlers-extras"
782
+ Requires-Dist: crate; extra == "all-handlers-extras"
783
+ Requires-Dist: pillow; extra == "all-handlers-extras"
784
+ Requires-Dist: sqlalchemy-monetdb; extra == "all-handlers-extras"
785
+ Requires-Dist: xgboost; extra == "all-handlers-extras"
786
+ Requires-Dist: flaml<=1.2.3; extra == "all-handlers-extras"
787
+ Requires-Dist: botbuilder-schema; extra == "all-handlers-extras"
788
+ Requires-Dist: ray==2.43.0; extra == "all-handlers-extras"
789
+ Requires-Dist: portkey-ai>=1.8.2; extra == "all-handlers-extras"
790
+ Requires-Dist: xata; extra == "all-handlers-extras"
791
+ Requires-Dist: nltk>=3.9; extra == "all-handlers-extras"
792
+ Requires-Dist: faiss-cpu; extra == "all-handlers-extras"
793
+ Requires-Dist: stability-sdk; extra == "all-handlers-extras"
794
+ Requires-Dist: sqlalchemy_dremio; extra == "all-handlers-extras"
795
+ Requires-Dist: sqlalchemy-solr; extra == "all-handlers-extras"
796
+ Requires-Dist: twilio; extra == "all-handlers-extras"
797
+ Requires-Dist: scipy==1.15.3; extra == "all-handlers-extras"
798
+ Requires-Dist: sqlalchemy-vertica-python; extra == "all-handlers-extras"
799
+ Requires-Dist: salesforce-merlion<=1.3.1,>=1.2.0; extra == "all-handlers-extras"
800
+ Requires-Dist: vertica-python; extra == "all-handlers-extras"
801
+ Requires-Dist: lightwood[xai]>=25.9.1.0; extra == "all-handlers-extras"
802
+ Requires-Dist: onnxruntime==1.20.1; extra == "all-handlers-extras"
803
+ Requires-Dist: html2text; extra == "all-handlers-extras"
804
+ Requires-Dist: sib_api_v3_sdk; extra == "all-handlers-extras"
805
+ Requires-Dist: thrift-sasl; extra == "all-handlers-extras"
806
+ Requires-Dist: virtualenv; extra == "all-handlers-extras"
807
+ Requires-Dist: libsql-experimental; extra == "all-handlers-extras"
808
+ Requires-Dist: lightwood[extra]>=25.9.1.0; extra == "all-handlers-extras"
809
+ Requires-Dist: mysql-connector-python==9.1.0; extra == "all-handlers-extras"
810
+ Requires-Dist: tiktoken; extra == "all-handlers-extras"
811
+ Requires-Dist: mediawikiapi; extra == "all-handlers-extras"
812
+ Requires-Dist: hugging_py_face; extra == "all-handlers-extras"
813
+ Requires-Dist: tpot<=0.11.7; extra == "all-handlers-extras"
814
+ Requires-Dist: slack_sdk==3.30.0; extra == "all-handlers-extras"
815
+ Requires-Dist: llama-index-embeddings-openai; extra == "all-handlers-extras"
816
+ Requires-Dist: databricks-sql-connector<4.0.0,>=3.7.1; extra == "all-handlers-extras"
817
+ Requires-Dist: pymongo==4.8.0; extra == "all-handlers-extras"
818
+ Requires-Dist: snowflake-sqlalchemy==1.7.0; extra == "all-handlers-extras"
819
+ Requires-Dist: solace-pubsubplus; extra == "all-handlers-extras"
820
+ Requires-Dist: couchbase==4.3.1; extra == "all-handlers-extras"
821
+ Requires-Dist: ibm-cos-sdk; extra == "all-handlers-extras"
822
+ Requires-Dist: pysurrealdb; extra == "all-handlers-extras"
823
+ Requires-Dist: google-auth-oauthlib; extra == "all-handlers-extras"
824
+ Requires-Dist: google-cloud-bigquery[pandas]; extra == "all-handlers-extras"
825
+ Requires-Dist: google-api-python-client; extra == "all-handlers-extras"
826
+ Requires-Dist: teradatasql; extra == "all-handlers-extras"
827
+ Requires-Dist: tensorflow; extra == "all-handlers-extras"
828
+ Requires-Dist: auto-sklearn; extra == "all-handlers-extras"
829
+ Requires-Dist: anthropic>=0.26.1; extra == "all-handlers-extras"
830
+ Requires-Dist: transformers>=4.42.4; extra == "all-handlers-extras"
831
+ Requires-Dist: stravalib; extra == "all-handlers-extras"
832
+ Requires-Dist: tweepy; extra == "all-handlers-extras"
833
+ Requires-Dist: faunadb; extra == "all-handlers-extras"
834
+ Requires-Dist: dspy==0.1.4; extra == "all-handlers-extras"
835
+ Requires-Dist: botframework-connector; extra == "all-handlers-extras"
836
+ Requires-Dist: thrift; extra == "all-handlers-extras"
837
+ Requires-Dist: bs4; extra == "all-handlers-extras"
838
+ Requires-Dist: sqlanydb; extra == "all-handlers-extras"
839
+ Dynamic: author
840
+ Dynamic: author-email
841
+ Dynamic: classifier
842
+ Dynamic: description
843
+ Dynamic: description-content-type
844
+ Dynamic: download-url
845
+ Dynamic: home-page
846
+ Dynamic: license
847
+ Dynamic: license-file
848
+ Dynamic: provides-extra
849
+ Dynamic: requires-dist
850
+ Dynamic: requires-python
851
+ Dynamic: summary
852
+
853
+
854
+
855
+ <a name="readme-top"></a>
856
+
857
+ <div align="center">
858
+ <a href="https://pypi.org/project/MindsDB/" target="_blank"><img src="https://badge.fury.io/py/MindsDB.svg" alt="MindsDB Release"></a>
859
+ <a href="https://www.python.org/downloads/" target="_blank"><img src="https://img.shields.io/badge/python-3.10.x%7C%203.11.x-brightgreen.svg" alt="Python supported"></a>
860
+ <a href="https://hub.docker.com/u/mindsdb" target="_blank"><img src="https://img.shields.io/docker/pulls/mindsdb/mindsdb" alt="Docker pulls"></a>
861
+
862
+ <br />
863
+ <br />
864
+
865
+ <a href="https://trendshift.io/repositories/3068" target="_blank"><img src="https://trendshift.io/api/badge/repositories/3068" alt="mindsdb%2Fmindsdb | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
866
+
867
+ <a href="https://github.com/mindsdb/mindsdb">
868
+ <img src="/docs/assets/mindsdb_logo.png" alt="MindsDB" width="300">
869
+ </a>
870
+
871
+ <p align="center">
872
+ <br />
873
+ <a href="https://www.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Website</a>
874
+ ·
875
+ <a href="https://docs.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Docs</a>
876
+ ·
877
+ <a href="https://mindsdb.com/contact">Contact us for a Demo</a>
878
+ ·
879
+ <a href="https://mindsdb.com/joincommunity?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Community Slack</a>
880
+ </p>
881
+ </div>
882
+
883
+ ----------------------------------------
884
+
885
+
886
+ MindsDB enables humans, AI, agents, and applications to get highly accurate answers across large scale data sources.
887
+
888
+ <a href="https://www.youtube.com/watch?v=MX3OKpnsoLM" target="_blank">
889
+ <img src="https://github.com/user-attachments/assets/119e7b82-f901-4214-a26f-ff7c5ad86064" alt="MindsDB Demo">
890
+
891
+ </a>
892
+
893
+
894
+ ## Install MindsDB Server
895
+
896
+ MindsDB is an open-source server that can be deployed anywhere - from your laptop to the cloud, and everywhere in between. And yes, you can customize it to your heart's content.
897
+
898
+ * [Using Docker Desktop](https://docs.mindsdb.com/setup/self-hosted/docker-desktop). This is the fastest and recommended way to get started and have it all running.
899
+ * [Using Docker](https://docs.mindsdb.com/setup/self-hosted/docker). This is also simple, but gives you more flexibility on how to further customize your server.
900
+
901
+ [MindsDB has an MCP server built in](https://docs.mindsdb.com/mcp/overview) that enables your MCP applications to connect, unify and respond to questions over large-scale federated data—spanning databases, data warehouses, and SaaS applications.
902
+
903
+ ----------------------------------------
904
+
905
+ # Core Philosophy: Connect, Unify, Respond
906
+
907
+ MindsDB's architecture is built around three fundamental capabilities:
908
+
909
+ ## [Connect](https://docs.mindsdb.com/integrations/data-overview) Your Data
910
+
911
+ You can connect to hundreds of enterprise [data sources (learn more)](https://docs.mindsdb.com/integrations/data-overview). These integrations allow MindsDB to access data wherever it resides, forming the foundation for all other capabilities.
912
+
913
+ ## [Unify](https://docs.mindsdb.com/mindsdb_sql/overview) Your Data
914
+
915
+
916
+ In many situations, it’s important to be able to prepare and unify data before generating responses from it. MindsDB SQL offers knowledge bases and views that allow indexing and organizing structured and unstructured data as if it were unified in a single system.
917
+
918
+ * [**KNOWLEDGE BASES**](https://docs.mindsdb.com/mindsdb_sql/knowledge-bases) – Index and organize unstructured data for efficient Q&A.
919
+ * [**VIEWS**](https://docs.mindsdb.com/mindsdb_sql/sql/create/view) – Simplify data access by creating unified views across different sources (no-ETL).
920
+
921
+
922
+ Unification of data can be automated using JOBs
923
+
924
+ * [**JOBS**](https://docs.mindsdb.com/mindsdb_sql/sql/create/jobs) – Schedule synchronization and transformation tasks for real-time processing.
925
+
926
+
927
+ ## [Respond](https://docs.mindsdb.com/mindsdb_sql/agents/agent) From Your Data
928
+
929
+ Chat with Your Data
930
+
931
+ * [**AGENTS**](https://docs.mindsdb.com/mindsdb_sql/agents/agent) – Configure built-in agents specialized in answering questions over your connected and unified data.
932
+ * [**MCP**](https://docs.mindsdb.com/mcp/overview) – Connect to MindsDB through the MCP (Model Context Protocol) for seamless interaction.
933
+
934
+ ----------------------------------------
935
+
936
+ ## 🤝 Contribute
937
+
938
+ Interested in contributing to MindsDB? Follow our [installation guide for development](https://docs.mindsdb.com/contribute/install?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
939
+
940
+ You can find our [contribution guide here](https://docs.mindsdb.com/contribute/contribute?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
941
+
942
+ We welcome suggestions! Feel free to open new issues with your ideas, and we’ll guide you.
943
+
944
+ This project adheres to a [Contributor Code of Conduct](https://github.com/mindsdb/mindsdb/blob/main/CODE_OF_CONDUCT.md). By participating, you agree to follow its terms.
945
+
946
+ Also, check out our [community rewards and programs](https://mindsdb.com/community?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
947
+
948
+ ## 🤍 Support
949
+
950
+ If you find a bug, please submit an [issue on GitHub](https://github.com/mindsdb/mindsdb/issues/new/choose).
951
+
952
+ Here’s how you can get community support:
953
+
954
+ * Ask a question in our [Slack Community](https://mindsdb.com/joincommunity?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
955
+ * Join our [GitHub Discussions](https://github.com/mindsdb/mindsdb/discussions).
956
+ * Post on [Stack Overflow](https://stackoverflow.com/questions/tagged/mindsdb) with the MindsDB tag.
957
+
958
+ For commercial support, please [contact the MindsDB team](https://mindsdb.com/contact?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
959
+
960
+ ## 💚 Current Contributors
961
+
962
+ <a href="https://github.com/mindsdb/mindsdb/graphs/contributors">
963
+ <img src="https://contributors-img.web.app/image?repo=mindsdb/mindsdb" />
964
+ </a>
965
+
966
+ Generated with [contributors-img](https://contributors-img.web.app).
967
+
968
+ ## 🔔 Subscribe for Updates
969
+
970
+ Join our [Slack community](https://mindsdb.com/joincommunity)