MindsDB 25.9.1.2__tar.gz → 25.9.3rc1__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.
- mindsdb-25.9.3rc1/MindsDB.egg-info/PKG-INFO +958 -0
- mindsdb-25.9.3rc1/MindsDB.egg-info/SOURCES.txt +1965 -0
- mindsdb-25.9.3rc1/MindsDB.egg-info/requires.txt +998 -0
- mindsdb-25.9.3rc1/PKG-INFO +958 -0
- mindsdb-25.9.3rc1/mindsdb/__about__.py +10 -0
- mindsdb-25.9.3rc1/mindsdb/__main__.py +590 -0
- mindsdb-25.9.3rc1/mindsdb/api/a2a/agent.py +143 -0
- mindsdb-25.9.3rc1/mindsdb/api/a2a/common/server/server.py +160 -0
- mindsdb-25.9.3rc1/mindsdb/api/a2a/common/server/task_manager.py +273 -0
- mindsdb-25.9.3rc1/mindsdb/api/a2a/task_manager.py +474 -0
- mindsdb-25.9.3rc1/mindsdb/api/common/middleware.py +104 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/command_executor.py +2034 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/datahub/datanodes/datanode.py +25 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/datahub/datanodes/integration_datanode.py +334 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/datahub/datanodes/project_datanode.py +197 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/datahub/datanodes/system_tables.py +818 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/exceptions.py +58 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/planner/plan_join.py +647 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/sql_query/sql_query.py +319 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +121 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/sql_query/steps/subselect_step.py +219 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/utilities/functions.py +37 -0
- mindsdb-25.9.3rc1/mindsdb/api/executor/utilities/sql.py +280 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/gui.py +89 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/initialize.py +453 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/agents.py +423 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/analysis.py +123 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/auth.py +159 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/config.py +234 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/databases.py +400 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/file.py +230 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/handlers.py +227 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/knowledge_bases.py +402 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/models.py +265 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/projects.py +37 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/sql.py +161 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/tab.py +121 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/namespaces/views.py +136 -0
- mindsdb-25.9.3rc1/mindsdb/api/http/start.py +60 -0
- mindsdb-25.9.3rc1/mindsdb/api/mcp/__init__.py +166 -0
- mindsdb-25.9.3rc1/mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +109 -0
- mindsdb-25.9.3rc1/mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +847 -0
- mindsdb-25.9.3rc1/mindsdb/api/postgres/postgres_proxy/executor/executor.py +182 -0
- mindsdb-25.9.3rc1/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +265 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/byom_handler/byom_handler.py +661 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +527 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/file_handler/file_handler.py +216 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/lightwood_handler/functions.py +218 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/openai_handler/openai_handler.py +1124 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +703 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +775 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +157 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +727 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +3 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +3 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +359 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/api_handler.py +665 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/base.py +510 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/llm/utils.py +593 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +25 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/ml_handler_process/func_call_process.py +21 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/ml_handler_process/learn_process.py +151 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +25 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/ml_handler_process/update_process.py +22 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/process_cache.py +422 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/response.py +169 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/libs/vectordatabase_handler.py +626 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/utilities/files/file_reader.py +383 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/config_loader.py +88 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +407 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +99 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +805 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/settings.py +848 -0
- mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/splitters/file_splitter.py +122 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/agents/agents_controller.py +760 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/agents/constants.py +286 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/agents/litellm_server.py +321 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/agents/mcp_client_agent.py +260 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/agents/mindsdb_database_agent.py +129 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/agents/run_mcp_agent.py +196 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/chatbot/chatbot_task.py +182 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/chatbot/polling.py +245 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/data_catalog/data_catalog_loader.py +389 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/database/integrations.py +955 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/file/file_controller.py +231 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/functions/controller.py +237 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/functions/to_markdown.py +112 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/jobs/jobs_controller.py +542 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/jobs/scheduler.py +138 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/knowledge_base/controller.py +1444 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +413 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/model/model_controller.py +490 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/query_context/context_controller.py +586 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +227 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/skills/retrieval_tool.py +199 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/skills/skill_tool.py +465 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/skills/sql_agent.py +669 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/storage/fs.py +607 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/storage/json.py +157 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/storage/model_fs.py +326 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/tabs/tabs_controller.py +268 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/tasks/task_monitor.py +148 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/tasks/task_thread.py +59 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/triggers/trigger_task.py +89 -0
- mindsdb-25.9.3rc1/mindsdb/interfaces/triggers/triggers_controller.py +165 -0
- mindsdb-25.9.3rc1/mindsdb/migrations/migrate.py +91 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/api_status.py +58 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/config.py +568 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/exception.py +119 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/fs.py +195 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/hooks/profiling.py +77 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/langfuse.py +283 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/log.py +418 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/ml_task_queue/consumer.py +248 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/ml_task_queue/producer.py +77 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/render/__init__.py +0 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/render/sqlalchemy_render.py +871 -0
- mindsdb-25.9.3rc1/mindsdb/utilities/utils.py +34 -0
- mindsdb-25.9.3rc1/requirements/requirements.txt +70 -0
- mindsdb-25.9.1.2/MindsDB.egg-info/PKG-INFO +0 -953
- mindsdb-25.9.1.2/MindsDB.egg-info/SOURCES.txt +0 -1965
- mindsdb-25.9.1.2/MindsDB.egg-info/requires.txt +0 -989
- mindsdb-25.9.1.2/PKG-INFO +0 -953
- mindsdb-25.9.1.2/mindsdb/__about__.py +0 -10
- mindsdb-25.9.1.2/mindsdb/__main__.py +0 -571
- mindsdb-25.9.1.2/mindsdb/api/a2a/agent.py +0 -145
- mindsdb-25.9.1.2/mindsdb/api/a2a/common/server/server.py +0 -160
- mindsdb-25.9.1.2/mindsdb/api/a2a/common/server/task_manager.py +0 -273
- mindsdb-25.9.1.2/mindsdb/api/a2a/task_manager.py +0 -476
- mindsdb-25.9.1.2/mindsdb/api/common/middleware.py +0 -106
- mindsdb-25.9.1.2/mindsdb/api/executor/command_executor.py +0 -2036
- mindsdb-25.9.1.2/mindsdb/api/executor/datahub/datanodes/datanode.py +0 -25
- mindsdb-25.9.1.2/mindsdb/api/executor/datahub/datanodes/integration_datanode.py +0 -282
- mindsdb-25.9.1.2/mindsdb/api/executor/datahub/datanodes/project_datanode.py +0 -193
- mindsdb-25.9.1.2/mindsdb/api/executor/datahub/datanodes/system_tables.py +0 -818
- mindsdb-25.9.1.2/mindsdb/api/executor/exceptions.py +0 -39
- mindsdb-25.9.1.2/mindsdb/api/executor/planner/plan_join.py +0 -633
- mindsdb-25.9.1.2/mindsdb/api/executor/sql_query/sql_query.py +0 -319
- mindsdb-25.9.1.2/mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +0 -122
- mindsdb-25.9.1.2/mindsdb/api/executor/sql_query/steps/subselect_step.py +0 -220
- mindsdb-25.9.1.2/mindsdb/api/executor/utilities/functions.py +0 -37
- mindsdb-25.9.1.2/mindsdb/api/executor/utilities/sql.py +0 -264
- mindsdb-25.9.1.2/mindsdb/api/http/gui.py +0 -95
- mindsdb-25.9.1.2/mindsdb/api/http/initialize.py +0 -455
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/agents.py +0 -425
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/analysis.py +0 -130
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/auth.py +0 -159
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/config.py +0 -230
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/databases.py +0 -461
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/file.py +0 -219
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/handlers.py +0 -222
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/knowledge_bases.py +0 -401
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/models.py +0 -297
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/projects.py +0 -46
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/sql.py +0 -153
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/tab.py +0 -131
- mindsdb-25.9.1.2/mindsdb/api/http/namespaces/views.py +0 -136
- mindsdb-25.9.1.2/mindsdb/api/http/start.py +0 -54
- mindsdb-25.9.1.2/mindsdb/api/mcp/__init__.py +0 -165
- mindsdb-25.9.1.2/mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +0 -114
- mindsdb-25.9.1.2/mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +0 -871
- mindsdb-25.9.1.2/mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +0 -1
- mindsdb-25.9.1.2/mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -14
- mindsdb-25.9.1.2/mindsdb/api/postgres/postgres_proxy/executor/executor.py +0 -189
- mindsdb-25.9.1.2/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +0 -253
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/byom_handler/byom_handler.py +0 -678
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +0 -521
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/file_handler/file_handler.py +0 -209
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/lightwood_handler/functions.py +0 -252
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/openai_handler/openai_handler.py +0 -1124
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +0 -685
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +0 -760
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +0 -144
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +0 -726
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +0 -2
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +0 -2
- mindsdb-25.9.1.2/mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +0 -359
- mindsdb-25.9.1.2/mindsdb/integrations/libs/api_handler.py +0 -665
- mindsdb-25.9.1.2/mindsdb/integrations/libs/base.py +0 -510
- mindsdb-25.9.1.2/mindsdb/integrations/libs/llm/utils.py +0 -593
- mindsdb-25.9.1.2/mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +0 -28
- mindsdb-25.9.1.2/mindsdb/integrations/libs/ml_handler_process/func_call_process.py +0 -26
- mindsdb-25.9.1.2/mindsdb/integrations/libs/ml_handler_process/learn_process.py +0 -161
- mindsdb-25.9.1.2/mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +0 -28
- mindsdb-25.9.1.2/mindsdb/integrations/libs/ml_handler_process/update_process.py +0 -27
- mindsdb-25.9.1.2/mindsdb/integrations/libs/process_cache.py +0 -430
- mindsdb-25.9.1.2/mindsdb/integrations/libs/response.py +0 -163
- mindsdb-25.9.1.2/mindsdb/integrations/libs/vectordatabase_handler.py +0 -600
- mindsdb-25.9.1.2/mindsdb/integrations/utilities/files/file_reader.py +0 -384
- mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/config_loader.py +0 -77
- mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +0 -357
- mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +0 -99
- mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +0 -883
- mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/settings.py +0 -923
- mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/splitters/file_splitter.py +0 -132
- mindsdb-25.9.1.2/mindsdb/interfaces/agents/agents_controller.py +0 -759
- mindsdb-25.9.1.2/mindsdb/interfaces/agents/constants.py +0 -288
- mindsdb-25.9.1.2/mindsdb/interfaces/agents/litellm_server.py +0 -345
- mindsdb-25.9.1.2/mindsdb/interfaces/agents/mcp_client_agent.py +0 -260
- mindsdb-25.9.1.2/mindsdb/interfaces/agents/mindsdb_database_agent.py +0 -129
- mindsdb-25.9.1.2/mindsdb/interfaces/agents/run_mcp_agent.py +0 -205
- mindsdb-25.9.1.2/mindsdb/interfaces/chatbot/chatbot_task.py +0 -185
- mindsdb-25.9.1.2/mindsdb/interfaces/chatbot/polling.py +0 -233
- mindsdb-25.9.1.2/mindsdb/interfaces/data_catalog/data_catalog_loader.py +0 -389
- mindsdb-25.9.1.2/mindsdb/interfaces/database/integrations.py +0 -938
- mindsdb-25.9.1.2/mindsdb/interfaces/file/file_controller.py +0 -231
- mindsdb-25.9.1.2/mindsdb/interfaces/functions/controller.py +0 -237
- mindsdb-25.9.1.2/mindsdb/interfaces/functions/to_markdown.py +0 -112
- mindsdb-25.9.1.2/mindsdb/interfaces/jobs/jobs_controller.py +0 -542
- mindsdb-25.9.1.2/mindsdb/interfaces/jobs/scheduler.py +0 -143
- mindsdb-25.9.1.2/mindsdb/interfaces/knowledge_base/controller.py +0 -1415
- mindsdb-25.9.1.2/mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +0 -434
- mindsdb-25.9.1.2/mindsdb/interfaces/model/model_controller.py +0 -486
- mindsdb-25.9.1.2/mindsdb/interfaces/query_context/context_controller.py +0 -574
- mindsdb-25.9.1.2/mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +0 -225
- mindsdb-25.9.1.2/mindsdb/interfaces/skills/retrieval_tool.py +0 -206
- mindsdb-25.9.1.2/mindsdb/interfaces/skills/skill_tool.py +0 -465
- mindsdb-25.9.1.2/mindsdb/interfaces/skills/sql_agent.py +0 -663
- mindsdb-25.9.1.2/mindsdb/interfaces/storage/fs.py +0 -662
- mindsdb-25.9.1.2/mindsdb/interfaces/storage/json.py +0 -156
- mindsdb-25.9.1.2/mindsdb/interfaces/storage/model_fs.py +0 -364
- mindsdb-25.9.1.2/mindsdb/interfaces/tabs/tabs_controller.py +0 -291
- mindsdb-25.9.1.2/mindsdb/interfaces/tasks/task_monitor.py +0 -154
- mindsdb-25.9.1.2/mindsdb/interfaces/tasks/task_thread.py +0 -61
- mindsdb-25.9.1.2/mindsdb/interfaces/triggers/trigger_task.py +0 -95
- mindsdb-25.9.1.2/mindsdb/interfaces/triggers/triggers_controller.py +0 -168
- mindsdb-25.9.1.2/mindsdb/migrations/migrate.py +0 -91
- mindsdb-25.9.1.2/mindsdb/utilities/config.py +0 -519
- mindsdb-25.9.1.2/mindsdb/utilities/exception.py +0 -80
- mindsdb-25.9.1.2/mindsdb/utilities/fs.py +0 -196
- mindsdb-25.9.1.2/mindsdb/utilities/hooks/profiling.py +0 -74
- mindsdb-25.9.1.2/mindsdb/utilities/langfuse.py +0 -288
- mindsdb-25.9.1.2/mindsdb/utilities/log.py +0 -146
- mindsdb-25.9.1.2/mindsdb/utilities/ml_task_queue/consumer.py +0 -254
- mindsdb-25.9.1.2/mindsdb/utilities/ml_task_queue/producer.py +0 -81
- mindsdb-25.9.1.2/mindsdb/utilities/render/sqlalchemy_render.py +0 -870
- mindsdb-25.9.1.2/mindsdb/utilities/utils.py +0 -34
- mindsdb-25.9.1.2/requirements/requirements.txt +0 -68
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/LICENSE +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/MANIFEST.in +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/MindsDB.egg-info/dependency_links.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/MindsDB.egg-info/top_level.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/README.md +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/default_handlers.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/a2a/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/a2a/common/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/a2a/common/server/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/a2a/common/server/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/a2a/common/types.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/a2a/constants.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/a2a/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/common/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/controllers/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/controllers/session_controller.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/data_types/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/data_types/answer.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/data_types/response_type.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/datahub/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/datahub/classes/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/datahub/classes/response.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/datahub/classes/tables_row.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/datahub/datanodes/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/exceptions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/plan_join_ts.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/query_plan.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/query_planner.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/query_prepare.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/step_result.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/steps.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/ts_utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/planner/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/result_set.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/base.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/delete_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/insert_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/join_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/map_reduce_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/multiple_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/prepare_steps.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/project_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/sql_steps.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/union_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/sql_query/steps/update_step.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/utilities/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/executor/utilities/mysql_to_duckdb_functions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/chatbots.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/agents.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/analysis.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/auth.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/chatbots.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/config.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/databases.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/default.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/files.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/handlers.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/jobs.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/knowledge_bases.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/projects.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/skills.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/sql.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/tabs.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/tree.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/util.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/configs/webhooks.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/default.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/jobs.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/skills.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/tree.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/util.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/namespaces/webhooks.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/http/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/litellm/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/litellm/start.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/classes/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/executor/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/libs/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/api/postgres → mindsdb-25.9.3rc1/mindsdb/api/mysql/mysql_proxy/utilities}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/utilities/dump.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/mysql/start.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/api/postgres/postgres_proxy → mindsdb-25.9.3rc1/mindsdb/api/postgres}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/api/postgres/postgres_proxy/postgres_packets → mindsdb-25.9.3rc1/mindsdb/api/postgres/postgres_proxy}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/postgres_proxy/executor/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations → mindsdb-25.9.3rc1/mindsdb/api/postgres/postgres_proxy/postgres_packets}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/api/postgres/start.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers → mindsdb-25.9.3rc1/mindsdb/integrations}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/access_handler/tests → mindsdb-25.9.3rc1/mindsdb/integrations/handlers}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/access_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/access_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/access_handler/access_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/access_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/access_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/access_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/aerospike_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/access_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aerospike_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aerospike_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aerospike_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aerospike_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aerospike_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/airtable_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/aerospike_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/airtable_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/airtable_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/airtable_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/airtable_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/altibase_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/airtable_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/altibase_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/altibase_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/altibase_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/altibase_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/altibase_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/aqicn_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/altibase_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anthropic_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anthropic_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anthropic_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/anthropic_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/apache_doris_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/apache_doris_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/apache_doris_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aqicn_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aqicn_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aqicn_handler/aqicn.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aqicn_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/athena_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/aqicn_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/athena_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/athena_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/athena_handler/athena_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/athena_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/athena_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/aurora_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/athena_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aurora_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aurora_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aurora_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aurora_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aurora_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/bigquery_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/aurora_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autogluon_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autogluon_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autogluon_handler/config.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autogluon_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autogluon_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autokeras_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autokeras_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autokeras_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autokeras_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autosklearn_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autosklearn_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autosklearn_handler/config.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autosklearn_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/azure_blob_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/azure_blob_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/azure_blob_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/azure_blob_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/azure_blob_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bedrock_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bedrock_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bedrock_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bedrock_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bedrock_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bedrock_handler/utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bigquery_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bigquery_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bigquery_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bigquery_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bigquery_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/cassandra_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/bigquery_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/binance_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/binance_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/binance_handler/binance_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/binance_handler/binance_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/binance_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/binance_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/box_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/box_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/box_handler/box_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/box_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/box_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/box_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/byom_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/byom_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/byom_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/byom_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/byom_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cassandra_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cassandra_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cassandra_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cassandra_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cassandra_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/chromadb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/cassandra_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/chromadb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/chromadb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/chromadb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/chromadb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/chromadb_handler/settings.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/ckan_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/chromadb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ckan_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ckan_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ckan_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ckan_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ckan_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/clickhouse_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/ckan_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clickhouse_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clickhouse_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clickhouse_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clickhouse_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/cloud_spanner_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/clickhouse_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clipdrop_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clipdrop_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/clipdrop_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/cloud_sql_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/cloud_spanner_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/cockroach_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/cloud_sql_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cockroach_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cockroach_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cockroach_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/confluence_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/cockroach_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cohere_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cohere_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cohere_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/cohere_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/coinbase_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/coinbase_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/coinbase_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/coinbase_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/coinbase_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/confluence_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/confluence_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/confluence_handler/confluence_api_client.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/confluence_handler/confluence_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/confluence_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/confluence_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/couchbase_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/confluence_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbase_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbase_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbase_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbase_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbase_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/couchbasevector_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/couchbase_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbasevector_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbasevector_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbasevector_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/crate_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/couchbasevector_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/crate_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/crate_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/crate_handler/crate_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/crate_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/crate_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/d0lt_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/crate_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/d0lt_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/d0lt_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/d0lt_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/d0lt_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/databend_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/d0lt_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databend_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databend_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databend_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databend_handler/databend_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databend_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databend_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/databricks_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/databend_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databricks_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databricks_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databricks_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databricks_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databricks_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/datastax_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/databricks_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/datastax_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/datastax_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/datastax_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/datastax_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/db2_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/datastax_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/db2_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/db2_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/db2_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/db2_handler/db2_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/db2_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/db2_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/derby_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/db2_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/derby_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/derby_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/derby_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/derby_handler/derby_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/derby_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/derby_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/discord_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/derby_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/discord_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/discord_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/discord_handler/discord_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/discord_handler/discord_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/discord_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/discord_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/dremio_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/discord_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dockerhub_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dockerhub_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dockerhub_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dockerhub_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/documentdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/documentdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/documentdb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/documentdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/documentdb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dremio_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dremio_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dremio_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dremio_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dremio_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/dropbox_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/dremio_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dropbox_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dropbox_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dropbox_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dropbox_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dropbox_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/druid_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/dropbox_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/druid_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/druid_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/druid_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/druid_handler/druid_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/druid_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/druid_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/duckdb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/druid_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dspy_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dspy_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dspy_handler/dspy_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dspy_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dspy_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/duckdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/duckdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/duckdb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/duckdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/dynamodb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/duckdb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dummy_data_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dummy_data_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dummy_data_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dynamodb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dynamodb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dynamodb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dynamodb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/edgelessdb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/dynamodb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/elasticsearch_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/edgelessdb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/elasticsearch_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/empress_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/elasticsearch_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/email_client.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/email_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/email_ingestor.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/email_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/email_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/empress_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/empress_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/empress_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/empress_handler/empress_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/empress_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/empress_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/faunadb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/empress_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventbrite_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventbrite_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventbrite_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/faunadb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/faunadb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/faunadb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/faunadb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/faunadb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/file_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/faunadb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/file_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/file_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/file_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/file_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/firebird_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/file_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/file_handler/tests/data/test.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/firebird_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/firebird_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/firebird_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/firebird_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/firebird_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/gmail_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/firebird_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/flaml_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/flaml_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/flaml_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/flaml_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/frappe_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/frappe_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/frappe_handler/frappe_client.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/frappe_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gcs_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gcs_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gcs_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gcs_handler/gcs_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gcs_handler/gcs_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gcs_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gcs_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/github_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/github_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/github_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/github_handler/generate_api.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/github_handler/github_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/github_handler/github_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/github_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/github_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gitlab_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gitlab_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gitlab_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gitlab_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gmail_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gmail_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gmail_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gmail_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gmail_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/google_analytics_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/gmail_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gong_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gong_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gong_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gong_handler/gong_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gong_handler/gong_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gong_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gong_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/gong_handler/test_gong_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_analytics_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_analytics_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_analytics_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/google_books_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/google_analytics_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_books_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_books_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_books_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_books_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/google_calendar_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/google_books_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_calendar_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_calendar_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_calendar_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/google_content_shopping_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/google_calendar_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/google_search_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/google_content_shopping_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_fit_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_fit_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_fit_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_fit_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_gemini_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_gemini_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_gemini_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_gemini_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_search_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_search_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_search_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_search_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_search_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/hive_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/google_search_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/greptimedb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/greptimedb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/greptimedb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/greptimedb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/groq_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/groq_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/groq_handler/groq_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/groq_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/groq_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/groq_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hackernews_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hackernews_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hackernews_handler/hn_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hackernews_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hana_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hana_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hana_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hana_handler/hana_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hana_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hana_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hive_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hive_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hive_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hive_handler/hive_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hive_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hive_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/huggingface_api_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/hive_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hsqldb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hsqldb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hubspot_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hubspot_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hubspot_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/hubspot_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_api_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/ibm_cos_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/huggingface_api_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_handler/finetune.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/huggingface_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ibm_cos_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ibm_cos_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ibm_cos_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/ignite_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/ibm_cos_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ignite_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ignite_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ignite_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ignite_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ignite_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/impala_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/ignite_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/impala_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/impala_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/impala_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/impala_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/impala_handler/impala_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/impala_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/informix_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/impala_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/influxdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/influxdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/influxdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/influxdb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/informix_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/informix_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/informix_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/informix_handler/informix_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/informix_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/ingres_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/informix_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ingres_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ingres_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ingres_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ingres_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ingres_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/lancedb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/ingres_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/instatus_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/instatus_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/instatus_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/intercom_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/intercom_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/intercom_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/jira_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/jira_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/jira_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/jira_handler/jira_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/jira_handler/jira_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/jira_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/kinetica_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/kinetica_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/kinetica_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/kinetica_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lancedb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lancedb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lancedb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lancedb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lancedb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/libsql_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/lancedb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/fastapi_embeddings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/langchain_handler/tools.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/leonardoai_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/leonardoai_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/leonardoai_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/leonardoai_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/libsql_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/libsql_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/libsql_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/libsql_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/libsql_handler/libsql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/libsql_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/lightdash_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/libsql_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightdash_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightdash_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightdash_handler/api.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/lightwood_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/lightdash_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightfm_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightfm_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightfm_handler/helpers.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightfm_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightfm_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightfm_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightwood_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightwood_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightwood_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightwood_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/lindorm_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/lightwood_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lightwood_handler/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lindorm_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lindorm_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lindorm_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lindorm_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/materialize_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/lindorm_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/litellm_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/litellm_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/litellm_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/litellm_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/litellm_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/llama_index_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/llama_index_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/llama_index_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/llama_index_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/llama_index_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ludwig_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ludwig_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ludwig_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ludwig_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ludwig_handler/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/luma_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/luma_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/luma_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/luma_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/luma_handler/luma.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/luma_handler/luma_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/luma_handler/luma_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mariadb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mariadb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mariadb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mariadb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mariadb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/materialize_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/materialize_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/materialize_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/matrixone_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/materialize_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/matrixone_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/matrixone_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/matrixone_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/matrixone_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/matrixone_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/maxdb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/matrixone_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/maxdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/maxdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/maxdb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/maxdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/maxdb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/mendeley_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/maxdb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mediawiki_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mediawiki_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mediawiki_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mendeley_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mendeley_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mendeley_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mendeley_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/milvus_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/mendeley_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/merlion_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/merlion_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/merlion_handler/adapters.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/merlion_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/merlion_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/milvus_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/milvus_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/milvus_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/milvus_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/milvus_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/minds_endpoint_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/milvus_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/settings.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/monetdb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/minds_endpoint_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mlflow_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mlflow_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mlflow_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mlflow_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monetdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monetdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monetdb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monetdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monetdb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/monetdb_handler/utils → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/monetdb_handler/tests}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/mongodb_handler/tests → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/monetdb_handler/utils}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/mongodb_handler/utils → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/mongodb_handler/tests}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/mssql_handler/tests → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/mongodb_handler/utils}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_ast.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_parser.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_query.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monkeylearn_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_teams_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_teams_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_teams_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mssql_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mssql_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mssql_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mssql_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mssql_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/newsapi_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/mssql_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mysql_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mysql_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mysql_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mysql_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mysql_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/mysql_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/neuralforecast_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/newsapi_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/newsapi_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/newsapi_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/newsapi_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/notion_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/newsapi_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/notion_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/notion_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/notion_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/notion_handler/notion_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/notion_handler/notion_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/notion_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/npm_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/notion_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/npm_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/npm_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/npm_handler/api.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/npm_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/npm_handler/npm_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/npm_handler/npm_tables.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/nuo_jdbc_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/npm_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/oceanbase_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/nuo_jdbc_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oceanbase_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oceanbase_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oceanbase_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/openai_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/oceanbase_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ollama_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ollama_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ollama_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/constants.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/creation_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/helpers.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/model_using_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/opengauss_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/openai_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openbb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openbb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openbb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openbb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/opengauss_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/opengauss_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/opengauss_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/opengauss_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/openstreetmap_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/opengauss_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/oracle_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/openstreetmap_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oracle_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oracle_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oracle_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oracle_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oracle_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/orioledb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/oracle_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/orioledb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/orioledb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/orioledb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/orioledb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/phoenix_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/orioledb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/palm_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/palm_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/palm_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/palm_handler/palm_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/palm_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/paypal_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/paypal_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/paypal_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/paypal_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pgvector_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pgvector_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pgvector_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pgvector_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/phoenix_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/phoenix_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/phoenix_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/phoenix_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/pinecone_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/phoenix_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinecone_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinecone_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinecone_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinecone_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinecone_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/pinot_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/pinecone_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinot_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinot_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinot_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinot_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinot_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/postgres_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/pinot_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pirateweather_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pirateweather_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pirateweather_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/plaid_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/plaid_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/plaid_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/plaid_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/plaid_handler/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/planetscale_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/planetscale_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/planetscale_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/planetscale_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/planetscale_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/portkey_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/portkey_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/portkey_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/portkey_handler/portkey_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/portkey_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/postgres_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/postgres_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/postgres_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/postgres_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/pycaret_handler/test → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/postgres_handler/tests}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pycaret_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pycaret_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pycaret_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pycaret_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/questdb_handler/tests → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/pycaret_handler/test}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pypi_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pypi_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pypi_handler/api.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pypi_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/qdrant_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/qdrant_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/qdrant_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/qdrant_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/qdrant_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/questdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/questdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/questdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/questdb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/redshift_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/questdb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/quickbooks_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/quickbooks_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/quickbooks_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/exceptions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/ingest.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/rag.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/rag_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rag_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ray_serve_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ray_serve_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ray_serve_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/reddit_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/reddit_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/reddit_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/reddit_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/redshift_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/redshift_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/redshift_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/redshift_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/rockset_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/redshift_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/replicate_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/replicate_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/replicate_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/replicate_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/s3_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/rockset_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/s3_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/s3_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/s3_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/s3_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/s3_handler/s3_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/sap_erp_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/s3_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/salesforce_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/salesforce_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/salesforce_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/salesforce_handler/constants.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/salesforce_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/salesforce_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sap_erp_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sap_erp_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sap_erp_handler/api.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sap_erp_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/scylla_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/sap_erp_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/scylla_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/scylla_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/scylla_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/scylla_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/scylla_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/sharepoint_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/scylla_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sendinblue_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sendinblue_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sendinblue_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sentence_transformers_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/serpstack_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/serpstack_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/serpstack_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sharepoint_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sharepoint_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sharepoint_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/sheets_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/sharepoint_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sharepoint_handler/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sheets_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sheets_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sheets_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sheets_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/singlestore_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/sheets_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/shopify_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/shopify_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/shopify_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/shopify_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/singlestore_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/singlestore_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/singlestore_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/singlestore_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/slack_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/singlestore_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/slack_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/slack_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/slack_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/slack_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/slack_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/slack_handler/slack_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/slack_handler/slack_tables.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/solr_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/slack_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/snowflake_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/snowflake_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/snowflake_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/snowflake_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/snowflake_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solace_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solace_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solace_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solace_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solace_handler/solace_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solr_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solr_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solr_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solr_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solr_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solr_handler/solr_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/sqlite_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/solr_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/spacy_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/spacy_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/spacy_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/spacy_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlany_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlany_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlany_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlany_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlany_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlite_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlite_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlite_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlite_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/sqreamdb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/sqlite_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqreamdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/starrocks_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/sqreamdb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stabilityai_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stabilityai_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stabilityai_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/starrocks_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/starrocks_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/starrocks_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/starrocks_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/strapi_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/starrocks_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/statsforecast_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/statsforecast_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/statsforecast_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strapi_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strapi_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strapi_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/supabase_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/strapi_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strava_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strava_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strava_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strava_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strava_handler/strava_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/strava_handler/strava_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stripe_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stripe_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stripe_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stripe_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/supabase_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/supabase_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/supabase_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/surrealdb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/supabase_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/surrealdb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/surrealdb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/surrealdb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/surrealdb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/surrealdb_handler/utils → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/surrealdb_handler/tests}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/tdengine_handler/tests → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/surrealdb_handler/utils}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/symbl_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/symbl_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/symbl_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/symbl_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/symbl_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tdengine_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tdengine_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tdengine_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tdengine_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tdengine_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/tidb_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/tdengine_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/teradata_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/teradata_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/teradata_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/teradata_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/teradata_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tidb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tidb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tidb_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tidb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tidb_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/trino_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/tidb_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timegpt_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timegpt_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timegpt_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timegpt_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timescaledb_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timescaledb_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timescaledb_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/togetherai_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/togetherai_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/togetherai_handler/creation_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/togetherai_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/togetherai_handler/model_using_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/togetherai_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/togetherai_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/togetherai_handler/togetherai_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tpot_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tpot_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tpot_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tpot_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/trino_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/trino_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/trino_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/trino_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/unify_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/trino_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/trino_handler/trino_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twelve_labs_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twelve_labs_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twelve_labs_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twelve_labs_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twilio_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twilio_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twilio_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twilio_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twitter_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twitter_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twitter_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twitter_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/unify_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/unify_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/unify_handler/creation_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/unify_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/unify_handler/model_using_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/unify_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/vertica_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/unify_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/unify_handler/unify_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertex_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertex_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertex_handler/icon.png +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertex_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertex_handler/vertex_client.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertica_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertica_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertica_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertica_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertica_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/vitess_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/vertica_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vitess_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vitess_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vitess_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vitess_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/xata_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/vitess_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/weaviate_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/weaviate_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/weaviate_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/weaviate_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/weaviate_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/web_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/web_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/web_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/web_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/web_handler/web_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/webz_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/webz_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/webz_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/webz_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/webz_handler/webz_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/webz_handler/webz_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/whatsapp_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/whatsapp_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/whatsapp_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/whatsapp_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/evaluate.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/ingest.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/rag.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/settings.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/writer_handler/writer_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/xata_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/xata_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/xata_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/xata_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/xata_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/yugabyte_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/xata_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/xata_handler/xata_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/youtube_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/youtube_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/youtube_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/youtube_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/youtube_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/yugabyte_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/yugabyte_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/yugabyte_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/handlers/zipcodebase_handler → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/yugabyte_handler}/tests/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zendesk_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zendesk_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zendesk_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zendesk_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zendesk_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/libs/llm → mindsdb-25.9.3rc1/mindsdb/integrations/handlers/zipcodebase_handler/tests}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zotero_handler/__about__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zotero_handler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zotero_handler/icon.svg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zotero_handler/requirements.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zotero_handler/zotero_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/handlers/zotero_handler/zotero_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/api_handler_exceptions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/api_handler_generator.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/const.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/keyword_search_base.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities → mindsdb-25.9.3rc1/mindsdb/integrations/libs/llm}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/llm/config.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/ml_exec_base.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/ml_handler_process/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/ml_handler_process/create_validation_process.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/ml_handler_process/describe_process.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/ml_handler_process/predict_process.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/realtime_chat_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/libs/storage_handler.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/datasets → mindsdb-25.9.3rc1/mindsdb/integrations/utilities}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/files → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/datasets}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/datasets/dataset.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/date_utils.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/handlers → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/files}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handler_utils.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/handlers/api_utilities → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/handlers}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/handlers/auth_utilities → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/handlers/api_utilities}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/handlers/auth_utilities}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/query_utilities/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/install.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/pydantic_utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/query_traversal.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/chains → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/loaders → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/chains}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/chains/local_context_summarizer_chain.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/loaders/vector_store_loader → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/loaders}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/loaders/file_loader.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/pipelines → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/loaders/vector_store_loader}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/rerankers → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/pipelines}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/pipelines/rag.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/rag_pipeline_builder.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/integrations/utilities/rag/splitters → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/rerankers}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/retrievers/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/retrievers/base.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/retrievers/multi_hop_retriever.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/retrievers/retriever_factory.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/agents → mindsdb-25.9.3rc1/mindsdb/integrations/utilities/rag/splitters}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/rag/vector_store.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/sql_utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/test_utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/time_series_utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/integrations/utilities/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/data_catalog → mindsdb-25.9.3rc1/mindsdb/interfaces/agents}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/agents/callback_handlers.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/agents/event_dispatch_callback_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/agents/langchain_agent.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/agents/langfuse_callback_handler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/agents/mindsdb_chat_model.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/agents/providers.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/agents/safe_output_parser.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/chatbot/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/chatbot/chatbot_controller.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/chatbot/chatbot_executor.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/chatbot/memory.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/chatbot/model_executor.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/chatbot/types.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/database → mindsdb-25.9.3rc1/mindsdb/interfaces/data_catalog}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/data_catalog/base_data_catalog.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/data_catalog/data_catalog_reader.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/file → mindsdb-25.9.3rc1/mindsdb/interfaces/database}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/database/database.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/database/log.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/database/projects.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/database/views.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/functions → mindsdb-25.9.3rc1/mindsdb/interfaces/file}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/jobs → mindsdb-25.9.3rc1/mindsdb/interfaces/functions}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/knowledge_base → mindsdb-25.9.3rc1/mindsdb/interfaces/jobs}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/knowledge_base/preprocessing → mindsdb-25.9.3rc1/mindsdb/interfaces/knowledge_base}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/evaluate.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/executor.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/llm_client.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/model → mindsdb-25.9.3rc1/mindsdb/interfaces/knowledge_base/preprocessing}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/preprocessing/constants.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/preprocessing/models.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/preprocessing/text_splitter.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/knowledge_base/utils.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/query_context → mindsdb-25.9.3rc1/mindsdb/interfaces/model}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/model/functions.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/skills/custom → mindsdb-25.9.3rc1/mindsdb/interfaces/query_context}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/query_context/last_query.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/query_context/query_task.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/skills/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/skills/custom/text2sql → mindsdb-25.9.3rc1/mindsdb/interfaces/skills/custom}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/tabs → mindsdb-25.9.3rc1/mindsdb/interfaces/skills/custom/text2sql}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/skills/skills_controller.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/storage/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/storage/db.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/tasks → mindsdb-25.9.3rc1/mindsdb/interfaces/tabs}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/triggers → mindsdb-25.9.3rc1/mindsdb/interfaces/tasks}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/tasks/task.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/interfaces/variables → mindsdb-25.9.3rc1/mindsdb/interfaces/triggers}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/metrics → mindsdb-25.9.3rc1/mindsdb/interfaces/variables}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/interfaces/variables/variables_controller.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/migrations → mindsdb-25.9.3rc1/mindsdb/metrics}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/metrics/metrics.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/metrics/server.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/migrations/versions → mindsdb-25.9.3rc1/mindsdb/migrations}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/alembic.ini +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/env.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-01-15_c06c35f7e8e1_project_company.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-02-09_4943359e354a_file_metadata.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-02-10_6ab9903fc59a_del_log_table.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_json_storage.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-03-21_fda503400e43_queries.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-04-22_53502b6d63bf_query_database.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-05-21_9f150e4f9a05_checkpoint_1.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-05-28_a44643042fe8_added_data_catalog_tables.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/migrations/versions/2025-06-09_608e376c19a7_updated_data_catalog_data_types.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/utilities → mindsdb-25.9.3rc1/mindsdb/migrations/versions}/__init__.py +0 -0
- {mindsdb-25.9.1.2/mindsdb/utilities/render → mindsdb-25.9.3rc1/mindsdb/utilities}/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/auth.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/cache.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/context.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/context_executor.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/functions.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/hooks/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/json_encoder.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/ml_task_queue/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/ml_task_queue/base.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/ml_task_queue/const.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/ml_task_queue/task.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/ml_task_queue/utils.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/otel/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/otel/logger.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/otel/meter.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/otel/metric_handlers/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/otel/prepare.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/otel/tracer.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/partitioning.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/profiler/__init__.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/profiler/profiler.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/ps.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/security.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/sentry.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/sql.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/starters.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/mindsdb/utilities/wizards.py +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/pyproject.toml +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/requirements/requirements-dev.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/requirements/requirements-langfuse.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/requirements/requirements-opentelemetry.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/requirements/requirements-test.txt +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/setup.cfg +0 -0
- {mindsdb-25.9.1.2 → mindsdb-25.9.3rc1}/setup.py +0 -0
|
@@ -0,0 +1,958 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: MindsDB
|
|
3
|
+
Version: 25.9.3rc1
|
|
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.11.3
|
|
32
|
+
Requires-Dist: pydantic==2.9.2
|
|
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.7
|
|
47
|
+
Requires-Dist: langchain-community==0.3.5
|
|
48
|
+
Requires-Dist: langchain-core==0.3.35
|
|
49
|
+
Requires-Dist: langchain-experimental==0.3.3
|
|
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.5
|
|
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: httpx==0.28.1
|
|
75
|
+
Requires-Dist: sse-starlette==2.3.3
|
|
76
|
+
Requires-Dist: typing-extensions==4.13.2
|
|
77
|
+
Requires-Dist: jwcrypto==1.5.6
|
|
78
|
+
Requires-Dist: pyjwt==2.10.1
|
|
79
|
+
Requires-Dist: pydantic_core>=2.23.2
|
|
80
|
+
Requires-Dist: litellm==1.63.14
|
|
81
|
+
Requires-Dist: wikipedia==1.4.0
|
|
82
|
+
Requires-Dist: anthropic>=0.26.1
|
|
83
|
+
Requires-Dist: tiktoken
|
|
84
|
+
Requires-Dist: chromadb~=0.6.3
|
|
85
|
+
Requires-Dist: mysql-connector-python==9.1.0
|
|
86
|
+
Requires-Dist: tiktoken
|
|
87
|
+
Requires-Dist: html2text
|
|
88
|
+
Requires-Dist: bs4
|
|
89
|
+
Provides-Extra: dev
|
|
90
|
+
Requires-Dist: pre-commit>=2.16.0; extra == "dev"
|
|
91
|
+
Requires-Dist: watchfiles==0.19.0; extra == "dev"
|
|
92
|
+
Requires-Dist: setuptools==78.1.1; extra == "dev"
|
|
93
|
+
Requires-Dist: wheel; extra == "dev"
|
|
94
|
+
Requires-Dist: deptry==0.20.0; extra == "dev"
|
|
95
|
+
Requires-Dist: twine; extra == "dev"
|
|
96
|
+
Requires-Dist: importlib_metadata==7.2.1; extra == "dev"
|
|
97
|
+
Requires-Dist: ruff==0.11.11; extra == "dev"
|
|
98
|
+
Provides-Extra: langfuse
|
|
99
|
+
Requires-Dist: langfuse==2.53.3; extra == "langfuse"
|
|
100
|
+
Provides-Extra: opentelemetry
|
|
101
|
+
Requires-Dist: opentelemetry-api==1.27.0; extra == "opentelemetry"
|
|
102
|
+
Requires-Dist: opentelemetry-sdk==1.27.0; extra == "opentelemetry"
|
|
103
|
+
Requires-Dist: opentelemetry-exporter-otlp==1.27.0; extra == "opentelemetry"
|
|
104
|
+
Requires-Dist: opentelemetry-instrumentation-requests==0.48b0; extra == "opentelemetry"
|
|
105
|
+
Requires-Dist: opentelemetry-instrumentation-flask==0.48b0; extra == "opentelemetry"
|
|
106
|
+
Requires-Dist: opentelemetry-distro==0.48b0; extra == "opentelemetry"
|
|
107
|
+
Provides-Extra: test
|
|
108
|
+
Requires-Dist: scipy==1.15.3; extra == "test"
|
|
109
|
+
Requires-Dist: docker>=5.0.3; extra == "test"
|
|
110
|
+
Requires-Dist: openai<2.0.0,>=1.54.0; extra == "test"
|
|
111
|
+
Requires-Dist: pytest<9.0.0,>=8.3.5; extra == "test"
|
|
112
|
+
Requires-Dist: pytest-subtests; extra == "test"
|
|
113
|
+
Requires-Dist: pytest-xdist; extra == "test"
|
|
114
|
+
Requires-Dist: pytest-cov; extra == "test"
|
|
115
|
+
Requires-Dist: lightwood>=25.9.1.0; extra == "test"
|
|
116
|
+
Requires-Dist: responses; extra == "test"
|
|
117
|
+
Requires-Dist: coveralls; extra == "test"
|
|
118
|
+
Requires-Dist: locust; extra == "test"
|
|
119
|
+
Requires-Dist: ollama>=0.1.7; extra == "test"
|
|
120
|
+
Requires-Dist: anthropic>=0.21.3; extra == "test"
|
|
121
|
+
Requires-Dist: langchain-google-genai>=2.0.0; extra == "test"
|
|
122
|
+
Requires-Dist: mindsdb-sdk; extra == "test"
|
|
123
|
+
Requires-Dist: filelock==3.18.0; extra == "test"
|
|
124
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "test"
|
|
125
|
+
Requires-Dist: walrus==0.9.3; extra == "test"
|
|
126
|
+
Requires-Dist: pymongo==4.8.0; extra == "test"
|
|
127
|
+
Provides-Extra: all-extras
|
|
128
|
+
Requires-Dist: pytest<9.0.0,>=8.3.5; extra == "all-extras"
|
|
129
|
+
Requires-Dist: anthropic>=0.21.3; extra == "all-extras"
|
|
130
|
+
Requires-Dist: responses; extra == "all-extras"
|
|
131
|
+
Requires-Dist: importlib_metadata==7.2.1; extra == "all-extras"
|
|
132
|
+
Requires-Dist: walrus==0.9.3; extra == "all-extras"
|
|
133
|
+
Requires-Dist: pytest-cov; extra == "all-extras"
|
|
134
|
+
Requires-Dist: twine; extra == "all-extras"
|
|
135
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "all-extras"
|
|
136
|
+
Requires-Dist: setuptools==78.1.1; extra == "all-extras"
|
|
137
|
+
Requires-Dist: deptry==0.20.0; extra == "all-extras"
|
|
138
|
+
Requires-Dist: pymongo==4.8.0; extra == "all-extras"
|
|
139
|
+
Requires-Dist: opentelemetry-api==1.27.0; extra == "all-extras"
|
|
140
|
+
Requires-Dist: openai<2.0.0,>=1.54.0; extra == "all-extras"
|
|
141
|
+
Requires-Dist: lightwood>=25.9.1.0; extra == "all-extras"
|
|
142
|
+
Requires-Dist: opentelemetry-sdk==1.27.0; extra == "all-extras"
|
|
143
|
+
Requires-Dist: langfuse==2.53.3; extra == "all-extras"
|
|
144
|
+
Requires-Dist: locust; extra == "all-extras"
|
|
145
|
+
Requires-Dist: filelock==3.18.0; extra == "all-extras"
|
|
146
|
+
Requires-Dist: docker>=5.0.3; extra == "all-extras"
|
|
147
|
+
Requires-Dist: watchfiles==0.19.0; extra == "all-extras"
|
|
148
|
+
Requires-Dist: ruff==0.11.11; extra == "all-extras"
|
|
149
|
+
Requires-Dist: scipy==1.15.3; extra == "all-extras"
|
|
150
|
+
Requires-Dist: coveralls; extra == "all-extras"
|
|
151
|
+
Requires-Dist: pre-commit>=2.16.0; extra == "all-extras"
|
|
152
|
+
Requires-Dist: opentelemetry-instrumentation-flask==0.48b0; extra == "all-extras"
|
|
153
|
+
Requires-Dist: opentelemetry-instrumentation-requests==0.48b0; extra == "all-extras"
|
|
154
|
+
Requires-Dist: langchain-google-genai>=2.0.0; extra == "all-extras"
|
|
155
|
+
Requires-Dist: wheel; extra == "all-extras"
|
|
156
|
+
Requires-Dist: opentelemetry-distro==0.48b0; extra == "all-extras"
|
|
157
|
+
Requires-Dist: ollama>=0.1.7; extra == "all-extras"
|
|
158
|
+
Requires-Dist: pytest-xdist; extra == "all-extras"
|
|
159
|
+
Requires-Dist: mindsdb-sdk; extra == "all-extras"
|
|
160
|
+
Requires-Dist: pytest-subtests; extra == "all-extras"
|
|
161
|
+
Requires-Dist: opentelemetry-exporter-otlp==1.27.0; extra == "all-extras"
|
|
162
|
+
Provides-Extra: access
|
|
163
|
+
Requires-Dist: pyodbc; extra == "access"
|
|
164
|
+
Requires-Dist: sqlalchemy-access; extra == "access"
|
|
165
|
+
Provides-Extra: aerospike
|
|
166
|
+
Requires-Dist: aerospike~=13.0.0; extra == "aerospike"
|
|
167
|
+
Provides-Extra: altibase
|
|
168
|
+
Requires-Dist: jaydebeapi; extra == "altibase"
|
|
169
|
+
Requires-Dist: pyodbc; extra == "altibase"
|
|
170
|
+
Provides-Extra: anomaly-detection
|
|
171
|
+
Requires-Dist: pyod>=1.1; extra == "anomaly-detection"
|
|
172
|
+
Requires-Dist: joblib; extra == "anomaly-detection"
|
|
173
|
+
Requires-Dist: catboost>=1.2; extra == "anomaly-detection"
|
|
174
|
+
Requires-Dist: xgboost; extra == "anomaly-detection"
|
|
175
|
+
Provides-Extra: anthropic
|
|
176
|
+
Requires-Dist: anthropic==0.18.1; extra == "anthropic"
|
|
177
|
+
Provides-Extra: apache-doris
|
|
178
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "apache-doris"
|
|
179
|
+
Provides-Extra: aurora
|
|
180
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "aurora"
|
|
181
|
+
Provides-Extra: autogluon
|
|
182
|
+
Requires-Dist: autogluon; extra == "autogluon"
|
|
183
|
+
Requires-Dist: type_infer==0.0.25; extra == "autogluon"
|
|
184
|
+
Provides-Extra: autokeras
|
|
185
|
+
Requires-Dist: autokeras; extra == "autokeras"
|
|
186
|
+
Requires-Dist: tensorflow; extra == "autokeras"
|
|
187
|
+
Provides-Extra: autosklearn
|
|
188
|
+
Requires-Dist: auto-sklearn; extra == "autosklearn"
|
|
189
|
+
Requires-Dist: type_infer==0.0.25; extra == "autosklearn"
|
|
190
|
+
Provides-Extra: azure-blob
|
|
191
|
+
Requires-Dist: azure-storage-blob; extra == "azure-blob"
|
|
192
|
+
Provides-Extra: bedrock
|
|
193
|
+
Requires-Dist: pydantic-settings>=2.1.0; extra == "bedrock"
|
|
194
|
+
Provides-Extra: bigquery
|
|
195
|
+
Requires-Dist: sqlalchemy-bigquery; extra == "bigquery"
|
|
196
|
+
Requires-Dist: google-auth-oauthlib; extra == "bigquery"
|
|
197
|
+
Requires-Dist: google-auth; extra == "bigquery"
|
|
198
|
+
Requires-Dist: google-cloud-bigquery[pandas]; extra == "bigquery"
|
|
199
|
+
Provides-Extra: binance
|
|
200
|
+
Requires-Dist: binance-connector; extra == "binance"
|
|
201
|
+
Provides-Extra: box
|
|
202
|
+
Requires-Dist: box-sdk-gen; extra == "box"
|
|
203
|
+
Provides-Extra: byom
|
|
204
|
+
Requires-Dist: virtualenv; extra == "byom"
|
|
205
|
+
Provides-Extra: cassandra
|
|
206
|
+
Requires-Dist: scylla-driver; extra == "cassandra"
|
|
207
|
+
Provides-Extra: chromadb
|
|
208
|
+
Requires-Dist: chromadb~=0.6.3; extra == "chromadb"
|
|
209
|
+
Requires-Dist: onnxruntime==1.20.1; extra == "chromadb"
|
|
210
|
+
Provides-Extra: ckan
|
|
211
|
+
Requires-Dist: ckanapi; extra == "ckan"
|
|
212
|
+
Provides-Extra: clickhouse
|
|
213
|
+
Requires-Dist: clickhouse-sqlalchemy>=0.3.1; extra == "clickhouse"
|
|
214
|
+
Provides-Extra: cloud-spanner
|
|
215
|
+
Requires-Dist: google-cloud-spanner; extra == "cloud-spanner"
|
|
216
|
+
Requires-Dist: sqlalchemy-spanner; extra == "cloud-spanner"
|
|
217
|
+
Provides-Extra: cloud-sql
|
|
218
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "cloud-sql"
|
|
219
|
+
Requires-Dist: pymssql>=2.1.4; extra == "cloud-sql"
|
|
220
|
+
Provides-Extra: cohere
|
|
221
|
+
Requires-Dist: cohere==4.5.1; extra == "cohere"
|
|
222
|
+
Provides-Extra: coinbase
|
|
223
|
+
Provides-Extra: couchbase
|
|
224
|
+
Requires-Dist: couchbase==4.3.1; extra == "couchbase"
|
|
225
|
+
Provides-Extra: couchbasevector
|
|
226
|
+
Requires-Dist: couchbase==4.3.1; extra == "couchbasevector"
|
|
227
|
+
Provides-Extra: crate
|
|
228
|
+
Requires-Dist: sqlalchemy-cratedb; extra == "crate"
|
|
229
|
+
Requires-Dist: crate; extra == "crate"
|
|
230
|
+
Provides-Extra: d0lt
|
|
231
|
+
Requires-Dist: pymysql; extra == "d0lt"
|
|
232
|
+
Provides-Extra: databend
|
|
233
|
+
Requires-Dist: databend-sqlalchemy; extra == "databend"
|
|
234
|
+
Provides-Extra: databricks
|
|
235
|
+
Requires-Dist: databricks-sql-connector<4.0.0,>=3.7.1; extra == "databricks"
|
|
236
|
+
Provides-Extra: datastax
|
|
237
|
+
Requires-Dist: scylla-driver; extra == "datastax"
|
|
238
|
+
Provides-Extra: db2
|
|
239
|
+
Requires-Dist: ibm-db; extra == "db2"
|
|
240
|
+
Requires-Dist: ibm-db-sa; extra == "db2"
|
|
241
|
+
Provides-Extra: derby
|
|
242
|
+
Requires-Dist: jaydebeapi; extra == "derby"
|
|
243
|
+
Provides-Extra: discord
|
|
244
|
+
Provides-Extra: documentdb
|
|
245
|
+
Requires-Dist: pymongo==4.8.0; extra == "documentdb"
|
|
246
|
+
Provides-Extra: dremio
|
|
247
|
+
Requires-Dist: sqlalchemy_dremio; extra == "dremio"
|
|
248
|
+
Provides-Extra: dropbox
|
|
249
|
+
Requires-Dist: dropbox; extra == "dropbox"
|
|
250
|
+
Provides-Extra: druid
|
|
251
|
+
Requires-Dist: pydruid; extra == "druid"
|
|
252
|
+
Provides-Extra: dspy
|
|
253
|
+
Requires-Dist: dspy-ai==2.4.12; extra == "dspy"
|
|
254
|
+
Requires-Dist: chromadb; extra == "dspy"
|
|
255
|
+
Requires-Dist: wikipedia==1.4.0; extra == "dspy"
|
|
256
|
+
Requires-Dist: anthropic>=0.26.1; extra == "dspy"
|
|
257
|
+
Requires-Dist: dspy==0.1.4; extra == "dspy"
|
|
258
|
+
Requires-Dist: tiktoken; extra == "dspy"
|
|
259
|
+
Provides-Extra: edgelessdb
|
|
260
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "edgelessdb"
|
|
261
|
+
Provides-Extra: elasticsearch
|
|
262
|
+
Requires-Dist: elasticsearch-dbapi==0.2.11; extra == "elasticsearch"
|
|
263
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "elasticsearch"
|
|
264
|
+
Provides-Extra: email
|
|
265
|
+
Requires-Dist: chardet; extra == "email"
|
|
266
|
+
Requires-Dist: bs4; extra == "email"
|
|
267
|
+
Provides-Extra: empress
|
|
268
|
+
Requires-Dist: pyodbc; extra == "empress"
|
|
269
|
+
Provides-Extra: eventbrite
|
|
270
|
+
Requires-Dist: eventbrite-python; extra == "eventbrite"
|
|
271
|
+
Provides-Extra: faunadb
|
|
272
|
+
Requires-Dist: faunadb; extra == "faunadb"
|
|
273
|
+
Provides-Extra: file
|
|
274
|
+
Provides-Extra: firebird
|
|
275
|
+
Requires-Dist: sqlalchemy-firebird<3.0.0,>=2.0.0; extra == "firebird"
|
|
276
|
+
Requires-Dist: fdb; extra == "firebird"
|
|
277
|
+
Provides-Extra: flaml
|
|
278
|
+
Requires-Dist: flaml<=1.2.3; extra == "flaml"
|
|
279
|
+
Requires-Dist: type_infer==0.0.25; extra == "flaml"
|
|
280
|
+
Provides-Extra: frappe
|
|
281
|
+
Provides-Extra: gcs
|
|
282
|
+
Requires-Dist: google-auth; extra == "gcs"
|
|
283
|
+
Requires-Dist: fsspec; extra == "gcs"
|
|
284
|
+
Requires-Dist: google-cloud-storage; extra == "gcs"
|
|
285
|
+
Requires-Dist: gcsfs; extra == "gcs"
|
|
286
|
+
Provides-Extra: github
|
|
287
|
+
Requires-Dist: pygithub==2.6.1; extra == "github"
|
|
288
|
+
Provides-Extra: gitlab
|
|
289
|
+
Requires-Dist: python-gitlab; extra == "gitlab"
|
|
290
|
+
Provides-Extra: gmail
|
|
291
|
+
Requires-Dist: google-api-python-client; extra == "gmail"
|
|
292
|
+
Requires-Dist: google-auth-oauthlib; extra == "gmail"
|
|
293
|
+
Requires-Dist: google-auth; extra == "gmail"
|
|
294
|
+
Provides-Extra: gong
|
|
295
|
+
Provides-Extra: google-analytics
|
|
296
|
+
Requires-Dist: google-api-python-client; extra == "google-analytics"
|
|
297
|
+
Requires-Dist: google-auth; extra == "google-analytics"
|
|
298
|
+
Requires-Dist: google-analytics-admin; extra == "google-analytics"
|
|
299
|
+
Provides-Extra: google-books
|
|
300
|
+
Requires-Dist: google-api-python-client; extra == "google-books"
|
|
301
|
+
Requires-Dist: google-auth; extra == "google-books"
|
|
302
|
+
Provides-Extra: google-calendar
|
|
303
|
+
Requires-Dist: google-api-python-client; extra == "google-calendar"
|
|
304
|
+
Requires-Dist: google-auth-oauthlib; extra == "google-calendar"
|
|
305
|
+
Requires-Dist: google-auth; extra == "google-calendar"
|
|
306
|
+
Provides-Extra: google-content-shopping
|
|
307
|
+
Requires-Dist: google-api-python-client; extra == "google-content-shopping"
|
|
308
|
+
Requires-Dist: google-auth; extra == "google-content-shopping"
|
|
309
|
+
Provides-Extra: google-fit
|
|
310
|
+
Requires-Dist: tzlocal; extra == "google-fit"
|
|
311
|
+
Requires-Dist: google; extra == "google-fit"
|
|
312
|
+
Requires-Dist: google-auth-oauthlib; extra == "google-fit"
|
|
313
|
+
Requires-Dist: google-api-python-client; extra == "google-fit"
|
|
314
|
+
Requires-Dist: google-auth; extra == "google-fit"
|
|
315
|
+
Provides-Extra: google-gemini
|
|
316
|
+
Requires-Dist: pillow; extra == "google-gemini"
|
|
317
|
+
Requires-Dist: google-generativeai==0.3.2; extra == "google-gemini"
|
|
318
|
+
Provides-Extra: google-search
|
|
319
|
+
Requires-Dist: google-api-python-client; extra == "google-search"
|
|
320
|
+
Requires-Dist: google-auth; extra == "google-search"
|
|
321
|
+
Provides-Extra: greptimedb
|
|
322
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "greptimedb"
|
|
323
|
+
Provides-Extra: groq
|
|
324
|
+
Requires-Dist: pydantic-settings>=2.1.0; extra == "groq"
|
|
325
|
+
Requires-Dist: tiktoken; extra == "groq"
|
|
326
|
+
Provides-Extra: hana
|
|
327
|
+
Requires-Dist: sqlalchemy-hana; extra == "hana"
|
|
328
|
+
Requires-Dist: hdbcli; extra == "hana"
|
|
329
|
+
Provides-Extra: hive
|
|
330
|
+
Requires-Dist: thrift; extra == "hive"
|
|
331
|
+
Requires-Dist: pyhive; extra == "hive"
|
|
332
|
+
Requires-Dist: thrift-sasl; extra == "hive"
|
|
333
|
+
Provides-Extra: hsqldb
|
|
334
|
+
Requires-Dist: pyodbc==4.0.34; extra == "hsqldb"
|
|
335
|
+
Provides-Extra: hubspot
|
|
336
|
+
Requires-Dist: hubspot-api-client==11.1.0; extra == "hubspot"
|
|
337
|
+
Provides-Extra: huggingface-api
|
|
338
|
+
Requires-Dist: hugging_py_face; extra == "huggingface-api"
|
|
339
|
+
Requires-Dist: huggingface-hub; extra == "huggingface-api"
|
|
340
|
+
Provides-Extra: huggingface
|
|
341
|
+
Requires-Dist: torch==2.8.0; extra == "huggingface"
|
|
342
|
+
Requires-Dist: evaluate==0.4.3; extra == "huggingface"
|
|
343
|
+
Requires-Dist: datasets==2.16.1; extra == "huggingface"
|
|
344
|
+
Requires-Dist: huggingface-hub==0.29.3; extra == "huggingface"
|
|
345
|
+
Requires-Dist: nltk==3.9.1; extra == "huggingface"
|
|
346
|
+
Requires-Dist: transformers>=4.42.4; extra == "huggingface"
|
|
347
|
+
Provides-Extra: huggingface-cpu
|
|
348
|
+
Requires-Dist: evaluate==0.4.3; extra == "huggingface-cpu"
|
|
349
|
+
Requires-Dist: torch==2.8.0+cpu; extra == "huggingface-cpu"
|
|
350
|
+
Requires-Dist: datasets==2.16.1; extra == "huggingface-cpu"
|
|
351
|
+
Requires-Dist: huggingface-hub==0.29.3; extra == "huggingface-cpu"
|
|
352
|
+
Requires-Dist: nltk==3.9.1; extra == "huggingface-cpu"
|
|
353
|
+
Requires-Dist: transformers>=4.42.4; extra == "huggingface-cpu"
|
|
354
|
+
Provides-Extra: ibm-cos
|
|
355
|
+
Requires-Dist: ibm-cos-sdk; extra == "ibm-cos"
|
|
356
|
+
Provides-Extra: ignite
|
|
357
|
+
Requires-Dist: pyignite; extra == "ignite"
|
|
358
|
+
Provides-Extra: impala
|
|
359
|
+
Requires-Dist: impyla; extra == "impala"
|
|
360
|
+
Provides-Extra: influxdb
|
|
361
|
+
Requires-Dist: influxdb3-python; extra == "influxdb"
|
|
362
|
+
Provides-Extra: informix
|
|
363
|
+
Requires-Dist: sqlalchemy-informix; extra == "informix"
|
|
364
|
+
Provides-Extra: ingres
|
|
365
|
+
Requires-Dist: pyodbc; extra == "ingres"
|
|
366
|
+
Requires-Dist: sqlalchemy-ingres[all]; extra == "ingres"
|
|
367
|
+
Provides-Extra: jira
|
|
368
|
+
Requires-Dist: atlassian-python-api; extra == "jira"
|
|
369
|
+
Provides-Extra: lancedb
|
|
370
|
+
Requires-Dist: lance; extra == "lancedb"
|
|
371
|
+
Requires-Dist: lancedb~=0.3.1; extra == "lancedb"
|
|
372
|
+
Provides-Extra: langchain-embedding
|
|
373
|
+
Requires-Dist: tiktoken; extra == "langchain-embedding"
|
|
374
|
+
Provides-Extra: langchain
|
|
375
|
+
Requires-Dist: litellm==1.63.14; extra == "langchain"
|
|
376
|
+
Requires-Dist: wikipedia==1.4.0; extra == "langchain"
|
|
377
|
+
Requires-Dist: anthropic>=0.26.1; extra == "langchain"
|
|
378
|
+
Requires-Dist: tiktoken; extra == "langchain"
|
|
379
|
+
Requires-Dist: chromadb~=0.6.3; extra == "langchain"
|
|
380
|
+
Provides-Extra: leonardoai
|
|
381
|
+
Provides-Extra: libsql
|
|
382
|
+
Requires-Dist: libsql-experimental; extra == "libsql"
|
|
383
|
+
Provides-Extra: lightfm
|
|
384
|
+
Requires-Dist: lightfm==1.17; extra == "lightfm"
|
|
385
|
+
Requires-Dist: dataprep_ml==0.0.25; extra == "lightfm"
|
|
386
|
+
Provides-Extra: lightwood
|
|
387
|
+
Requires-Dist: lightwood[extra]>=25.9.1.0; extra == "lightwood"
|
|
388
|
+
Requires-Dist: lightwood>=25.9.1.0; extra == "lightwood"
|
|
389
|
+
Requires-Dist: lightwood[xai]>=25.9.1.0; extra == "lightwood"
|
|
390
|
+
Requires-Dist: type_infer==0.0.25; extra == "lightwood"
|
|
391
|
+
Provides-Extra: lindorm
|
|
392
|
+
Requires-Dist: phoenixdb; extra == "lindorm"
|
|
393
|
+
Requires-Dist: pyphoenix; extra == "lindorm"
|
|
394
|
+
Requires-Dist: protobuf==4.25.8; extra == "lindorm"
|
|
395
|
+
Provides-Extra: litellm
|
|
396
|
+
Requires-Dist: litellm==1.63.14; extra == "litellm"
|
|
397
|
+
Provides-Extra: llama-index
|
|
398
|
+
Requires-Dist: pydantic-settings>=2.1.0; extra == "llama-index"
|
|
399
|
+
Requires-Dist: llama-index==0.12.41; extra == "llama-index"
|
|
400
|
+
Requires-Dist: llama-index-embeddings-openai; extra == "llama-index"
|
|
401
|
+
Requires-Dist: llama-index-readers-web; extra == "llama-index"
|
|
402
|
+
Provides-Extra: ludwig
|
|
403
|
+
Requires-Dist: ray==2.43.0; extra == "ludwig"
|
|
404
|
+
Requires-Dist: ludwig[distributed]>=0.5.2; extra == "ludwig"
|
|
405
|
+
Requires-Dist: dask; extra == "ludwig"
|
|
406
|
+
Provides-Extra: luma
|
|
407
|
+
Provides-Extra: mariadb
|
|
408
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "mariadb"
|
|
409
|
+
Provides-Extra: matrixone
|
|
410
|
+
Requires-Dist: pymysql; extra == "matrixone"
|
|
411
|
+
Provides-Extra: maxdb
|
|
412
|
+
Requires-Dist: jaydebeapi; extra == "maxdb"
|
|
413
|
+
Provides-Extra: mediawiki
|
|
414
|
+
Requires-Dist: mediawikiapi; extra == "mediawiki"
|
|
415
|
+
Provides-Extra: mendeley
|
|
416
|
+
Requires-Dist: mendeley; extra == "mendeley"
|
|
417
|
+
Provides-Extra: merlion
|
|
418
|
+
Requires-Dist: scipy; extra == "merlion"
|
|
419
|
+
Requires-Dist: salesforce-merlion<=1.3.1,>=1.2.0; extra == "merlion"
|
|
420
|
+
Provides-Extra: milvus
|
|
421
|
+
Requires-Dist: pymilvus==2.3; extra == "milvus"
|
|
422
|
+
Provides-Extra: minds-endpoint
|
|
423
|
+
Requires-Dist: pydantic-settings>=2.1.0; extra == "minds-endpoint"
|
|
424
|
+
Requires-Dist: tiktoken; extra == "minds-endpoint"
|
|
425
|
+
Provides-Extra: mlflow
|
|
426
|
+
Requires-Dist: mlflow; extra == "mlflow"
|
|
427
|
+
Provides-Extra: monetdb
|
|
428
|
+
Requires-Dist: sqlalchemy-monetdb; extra == "monetdb"
|
|
429
|
+
Requires-Dist: pymonetdb; extra == "monetdb"
|
|
430
|
+
Provides-Extra: mongodb
|
|
431
|
+
Requires-Dist: pymongo==4.8.0; extra == "mongodb"
|
|
432
|
+
Provides-Extra: ms-one-drive
|
|
433
|
+
Requires-Dist: msal; extra == "ms-one-drive"
|
|
434
|
+
Provides-Extra: ms-teams
|
|
435
|
+
Requires-Dist: msal; extra == "ms-teams"
|
|
436
|
+
Requires-Dist: botframework-connector; extra == "ms-teams"
|
|
437
|
+
Requires-Dist: botbuilder-schema; extra == "ms-teams"
|
|
438
|
+
Provides-Extra: mssql
|
|
439
|
+
Requires-Dist: pymssql>=2.1.4; extra == "mssql"
|
|
440
|
+
Provides-Extra: mysql
|
|
441
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "mysql"
|
|
442
|
+
Provides-Extra: neuralforecast
|
|
443
|
+
Requires-Dist: ray[tune]>=2.8.1; extra == "neuralforecast"
|
|
444
|
+
Requires-Dist: neuralforecast<1.7.0,>=1.6.0; extra == "neuralforecast"
|
|
445
|
+
Provides-Extra: neuralforecast-extra
|
|
446
|
+
Requires-Dist: ray[tune]>=2.2.0; extra == "neuralforecast-extra"
|
|
447
|
+
Requires-Dist: neuralforecast<1.7.0,>=1.6.0; extra == "neuralforecast-extra"
|
|
448
|
+
Provides-Extra: newsapi
|
|
449
|
+
Requires-Dist: newsapi-python; extra == "newsapi"
|
|
450
|
+
Provides-Extra: notion
|
|
451
|
+
Requires-Dist: notion-client; extra == "notion"
|
|
452
|
+
Provides-Extra: nuo-jdbc
|
|
453
|
+
Requires-Dist: jaydebeapi; extra == "nuo-jdbc"
|
|
454
|
+
Provides-Extra: oceanbase
|
|
455
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "oceanbase"
|
|
456
|
+
Provides-Extra: openai
|
|
457
|
+
Requires-Dist: tiktoken; extra == "openai"
|
|
458
|
+
Provides-Extra: openbb
|
|
459
|
+
Requires-Dist: openbb==4.3.1; extra == "openbb"
|
|
460
|
+
Requires-Dist: openbb-core==1.3.1; extra == "openbb"
|
|
461
|
+
Provides-Extra: openstreetmap
|
|
462
|
+
Requires-Dist: overpy; extra == "openstreetmap"
|
|
463
|
+
Provides-Extra: oracle
|
|
464
|
+
Requires-Dist: oracledb==2.4.1; extra == "oracle"
|
|
465
|
+
Provides-Extra: palm
|
|
466
|
+
Requires-Dist: google-generativeai>=0.1.0; extra == "palm"
|
|
467
|
+
Provides-Extra: paypal
|
|
468
|
+
Requires-Dist: paypalrestsdk; extra == "paypal"
|
|
469
|
+
Provides-Extra: pgvector
|
|
470
|
+
Provides-Extra: phoenix
|
|
471
|
+
Requires-Dist: phoenixdb; extra == "phoenix"
|
|
472
|
+
Requires-Dist: pyphoenix; extra == "phoenix"
|
|
473
|
+
Provides-Extra: pinecone
|
|
474
|
+
Requires-Dist: pinecone-client==5.0.1; extra == "pinecone"
|
|
475
|
+
Provides-Extra: pinot
|
|
476
|
+
Requires-Dist: pinotdb; extra == "pinot"
|
|
477
|
+
Provides-Extra: plaid
|
|
478
|
+
Requires-Dist: plaid-python; extra == "plaid"
|
|
479
|
+
Provides-Extra: planetscale
|
|
480
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "planetscale"
|
|
481
|
+
Provides-Extra: popularity-recommender
|
|
482
|
+
Requires-Dist: polars; extra == "popularity-recommender"
|
|
483
|
+
Provides-Extra: portkey
|
|
484
|
+
Requires-Dist: portkey-ai>=1.8.2; extra == "portkey"
|
|
485
|
+
Provides-Extra: pycaret
|
|
486
|
+
Requires-Dist: pycaret[models]; extra == "pycaret"
|
|
487
|
+
Requires-Dist: pycaret; extra == "pycaret"
|
|
488
|
+
Provides-Extra: qdrant
|
|
489
|
+
Requires-Dist: qdrant-client; extra == "qdrant"
|
|
490
|
+
Provides-Extra: questdb
|
|
491
|
+
Requires-Dist: questdb; extra == "questdb"
|
|
492
|
+
Provides-Extra: quickbooks
|
|
493
|
+
Requires-Dist: qbosdk; extra == "quickbooks"
|
|
494
|
+
Provides-Extra: rag
|
|
495
|
+
Requires-Dist: chromadb~=0.6.3; extra == "rag"
|
|
496
|
+
Requires-Dist: writerai~=1.1.0; extra == "rag"
|
|
497
|
+
Requires-Dist: html2text; extra == "rag"
|
|
498
|
+
Requires-Dist: sentence-transformers; extra == "rag"
|
|
499
|
+
Requires-Dist: faiss-cpu; extra == "rag"
|
|
500
|
+
Requires-Dist: onnxruntime==1.20.1; extra == "rag"
|
|
501
|
+
Provides-Extra: reddit
|
|
502
|
+
Requires-Dist: praw; extra == "reddit"
|
|
503
|
+
Provides-Extra: replicate
|
|
504
|
+
Requires-Dist: replicate; extra == "replicate"
|
|
505
|
+
Provides-Extra: rocket-chat
|
|
506
|
+
Requires-Dist: rocketchat_API; extra == "rocket-chat"
|
|
507
|
+
Provides-Extra: rockset
|
|
508
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "rockset"
|
|
509
|
+
Provides-Extra: salesforce
|
|
510
|
+
Requires-Dist: salesforce_api==0.1.45; extra == "salesforce"
|
|
511
|
+
Provides-Extra: scylla
|
|
512
|
+
Requires-Dist: scylla-driver; extra == "scylla"
|
|
513
|
+
Provides-Extra: sendinblue
|
|
514
|
+
Requires-Dist: sib_api_v3_sdk; extra == "sendinblue"
|
|
515
|
+
Provides-Extra: sentence-transformers
|
|
516
|
+
Requires-Dist: chromadb~=0.6.3; extra == "sentence-transformers"
|
|
517
|
+
Requires-Dist: writerai~=1.1.0; extra == "sentence-transformers"
|
|
518
|
+
Requires-Dist: html2text; extra == "sentence-transformers"
|
|
519
|
+
Requires-Dist: sentence-transformers; extra == "sentence-transformers"
|
|
520
|
+
Requires-Dist: faiss-cpu; extra == "sentence-transformers"
|
|
521
|
+
Requires-Dist: onnxruntime==1.20.1; extra == "sentence-transformers"
|
|
522
|
+
Provides-Extra: shopify
|
|
523
|
+
Requires-Dist: ShopifyAPI; extra == "shopify"
|
|
524
|
+
Provides-Extra: singlestore
|
|
525
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "singlestore"
|
|
526
|
+
Provides-Extra: slack
|
|
527
|
+
Requires-Dist: slack_sdk==3.30.0; extra == "slack"
|
|
528
|
+
Provides-Extra: snowflake
|
|
529
|
+
Requires-Dist: snowflake-connector-python[pandas]==3.15.0; extra == "snowflake"
|
|
530
|
+
Requires-Dist: snowflake-sqlalchemy==1.7.0; extra == "snowflake"
|
|
531
|
+
Provides-Extra: solace
|
|
532
|
+
Requires-Dist: solace-pubsubplus; extra == "solace"
|
|
533
|
+
Provides-Extra: solr
|
|
534
|
+
Requires-Dist: sqlalchemy-solr; extra == "solr"
|
|
535
|
+
Provides-Extra: spacy
|
|
536
|
+
Requires-Dist: spacy; extra == "spacy"
|
|
537
|
+
Provides-Extra: sqlany
|
|
538
|
+
Requires-Dist: sqlanydb; extra == "sqlany"
|
|
539
|
+
Requires-Dist: sqlalchemy-sqlany; extra == "sqlany"
|
|
540
|
+
Provides-Extra: sqreamdb
|
|
541
|
+
Requires-Dist: pysqream>=3.2.5; extra == "sqreamdb"
|
|
542
|
+
Requires-Dist: pysqream_sqlalchemy>=0.8; extra == "sqreamdb"
|
|
543
|
+
Provides-Extra: stabilityai
|
|
544
|
+
Requires-Dist: pillow; extra == "stabilityai"
|
|
545
|
+
Requires-Dist: stability-sdk; extra == "stabilityai"
|
|
546
|
+
Provides-Extra: starrocks
|
|
547
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "starrocks"
|
|
548
|
+
Provides-Extra: statsforecast
|
|
549
|
+
Requires-Dist: numba<=0.61.2,>=0.55.0; extra == "statsforecast"
|
|
550
|
+
Requires-Dist: statsforecast==1.6.0; extra == "statsforecast"
|
|
551
|
+
Requires-Dist: scipy==1.15.3; extra == "statsforecast"
|
|
552
|
+
Provides-Extra: statsforecast-extra
|
|
553
|
+
Requires-Dist: numba<=0.61.2,>=0.55.0; extra == "statsforecast-extra"
|
|
554
|
+
Requires-Dist: statsforecast==1.6.0; extra == "statsforecast-extra"
|
|
555
|
+
Requires-Dist: scipy==1.15.3; extra == "statsforecast-extra"
|
|
556
|
+
Provides-Extra: strava
|
|
557
|
+
Requires-Dist: stravalib; extra == "strava"
|
|
558
|
+
Provides-Extra: stripe
|
|
559
|
+
Requires-Dist: stripe; extra == "stripe"
|
|
560
|
+
Provides-Extra: surrealdb
|
|
561
|
+
Requires-Dist: pysurrealdb; extra == "surrealdb"
|
|
562
|
+
Provides-Extra: symbl
|
|
563
|
+
Requires-Dist: symbl; extra == "symbl"
|
|
564
|
+
Provides-Extra: tdengine
|
|
565
|
+
Requires-Dist: taospy; extra == "tdengine"
|
|
566
|
+
Provides-Extra: teradata
|
|
567
|
+
Requires-Dist: teradatasql; extra == "teradata"
|
|
568
|
+
Requires-Dist: teradatasqlalchemy; extra == "teradata"
|
|
569
|
+
Provides-Extra: tidb
|
|
570
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "tidb"
|
|
571
|
+
Provides-Extra: timegpt
|
|
572
|
+
Requires-Dist: nixtla==0.6.6; extra == "timegpt"
|
|
573
|
+
Provides-Extra: togetherai
|
|
574
|
+
Requires-Dist: pydantic-settings>=2.1.0; extra == "togetherai"
|
|
575
|
+
Requires-Dist: tiktoken; extra == "togetherai"
|
|
576
|
+
Provides-Extra: tpot
|
|
577
|
+
Requires-Dist: type_infer==0.0.25; extra == "tpot"
|
|
578
|
+
Requires-Dist: tpot<=0.11.7; extra == "tpot"
|
|
579
|
+
Provides-Extra: trino
|
|
580
|
+
Requires-Dist: trino~=0.313.0; extra == "trino"
|
|
581
|
+
Requires-Dist: pyhive; extra == "trino"
|
|
582
|
+
Provides-Extra: twelve-labs
|
|
583
|
+
Requires-Dist: requests_toolbelt; extra == "twelve-labs"
|
|
584
|
+
Requires-Dist: pydantic-settings>=2.1.0; extra == "twelve-labs"
|
|
585
|
+
Provides-Extra: twilio
|
|
586
|
+
Requires-Dist: twilio; extra == "twilio"
|
|
587
|
+
Provides-Extra: twitter
|
|
588
|
+
Requires-Dist: tweepy; extra == "twitter"
|
|
589
|
+
Provides-Extra: unify
|
|
590
|
+
Requires-Dist: unifyai==0.9.2; extra == "unify"
|
|
591
|
+
Provides-Extra: vertex
|
|
592
|
+
Requires-Dist: google-auth; extra == "vertex"
|
|
593
|
+
Requires-Dist: google-auth-oauthlib; extra == "vertex"
|
|
594
|
+
Requires-Dist: google-cloud-aiplatform>=1.35.0; extra == "vertex"
|
|
595
|
+
Provides-Extra: vertica
|
|
596
|
+
Requires-Dist: vertica-python; extra == "vertica"
|
|
597
|
+
Requires-Dist: sqlalchemy-vertica-python; extra == "vertica"
|
|
598
|
+
Provides-Extra: vitess
|
|
599
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "vitess"
|
|
600
|
+
Provides-Extra: weaviate
|
|
601
|
+
Requires-Dist: weaviate-client~=3.24.2; extra == "weaviate"
|
|
602
|
+
Provides-Extra: web
|
|
603
|
+
Requires-Dist: html2text; extra == "web"
|
|
604
|
+
Requires-Dist: bs4; extra == "web"
|
|
605
|
+
Provides-Extra: webz
|
|
606
|
+
Requires-Dist: dotty-dict==1.3.1; extra == "webz"
|
|
607
|
+
Requires-Dist: webzio==1.0.2; extra == "webz"
|
|
608
|
+
Provides-Extra: whatsapp
|
|
609
|
+
Requires-Dist: twilio; extra == "whatsapp"
|
|
610
|
+
Provides-Extra: writer
|
|
611
|
+
Requires-Dist: chromadb~=0.6.3; extra == "writer"
|
|
612
|
+
Requires-Dist: nltk>=3.9; extra == "writer"
|
|
613
|
+
Requires-Dist: writerai~=1.1.0; extra == "writer"
|
|
614
|
+
Requires-Dist: rouge-score>=0.1.2; extra == "writer"
|
|
615
|
+
Requires-Dist: scipy; extra == "writer"
|
|
616
|
+
Requires-Dist: html2text; extra == "writer"
|
|
617
|
+
Requires-Dist: sentence-transformers; extra == "writer"
|
|
618
|
+
Requires-Dist: faiss-cpu; extra == "writer"
|
|
619
|
+
Requires-Dist: onnxruntime==1.20.1; extra == "writer"
|
|
620
|
+
Provides-Extra: xata
|
|
621
|
+
Requires-Dist: xata; extra == "xata"
|
|
622
|
+
Provides-Extra: youtube
|
|
623
|
+
Requires-Dist: google-api-python-client; extra == "youtube"
|
|
624
|
+
Requires-Dist: youtube-transcript-api; extra == "youtube"
|
|
625
|
+
Requires-Dist: google-auth; extra == "youtube"
|
|
626
|
+
Requires-Dist: google-auth-oauthlib; extra == "youtube"
|
|
627
|
+
Provides-Extra: zendesk
|
|
628
|
+
Requires-Dist: zenpy; extra == "zendesk"
|
|
629
|
+
Provides-Extra: zotero
|
|
630
|
+
Requires-Dist: pyzotero; extra == "zotero"
|
|
631
|
+
Provides-Extra: all-handlers-extras
|
|
632
|
+
Requires-Dist: pycaret[models]; extra == "all-handlers-extras"
|
|
633
|
+
Requires-Dist: google-cloud-storage; extra == "all-handlers-extras"
|
|
634
|
+
Requires-Dist: numba<=0.61.2,>=0.55.0; extra == "all-handlers-extras"
|
|
635
|
+
Requires-Dist: requests_toolbelt; extra == "all-handlers-extras"
|
|
636
|
+
Requires-Dist: type_infer==0.0.25; extra == "all-handlers-extras"
|
|
637
|
+
Requires-Dist: jaydebeapi; extra == "all-handlers-extras"
|
|
638
|
+
Requires-Dist: ibm-db-sa; extra == "all-handlers-extras"
|
|
639
|
+
Requires-Dist: ckanapi; extra == "all-handlers-extras"
|
|
640
|
+
Requires-Dist: google-generativeai>=0.1.0; extra == "all-handlers-extras"
|
|
641
|
+
Requires-Dist: sqlalchemy-ingres[all]; extra == "all-handlers-extras"
|
|
642
|
+
Requires-Dist: evaluate==0.4.3; extra == "all-handlers-extras"
|
|
643
|
+
Requires-Dist: dropbox; extra == "all-handlers-extras"
|
|
644
|
+
Requires-Dist: sqlalchemy-cratedb; extra == "all-handlers-extras"
|
|
645
|
+
Requires-Dist: virtualenv; extra == "all-handlers-extras"
|
|
646
|
+
Requires-Dist: pyodbc; extra == "all-handlers-extras"
|
|
647
|
+
Requires-Dist: fsspec; extra == "all-handlers-extras"
|
|
648
|
+
Requires-Dist: llama-index==0.12.41; extra == "all-handlers-extras"
|
|
649
|
+
Requires-Dist: thrift; extra == "all-handlers-extras"
|
|
650
|
+
Requires-Dist: torch==2.8.0; extra == "all-handlers-extras"
|
|
651
|
+
Requires-Dist: snowflake-sqlalchemy==1.7.0; extra == "all-handlers-extras"
|
|
652
|
+
Requires-Dist: xgboost; extra == "all-handlers-extras"
|
|
653
|
+
Requires-Dist: pymonetdb; extra == "all-handlers-extras"
|
|
654
|
+
Requires-Dist: xata; extra == "all-handlers-extras"
|
|
655
|
+
Requires-Dist: crate; extra == "all-handlers-extras"
|
|
656
|
+
Requires-Dist: oracledb==2.4.1; extra == "all-handlers-extras"
|
|
657
|
+
Requires-Dist: faiss-cpu; extra == "all-handlers-extras"
|
|
658
|
+
Requires-Dist: auto-sklearn; extra == "all-handlers-extras"
|
|
659
|
+
Requires-Dist: sqlalchemy-bigquery; extra == "all-handlers-extras"
|
|
660
|
+
Requires-Dist: chromadb~=0.6.3; extra == "all-handlers-extras"
|
|
661
|
+
Requires-Dist: cohere==4.5.1; extra == "all-handlers-extras"
|
|
662
|
+
Requires-Dist: mendeley; extra == "all-handlers-extras"
|
|
663
|
+
Requires-Dist: pinecone-client==5.0.1; extra == "all-handlers-extras"
|
|
664
|
+
Requires-Dist: hubspot-api-client==11.1.0; extra == "all-handlers-extras"
|
|
665
|
+
Requires-Dist: ShopifyAPI; extra == "all-handlers-extras"
|
|
666
|
+
Requires-Dist: rouge-score>=0.1.2; extra == "all-handlers-extras"
|
|
667
|
+
Requires-Dist: google-auth; extra == "all-handlers-extras"
|
|
668
|
+
Requires-Dist: google-cloud-spanner; extra == "all-handlers-extras"
|
|
669
|
+
Requires-Dist: openbb==4.3.1; extra == "all-handlers-extras"
|
|
670
|
+
Requires-Dist: salesforce-merlion<=1.3.1,>=1.2.0; extra == "all-handlers-extras"
|
|
671
|
+
Requires-Dist: tensorflow; extra == "all-handlers-extras"
|
|
672
|
+
Requires-Dist: nltk==3.9.1; extra == "all-handlers-extras"
|
|
673
|
+
Requires-Dist: transformers>=4.42.4; extra == "all-handlers-extras"
|
|
674
|
+
Requires-Dist: notion-client; extra == "all-handlers-extras"
|
|
675
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all-handlers-extras"
|
|
676
|
+
Requires-Dist: pysurrealdb; extra == "all-handlers-extras"
|
|
677
|
+
Requires-Dist: scipy==1.15.3; extra == "all-handlers-extras"
|
|
678
|
+
Requires-Dist: lancedb~=0.3.1; extra == "all-handlers-extras"
|
|
679
|
+
Requires-Dist: taospy; extra == "all-handlers-extras"
|
|
680
|
+
Requires-Dist: anthropic==0.18.1; extra == "all-handlers-extras"
|
|
681
|
+
Requires-Dist: pysqream>=3.2.5; extra == "all-handlers-extras"
|
|
682
|
+
Requires-Dist: pyignite; extra == "all-handlers-extras"
|
|
683
|
+
Requires-Dist: torch==2.8.0+cpu; extra == "all-handlers-extras"
|
|
684
|
+
Requires-Dist: polars; extra == "all-handlers-extras"
|
|
685
|
+
Requires-Dist: portkey-ai>=1.8.2; extra == "all-handlers-extras"
|
|
686
|
+
Requires-Dist: llama-index-embeddings-openai; extra == "all-handlers-extras"
|
|
687
|
+
Requires-Dist: phoenixdb; extra == "all-handlers-extras"
|
|
688
|
+
Requires-Dist: pyphoenix; extra == "all-handlers-extras"
|
|
689
|
+
Requires-Dist: teradatasqlalchemy; extra == "all-handlers-extras"
|
|
690
|
+
Requires-Dist: pillow; extra == "all-handlers-extras"
|
|
691
|
+
Requires-Dist: lightwood[extra]>=25.9.1.0; extra == "all-handlers-extras"
|
|
692
|
+
Requires-Dist: ray==2.43.0; extra == "all-handlers-extras"
|
|
693
|
+
Requires-Dist: google-auth-oauthlib; extra == "all-handlers-extras"
|
|
694
|
+
Requires-Dist: atlassian-python-api; extra == "all-handlers-extras"
|
|
695
|
+
Requires-Dist: eventbrite-python; extra == "all-handlers-extras"
|
|
696
|
+
Requires-Dist: protobuf==4.25.8; extra == "all-handlers-extras"
|
|
697
|
+
Requires-Dist: bs4; extra == "all-handlers-extras"
|
|
698
|
+
Requires-Dist: pymssql>=2.1.4; extra == "all-handlers-extras"
|
|
699
|
+
Requires-Dist: plaid-python; extra == "all-handlers-extras"
|
|
700
|
+
Requires-Dist: neuralforecast<1.7.0,>=1.6.0; extra == "all-handlers-extras"
|
|
701
|
+
Requires-Dist: lightwood[xai]>=25.9.1.0; extra == "all-handlers-extras"
|
|
702
|
+
Requires-Dist: tzlocal; extra == "all-handlers-extras"
|
|
703
|
+
Requires-Dist: sqlalchemy-hana; extra == "all-handlers-extras"
|
|
704
|
+
Requires-Dist: binance-connector; extra == "all-handlers-extras"
|
|
705
|
+
Requires-Dist: thrift-sasl; extra == "all-handlers-extras"
|
|
706
|
+
Requires-Dist: chromadb; extra == "all-handlers-extras"
|
|
707
|
+
Requires-Dist: datasets==2.16.1; extra == "all-handlers-extras"
|
|
708
|
+
Requires-Dist: ray[tune]>=2.2.0; extra == "all-handlers-extras"
|
|
709
|
+
Requires-Dist: sqlalchemy-access; extra == "all-handlers-extras"
|
|
710
|
+
Requires-Dist: stravalib; extra == "all-handlers-extras"
|
|
711
|
+
Requires-Dist: pyhive; extra == "all-handlers-extras"
|
|
712
|
+
Requires-Dist: joblib; extra == "all-handlers-extras"
|
|
713
|
+
Requires-Dist: sqlanydb; extra == "all-handlers-extras"
|
|
714
|
+
Requires-Dist: pymilvus==2.3; extra == "all-handlers-extras"
|
|
715
|
+
Requires-Dist: mediawikiapi; extra == "all-handlers-extras"
|
|
716
|
+
Requires-Dist: libsql-experimental; extra == "all-handlers-extras"
|
|
717
|
+
Requires-Dist: snowflake-connector-python[pandas]==3.15.0; extra == "all-handlers-extras"
|
|
718
|
+
Requires-Dist: spacy; extra == "all-handlers-extras"
|
|
719
|
+
Requires-Dist: tiktoken; extra == "all-handlers-extras"
|
|
720
|
+
Requires-Dist: slack_sdk==3.30.0; extra == "all-handlers-extras"
|
|
721
|
+
Requires-Dist: google-generativeai==0.3.2; extra == "all-handlers-extras"
|
|
722
|
+
Requires-Dist: overpy; extra == "all-handlers-extras"
|
|
723
|
+
Requires-Dist: qbosdk; extra == "all-handlers-extras"
|
|
724
|
+
Requires-Dist: teradatasql; extra == "all-handlers-extras"
|
|
725
|
+
Requires-Dist: litellm==1.63.14; extra == "all-handlers-extras"
|
|
726
|
+
Requires-Dist: replicate; extra == "all-handlers-extras"
|
|
727
|
+
Requires-Dist: gcsfs; extra == "all-handlers-extras"
|
|
728
|
+
Requires-Dist: openbb-core==1.3.1; extra == "all-handlers-extras"
|
|
729
|
+
Requires-Dist: ray[tune]>=2.8.1; extra == "all-handlers-extras"
|
|
730
|
+
Requires-Dist: ibm-cos-sdk; extra == "all-handlers-extras"
|
|
731
|
+
Requires-Dist: autokeras; extra == "all-handlers-extras"
|
|
732
|
+
Requires-Dist: fdb; extra == "all-handlers-extras"
|
|
733
|
+
Requires-Dist: paypalrestsdk; extra == "all-handlers-extras"
|
|
734
|
+
Requires-Dist: autogluon; extra == "all-handlers-extras"
|
|
735
|
+
Requires-Dist: sqlalchemy-firebird<3.0.0,>=2.0.0; extra == "all-handlers-extras"
|
|
736
|
+
Requires-Dist: botframework-connector; extra == "all-handlers-extras"
|
|
737
|
+
Requires-Dist: webzio==1.0.2; extra == "all-handlers-extras"
|
|
738
|
+
Requires-Dist: salesforce_api==0.1.45; extra == "all-handlers-extras"
|
|
739
|
+
Requires-Dist: aerospike~=13.0.0; extra == "all-handlers-extras"
|
|
740
|
+
Requires-Dist: ibm-db; extra == "all-handlers-extras"
|
|
741
|
+
Requires-Dist: elasticsearch-dbapi==0.2.11; extra == "all-handlers-extras"
|
|
742
|
+
Requires-Dist: couchbase==4.3.1; extra == "all-handlers-extras"
|
|
743
|
+
Requires-Dist: anthropic>=0.26.1; extra == "all-handlers-extras"
|
|
744
|
+
Requires-Dist: sqlalchemy-informix; extra == "all-handlers-extras"
|
|
745
|
+
Requires-Dist: faunadb; extra == "all-handlers-extras"
|
|
746
|
+
Requires-Dist: flaml<=1.2.3; extra == "all-handlers-extras"
|
|
747
|
+
Requires-Dist: vertica-python; extra == "all-handlers-extras"
|
|
748
|
+
Requires-Dist: sqlalchemy-monetdb; extra == "all-handlers-extras"
|
|
749
|
+
Requires-Dist: mlflow; extra == "all-handlers-extras"
|
|
750
|
+
Requires-Dist: impyla; extra == "all-handlers-extras"
|
|
751
|
+
Requires-Dist: huggingface-hub; extra == "all-handlers-extras"
|
|
752
|
+
Requires-Dist: hugging_py_face; extra == "all-handlers-extras"
|
|
753
|
+
Requires-Dist: clickhouse-sqlalchemy>=0.3.1; extra == "all-handlers-extras"
|
|
754
|
+
Requires-Dist: zenpy; extra == "all-handlers-extras"
|
|
755
|
+
Requires-Dist: scipy; extra == "all-handlers-extras"
|
|
756
|
+
Requires-Dist: rocketchat_API; extra == "all-handlers-extras"
|
|
757
|
+
Requires-Dist: influxdb3-python; extra == "all-handlers-extras"
|
|
758
|
+
Requires-Dist: sqlalchemy-vertica-python; extra == "all-handlers-extras"
|
|
759
|
+
Requires-Dist: writerai~=1.1.0; extra == "all-handlers-extras"
|
|
760
|
+
Requires-Dist: sqlalchemy-sqlany; extra == "all-handlers-extras"
|
|
761
|
+
Requires-Dist: catboost>=1.2; extra == "all-handlers-extras"
|
|
762
|
+
Requires-Dist: newsapi-python; extra == "all-handlers-extras"
|
|
763
|
+
Requires-Dist: pyzotero; extra == "all-handlers-extras"
|
|
764
|
+
Requires-Dist: stability-sdk; extra == "all-handlers-extras"
|
|
765
|
+
Requires-Dist: lightwood>=25.9.1.0; extra == "all-handlers-extras"
|
|
766
|
+
Requires-Dist: hdbcli; extra == "all-handlers-extras"
|
|
767
|
+
Requires-Dist: dspy==0.1.4; extra == "all-handlers-extras"
|
|
768
|
+
Requires-Dist: pymysql; extra == "all-handlers-extras"
|
|
769
|
+
Requires-Dist: chromadb~=0.6.3; extra == "all-handlers-extras"
|
|
770
|
+
Requires-Dist: pydruid; extra == "all-handlers-extras"
|
|
771
|
+
Requires-Dist: symbl; extra == "all-handlers-extras"
|
|
772
|
+
Requires-Dist: pyod>=1.1; extra == "all-handlers-extras"
|
|
773
|
+
Requires-Dist: qdrant-client; extra == "all-handlers-extras"
|
|
774
|
+
Requires-Dist: nltk>=3.9; extra == "all-handlers-extras"
|
|
775
|
+
Requires-Dist: tpot<=0.11.7; extra == "all-handlers-extras"
|
|
776
|
+
Requires-Dist: google; extra == "all-handlers-extras"
|
|
777
|
+
Requires-Dist: youtube-transcript-api; extra == "all-handlers-extras"
|
|
778
|
+
Requires-Dist: solace-pubsubplus; extra == "all-handlers-extras"
|
|
779
|
+
Requires-Dist: unifyai==0.9.2; extra == "all-handlers-extras"
|
|
780
|
+
Requires-Dist: wikipedia==1.4.0; extra == "all-handlers-extras"
|
|
781
|
+
Requires-Dist: statsforecast==1.6.0; extra == "all-handlers-extras"
|
|
782
|
+
Requires-Dist: google-cloud-aiplatform>=1.35.0; extra == "all-handlers-extras"
|
|
783
|
+
Requires-Dist: python-gitlab; extra == "all-handlers-extras"
|
|
784
|
+
Requires-Dist: nixtla==0.6.6; extra == "all-handlers-extras"
|
|
785
|
+
Requires-Dist: sentence-transformers; extra == "all-handlers-extras"
|
|
786
|
+
Requires-Dist: trino~=0.313.0; extra == "all-handlers-extras"
|
|
787
|
+
Requires-Dist: sib_api_v3_sdk; extra == "all-handlers-extras"
|
|
788
|
+
Requires-Dist: google-cloud-bigquery[pandas]; extra == "all-handlers-extras"
|
|
789
|
+
Requires-Dist: pinotdb; extra == "all-handlers-extras"
|
|
790
|
+
Requires-Dist: praw; extra == "all-handlers-extras"
|
|
791
|
+
Requires-Dist: mysql-connector-python==9.1.0; extra == "all-handlers-extras"
|
|
792
|
+
Requires-Dist: dspy-ai==2.4.12; extra == "all-handlers-extras"
|
|
793
|
+
Requires-Dist: tweepy; extra == "all-handlers-extras"
|
|
794
|
+
Requires-Dist: twilio; extra == "all-handlers-extras"
|
|
795
|
+
Requires-Dist: lightfm==1.17; extra == "all-handlers-extras"
|
|
796
|
+
Requires-Dist: pymongo==4.8.0; extra == "all-handlers-extras"
|
|
797
|
+
Requires-Dist: chardet; extra == "all-handlers-extras"
|
|
798
|
+
Requires-Dist: weaviate-client~=3.24.2; extra == "all-handlers-extras"
|
|
799
|
+
Requires-Dist: dotty-dict==1.3.1; extra == "all-handlers-extras"
|
|
800
|
+
Requires-Dist: botbuilder-schema; extra == "all-handlers-extras"
|
|
801
|
+
Requires-Dist: sqlalchemy-solr; extra == "all-handlers-extras"
|
|
802
|
+
Requires-Dist: pysqream_sqlalchemy>=0.8; extra == "all-handlers-extras"
|
|
803
|
+
Requires-Dist: google-api-python-client; extra == "all-handlers-extras"
|
|
804
|
+
Requires-Dist: pygithub==2.6.1; extra == "all-handlers-extras"
|
|
805
|
+
Requires-Dist: databend-sqlalchemy; extra == "all-handlers-extras"
|
|
806
|
+
Requires-Dist: html2text; extra == "all-handlers-extras"
|
|
807
|
+
Requires-Dist: box-sdk-gen; extra == "all-handlers-extras"
|
|
808
|
+
Requires-Dist: sqlalchemy-spanner; extra == "all-handlers-extras"
|
|
809
|
+
Requires-Dist: databricks-sql-connector<4.0.0,>=3.7.1; extra == "all-handlers-extras"
|
|
810
|
+
Requires-Dist: onnxruntime==1.20.1; extra == "all-handlers-extras"
|
|
811
|
+
Requires-Dist: pydantic-settings>=2.1.0; extra == "all-handlers-extras"
|
|
812
|
+
Requires-Dist: dataprep_ml==0.0.25; extra == "all-handlers-extras"
|
|
813
|
+
Requires-Dist: pyodbc==4.0.34; extra == "all-handlers-extras"
|
|
814
|
+
Requires-Dist: scylla-driver; extra == "all-handlers-extras"
|
|
815
|
+
Requires-Dist: dask; extra == "all-handlers-extras"
|
|
816
|
+
Requires-Dist: lance; extra == "all-handlers-extras"
|
|
817
|
+
Requires-Dist: stripe; extra == "all-handlers-extras"
|
|
818
|
+
Requires-Dist: sqlalchemy_dremio; extra == "all-handlers-extras"
|
|
819
|
+
Requires-Dist: ludwig[distributed]>=0.5.2; extra == "all-handlers-extras"
|
|
820
|
+
Requires-Dist: llama-index-readers-web; extra == "all-handlers-extras"
|
|
821
|
+
Requires-Dist: pycaret; extra == "all-handlers-extras"
|
|
822
|
+
Requires-Dist: huggingface-hub==0.29.3; extra == "all-handlers-extras"
|
|
823
|
+
Requires-Dist: questdb; extra == "all-handlers-extras"
|
|
824
|
+
Requires-Dist: azure-storage-blob; extra == "all-handlers-extras"
|
|
825
|
+
Requires-Dist: msal; extra == "all-handlers-extras"
|
|
826
|
+
Requires-Dist: google-analytics-admin; extra == "all-handlers-extras"
|
|
827
|
+
Dynamic: author
|
|
828
|
+
Dynamic: author-email
|
|
829
|
+
Dynamic: classifier
|
|
830
|
+
Dynamic: description
|
|
831
|
+
Dynamic: description-content-type
|
|
832
|
+
Dynamic: download-url
|
|
833
|
+
Dynamic: home-page
|
|
834
|
+
Dynamic: license
|
|
835
|
+
Dynamic: license-file
|
|
836
|
+
Dynamic: provides-extra
|
|
837
|
+
Dynamic: requires-dist
|
|
838
|
+
Dynamic: requires-python
|
|
839
|
+
Dynamic: summary
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
<a name="readme-top"></a>
|
|
844
|
+
|
|
845
|
+
<div align="center">
|
|
846
|
+
<a href="https://pypi.org/project/MindsDB/" target="_blank"><img src="https://badge.fury.io/py/MindsDB.svg" alt="MindsDB Release"></a>
|
|
847
|
+
<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>
|
|
848
|
+
<a href="https://hub.docker.com/u/mindsdb" target="_blank"><img src="https://img.shields.io/docker/pulls/mindsdb/mindsdb" alt="Docker pulls"></a>
|
|
849
|
+
|
|
850
|
+
<br />
|
|
851
|
+
<br />
|
|
852
|
+
|
|
853
|
+
<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>
|
|
854
|
+
|
|
855
|
+
<a href="https://github.com/mindsdb/mindsdb">
|
|
856
|
+
<img src="/docs/assets/mindsdb_logo.png" alt="MindsDB" width="300">
|
|
857
|
+
</a>
|
|
858
|
+
|
|
859
|
+
<p align="center">
|
|
860
|
+
<br />
|
|
861
|
+
<a href="https://www.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Website</a>
|
|
862
|
+
·
|
|
863
|
+
<a href="https://docs.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Docs</a>
|
|
864
|
+
·
|
|
865
|
+
<a href="https://mindsdb.com/contact">Contact us for a Demo</a>
|
|
866
|
+
·
|
|
867
|
+
<a href="https://mindsdb.com/joincommunity?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Community Slack</a>
|
|
868
|
+
</p>
|
|
869
|
+
</div>
|
|
870
|
+
|
|
871
|
+
----------------------------------------
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
MindsDB enables humans, AI, agents, and applications to get highly accurate answers across large scale data sources.
|
|
875
|
+
|
|
876
|
+
<a href="https://www.youtube.com/watch?v=MX3OKpnsoLM" target="_blank">
|
|
877
|
+
<img src="https://github.com/user-attachments/assets/119e7b82-f901-4214-a26f-ff7c5ad86064" alt="MindsDB Demo">
|
|
878
|
+
|
|
879
|
+
</a>
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
## Install MindsDB Server
|
|
883
|
+
|
|
884
|
+
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.
|
|
885
|
+
|
|
886
|
+
* [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.
|
|
887
|
+
* [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.
|
|
888
|
+
|
|
889
|
+
[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.
|
|
890
|
+
|
|
891
|
+
----------------------------------------
|
|
892
|
+
|
|
893
|
+
# Core Philosophy: Connect, Unify, Respond
|
|
894
|
+
|
|
895
|
+
MindsDB's architecture is built around three fundamental capabilities:
|
|
896
|
+
|
|
897
|
+
## [Connect](https://docs.mindsdb.com/integrations/data-overview) Your Data
|
|
898
|
+
|
|
899
|
+
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.
|
|
900
|
+
|
|
901
|
+
## [Unify](https://docs.mindsdb.com/mindsdb_sql/overview) Your Data
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
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.
|
|
905
|
+
|
|
906
|
+
* [**KNOWLEDGE BASES**](https://docs.mindsdb.com/mindsdb_sql/knowledge-bases) – Index and organize unstructured data for efficient Q&A.
|
|
907
|
+
* [**VIEWS**](https://docs.mindsdb.com/mindsdb_sql/sql/create/view) – Simplify data access by creating unified views across different sources (no-ETL).
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
Unification of data can be automated using JOBs
|
|
911
|
+
|
|
912
|
+
* [**JOBS**](https://docs.mindsdb.com/mindsdb_sql/sql/create/jobs) – Schedule synchronization and transformation tasks for real-time processing.
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
## [Respond](https://docs.mindsdb.com/mindsdb_sql/agents/agent) From Your Data
|
|
916
|
+
|
|
917
|
+
Chat with Your Data
|
|
918
|
+
|
|
919
|
+
* [**AGENTS**](https://docs.mindsdb.com/mindsdb_sql/agents/agent) – Configure built-in agents specialized in answering questions over your connected and unified data.
|
|
920
|
+
* [**MCP**](https://docs.mindsdb.com/mcp/overview) – Connect to MindsDB through the MCP (Model Context Protocol) for seamless interaction.
|
|
921
|
+
|
|
922
|
+
----------------------------------------
|
|
923
|
+
|
|
924
|
+
## 🤝 Contribute
|
|
925
|
+
|
|
926
|
+
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).
|
|
927
|
+
|
|
928
|
+
You can find our [contribution guide here](https://docs.mindsdb.com/contribute/contribute?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
|
|
929
|
+
|
|
930
|
+
We welcome suggestions! Feel free to open new issues with your ideas, and we’ll guide you.
|
|
931
|
+
|
|
932
|
+
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.
|
|
933
|
+
|
|
934
|
+
Also, check out our [community rewards and programs](https://mindsdb.com/community?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
|
|
935
|
+
|
|
936
|
+
## 🤍 Support
|
|
937
|
+
|
|
938
|
+
If you find a bug, please submit an [issue on GitHub](https://github.com/mindsdb/mindsdb/issues/new/choose).
|
|
939
|
+
|
|
940
|
+
Here’s how you can get community support:
|
|
941
|
+
|
|
942
|
+
* Ask a question in our [Slack Community](https://mindsdb.com/joincommunity?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
|
|
943
|
+
* Join our [GitHub Discussions](https://github.com/mindsdb/mindsdb/discussions).
|
|
944
|
+
* Post on [Stack Overflow](https://stackoverflow.com/questions/tagged/mindsdb) with the MindsDB tag.
|
|
945
|
+
|
|
946
|
+
For commercial support, please [contact the MindsDB team](https://mindsdb.com/contact?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
|
|
947
|
+
|
|
948
|
+
## 💚 Current Contributors
|
|
949
|
+
|
|
950
|
+
<a href="https://github.com/mindsdb/mindsdb/graphs/contributors">
|
|
951
|
+
<img src="https://contributors-img.web.app/image?repo=mindsdb/mindsdb" />
|
|
952
|
+
</a>
|
|
953
|
+
|
|
954
|
+
Generated with [contributors-img](https://contributors-img.web.app).
|
|
955
|
+
|
|
956
|
+
## 🔔 Subscribe for Updates
|
|
957
|
+
|
|
958
|
+
Join our [Slack community](https://mindsdb.com/joincommunity)
|