MindsDB 25.5.3.0__py3-none-any.whl → 25.5.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of MindsDB might be problematic. Click here for more details.
- mindsdb/__about__.py +1 -1
- mindsdb/__main__.py +127 -79
- mindsdb/api/a2a/__init__.py +0 -0
- mindsdb/api/a2a/__main__.py +114 -0
- mindsdb/api/a2a/a2a_client.py +439 -0
- mindsdb/api/a2a/agent.py +308 -0
- mindsdb/api/a2a/common/__init__.py +0 -0
- mindsdb/api/a2a/common/client/__init__.py +4 -0
- mindsdb/api/a2a/common/client/card_resolver.py +21 -0
- mindsdb/api/a2a/common/client/client.py +86 -0
- mindsdb/api/a2a/common/server/__init__.py +4 -0
- mindsdb/api/a2a/common/server/server.py +164 -0
- mindsdb/api/a2a/common/server/task_manager.py +287 -0
- mindsdb/api/a2a/common/server/utils.py +28 -0
- mindsdb/api/a2a/common/types.py +365 -0
- mindsdb/api/a2a/constants.py +9 -0
- mindsdb/api/a2a/run_a2a.py +129 -0
- mindsdb/api/a2a/task_manager.py +594 -0
- mindsdb/api/executor/command_executor.py +47 -27
- mindsdb/api/executor/datahub/classes/response.py +5 -2
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +39 -72
- mindsdb/api/executor/planner/query_planner.py +10 -1
- mindsdb/api/executor/sql_query/result_set.py +185 -52
- mindsdb/api/executor/sql_query/sql_query.py +1 -1
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +9 -12
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +8 -10
- mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py +5 -44
- mindsdb/api/executor/sql_query/steps/insert_step.py +24 -15
- mindsdb/api/executor/sql_query/steps/join_step.py +1 -1
- mindsdb/api/executor/sql_query/steps/project_step.py +1 -1
- mindsdb/api/executor/sql_query/steps/sql_steps.py +1 -1
- mindsdb/api/executor/sql_query/steps/subselect_step.py +4 -8
- mindsdb/api/executor/sql_query/steps/union_step.py +1 -3
- mindsdb/api/http/initialize.py +99 -83
- mindsdb/api/http/namespaces/analysis.py +3 -3
- mindsdb/api/http/namespaces/file.py +8 -2
- mindsdb/api/http/namespaces/sql.py +13 -27
- mindsdb/api/mcp/start.py +42 -5
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +0 -1
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +52 -19
- mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +8 -10
- mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +54 -38
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +82 -115
- mindsdb/api/mysql/mysql_proxy/utilities/dump.py +351 -0
- mindsdb/api/postgres/postgres_proxy/executor/executor.py +1 -1
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +5 -6
- mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +26 -27
- mindsdb/integrations/handlers/altibase_handler/connection_args.py +13 -13
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +8 -8
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +13 -13
- mindsdb/integrations/handlers/anthropic_handler/__init__.py +2 -2
- mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +1 -3
- mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +1 -0
- mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +1 -1
- mindsdb/integrations/handlers/autosklearn_handler/config.py +0 -1
- mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +1 -1
- mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +1 -1
- mindsdb/integrations/handlers/binance_handler/binance_handler.py +1 -0
- mindsdb/integrations/handlers/binance_handler/binance_tables.py +3 -4
- mindsdb/integrations/handlers/byom_handler/__init__.py +0 -1
- mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +3 -0
- mindsdb/integrations/handlers/clickhouse_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +0 -2
- mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +0 -1
- mindsdb/integrations/handlers/cohere_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +11 -13
- mindsdb/integrations/handlers/confluence_handler/confluence_tables.py +6 -0
- mindsdb/integrations/handlers/databend_handler/connection_args.py +1 -1
- mindsdb/integrations/handlers/databend_handler/databend_handler.py +4 -4
- mindsdb/integrations/handlers/databend_handler/tests/__init__.py +0 -1
- mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +1 -1
- mindsdb/integrations/handlers/derby_handler/connection_args.py +1 -1
- mindsdb/integrations/handlers/derby_handler/derby_handler.py +14 -22
- mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +6 -6
- mindsdb/integrations/handlers/discord_handler/discord_handler.py +5 -5
- mindsdb/integrations/handlers/discord_handler/discord_tables.py +3 -3
- mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +5 -3
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +3 -3
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +2 -2
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +57 -54
- mindsdb/integrations/handlers/dremio_handler/__init__.py +2 -2
- mindsdb/integrations/handlers/druid_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/druid_handler/druid_handler.py +2 -2
- mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +9 -9
- mindsdb/integrations/handlers/email_handler/email_client.py +1 -1
- mindsdb/integrations/handlers/email_handler/email_ingestor.py +1 -1
- mindsdb/integrations/handlers/email_handler/email_tables.py +0 -1
- mindsdb/integrations/handlers/email_handler/settings.py +0 -1
- mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +2 -1
- mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +1 -1
- mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +9 -9
- mindsdb/integrations/handlers/frappe_handler/frappe_client.py +5 -5
- mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +6 -5
- mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +2 -2
- mindsdb/integrations/handlers/github_handler/connection_args.py +2 -2
- mindsdb/integrations/handlers/github_handler/github_handler.py +1 -8
- mindsdb/integrations/handlers/github_handler/github_tables.py +13 -24
- mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +2 -1
- mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +1 -4
- mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +6 -13
- mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +2 -1
- mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +0 -3
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +4 -4
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +2 -6
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +3 -2
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +0 -3
- mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +10 -12
- mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +11 -13
- mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +2 -1
- mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +0 -3
- mindsdb/integrations/handlers/groq_handler/__init__.py +3 -3
- mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +5 -7
- mindsdb/integrations/handlers/hackernews_handler/hn_table.py +6 -7
- mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +1 -1
- mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +6 -6
- mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +4 -3
- mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +1 -1
- mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +1 -8
- mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +6 -6
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +1 -1
- mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +2 -1
- mindsdb/integrations/handlers/impala_handler/impala_handler.py +9 -12
- mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +11 -11
- mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +10 -13
- mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +20 -20
- mindsdb/integrations/handlers/informix_handler/__about__.py +8 -8
- mindsdb/integrations/handlers/informix_handler/__init__.py +12 -5
- mindsdb/integrations/handlers/informix_handler/informix_handler.py +99 -133
- mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +13 -11
- mindsdb/integrations/handlers/ingres_handler/__about__.py +0 -1
- mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +1 -0
- mindsdb/integrations/handlers/jira_handler/jira_handler.py +4 -4
- mindsdb/integrations/handlers/jira_handler/jira_tables.py +9 -9
- mindsdb/integrations/handlers/kinetica_handler/__init__.py +0 -1
- mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +4 -4
- mindsdb/integrations/handlers/langchain_handler/tools.py +9 -10
- mindsdb/integrations/handlers/leonardoai_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/lightwood_handler/functions.py +2 -2
- mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +0 -1
- mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +11 -11
- mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +4 -4
- mindsdb/integrations/handlers/llama_index_handler/settings.py +10 -9
- mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +8 -10
- mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +4 -4
- mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +8 -9
- mindsdb/integrations/handlers/maxdb_handler/connection_args.py +25 -25
- mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +1 -0
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +3 -2
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +1 -1
- mindsdb/integrations/handlers/mendeley_handler/__about__.py +1 -1
- mindsdb/integrations/handlers/mendeley_handler/__init__.py +2 -2
- mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +48 -56
- mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +24 -29
- mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +19 -17
- mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +5 -4
- mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +3 -3
- mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +58 -36
- mindsdb/integrations/handlers/monetdb_handler/__about__.py +8 -8
- mindsdb/integrations/handlers/monetdb_handler/__init__.py +15 -5
- mindsdb/integrations/handlers/monetdb_handler/connection_args.py +17 -18
- mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +40 -57
- mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +7 -8
- mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +13 -14
- mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +1 -1
- mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +2 -5
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +1 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +1 -1
- mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py +23 -23
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +3 -3
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +10 -5
- mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +73 -8
- mindsdb/integrations/handlers/mysql_handler/__about__.py +8 -8
- mindsdb/integrations/handlers/mysql_handler/__init__.py +15 -5
- mindsdb/integrations/handlers/mysql_handler/connection_args.py +43 -47
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +101 -34
- mindsdb/integrations/handlers/mysql_handler/settings.py +15 -13
- mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +1 -1
- mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +1 -1
- mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +4 -4
- mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +2 -2
- mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +28 -36
- mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +5 -5
- mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +0 -1
- mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +8 -10
- mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +3 -3
- mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +1 -2
- mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +7 -7
- mindsdb/integrations/handlers/oracle_handler/connection_args.py +6 -0
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +77 -11
- mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +8 -10
- mindsdb/integrations/handlers/palm_handler/__about__.py +1 -1
- mindsdb/integrations/handlers/palm_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/palm_handler/palm_handler.py +1 -3
- mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +2 -2
- mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +15 -14
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +53 -10
- mindsdb/integrations/handlers/phoenix_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +1 -0
- mindsdb/integrations/handlers/pinot_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +3 -2
- mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +13 -13
- mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +10 -12
- mindsdb/integrations/handlers/plaid_handler/utils.py +4 -6
- mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +1 -4
- mindsdb/integrations/handlers/portkey_handler/__init__.py +2 -2
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +105 -24
- mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +11 -6
- mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +1 -2
- mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +2 -3
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +6 -8
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +10 -10
- mindsdb/integrations/handlers/rag_handler/ingest.py +2 -2
- mindsdb/integrations/handlers/rag_handler/rag_handler.py +1 -1
- mindsdb/integrations/handlers/rag_handler/settings.py +1 -1
- mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +2 -7
- mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +2 -3
- mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +6 -6
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +1 -2
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +0 -3
- mindsdb/integrations/handlers/rockset_handler/connection_args.py +14 -14
- mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +1 -0
- mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +6 -5
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +2 -1
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +16 -16
- mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/sheets_handler/connection_args.py +1 -1
- mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +7 -6
- mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +38 -41
- mindsdb/integrations/handlers/singlestore_handler/__about__.py +1 -1
- mindsdb/integrations/handlers/singlestore_handler/__init__.py +0 -1
- mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +1 -0
- mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +3 -3
- mindsdb/integrations/handlers/slack_handler/__init__.py +3 -3
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +100 -6
- mindsdb/integrations/handlers/solr_handler/connection_args.py +7 -7
- mindsdb/integrations/handlers/solr_handler/solr_handler.py +2 -1
- mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +2 -1
- mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +3 -2
- mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +1 -0
- mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +1 -1
- mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +15 -20
- mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +4 -4
- mindsdb/integrations/handlers/stabilityai_handler/__init__.py +1 -1
- mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +0 -1
- mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +8 -10
- mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +2 -2
- mindsdb/integrations/handlers/strava_handler/strava_handler.py +4 -8
- mindsdb/integrations/handlers/strava_handler/strava_tables.py +22 -30
- mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +3 -2
- mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +11 -27
- mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +1 -1
- mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +4 -4
- mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +25 -27
- mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +8 -8
- mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +1 -2
- mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +5 -5
- mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +21 -26
- mindsdb/integrations/handlers/trino_handler/trino_handler.py +14 -14
- mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +2 -4
- mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +7 -8
- mindsdb/integrations/handlers/unify_handler/unify_handler.py +9 -9
- mindsdb/integrations/handlers/vertex_handler/vertex_client.py +1 -1
- mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +11 -11
- mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +11 -14
- mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +9 -11
- mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +0 -1
- mindsdb/integrations/handlers/web_handler/web_handler.py +1 -0
- mindsdb/integrations/handlers/whatsapp_handler/__init__.py +3 -3
- mindsdb/integrations/handlers/writer_handler/evaluate.py +1 -1
- mindsdb/integrations/handlers/writer_handler/settings.py +0 -1
- mindsdb/integrations/handlers/writer_handler/writer_handler.py +1 -0
- mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +5 -5
- mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +26 -27
- mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +3 -3
- mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +0 -6
- mindsdb/integrations/libs/response.py +67 -52
- mindsdb/integrations/libs/vectordatabase_handler.py +6 -0
- mindsdb/integrations/utilities/handler_utils.py +15 -3
- mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +0 -1
- mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +0 -2
- mindsdb/integrations/utilities/utils.py +3 -3
- mindsdb/interfaces/agents/agents_controller.py +164 -1
- mindsdb/interfaces/agents/constants.py +15 -0
- mindsdb/interfaces/agents/langchain_agent.py +16 -4
- mindsdb/interfaces/agents/mindsdb_database_agent.py +101 -2
- mindsdb/interfaces/knowledge_base/controller.py +25 -0
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +13 -10
- mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py +434 -0
- mindsdb/interfaces/knowledge_base/preprocessing/models.py +54 -0
- mindsdb/interfaces/query_context/context_controller.py +66 -10
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +190 -0
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +92 -0
- mindsdb/interfaces/skills/skill_tool.py +202 -57
- mindsdb/interfaces/skills/sql_agent.py +205 -17
- mindsdb/interfaces/storage/fs.py +1 -0
- mindsdb/interfaces/variables/__init__.py +0 -0
- mindsdb/interfaces/variables/variables_controller.py +97 -0
- mindsdb/migrations/env.py +5 -7
- mindsdb/migrations/migrate.py +47 -7
- mindsdb/migrations/versions/2025-05-21_9f150e4f9a05_checkpoint_1.py +360 -0
- mindsdb/utilities/config.py +331 -219
- mindsdb/utilities/starters.py +13 -0
- {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/METADATA +641 -695
- {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/RECORD +309 -288
- {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/WHEEL +1 -1
- mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +0 -1
- {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/licenses/LICENSE +0 -0
- {mindsdb-25.5.3.0.dist-info → mindsdb-25.5.4.0.dist-info}/top_level.txt +0 -0
|
@@ -1,11 +1,27 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=qdyLrPJthOack70IzRcKOJ9is1w28JD60cFxanFX8sQ,456
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
|
-
mindsdb/__main__.py,sha256=
|
|
3
|
+
mindsdb/__main__.py,sha256=bkLqiYLsx1KyCyi6tJjyMBkpMvO3g37wOC0PymMbiHU,24037
|
|
4
4
|
mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
mindsdb/api/a2a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
mindsdb/api/a2a/__main__.py,sha256=x8-7l-S3j6DpxQUrg6Y9yOGG2vC77DqYNi2gPNy25EE,3592
|
|
7
|
+
mindsdb/api/a2a/a2a_client.py,sha256=Lyw7CFj031pZNK_wvY4MAR1ptZoDRaitbCi0jmN4wQA,13634
|
|
8
|
+
mindsdb/api/a2a/agent.py,sha256=DN3VCsdFuoFBXyQDeH4C9pNGnHSEM-KnHSCjL-HY4ls,13007
|
|
9
|
+
mindsdb/api/a2a/constants.py,sha256=1BmvDneWzNG6YJFUc-gZ9CNCO4wq2_12vFe6aw23yX4,2292
|
|
10
|
+
mindsdb/api/a2a/run_a2a.py,sha256=7uvTtc6Te4qBiF9I0_48dVBZmY4YmKrMT0jbBwnGGhE,4347
|
|
11
|
+
mindsdb/api/a2a/task_manager.py,sha256=7zYsAizpZlE4WlsEotpRSos742dZbzpVyeKvuTaUXLs,24620
|
|
12
|
+
mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
mindsdb/api/a2a/common/types.py,sha256=EYBpqEj-nZapSKe2jI8BcNDfSlTXXTbw8RcSA1DII9Q,8787
|
|
14
|
+
mindsdb/api/a2a/common/client/__init__.py,sha256=V8lbSEpOWNM2XjG5ky7NIUM0Q2HZTexzL3I8WqZfo-w,117
|
|
15
|
+
mindsdb/api/a2a/common/client/card_resolver.py,sha256=yCDxwNAgAz-6lDWGr8uhj8V0DGs9kSiybPsmhK3vh8Y,671
|
|
16
|
+
mindsdb/api/a2a/common/client/client.py,sha256=VLZaBTf1vhbLq_4Wr5Z4o1PMMW2NsCdTTVQDlGJklA8,3346
|
|
17
|
+
mindsdb/api/a2a/common/server/__init__.py,sha256=Bl7Qa3Pk4QWY4yDPRNyHeTzNJpAe9HgUJd8-oTnMPv8,152
|
|
18
|
+
mindsdb/api/a2a/common/server/server.py,sha256=ymnM0HblF9iH1Htay-LfFu-_CQjXieN_ZEgyHYkHPfk,6352
|
|
19
|
+
mindsdb/api/a2a/common/server/task_manager.py,sha256=NnKO2ZcI-KBWiX4wNc8FbLmnVsb5KeIm62B4jdX73IU,10189
|
|
20
|
+
mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
|
|
5
21
|
mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
22
|
mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
|
|
7
23
|
mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
8
|
-
mindsdb/api/executor/command_executor.py,sha256=
|
|
24
|
+
mindsdb/api/executor/command_executor.py,sha256=uaKdegKhR4cswXE0uN3zuIFlJD8MnohRQ1HSGfFIwag,80825
|
|
9
25
|
mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
|
|
10
26
|
mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
|
|
11
27
|
mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
|
|
@@ -14,12 +30,12 @@ mindsdb/api/executor/data_types/answer.py,sha256=bvCpI-Tji2kgTzyzFaw-EgstMdssZvF
|
|
|
14
30
|
mindsdb/api/executor/data_types/response_type.py,sha256=u9cqvtoAE_ozNJr2YsBLYW0BMGUdaqp8IWn6ZLxO2NA,209
|
|
15
31
|
mindsdb/api/executor/datahub/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
16
32
|
mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
mindsdb/api/executor/datahub/classes/response.py,sha256=
|
|
33
|
+
mindsdb/api/executor/datahub/classes/response.py,sha256=1JLErGOSwcgYeSlCOBaEDjkXUPtpmjq4SXtVijLkeUs,419
|
|
18
34
|
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
|
|
19
35
|
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
20
36
|
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qfgrebm2pwJYOy3zgZi4mQI,594
|
|
21
37
|
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=q6Mu80zwL7yoA1HstiVHm7jQMrspQQdVnjiPSW8KTek,8472
|
|
22
|
-
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=
|
|
38
|
+
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=avxO_6IkIcdDSBrqIXFly2fjGz7g-7XTuqySH3KOXHI,10610
|
|
23
39
|
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=inOQtLa-nP0sbyDtwvFGuxZsvWClQDhhNrA-bjFmWP4,14120
|
|
24
40
|
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=j2dJHT09FJOq76ORSkgGMtZxtE8kSB4VY6UrRce-KBc,8080
|
|
25
41
|
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=_lIL6h8rTXYBzpLQBi_-IjR2BmCoNERafhdI4AYGoFY,16750
|
|
@@ -28,30 +44,30 @@ mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-
|
|
|
28
44
|
mindsdb/api/executor/planner/plan_join.py,sha256=QuwrM2Ck8jQmHMzo3eU768v1QqNtaLCZQ4cKfj2IkwA,22549
|
|
29
45
|
mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
|
|
30
46
|
mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
|
|
31
|
-
mindsdb/api/executor/planner/query_planner.py,sha256=
|
|
47
|
+
mindsdb/api/executor/planner/query_planner.py,sha256=9rmsoA_IcXIn-AEOFHKkFC5IOKvnpQpLMIlpTdMKtHk,35152
|
|
32
48
|
mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
|
|
33
49
|
mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
|
|
34
50
|
mindsdb/api/executor/planner/steps.py,sha256=8BV3dGf5Yi3jbq_2XPapr5nPyL0KqgPFtWxqX95Mcyw,9352
|
|
35
51
|
mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
|
|
36
52
|
mindsdb/api/executor/planner/utils.py,sha256=pCec75lLc5V84LYMheprYxT7RGeJPKiNZrqA_bYmco0,3838
|
|
37
53
|
mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5V25G_SdsNIYZI,32
|
|
38
|
-
mindsdb/api/executor/sql_query/result_set.py,sha256=
|
|
39
|
-
mindsdb/api/executor/sql_query/sql_query.py,sha256=
|
|
54
|
+
mindsdb/api/executor/sql_query/result_set.py,sha256=HDbs17lL0DeZUIKsulmj_ki86BQSzKLbq8cxx2r_zEg,15063
|
|
55
|
+
mindsdb/api/executor/sql_query/sql_query.py,sha256=G6_Et49fgECMC8BGHj8Ig2WnbpIz8wHePIRXUobsme0,11339
|
|
40
56
|
mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0UxS35mfpeYSL4D_fzqo,795
|
|
41
|
-
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=
|
|
57
|
+
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=NU_Okjioql0iZW1wfYv_IIftOVEjQpW0SOrg1lFJops,17229
|
|
42
58
|
mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
|
|
43
59
|
mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
|
|
44
|
-
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256
|
|
45
|
-
mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=
|
|
46
|
-
mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=
|
|
47
|
-
mindsdb/api/executor/sql_query/steps/join_step.py,sha256=
|
|
60
|
+
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=YgVkXit8mKDb7FS0EIoyxClpnIOF68MhePY2ick19qY,4052
|
|
61
|
+
mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=wGyns_c1RdbnVvOfidb3pgu6vvTaTvYtjePOWXfG-f0,7134
|
|
62
|
+
mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=VrzAbUmlwq8X9kstMChbmYx1SiiBpkn-EvCcrq1ioDM,4395
|
|
63
|
+
mindsdb/api/executor/sql_query/steps/join_step.py,sha256=govBGAmZEgFQ4I-QmxNY7nRN81_GF4HAuP-wOTDSrBk,4265
|
|
48
64
|
mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
|
|
49
65
|
mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSjjHmPpNLMVPX4adAU-PoHJBuY,656
|
|
50
66
|
mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=URXDoE6vuc5mJ-vBkM5RXRYCS92NXs8_Jrlykh9mk6c,1588
|
|
51
|
-
mindsdb/api/executor/sql_query/steps/project_step.py,sha256=
|
|
52
|
-
mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=
|
|
53
|
-
mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=
|
|
54
|
-
mindsdb/api/executor/sql_query/steps/union_step.py,sha256=
|
|
67
|
+
mindsdb/api/executor/sql_query/steps/project_step.py,sha256=2Hy-b9a3-bJcUHQNhILWSNs17k0JTLrG1aGwTbtJDAM,2868
|
|
68
|
+
mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=01aDbFrqatM-iX70gU3-ODPBP9F-v0mWZ9BedddBOa8,889
|
|
69
|
+
mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=XCMMFvNOinspR9HQr_iviOKOtiP_5RvzAxFG_8xan7I,8072
|
|
70
|
+
mindsdb/api/executor/sql_query/steps/union_step.py,sha256=p9OABRTbcIkDx62kK8zLfhYpmNXt8opSrBdj56Xy3b4,1774
|
|
55
71
|
mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS5t8SfSo-14ttOd1r0_T8NA,4643
|
|
56
72
|
mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
73
|
mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
|
|
@@ -59,25 +75,25 @@ mindsdb/api/executor/utilities/sql.py,sha256=vULbEMKN3ZB5RULqC_VPRhuROQ0_CotHYqA
|
|
|
59
75
|
mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
76
|
mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
|
|
61
77
|
mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
|
|
62
|
-
mindsdb/api/http/initialize.py,sha256=
|
|
78
|
+
mindsdb/api/http/initialize.py,sha256=eZvMgyqYQRbbuykjwVmxxX3LFz6mkFZ2HE8zMQepKEM,16813
|
|
63
79
|
mindsdb/api/http/start.py,sha256=tD_ImE2kbGAJk3wFX6s5ezCavd2LRJ2qU9U2tOVSQLo,2389
|
|
64
80
|
mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
|
|
65
81
|
mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
82
|
mindsdb/api/http/namespaces/agents.py,sha256=H3C4MmNCsrk3Dv8Cw1kx0j7EvNOia5PfyfQYuElgczE,18984
|
|
67
|
-
mindsdb/api/http/namespaces/analysis.py,sha256=
|
|
83
|
+
mindsdb/api/http/namespaces/analysis.py,sha256=maYxI-TP9RswWHgKX3KAZQJK_XSBQfpZMqv0ZH1ZC0k,4295
|
|
68
84
|
mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
|
|
69
85
|
mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
|
|
70
86
|
mindsdb/api/http/namespaces/config.py,sha256=tC7MItEt_hjpG1O8-y85sEqPtwX_iPj7mNdTQ6zSg-0,8785
|
|
71
87
|
mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
|
|
72
88
|
mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
|
|
73
|
-
mindsdb/api/http/namespaces/file.py,sha256=
|
|
89
|
+
mindsdb/api/http/namespaces/file.py,sha256=ONMsQDDC2Ug-O38cbPKSL8UpQ78soQKsPHOfzUj-Bfo,6933
|
|
74
90
|
mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
|
|
75
91
|
mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
|
|
76
92
|
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=ZwzSXn_6DNn3awCnMlvCbZfCOTPM3VcsQNotMM05v3U,16653
|
|
77
93
|
mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
|
|
78
94
|
mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
|
|
79
95
|
mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
|
|
80
|
-
mindsdb/api/http/namespaces/sql.py,sha256=
|
|
96
|
+
mindsdb/api/http/namespaces/sql.py,sha256=JjrXxcJr00QpaxYWzvghBLhb78kIkTZg2-OOSbJHz3U,5586
|
|
81
97
|
mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
|
|
82
98
|
mindsdb/api/http/namespaces/tree.py,sha256=_lWGp4wrX19GnqVD36U-ZmZiHfMIwlSAf9fIUYc9LYg,3812
|
|
83
99
|
mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
|
|
@@ -105,7 +121,7 @@ mindsdb/api/http/namespaces/configs/webhooks.py,sha256=WTZAN2r6GdR8LbhAyh9osFGaF
|
|
|
105
121
|
mindsdb/api/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
122
|
mindsdb/api/litellm/start.py,sha256=U6gBzQrHNmbPCjCnizPz59jnM0GdYmMx84XTIVzCiww,2761
|
|
107
123
|
mindsdb/api/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
|
-
mindsdb/api/mcp/start.py,sha256=
|
|
124
|
+
mindsdb/api/mcp/start.py,sha256=Gp_DGpigwvC680FUUoL4U0QF3u6_oCYHKNW53vgp7Kw,5251
|
|
109
125
|
mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
126
|
mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
|
|
111
127
|
mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
|
|
@@ -154,7 +170,7 @@ mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaD
|
|
|
154
170
|
mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
171
|
mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
|
|
156
172
|
mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
-
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=
|
|
173
|
+
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=4fwVZFMKhI-qAHRlsFmeHnmB6JmcoJ0065D-x5q9xwA,34524
|
|
158
174
|
mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
175
|
mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
|
|
160
176
|
mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
|
|
@@ -162,9 +178,9 @@ mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py,sha256=TxhoWB
|
|
|
162
178
|
mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=uUOaAJfmSIcZYLT4dppnbRun7Uawd5x_09bJfIN2EUs,1003
|
|
163
179
|
mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
180
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py,sha256=a8Gi2hcTPYSTtqscMcEW2R-1Qu_YmMcP1CN9DOfavo0,6246
|
|
165
|
-
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py,sha256=
|
|
181
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py,sha256=Z6aQ9VMh3Ta2m4qs5hU5-LaiBHhan91NstUQlChMUnI,4891
|
|
166
182
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py,sha256=OusdXUJI3gD62ewP4z3UH_VHrbfX7u2eSwDdL7Z0Ois,1550
|
|
167
|
-
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py,sha256=
|
|
183
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py,sha256=bJMlydvCpcwFMq7zLBfURBDs3pfWDXSFAwvtCeJQmhM,6058
|
|
168
184
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py,sha256=uG8HKkYSbFRadDOu18OVDhV7wgGy-dXwTYFXxgwRqDg,1097
|
|
169
185
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py,sha256=V6eXSr2NuRjyTjF25D5o9jG0_0R1Ry1nGJ6W2-NCMww,2982
|
|
170
186
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py,sha256=I5kuON2Jh7V8k7o5xxeO7IUII6-DsGrYrrmkgiMMBBE,5765
|
|
@@ -180,21 +196,22 @@ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py,sh
|
|
|
180
196
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py,sha256=ykZJyhvw8iDq8CwVHW0RW5SWbTbfqyX1aD9dOo5Y9MA,1494
|
|
181
197
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py,sha256=cm2f1fjPy0nfKWCPARMvq92smMij_X4WTjOdxRlMXOM,521
|
|
182
198
|
mindsdb/api/mysql/mysql_proxy/executor/__init__.py,sha256=U4cWmxMMtOYdK4a3OvSyy-VzICWiURroIAKMKMoRcnM,38
|
|
183
|
-
mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=
|
|
199
|
+
mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=Bm8Gu77u7HPcLM8oyUsiGdmnoD7Xz1ksB5QFiSbl5iY,3502
|
|
184
200
|
mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
201
|
mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py,sha256=k5ZmduhQW2E3Mf_jns-dyVLsRxXUAJE1b3Qbr1FkHKo,4116
|
|
186
202
|
mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
187
203
|
mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
188
|
-
mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=
|
|
204
|
+
mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=28982dbx0OrjRfT7LCv_zwIympVuBLUkqq3zvX_C7Gk,43712
|
|
189
205
|
mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
|
|
206
|
+
mindsdb/api/mysql/mysql_proxy/utilities/dump.py,sha256=T8mSSBo-jaYrUMjAgVPkJtGwkEpS3U6nCbFUI87ySf4,13060
|
|
190
207
|
mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
|
|
191
208
|
mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
|
|
192
209
|
mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
193
210
|
mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
|
|
194
211
|
mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
-
mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=
|
|
212
|
+
mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=D5B-lpuAggWkq9Aw81ngJGMl7rzMmoT04bw2CIXecv8,19323
|
|
196
213
|
mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
|
|
197
|
-
mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=
|
|
214
|
+
mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=hm0opUcUNadTIyJl50sZADUU8S-u30hev7r4jXoMq4Q,6441
|
|
198
215
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
216
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
|
|
200
217
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
|
|
@@ -230,13 +247,13 @@ mindsdb/integrations/handlers/airtable_handler/tests/__init__.py,sha256=47DEQpj8
|
|
|
230
247
|
mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py,sha256=qeo4RXcD1tUekJBWy80FCzGkcZnUMujaAlpjpzug_dY,1072
|
|
231
248
|
mindsdb/integrations/handlers/altibase_handler/__about__.py,sha256=ZY1RPt9CD2wMP8RGsKLZs8NbEl9Yy53kPc1RzMmvMYY,342
|
|
232
249
|
mindsdb/integrations/handlers/altibase_handler/__init__.py,sha256=rK6V3BzcoGDJjd35j9KDF61YYex00gztc2aD7HlzM0g,604
|
|
233
|
-
mindsdb/integrations/handlers/altibase_handler/altibase_handler.py,sha256=
|
|
234
|
-
mindsdb/integrations/handlers/altibase_handler/connection_args.py,sha256=
|
|
250
|
+
mindsdb/integrations/handlers/altibase_handler/altibase_handler.py,sha256=1NQ0CCBroVScb9khA7F2GlmLemqJpbEb2yN1zzVDpD4,8397
|
|
251
|
+
mindsdb/integrations/handlers/altibase_handler/connection_args.py,sha256=3EZg38ZbypI5QLZpPNr1kIAhwW5Cf0mpRtepmPbdN2M,1605
|
|
235
252
|
mindsdb/integrations/handlers/altibase_handler/icon.svg,sha256=J257YKU1qoLHhxcrgHRI87TsbsUCgdnM-GBc2UEa318,182
|
|
236
253
|
mindsdb/integrations/handlers/altibase_handler/requirements.txt,sha256=twiDQB9BlXYcOCWeh7dfpnk6_mGveQJ9vAiOpCMWLpU,18
|
|
237
254
|
mindsdb/integrations/handlers/altibase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
238
|
-
mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py,sha256=
|
|
239
|
-
mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py,sha256=
|
|
255
|
+
mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py,sha256=Owxru0esZ4WQB0fQu_FkYNUzSlBJWV9V09YsbMAshqs,1998
|
|
256
|
+
mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py,sha256=8oy-9J8Om1m0dAuSoA7kjP4rN5aSRbDjLoJ4sa-OfwI,2032
|
|
240
257
|
mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py,sha256=IBOgrwQqNcJL_VvH1XsVRAUSveSxBBH5ua4ahQa_plo,377
|
|
241
258
|
mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py,sha256=UYxqRaBOgLmT8uZOu4iVQbW821ZdsrPrYeBaMBu-9nY,518
|
|
242
259
|
mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py,sha256=1WC6r2vUVCuRWzXIvaUVZMLKPr3m5g7OlfbsCJKXE74,7556
|
|
@@ -244,8 +261,8 @@ mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg,sha256=q8G2Qws-
|
|
|
244
261
|
mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt,sha256=JP68nJ1w5HbQlikWyYDNhFb8fpC66xbOkBv7_C-3lbE,39
|
|
245
262
|
mindsdb/integrations/handlers/anomaly_detection_handler/utils.py,sha256=X6mKCvRvIsRWhefL6KxJBRKbsYEJKMPGnZ7N28717JI,649
|
|
246
263
|
mindsdb/integrations/handlers/anthropic_handler/__about__.py,sha256=BOpGrNVVqgxZkoDI7YdR8TAulmniOiheh3NlVVD1OEM,354
|
|
247
|
-
mindsdb/integrations/handlers/anthropic_handler/__init__.py,sha256=
|
|
248
|
-
mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py,sha256=
|
|
264
|
+
mindsdb/integrations/handlers/anthropic_handler/__init__.py,sha256=GvT2mykrK0gM1WoTopESOkxMhx129Jih1BOzTulEIfA,589
|
|
265
|
+
mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py,sha256=_gQD15IETTdssVSIwAqc7BeH9qcCAiXg37pxyaLU1p8,3319
|
|
249
266
|
mindsdb/integrations/handlers/anthropic_handler/icon.svg,sha256=YqBanC9E0WpQAEC9e8LgOF1vu5S5r58iHox3rBk6fxY,328
|
|
250
267
|
mindsdb/integrations/handlers/anthropic_handler/requirements.txt,sha256=Q1rkpICQCgBQcAmOyBWXu0r3h7-OvO7-nYVbNjjUtE0,18
|
|
251
268
|
mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py,sha256=jFauECyixaq2FZz0bUE1RcO6-dyCn70YjM_TOFp4bYA,372
|
|
@@ -279,7 +296,7 @@ mindsdb/integrations/handlers/athena_handler/tests/__init__.py,sha256=47DEQpj8HB
|
|
|
279
296
|
mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py,sha256=0K7WV2fEX5DF6PSVVWOkqhZT7j_E9RvU36Yq92n8BLA,2362
|
|
280
297
|
mindsdb/integrations/handlers/aurora_handler/__about__.py,sha256=c03paiA025o6lc11MIXcPMdmWFGW5mSCz6rHAbGayo8,365
|
|
281
298
|
mindsdb/integrations/handlers/aurora_handler/__init__.py,sha256=wxUTZ0jcSk4363zRWZrUxdneaxLmpClLrBm3lVn3_6k,603
|
|
282
|
-
mindsdb/integrations/handlers/aurora_handler/aurora_handler.py,sha256=
|
|
299
|
+
mindsdb/integrations/handlers/aurora_handler/aurora_handler.py,sha256=_Seh9hyrSdJzD4EY4vpglk_vS4TNGm24Fu_cHne_-Ps,4470
|
|
283
300
|
mindsdb/integrations/handlers/aurora_handler/connection_args.py,sha256=Stt-pEG6p3wwJ85Qd9EqMI8o_9kUo-XqDMb3jIP_Eok,1932
|
|
284
301
|
mindsdb/integrations/handlers/aurora_handler/icon.svg,sha256=R4hw2PSmlsmPyQ2460GBGichg7rhwvIWCQmt2kN8-zk,690
|
|
285
302
|
mindsdb/integrations/handlers/aurora_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
@@ -299,8 +316,8 @@ mindsdb/integrations/handlers/autokeras_handler/icon.svg,sha256=EBz7nZ-VyXT7Ps3e
|
|
|
299
316
|
mindsdb/integrations/handlers/autokeras_handler/requirements.txt,sha256=Tt8vuUUNRP6fvafQQ7E80xO-kcZnzGWn6Zdasxb2swQ,21
|
|
300
317
|
mindsdb/integrations/handlers/autosklearn_handler/__about__.py,sha256=5MLlCXNdhytRAHGaROfNZ6ZIS9u8bKFoYtSeDG1jvEI,359
|
|
301
318
|
mindsdb/integrations/handlers/autosklearn_handler/__init__.py,sha256=KSndjfPj1fG_m1lFEEC_W4CR0PEphrtj-x4r-Fg-Stw,562
|
|
302
|
-
mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=
|
|
303
|
-
mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=
|
|
319
|
+
mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=DLK9fcRA4mvXhtvrl_pPIyy5QPEz16ymCFWbYBiwDNA,1678
|
|
320
|
+
mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=y86RzJ16PSoM8cPFaMLz6siS3336ASiX1hIhDal9N-g,676
|
|
304
321
|
mindsdb/integrations/handlers/autosklearn_handler/icon.png,sha256=kbcEAnyOFO2mj20-godaONlkzrtK-3Oj-yhQ-kX1O78,15729
|
|
305
322
|
mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=M80gYwMHVvAlFBJKtarluQacFmr6etbrUQgKjoX_hNM,32
|
|
306
323
|
mindsdb/integrations/handlers/azure_blob_handler/__about__.py,sha256=qDGv39-0a0ze7k1E3MzW2O_5IMJmXOxzITb1MB8Vslg,365
|
|
@@ -318,16 +335,16 @@ mindsdb/integrations/handlers/bedrock_handler/settings.py,sha256=cG_SWH0PfQ6o-ev
|
|
|
318
335
|
mindsdb/integrations/handlers/bedrock_handler/utilities.py,sha256=hx8mzWLApZIV-mgp_CJM8qj-X51gX9-hcTXdGxE5fSs,1184
|
|
319
336
|
mindsdb/integrations/handlers/bigquery_handler/__about__.py,sha256=hRxU4C7TM6ssU3oxS89oDVFfx-p_Wjj_jNh_Y6vq544,349
|
|
320
337
|
mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNicKAh4FLIX2TX_v6ac2r6djxr_5d9WI,612
|
|
321
|
-
mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=
|
|
338
|
+
mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=ZxFfZIUwnM7hJcZRTjyPY5_q2tonmVOuj_It8lxIOKY,6903
|
|
322
339
|
mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
|
|
323
340
|
mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
|
|
324
341
|
mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=l8BgEzlWWL_88GeLfV3Dp40Am3DUNuDlVkgnH9jJccM,131
|
|
325
342
|
mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
|
-
mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py,sha256=
|
|
343
|
+
mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py,sha256=SUc6oCCMKrxHAx60ID_-9hu4Lp2_aBrYIXkYfGl9V3c,7496
|
|
327
344
|
mindsdb/integrations/handlers/binance_handler/__about__.py,sha256=sRDhFENBpGgEy14erGnc-_KecQcR6O7yAGSUIY_ZWfQ,348
|
|
328
345
|
mindsdb/integrations/handlers/binance_handler/__init__.py,sha256=Bpc_CzIOl54rF2k4VXWOsTi5vp5NcdWnDVKbnD79nJI,484
|
|
329
|
-
mindsdb/integrations/handlers/binance_handler/binance_handler.py,sha256=
|
|
330
|
-
mindsdb/integrations/handlers/binance_handler/binance_tables.py,sha256=
|
|
346
|
+
mindsdb/integrations/handlers/binance_handler/binance_handler.py,sha256=tl01q4-bNhVJM7bPFDxTduQXoiD2Ucm0I0kimvrL1tk,5323
|
|
347
|
+
mindsdb/integrations/handlers/binance_handler/binance_tables.py,sha256=lO-xaKMzhdIYsLqML_HdUyIePZZgI3RgJZ3NMebc2hU,7359
|
|
331
348
|
mindsdb/integrations/handlers/binance_handler/icon.svg,sha256=POoCRcSxpPDhqcDIQtEzugAi_Ib4H6zwIbB7uEqZVl8,1020
|
|
332
349
|
mindsdb/integrations/handlers/binance_handler/requirements.txt,sha256=1c_Bkv-FK_40YWyOZvBIAHG73Hw7h3RFc14N1XWLPcU,17
|
|
333
350
|
mindsdb/integrations/handlers/box_handler/__about__.py,sha256=5Tc5cScsS47jvOk5sFEL34M2YKY7yy7bifRpYeEkcTA,329
|
|
@@ -337,7 +354,7 @@ mindsdb/integrations/handlers/box_handler/connection_args.py,sha256=QJqJgDe9RrzD
|
|
|
337
354
|
mindsdb/integrations/handlers/box_handler/icon.svg,sha256=LhDX_Yikte5esxe9qOtHNn4dk1VT_PsiPcx3UAe1gew,1383
|
|
338
355
|
mindsdb/integrations/handlers/box_handler/requirements.txt,sha256=FQc6GqJL5eYYA9-oPcRQbmJR0HrSmnSz-5Q82yiR2sE,11
|
|
339
356
|
mindsdb/integrations/handlers/byom_handler/__about__.py,sha256=5MMwfPjVWxerbcXI564QKIUaYW43COokSWU8KBBlOEg,330
|
|
340
|
-
mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=
|
|
357
|
+
mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=vp4o5UA9txxJSa9RLE8UwioAR5yFOnnZHtxHX5XuBag,502
|
|
341
358
|
mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=uI-UN2XLx7jAx7PxqOO_vlWcluUpPJJ4GEYZ5jP9jno,24818
|
|
342
359
|
mindsdb/integrations/handlers/byom_handler/connection_args.py,sha256=chqPtpiEBtko8kxS15ImkZ6Q3kuhv7vwOzV3JeyU4cU,522
|
|
343
360
|
mindsdb/integrations/handlers/byom_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
@@ -361,14 +378,14 @@ mindsdb/integrations/handlers/chromadb_handler/settings.py,sha256=X2InXMtGB5rwTg
|
|
|
361
378
|
mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
379
|
mindsdb/integrations/handlers/ckan_handler/__about__.py,sha256=asp1VEDXJCLipP3uoPK7Q_qXIODhH89pJqQyjv6P3WE,337
|
|
363
380
|
mindsdb/integrations/handlers/ckan_handler/__init__.py,sha256=ERm0z1dxntDJfeAyYMKbzmKB48LmZC03o_g5gh9GXC4,621
|
|
364
|
-
mindsdb/integrations/handlers/ckan_handler/ckan_handler.py,sha256=
|
|
381
|
+
mindsdb/integrations/handlers/ckan_handler/ckan_handler.py,sha256=1-nXrWbVRWJYcei-bwci7O90E8TLLiLX1BMwYxL3l8w,10888
|
|
365
382
|
mindsdb/integrations/handlers/ckan_handler/connection_args.py,sha256=ZSr6LCPYAGfwWl0lB8K9j7AsbzgUNNG4i8TvpyZtc6g,721
|
|
366
383
|
mindsdb/integrations/handlers/ckan_handler/icon.png,sha256=bak0o_aTqEg7quWFRGvTt_0jKfLu5JupRjVQ7Zj45R8,8453
|
|
367
384
|
mindsdb/integrations/handlers/ckan_handler/requirements.txt,sha256=OA1uNuLzCdHtHEXFxGFdMnbGKYTrLWl9AmOFLtBvlUM,7
|
|
368
385
|
mindsdb/integrations/handlers/ckan_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
386
|
mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py,sha256=k6FNozFZw3Sy6VeL-HU1l_nvLe4XFbeeLYRIFbXvRy4,5210
|
|
370
387
|
mindsdb/integrations/handlers/clickhouse_handler/__about__.py,sha256=bcgP1184NBCWVD8DSJ18Y-BR2vvT4ESzhOa9fHQVC7E,347
|
|
371
|
-
mindsdb/integrations/handlers/clickhouse_handler/__init__.py,sha256=
|
|
388
|
+
mindsdb/integrations/handlers/clickhouse_handler/__init__.py,sha256=MR0-Mxh7ofbRLFGQZPFk5s2gKdSYAHuCr-QQ6mxhQIw,612
|
|
372
389
|
mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py,sha256=wYrIRuxSwcWpYtMiVOPpZmiV_iX6gBWiZ7SfaZuMbYI,5608
|
|
373
390
|
mindsdb/integrations/handlers/clickhouse_handler/connection_args.py,sha256=vLcdjuhOT8N4eFLlz5WBUaC9IF53uztuEnzYaDd0eoU,1594
|
|
374
391
|
mindsdb/integrations/handlers/clickhouse_handler/icon.svg,sha256=KIUu8bJwUyhJQArja0Vf8nEKsLnskVSnIwe6V5DDA1g,387
|
|
@@ -387,10 +404,10 @@ mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py,sha256=5G
|
|
|
387
404
|
mindsdb/integrations/handlers/cloud_spanner_handler/icon.png,sha256=401gDIndTS_b_1KzDnoqgSpzEjZBLTA91-yU6KRWISA,75313
|
|
388
405
|
mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt,sha256=SxP9VNIudLA-kKwZF57LeWjWaGEyhnUJQIa6mtq_Swg,39
|
|
389
406
|
mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
|
-
mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py,sha256=
|
|
407
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py,sha256=5bEzBMzaIK8fkFmA5bBfivwZTBknfWBXus0AqTg_cL4,1590
|
|
391
408
|
mindsdb/integrations/handlers/cloud_sql_handler/__about__.py,sha256=yhGv3W7rjxMgWatT6V36PqpaQ6o-y-acgfqHItqxl6c,366
|
|
392
409
|
mindsdb/integrations/handlers/cloud_sql_handler/__init__.py,sha256=c7KlYhFuWKlu52Com-cwTTPoX0QP19Qdzf0K5rBQyTM,614
|
|
393
|
-
mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py,sha256=
|
|
410
|
+
mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py,sha256=48iJk95Q0YdSsKYmjTp1Z6LWxVcgz42QJLlj7GeA-L8,3867
|
|
394
411
|
mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py,sha256=5KIYS2P555wodGUezO8xT-kLcLRTCTFT387EeM6r3Kc,1278
|
|
395
412
|
mindsdb/integrations/handlers/cloud_sql_handler/icon.png,sha256=ySspFcclAbho0P_mFb57wAnawtk92XToRRHBlO7BmJk,27975
|
|
396
413
|
mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt,sha256=nUotYA64SxizF23uAEoMqvbWsNJNehQeNEikI25wdVk,128
|
|
@@ -404,8 +421,8 @@ mindsdb/integrations/handlers/cockroach_handler/icon.svg,sha256=wmbJ8ohZjonsKFBz
|
|
|
404
421
|
mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
422
|
mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py,sha256=27akhmCYkbVtYP4rxb5wBnresmg90jC8Tu2C4Z-kUJM,1187
|
|
406
423
|
mindsdb/integrations/handlers/cohere_handler/__about__.py,sha256=X4Et6UwjebxXaX6dkXcvmTgd4QtfDZPCzT7izAiN6i4,345
|
|
407
|
-
mindsdb/integrations/handlers/cohere_handler/__init__.py,sha256
|
|
408
|
-
mindsdb/integrations/handlers/cohere_handler/cohere_handler.py,sha256=
|
|
424
|
+
mindsdb/integrations/handlers/cohere_handler/__init__.py,sha256=cyFurbxhvsB83yooeo3cqcevlLRuhO4kMxsa7HjUAJw,542
|
|
425
|
+
mindsdb/integrations/handlers/cohere_handler/cohere_handler.py,sha256=A-FIDXT0judldheHeMn_4My0SWPmli_pwi3l-VzONpU,2549
|
|
409
426
|
mindsdb/integrations/handlers/cohere_handler/icon.svg,sha256=kEpvJyEbO4rn816mPouHGZpz00aCQSsDsggX7W91GPc,1163
|
|
410
427
|
mindsdb/integrations/handlers/cohere_handler/requirements.txt,sha256=3t7MDeOrgNzjAXw6oE0wZrb_Z7ja8xPmy1PkozpBsvc,14
|
|
411
428
|
mindsdb/integrations/handlers/coinbase_handler/__about__.py,sha256=xTttDB5JtPIrUnMfXLTqyoL4hPocuAAqKuy9LJPaoiA,349
|
|
@@ -419,7 +436,7 @@ mindsdb/integrations/handlers/confluence_handler/__about__.py,sha256=0U9j9CfAa3m
|
|
|
419
436
|
mindsdb/integrations/handlers/confluence_handler/__init__.py,sha256=68yvHlrf7xrRjrOqkzYIXfr4mFEQKs2GtCQKBhvuuWU,646
|
|
420
437
|
mindsdb/integrations/handlers/confluence_handler/confluence_api_client.py,sha256=pyMVsQwSB-j03AP5RXgFQxyEE5hK3aIkmiW2pwOZJo8,5512
|
|
421
438
|
mindsdb/integrations/handlers/confluence_handler/confluence_handler.py,sha256=BntGCIyGcZQAe8Uz8TZZsXP3Bs9g4hb6pEtoWNMg4zs,3381
|
|
422
|
-
mindsdb/integrations/handlers/confluence_handler/confluence_tables.py,sha256=
|
|
439
|
+
mindsdb/integrations/handlers/confluence_handler/confluence_tables.py,sha256=p11oz0xtvzZp1Ug-f9WopyjqO9HAe7xeE9RYCImAHJQ,24085
|
|
423
440
|
mindsdb/integrations/handlers/confluence_handler/connection_args.py,sha256=RZOuI3CbJ3VZmWJ5SDQ2vgppFRF42FUhfNAfpHgEdVM,852
|
|
424
441
|
mindsdb/integrations/handlers/confluence_handler/icon.svg,sha256=Piz_ZFABS16FgHfePv3-6yBU2c-h7yeX1bZ5JXFJ_Fk,2500
|
|
425
442
|
mindsdb/integrations/handlers/confluence_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -455,12 +472,12 @@ mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py,sha256=47DEQpj8HBSa
|
|
|
455
472
|
mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py,sha256=e1WXfEqrL9i5nKh4ezJscNhq6tPenu9bIC8XlhCh1U8,1687
|
|
456
473
|
mindsdb/integrations/handlers/databend_handler/__about__.py,sha256=7JUx-OSm5Mchr34W5b1uhO-dk8Zcv2S4QsEajk6_8yk,348
|
|
457
474
|
mindsdb/integrations/handlers/databend_handler/__init__.py,sha256=CC0lyRAxEqvn8NFb6_S5fAcxEHQl0j6yLK74dOfdMkQ,604
|
|
458
|
-
mindsdb/integrations/handlers/databend_handler/connection_args.py,sha256=
|
|
459
|
-
mindsdb/integrations/handlers/databend_handler/databend_handler.py,sha256=
|
|
475
|
+
mindsdb/integrations/handlers/databend_handler/connection_args.py,sha256=rQgVWTYTTn4RkinaZxi4n4sRWTDuNc4vdn_q584y4co,1104
|
|
476
|
+
mindsdb/integrations/handlers/databend_handler/databend_handler.py,sha256=XRw-irzekrsJZeMpGQIVQBIGGRDFIoqPYWZkAO9YzsE,6064
|
|
460
477
|
mindsdb/integrations/handlers/databend_handler/icon.svg,sha256=oNgKNWZpC3VrRF06IfAfxPCDqegdb_pbVLrHHJmfsgk,2675
|
|
461
478
|
mindsdb/integrations/handlers/databend_handler/requirements.txt,sha256=Gep4uTns63iLl3hVM8uvDdVRu6WHxHHE9E4F1drJEQY,19
|
|
462
|
-
mindsdb/integrations/handlers/databend_handler/tests/__init__.py,sha256=
|
|
463
|
-
mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py,sha256=
|
|
479
|
+
mindsdb/integrations/handlers/databend_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
480
|
+
mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py,sha256=4iOaKMgDzkqi2glPAV5iQ1q5_sVfvZ1OmcMiL1lStAQ,1232
|
|
464
481
|
mindsdb/integrations/handlers/databricks_handler/__about__.py,sha256=_DJsf3lXMtRb-c9tlUQesBW5_Vinsvd7uGjcDHaQhwE,363
|
|
465
482
|
mindsdb/integrations/handlers/databricks_handler/__init__.py,sha256=go72eMqUWKLj4j7wnUbf3znTL4TQXrLfc1hTpxBxumc,675
|
|
466
483
|
mindsdb/integrations/handlers/databricks_handler/connection_args.py,sha256=tdHFSNaXlAUFkM-FX7cMXEfdF6UtEgcNPSaRhFXuSUg,1885
|
|
@@ -486,26 +503,26 @@ mindsdb/integrations/handlers/db2_handler/tests/__init__.py,sha256=47DEQpj8HBSa-
|
|
|
486
503
|
mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py,sha256=Ozp6YSf2ixihKGg-JS_7SJjoG9mgMYhrjMSijtjoNFE,1439
|
|
487
504
|
mindsdb/integrations/handlers/derby_handler/__about__.py,sha256=TuqZrWJwnJT68J4uDLsQRbr59rDeT2R-ljATO9fh_0I,351
|
|
488
505
|
mindsdb/integrations/handlers/derby_handler/__init__.py,sha256=EhaDomgWqB_JLo761BIMh0YsvOKP5KUT9Em4zZ9u12o,603
|
|
489
|
-
mindsdb/integrations/handlers/derby_handler/connection_args.py,sha256=
|
|
490
|
-
mindsdb/integrations/handlers/derby_handler/derby_handler.py,sha256=
|
|
506
|
+
mindsdb/integrations/handlers/derby_handler/connection_args.py,sha256=wk4Jq3GERieqr76-b2UMz42aqq7-BEcYxhbGtPW2co4,2047
|
|
507
|
+
mindsdb/integrations/handlers/derby_handler/derby_handler.py,sha256=90N1xnWqv7K1WUTLEOV8PjsE7DFCKWLfMpSKCwGCSCI,6813
|
|
491
508
|
mindsdb/integrations/handlers/derby_handler/icon.svg,sha256=Q571Chfv-Mo8BM6S1-pNZFBY-FjpZmTAnQ0R0pes7ZM,2278
|
|
492
509
|
mindsdb/integrations/handlers/derby_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
|
|
493
510
|
mindsdb/integrations/handlers/derby_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
494
|
-
mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py,sha256=
|
|
511
|
+
mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py,sha256=taJFzTeh9q7C40OkPZsdNwdAzAurqWNEQOHwC2vyZA4,1478
|
|
495
512
|
mindsdb/integrations/handlers/discord_handler/__about__.py,sha256=wxrgI1w9DRxdDHlBX68xY1pIJqFt4Bks-Ea1hTGfviQ,342
|
|
496
513
|
mindsdb/integrations/handlers/discord_handler/__init__.py,sha256=SyPHPhB_V079zA_cyXCj45ei6lichsPqRP10LyBr8fk,511
|
|
497
|
-
mindsdb/integrations/handlers/discord_handler/discord_handler.py,sha256=
|
|
498
|
-
mindsdb/integrations/handlers/discord_handler/discord_tables.py,sha256=
|
|
514
|
+
mindsdb/integrations/handlers/discord_handler/discord_handler.py,sha256=F7x7N-uQaVtcJbCo4PaGfJaQVPII_NnEn_vaYPrpa8A,5573
|
|
515
|
+
mindsdb/integrations/handlers/discord_handler/discord_tables.py,sha256=Hg2MAEhJEgUsyLbCfWh96Ss87fHXhGLPDuTVS5dq6OA,5878
|
|
499
516
|
mindsdb/integrations/handlers/discord_handler/icon.svg,sha256=BzH2QWqsSOjWBf1H7nJys7koDyV6BsSMheyK1i0hMgI,1330
|
|
500
517
|
mindsdb/integrations/handlers/discord_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
518
|
mindsdb/integrations/handlers/discord_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
502
|
-
mindsdb/integrations/handlers/discord_handler/tests/test_discord.py,sha256=
|
|
519
|
+
mindsdb/integrations/handlers/discord_handler/tests/test_discord.py,sha256=2Sehu-z2uiHjnqaeDUVlFBAWKodNKF2rxknlKcwuHZI,2159
|
|
503
520
|
mindsdb/integrations/handlers/dockerhub_handler/__about__.py,sha256=UcCZ97wGHWne4UosDBcpGWtvSKQ5lsmBSqrMto-f6bQ,347
|
|
504
521
|
mindsdb/integrations/handlers/dockerhub_handler/__init__.py,sha256=abNDl-TCh_MZlLgtZ7YK79j6qnXSMH1TBbXljxBjNFA,641
|
|
505
522
|
mindsdb/integrations/handlers/dockerhub_handler/connection_args.py,sha256=X-mvTlTXI4dZeE8PcjVbghQpDaa8Cg5D3XUvMGYn4i8,572
|
|
506
|
-
mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py,sha256=
|
|
507
|
-
mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py,sha256=
|
|
508
|
-
mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py,sha256=
|
|
523
|
+
mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py,sha256=Mdq5PmxHZe0pElM9eUQZ7qCANGk_zfcJSUadnsmRsqw,2261
|
|
524
|
+
mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py,sha256=eR8iL9BftISam8f87fQfTN5CSXmz391aT-M731V2FV4,3645
|
|
525
|
+
mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py,sha256=uP3BMXeVDp_88dFufdENVWu02QESeDplOOSWcomHd7k,17383
|
|
509
526
|
mindsdb/integrations/handlers/dockerhub_handler/icon.svg,sha256=50v7YRsy6q8H58p7CMNSAN7LwKzRGifEIgblLev4s3c,3562
|
|
510
527
|
mindsdb/integrations/handlers/documentdb_handler/__about__.py,sha256=Rt-G8q9KTwAaFdsfTKRieXvp7JnaJGPJUe2WeLGocgw,350
|
|
511
528
|
mindsdb/integrations/handlers/documentdb_handler/__init__.py,sha256=i3J0cPOg7QqkP15-2seahXI1xILvPthpmxClhqAq1d8,620
|
|
@@ -513,7 +530,7 @@ mindsdb/integrations/handlers/documentdb_handler/connection_args.py,sha256=ajm9e
|
|
|
513
530
|
mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py,sha256=oJi8FH59c0jyZ_6Lxj7KygC_koXA110EC3m-k16gbqw,1378
|
|
514
531
|
mindsdb/integrations/handlers/documentdb_handler/icon.svg,sha256=pKDMFy1Ivlwa6Bp2_SEiCF5HQoGy4c6wtd9XfdOI2Is,3512
|
|
515
532
|
mindsdb/integrations/handlers/dremio_handler/__about__.py,sha256=Q_m7a8g1uswUxT09spU-FGLw3c4fIsBKsBlC4iLZFLU,351
|
|
516
|
-
mindsdb/integrations/handlers/dremio_handler/__init__.py,sha256=
|
|
533
|
+
mindsdb/integrations/handlers/dremio_handler/__init__.py,sha256=kUUd_B8mdKfPSu9dMfqKD-0buVhlZwcc_TgFwdl0iHU,571
|
|
517
534
|
mindsdb/integrations/handlers/dremio_handler/connection_args.py,sha256=3PIE05Jl7mkF_9KL_Kjx0rwjpZI5U7vpYq2ojd5BgYk,814
|
|
518
535
|
mindsdb/integrations/handlers/dremio_handler/dremio_handler.py,sha256=pSuaEZCCn8hsVCPYGKXScbkVPmLfPC-hlQR6HANGCyk,6798
|
|
519
536
|
mindsdb/integrations/handlers/dremio_handler/icon.svg,sha256=fs5ugLp1d0xMQUoAHcOV-5XEX6u0uADR_GC1A0SBjIo,5946
|
|
@@ -529,9 +546,9 @@ mindsdb/integrations/handlers/dropbox_handler/requirements.txt,sha256=dRcFk9VZ8i
|
|
|
529
546
|
mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
530
547
|
mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py,sha256=M6jrM1f991HCRQC15KlNm5xZ6TN1fpkGzut8ZGM8RZk,611
|
|
531
548
|
mindsdb/integrations/handlers/druid_handler/__about__.py,sha256=psafZg7bMoHnSdx4ThYNV5hFZiq1Y8ZB06SqzAPvabw,362
|
|
532
|
-
mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=
|
|
549
|
+
mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=eUEHsfHUYrqYnNzj_YKHAYQb8iDTdRkoamLITQvEEMM,599
|
|
533
550
|
mindsdb/integrations/handlers/druid_handler/connection_args.py,sha256=dlwEAIswp5kkBIiHGXGe_AkI06W6RukP5QPT4BxKvoI,1401
|
|
534
|
-
mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=
|
|
551
|
+
mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=ln1kMx7CvkBlRUwY9ykBtJX57yWGt4CWPU1mBmWu6Y4,6406
|
|
535
552
|
mindsdb/integrations/handlers/druid_handler/icon.svg,sha256=ak7qaXWafkb6MvCGtG5wAfVcffKNuARcUtF74uqVDEw,2823
|
|
536
553
|
mindsdb/integrations/handlers/druid_handler/requirements.txt,sha256=dahrkIufqj8IX1uzmprfLUzgIAKmeJYmrvcEhwOpdJI,8
|
|
537
554
|
mindsdb/integrations/handlers/druid_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -566,7 +583,7 @@ mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py,sha256=fR
|
|
|
566
583
|
mindsdb/integrations/handlers/edgelessdb_handler/icon.svg,sha256=bkgVNzOgmtUSz3_9P74YBBLE5577nQlcHqJLKpy8d_8,742
|
|
567
584
|
mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
568
585
|
mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
569
|
-
mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py,sha256=
|
|
586
|
+
mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py,sha256=JNKaHZips1Zy7Y0PBy9l2GZgeyao7Q508h_970zPAMk,1979
|
|
570
587
|
mindsdb/integrations/handlers/elasticsearch_handler/__about__.py,sha256=yRczUDJEBZh4uQfJodmmmSLc-W8Ytk5HkpXK7Ev2VeY,363
|
|
571
588
|
mindsdb/integrations/handlers/elasticsearch_handler/__init__.py,sha256=ExwZlMAOr1ODX3ihoCeME8on-tzmb2ENRLipG5xzlhA,659
|
|
572
589
|
mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py,sha256=G7VApBaBz8GNzxY7TURE_UpLs6x8knlfywa5tyzWTXo,1296
|
|
@@ -577,13 +594,13 @@ mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py,sha256=47D
|
|
|
577
594
|
mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py,sha256=CVTDvLoshAP-JZbuc-Sc3xWNKvtarxUTE6U0NZYRpqs,1107
|
|
578
595
|
mindsdb/integrations/handlers/email_handler/__about__.py,sha256=_gKp2yLFTagL1ArgnqbFmG_9ESO4dCQl3Ze3UEI2KMo,333
|
|
579
596
|
mindsdb/integrations/handlers/email_handler/__init__.py,sha256=uzS0asjT5GArzwJQ5T6WjAEcg154q1zcSaThn_uhWK0,492
|
|
580
|
-
mindsdb/integrations/handlers/email_handler/email_client.py,sha256=
|
|
597
|
+
mindsdb/integrations/handlers/email_handler/email_client.py,sha256=pxi-VKTNOeVQeoL5xUoS50JFA8J7ioXQM7Wbbefc6I8,6326
|
|
581
598
|
mindsdb/integrations/handlers/email_handler/email_handler.py,sha256=ZskExJjNT3FVlpgSJReKvAgFoQsMwy_niX6u-7IV7P4,2722
|
|
582
|
-
mindsdb/integrations/handlers/email_handler/email_ingestor.py,sha256=
|
|
583
|
-
mindsdb/integrations/handlers/email_handler/email_tables.py,sha256=
|
|
599
|
+
mindsdb/integrations/handlers/email_handler/email_ingestor.py,sha256=vuMz2BYLTOlxAm-fCByLEhf_tjNMk1cL6f0-3ySImug,3385
|
|
600
|
+
mindsdb/integrations/handlers/email_handler/email_tables.py,sha256=ppT43BMariRjqFW3_WJcX1aSCA_nasaDeNbugXjqTEQ,5192
|
|
584
601
|
mindsdb/integrations/handlers/email_handler/icon.png,sha256=3gOB-brv6-jfOqqkCxW-loNPKNgj326ixKoiqEOHxsA,32416
|
|
585
602
|
mindsdb/integrations/handlers/email_handler/requirements.txt,sha256=d2_KpNooVtDHqxLWDNluZrthOh9Fh8zieJvvkJWzV8c,12
|
|
586
|
-
mindsdb/integrations/handlers/email_handler/settings.py,sha256=
|
|
603
|
+
mindsdb/integrations/handlers/email_handler/settings.py,sha256=TXagY4NDBGg38PP5Yi1nxwPQ7dMnwqv8FazXVrNCsFk,1641
|
|
587
604
|
mindsdb/integrations/handlers/empress_handler/__about__.py,sha256=IRkXh-2mR6-bdwmnZuuDPcLpVTPpZPefflnuNYkrs6o,399
|
|
588
605
|
mindsdb/integrations/handlers/empress_handler/__init__.py,sha256=332JGOh5TY7yl2rKrKVyHTnZapqM4iD5Y5tWfahL6h8,609
|
|
589
606
|
mindsdb/integrations/handlers/empress_handler/connection_args.py,sha256=frb3E7UmeJhviNF60G4sW1XeZIYei0YiK1_4hG1UamA,1173
|
|
@@ -600,7 +617,7 @@ mindsdb/integrations/handlers/eventbrite_handler/icon.png,sha256=gJdi1iZr7NJlgsN
|
|
|
600
617
|
mindsdb/integrations/handlers/eventbrite_handler/requirements.txt,sha256=tkujt3jIsMXBs5zpqLJSvKSMxs0F1sFpxWNr-uN3ozo,17
|
|
601
618
|
mindsdb/integrations/handlers/eventstoredb_handler/__about__.py,sha256=IkNIOvJEgwl45RZfbzqonIIDgyU5XzWGsfgtK0hWp8g,359
|
|
602
619
|
mindsdb/integrations/handlers/eventstoredb_handler/__init__.py,sha256=25J3hSo3__Z-XpLuEuVGFtFp9DO7UYw9piixPkt1kPQ,523
|
|
603
|
-
mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py,sha256=
|
|
620
|
+
mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py,sha256=55ZedpM_e-CcMM0QQyfF7l2kWfuuYafQHaiQvJBiu34,9289
|
|
604
621
|
mindsdb/integrations/handlers/eventstoredb_handler/icon.svg,sha256=IAuS_Ev-9EYH7H9lhrBC3wdN8IycizZGohiB4kyqeeU,2404
|
|
605
622
|
mindsdb/integrations/handlers/faunadb_handler/__about__.py,sha256=pOnuQTkQK37OzOgA_r71Gzfpc6F0SIPnu-VHTv0w3yk,337
|
|
606
623
|
mindsdb/integrations/handlers/faunadb_handler/__init__.py,sha256=8y_tC2s3Bqr8uGFQiwSC3-gIjATv242SPjJGZP0eHCo,656
|
|
@@ -626,21 +643,21 @@ mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg,sha256=nx
|
|
|
626
643
|
mindsdb/integrations/handlers/firebird_handler/__about__.py,sha256=XsNT56zjORbC-Zdl6JZ7PSHrm80LPHjKmVgYJ_BjLy4,357
|
|
627
644
|
mindsdb/integrations/handlers/firebird_handler/__init__.py,sha256=aH6jiir9NpFnFtsM0X-z-m6ifrE3oLDEbHVrcDw_RRg,624
|
|
628
645
|
mindsdb/integrations/handlers/firebird_handler/connection_args.py,sha256=dnksNcYLtaOJWi_knMO5TaRMAduRgNUYXDSNYa3eylc,976
|
|
629
|
-
mindsdb/integrations/handlers/firebird_handler/firebird_handler.py,sha256=
|
|
646
|
+
mindsdb/integrations/handlers/firebird_handler/firebird_handler.py,sha256=SclABBqp1wvsFes8fBFOXAHXlhe0reR14qHlQ0q0uig,8671
|
|
630
647
|
mindsdb/integrations/handlers/firebird_handler/icon.svg,sha256=krIiRyzwtZf8wzdt3QQhFMBAZ25JwgJF6mGJm8ku7H4,4207
|
|
631
648
|
mindsdb/integrations/handlers/firebird_handler/requirements.txt,sha256=8uUhkMD0GvdwVt6WhNaBVVBeiedhNEHNdkTXZJudoDA,41
|
|
632
649
|
mindsdb/integrations/handlers/firebird_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
633
650
|
mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py,sha256=Hkjr4lz0oWzUupvaT-1-DXaCxQMNFwFdz1VBu_2tJ1w,1243
|
|
634
651
|
mindsdb/integrations/handlers/flaml_handler/__about__.py,sha256=vQJvUYCSJpM2L_K3BpZIf2wPg0O6gwMZb8hwtGDFJEk,338
|
|
635
652
|
mindsdb/integrations/handlers/flaml_handler/__init__.py,sha256=MHYGvpWtU8o5izMpv4d0CxBIamoCmP-J9Ti5bq_f2-I,531
|
|
636
|
-
mindsdb/integrations/handlers/flaml_handler/flaml_handler.py,sha256=
|
|
653
|
+
mindsdb/integrations/handlers/flaml_handler/flaml_handler.py,sha256=qgvXfPEOmf5A4amIGj6LkDLhGVqmJiYWVmNQ_M-Fnn8,1601
|
|
637
654
|
mindsdb/integrations/handlers/flaml_handler/icon.svg,sha256=L5ADXk0pRN8VFCYew_jeJXjVTP8etzLQsUwAjjuPwIA,3096
|
|
638
655
|
mindsdb/integrations/handlers/flaml_handler/requirements.txt,sha256=YbK2xIvGKGeFqBEel014cWFzfgwukPKcloTX4ar3Bpk,32
|
|
639
656
|
mindsdb/integrations/handlers/frappe_handler/__about__.py,sha256=NPBXQAHQGMUoAxc3L0e5Cu_CnccWeyyPEVLe1jNwe4o,345
|
|
640
657
|
mindsdb/integrations/handlers/frappe_handler/__init__.py,sha256=JTd4ltTHkkVOmZuitOz2GpA3S_cZJxDmlp3A18imeUo,480
|
|
641
|
-
mindsdb/integrations/handlers/frappe_handler/frappe_client.py,sha256=
|
|
642
|
-
mindsdb/integrations/handlers/frappe_handler/frappe_handler.py,sha256=
|
|
643
|
-
mindsdb/integrations/handlers/frappe_handler/frappe_tables.py,sha256=
|
|
658
|
+
mindsdb/integrations/handlers/frappe_handler/frappe_client.py,sha256=XbDZ7GJK2MqJq2EdHYCiOkl5uLAgBunVyr-zQkdUpfE,4338
|
|
659
|
+
mindsdb/integrations/handlers/frappe_handler/frappe_handler.py,sha256=KNm_kKUdkpMWCM6fKCuC6UxCdsrvrAIpk7GhI-PAW9w,7974
|
|
660
|
+
mindsdb/integrations/handlers/frappe_handler/frappe_tables.py,sha256=iVVb1KrnkJNp5y4wggZfuN8H73XUI5uU18InJFzzWtY,2640
|
|
644
661
|
mindsdb/integrations/handlers/frappe_handler/icon.svg,sha256=UsWb6k9kIQ1zO4xkf8GM_VaW6xGs_Xb_f1I9TuitBSI,920
|
|
645
662
|
mindsdb/integrations/handlers/frappe_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
646
663
|
mindsdb/integrations/handlers/gcs_handler/__about__.py,sha256=A4HdOx9Tf186tzO0P3Z-qanuiBQwHnS0VNPLzuf-fzY,345
|
|
@@ -652,22 +669,22 @@ mindsdb/integrations/handlers/gcs_handler/icon.svg,sha256=56wtNuOB923CuGU-TPsYRx
|
|
|
652
669
|
mindsdb/integrations/handlers/gcs_handler/requirements.txt,sha256=zLZXjAKF7BzZXlUq0fXrTQqzUsxV1nO_fsHaXTSowF8,46
|
|
653
670
|
mindsdb/integrations/handlers/github_handler/__about__.py,sha256=bDVOGS37C6HVRgSOekhxUcvW2Eg0Z5k2bq558mUM07M,339
|
|
654
671
|
mindsdb/integrations/handlers/github_handler/__init__.py,sha256=ov-CvC4-1IbwvuKykY7i3wJxHnYenbU8KtNZUSRzB-0,629
|
|
655
|
-
mindsdb/integrations/handlers/github_handler/connection_args.py,sha256=
|
|
672
|
+
mindsdb/integrations/handlers/github_handler/connection_args.py,sha256=zecMKM96NjxbneM66tb8QuGg6EVvukl9GJRBCL27UsA,909
|
|
656
673
|
mindsdb/integrations/handlers/github_handler/generate_api.py,sha256=GRIhxpUKQ_zazZDWqiUWu_fdXOztKF6c4ne1AgjE3qg,7089
|
|
657
|
-
mindsdb/integrations/handlers/github_handler/github_handler.py,sha256=
|
|
658
|
-
mindsdb/integrations/handlers/github_handler/github_tables.py,sha256=
|
|
674
|
+
mindsdb/integrations/handlers/github_handler/github_handler.py,sha256=ekIhKLkixe1bg1t8pqp1Wp4A7SPBvITwCSN-ghftoDI,3614
|
|
675
|
+
mindsdb/integrations/handlers/github_handler/github_tables.py,sha256=x6PHhZYRQjwzw6cQ23Fs0uBDqagVyqoSssgSE6szf80,30710
|
|
659
676
|
mindsdb/integrations/handlers/github_handler/icon.svg,sha256=c1j3IrEwYsGXPwW-hjZDpOceLhVCW_0tT8Aba5PdF5c,1198
|
|
660
677
|
mindsdb/integrations/handlers/github_handler/requirements.txt,sha256=BJz2OYblSD2RZAV7csj2UIyRfuSQmstGWB3flUgFOk4,16
|
|
661
678
|
mindsdb/integrations/handlers/gitlab_handler/__about__.py,sha256=2uH49-_UriKLYrfBa8yIU6j1L9Bxpyp5Gqm7zsTT7eA,341
|
|
662
679
|
mindsdb/integrations/handlers/gitlab_handler/__init__.py,sha256=MleI0P8FKMYzbzd_XPkTbCjT1_Ub21hreu56QhXQuy8,481
|
|
663
|
-
mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=
|
|
664
|
-
mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py,sha256=
|
|
680
|
+
mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=2aI5V86NUsolt31AINviwe368XpdaKfdUxBupMOXUb4,2575
|
|
681
|
+
mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py,sha256=qgIcwzLQLByzBEMga9EIqsGuEVgF1LECLsC_L4w3xg4,15283
|
|
665
682
|
mindsdb/integrations/handlers/gitlab_handler/icon.svg,sha256=bQ1whEb3IObHqMiZAHomuekYicpYFVnD7W0y-4JyzKc,1995
|
|
666
683
|
mindsdb/integrations/handlers/gitlab_handler/requirements.txt,sha256=1W6ZjjUzciSZ0BX4yJ7C54BWdhWYLCw5ASu-VQohWro,13
|
|
667
684
|
mindsdb/integrations/handlers/gmail_handler/__about__.py,sha256=uj5U9JF0CynCH3ZE858VyDrJUiFgnTSZQcIbEhwnMbw,355
|
|
668
685
|
mindsdb/integrations/handlers/gmail_handler/__init__.py,sha256=2Ed7Pfbdz56spFnl9WGf1vcRdL73LBjBr5lG_-dje38,540
|
|
669
686
|
mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=ICSjOPrCxpOQEpXLkyjm-osa-9fhm_tf77iekhqAsTo,780
|
|
670
|
-
mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=
|
|
687
|
+
mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=V0T4Mrm30Fb8kkBSjktV1NkJYE2ezDsawZ2n5uugMmo,17746
|
|
671
688
|
mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHrma_Ho8dyXNTAgXnQK25hYD4,862
|
|
672
689
|
mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
|
|
673
690
|
mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -682,8 +699,8 @@ mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py,sha256=
|
|
|
682
699
|
mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py,sha256=cHXwGAuWmuroN-x_b0YKWgGD4ax0Vad3V4xzgHDgqSU,1815
|
|
683
700
|
mindsdb/integrations/handlers/google_books_handler/__about__.py,sha256=O5UgmDgG_LDRCZi_Jyc4wZLcYsWzPL6BJIkRFxjm2Do,379
|
|
684
701
|
mindsdb/integrations/handlers/google_books_handler/__init__.py,sha256=6qKoU8qvFL6a-GPqPW_IPa2IYIhQJzOuf2T8AKOKM6A,504
|
|
685
|
-
mindsdb/integrations/handlers/google_books_handler/google_books_handler.py,sha256=
|
|
686
|
-
mindsdb/integrations/handlers/google_books_handler/google_books_tables.py,sha256=
|
|
702
|
+
mindsdb/integrations/handlers/google_books_handler/google_books_handler.py,sha256=wQwZ-UsEvSE4SSyxi-0N1TO70ozHgdQyWOCJFRmmr9E,6892
|
|
703
|
+
mindsdb/integrations/handlers/google_books_handler/google_books_tables.py,sha256=wsMwbrbp8pPyB98snrn9fi2np968DEcNxsONctyFNAY,6184
|
|
687
704
|
mindsdb/integrations/handlers/google_books_handler/icon.svg,sha256=PNUyfFJEaEAgCxmomXG_1SYW9VaSF5zilZi6X9Xuhls,962
|
|
688
705
|
mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
|
|
689
706
|
mindsdb/integrations/handlers/google_books_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -691,8 +708,8 @@ mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handl
|
|
|
691
708
|
mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZz9sTlrSoW5FIUbFZqmW4WD1BNe-66IC1hj6Vs,388
|
|
692
709
|
mindsdb/integrations/handlers/google_calendar_handler/__init__.py,sha256=ms_QDVhQf3b_jnweJXDVAUFYuyKkPb6JgEfGEzJ9uzA,580
|
|
693
710
|
mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=HL1g-EYFULOoR3l874dFRmPGeP5bl0fNwRTftYDeF84,780
|
|
694
|
-
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=
|
|
695
|
-
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=
|
|
711
|
+
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=NV8wWKS8_09flwJmf3X1J2iQ96o-uJ6HKk-e4ODZhCE,10900
|
|
712
|
+
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=QuY3I05xV_XaqOGV_xtMn2eMkDSZBxTWiYC9ylQ860E,8002
|
|
696
713
|
mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
|
|
697
714
|
mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
|
|
698
715
|
mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -700,16 +717,16 @@ mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar
|
|
|
700
717
|
mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py,sha256=kUidXzaoLPxNOiywhLPrUFjG4JZl8krOHzS0QMWl7Tg,424
|
|
701
718
|
mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py,sha256=5WMq9JHkNT9EHmedLyt5wru80V2NxMeNSvemsiTpUEk,662
|
|
702
719
|
mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py,sha256=NdwKKW8VAMNiInueKkXoX0QP8Fu9ECXq0tTBdpGc_Zo,563
|
|
703
|
-
mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py,sha256=
|
|
704
|
-
mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py,sha256=
|
|
720
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py,sha256=yGt7F-_-w-wWk-2Ijzsbb0pbvB4S7sOJTseZ8hzGkz8,15650
|
|
721
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py,sha256=1o8yzOgzHx0g4N_lfoNhH_WZfVUfAmsw-LwUOnwZoh4,14195
|
|
705
722
|
mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg,sha256=q8FcSns7BbYLiMtErVngNMkLGXbjxeeP8IuKIGhKKJA,2651
|
|
706
723
|
mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
|
|
707
724
|
mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
708
725
|
mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py,sha256=0yOsRSpKCGiHAKpe9m7g7HENYY2vcCPVk6sP1k5wLsI,2436
|
|
709
726
|
mindsdb/integrations/handlers/google_fit_handler/__about__.py,sha256=f6IFxoETFim29W0z7BPQG57SWBNyy838DTuBY_68I6k,358
|
|
710
727
|
mindsdb/integrations/handlers/google_fit_handler/__init__.py,sha256=ZzcJSVhfMTx5CqAjRCydCB7Mc2ERPT7GtQ8FOtZkXFQ,495
|
|
711
|
-
mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py,sha256=
|
|
712
|
-
mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py,sha256=
|
|
728
|
+
mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py,sha256=c5DWijWNdeXxv_tYaz1TdfaTF7j_ArQwixt6-_YDjhY,6572
|
|
729
|
+
mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py,sha256=RNl_qiPHcyNrtBrkmbTDE2uGUJ0l8mwHX1z9c5T1mrU,2394
|
|
713
730
|
mindsdb/integrations/handlers/google_fit_handler/icon.svg,sha256=3ZgBVbln5KXnYpVLDTbYDGfQp_hUGW3W0GJGVJUjQ98,1511
|
|
714
731
|
mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=XAgJL2biwLXpTpn7NBWXVYxtpUTh0zKHFm2bgjhXAWU,80
|
|
715
732
|
mindsdb/integrations/handlers/google_gemini_handler/__about__.py,sha256=6wu9JKGI5scaFTcO59kcrQ1F6ooVaaPeS3-sYxOYojI,374
|
|
@@ -720,8 +737,8 @@ mindsdb/integrations/handlers/google_gemini_handler/requirements.txt,sha256=uPpL
|
|
|
720
737
|
mindsdb/integrations/handlers/google_search_handler/__about__.py,sha256=EPaDjDJvD7XZjKVF8kcxylyhDldS9MzxcHlkD51hufY,382
|
|
721
738
|
mindsdb/integrations/handlers/google_search_handler/__init__.py,sha256=w5PUmHFndJkZtMrfrf3ruBtqvE6tNY_SswSBmJowU7s,630
|
|
722
739
|
mindsdb/integrations/handlers/google_search_handler/connection_args.py,sha256=HShiT9T2GITGncYL8t2PsN8m6PUMQeqjCdn_mizNfY8,408
|
|
723
|
-
mindsdb/integrations/handlers/google_search_handler/google_search_handler.py,sha256=
|
|
724
|
-
mindsdb/integrations/handlers/google_search_handler/google_search_tables.py,sha256=
|
|
740
|
+
mindsdb/integrations/handlers/google_search_handler/google_search_handler.py,sha256=E28ekX9d5ra2QdZjfkHJ9UwA746GAkkTPerI9yx6ebc,7673
|
|
741
|
+
mindsdb/integrations/handlers/google_search_handler/google_search_tables.py,sha256=p53CalNcKaLUb0NWJYXJXTfqlD-M1Q577D74puWBRpo,7291
|
|
725
742
|
mindsdb/integrations/handlers/google_search_handler/icon.svg,sha256=Dsio_gu-jTENejm6qPAAfAvarnRDUocgqmMtjCuyw6U,3303
|
|
726
743
|
mindsdb/integrations/handlers/google_search_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
|
|
727
744
|
mindsdb/integrations/handlers/google_search_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -732,15 +749,15 @@ mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py,sha256=aT
|
|
|
732
749
|
mindsdb/integrations/handlers/greptimedb_handler/icon.svg,sha256=Gos2jNeTXp0y9wiFkV_PNR2ZSBuoWOcOani7uDN6zP8,1298
|
|
733
750
|
mindsdb/integrations/handlers/greptimedb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
734
751
|
mindsdb/integrations/handlers/groq_handler/__about__.py,sha256=wnuD05vkrrFPXlJ7AR9f2a88KzcmdSsuLbOisvZdwOc,330
|
|
735
|
-
mindsdb/integrations/handlers/groq_handler/__init__.py,sha256=
|
|
752
|
+
mindsdb/integrations/handlers/groq_handler/__init__.py,sha256=FDKRw30RjMk9bJKiV_Elcr3-dZgtxInaxjDUUD_FRO0,570
|
|
736
753
|
mindsdb/integrations/handlers/groq_handler/groq_handler.py,sha256=IbQlHpR-0_6cGNJFlVJbxiIMD9jaz_VP8vShA65PHuQ,4823
|
|
737
754
|
mindsdb/integrations/handlers/groq_handler/icon.svg,sha256=S923SyjHSrjPJBzvHvYVDMFQYNh9AqjzZtzOd41ePlg,2495
|
|
738
755
|
mindsdb/integrations/handlers/groq_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
|
|
739
756
|
mindsdb/integrations/handlers/groq_handler/settings.py,sha256=-ro_v2nGmx_5S3CS2RHAr5f8BvbDN-ACYnpyBsV4dAo,723
|
|
740
757
|
mindsdb/integrations/handlers/hackernews_handler/__about__.py,sha256=xCBY8u73sc_PHT5gj0PGygqxJkBymwyFlUxb85bC81o,340
|
|
741
758
|
mindsdb/integrations/handlers/hackernews_handler/__init__.py,sha256=8qw3ZBMLKmpUHE1N2rWeQGCNkGc0Q8EyEfszMoYfGUk,505
|
|
742
|
-
mindsdb/integrations/handlers/hackernews_handler/hn_handler.py,sha256=
|
|
743
|
-
mindsdb/integrations/handlers/hackernews_handler/hn_table.py,sha256=
|
|
759
|
+
mindsdb/integrations/handlers/hackernews_handler/hn_handler.py,sha256=zxYBbk7_fceYjIL6cogHgSbV4Mdj99Yz_fMtRsu7FaE,3634
|
|
760
|
+
mindsdb/integrations/handlers/hackernews_handler/hn_table.py,sha256=L9BQ3ak40qh6PFYZgf3nzdsyDNuHa454B3HkXueROFU,5242
|
|
744
761
|
mindsdb/integrations/handlers/hackernews_handler/icon.svg,sha256=w7g3BTaZJroLn0KfbT9SYBtcJMCNws4s3djy6LxIqRc,611
|
|
745
762
|
mindsdb/integrations/handlers/hana_handler/__about__.py,sha256=lU0KWojOUkMWjzARuZP9qLWn3LblHSjUBuZV8Ewfy1E,341
|
|
746
763
|
mindsdb/integrations/handlers/hana_handler/__init__.py,sha256=FvP0UIPGS7APeAorBgBe5_QybJ4kKm9E_gdlUCasAFM,592
|
|
@@ -755,11 +772,11 @@ mindsdb/integrations/handlers/hive_handler/hive_handler.py,sha256=VziWof6giCClHC
|
|
|
755
772
|
mindsdb/integrations/handlers/hive_handler/icon.svg,sha256=g07RaULUyoFzFpk2S9o5cwww__dB8YTS2bGvRtUpROI,17076
|
|
756
773
|
mindsdb/integrations/handlers/hive_handler/requirements.txt,sha256=KsI9Z7vv9d8vCEOyR4uO8R9I1ZTe84mW6kD0pZwJ-Fg,26
|
|
757
774
|
mindsdb/integrations/handlers/hive_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
758
|
-
mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py,sha256=
|
|
775
|
+
mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py,sha256=o4_iBDZdkIthPLSew_dzqVhsD3LPn5n1KepCy_42aj0,1639
|
|
759
776
|
mindsdb/integrations/handlers/hsqldb_handler/__about__.py,sha256=8bNNZpNOyuFnwjUzcyXY5PXJRt0TxuaiVn5uGVTJB9Q,348
|
|
760
777
|
mindsdb/integrations/handlers/hsqldb_handler/__init__.py,sha256=jkLVMUxIKVPD0Wk6_ehi8Vg-jbAts4A2gbFAz3w4qQ8,620
|
|
761
|
-
mindsdb/integrations/handlers/hsqldb_handler/connection_args.py,sha256=
|
|
762
|
-
mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py,sha256=
|
|
778
|
+
mindsdb/integrations/handlers/hsqldb_handler/connection_args.py,sha256=QFAIgfxnHCixaIl8GhvO6JZev7Py59e0CnK1O-R-Kbk,927
|
|
779
|
+
mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py,sha256=SBniWwafqSxS66RET2C7J9TcBCl9WXDRgSuwAxcV-9E,6583
|
|
763
780
|
mindsdb/integrations/handlers/hsqldb_handler/icon.png,sha256=OYVUi8q-tKafOg0Evg2GY_UYuGxa9lUJ93KSNfPB464,41120
|
|
764
781
|
mindsdb/integrations/handlers/hsqldb_handler/requirements.txt,sha256=K8ZUSiKPbTlaT2Yd895mW4_uKNc3k9e_N_Xd0pMc6uE,14
|
|
765
782
|
mindsdb/integrations/handlers/hubspot_handler/__about__.py,sha256=XoRC9G5UEVYBF2NlqyVqk4H9431bafGacrirhcBPqmA,349
|
|
@@ -770,8 +787,8 @@ mindsdb/integrations/handlers/hubspot_handler/icon.svg,sha256=FoLHI5CdLMqZLv_M0P
|
|
|
770
787
|
mindsdb/integrations/handlers/hubspot_handler/requirements.txt,sha256=50SL5fyMnNRccXgKNrQ9UW5zK5iiJWYvNK_yXdJhgV8,19
|
|
771
788
|
mindsdb/integrations/handlers/huggingface_api_handler/__about__.py,sha256=gUWilT75wrd2aRmL3iK3XXI8XjXu4mpun3pcmVwrZ4A,381
|
|
772
789
|
mindsdb/integrations/handlers/huggingface_api_handler/__init__.py,sha256=Bs6kqNT2-WSRioNS6kcJxl_DQrC0SH9_QuS6APYTGlE,537
|
|
773
|
-
mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py,sha256=
|
|
774
|
-
mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py,sha256=
|
|
790
|
+
mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py,sha256=VNq0dhoiQjVQ1E_-29-9J3-vkJ7dnQ5bpROeKeZKZpg,113
|
|
791
|
+
mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py,sha256=eyThmyTxKr8vI5BUu8sE4NjPxoFrh6CYrC6QcHW9cVY,8714
|
|
775
792
|
mindsdb/integrations/handlers/huggingface_api_handler/icon.svg,sha256=whd-gZx9HMMl9EvhQk0VK9p45RQD5PiJlv7Le3K3ORo,9064
|
|
776
793
|
mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt,sha256=VOb0WF-xUjIE1a7j3kUqIAzdFix4_0fp0E8zQK31poo,32
|
|
777
794
|
mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -779,10 +796,10 @@ mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api
|
|
|
779
796
|
mindsdb/integrations/handlers/huggingface_handler/__about__.py,sha256=B1bb52kL0iLViLiewWIK183GOKoe5Q0XJZvD66wXl24,353
|
|
780
797
|
mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=f-LxhPOlZsXjLDk7kgQZTwX49umR1z9QK2yUB3F5_EU,550
|
|
781
798
|
mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=gDf5yC-ot2IZdONMIcQ5bEvKMtk-nci5OcSYmvmEGQg,8085
|
|
782
|
-
mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=
|
|
799
|
+
mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=G12oo9QkYxjfri-Kv87ibYUFepkXWut5xQsw7T5KmdM,13602
|
|
783
800
|
mindsdb/integrations/handlers/huggingface_handler/icon.svg,sha256=yU820GpXed8h9CloppHH0D1-EJjrorSLlbjciV91b9k,9064
|
|
784
|
-
mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=
|
|
785
|
-
mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=
|
|
801
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=2G4Oe8xrMH9m7lWTVAiNNh6PxoG-yCQbgGlGAgWtnRU,160
|
|
802
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=5sarPnbe9SBzXhUJdW2a62g5SPFouS8Y-fylV-v6Juo,200
|
|
786
803
|
mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1dAcKyjEcuK1LSktqK_5tPLJzQGCNTs0GR9CMe8qTvk,984
|
|
787
804
|
mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
|
|
788
805
|
mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
|
|
@@ -796,7 +813,7 @@ mindsdb/integrations/handlers/ignite_handler/__about__.py,sha256=JCbuC9y4O67kV2W
|
|
|
796
813
|
mindsdb/integrations/handlers/ignite_handler/__init__.py,sha256=aOkkbYJsf_Lx8Mchu1P9qcuVlM2l3xLKMgcCFmtJGCE,603
|
|
797
814
|
mindsdb/integrations/handlers/ignite_handler/connection_args.py,sha256=vUXKE6OGKgOpmfcTO-btzDxiU6T6lJo0hbKkL8kxDNI,1432
|
|
798
815
|
mindsdb/integrations/handlers/ignite_handler/icon.svg,sha256=cWiLZ9OhSr8xaQOdvWA7olhSTVMVhosFecqhgkeOpvo,761
|
|
799
|
-
mindsdb/integrations/handlers/ignite_handler/ignite_handler.py,sha256=
|
|
816
|
+
mindsdb/integrations/handlers/ignite_handler/ignite_handler.py,sha256=gsOG4vcXuORIkG9ia0ecTkZsCFQ57IGWDBHffiaCiqs,6191
|
|
800
817
|
mindsdb/integrations/handlers/ignite_handler/requirements.txt,sha256=m7u5LbpqU24wb5b-DIZwt5JrhUEA89V3rEJpCxvOo5s,8
|
|
801
818
|
mindsdb/integrations/handlers/ignite_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
802
819
|
mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py,sha256=XB8VKfVcSogqCH0qLLuHFtKv9zvJijl8ppyodDa0bh8,1013
|
|
@@ -804,28 +821,28 @@ mindsdb/integrations/handlers/impala_handler/__about__.py,sha256=QGCeIOj7d-zhiZ2
|
|
|
804
821
|
mindsdb/integrations/handlers/impala_handler/__init__.py,sha256=UUqzynhwjdtR3C15SlEk4l1gWmcY2rwRZav4A-u6mBg,603
|
|
805
822
|
mindsdb/integrations/handlers/impala_handler/connection_args.py,sha256=7kEss06khoj028LHa5BJX_J98AzHWa6XsSHJl4bxhKM,1014
|
|
806
823
|
mindsdb/integrations/handlers/impala_handler/icon.svg,sha256=7B1XK3fvSTD9Qgt0BPC1VVZ3mT4-VJDee9-a5i5SLpM,3532
|
|
807
|
-
mindsdb/integrations/handlers/impala_handler/impala_handler.py,sha256=
|
|
824
|
+
mindsdb/integrations/handlers/impala_handler/impala_handler.py,sha256=yIw4mbgNN22O8VAjzWh_spXzi_zM0JEZEHNxTSoSxh0,4609
|
|
808
825
|
mindsdb/integrations/handlers/impala_handler/requirements.txt,sha256=zcKPuzs5i3hgQysOipGvPtdT9AeSdLXZ6CVeAOJ9vIk,6
|
|
809
826
|
mindsdb/integrations/handlers/impala_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
810
|
-
mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py,sha256=
|
|
827
|
+
mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py,sha256=nulFJCLGAxQ6nlcfmQHCUorF7DuDcQzKLUjg1SDfsXs,1552
|
|
811
828
|
mindsdb/integrations/handlers/influxdb_handler/__about__.py,sha256=egazk3dcKssZ-2IAe9Eg8Jt_3XHrp0biwnhxdViaPP4,350
|
|
812
829
|
mindsdb/integrations/handlers/influxdb_handler/__init__.py,sha256=-ElkaT108WoD5ubpZn0RM8aMRsi76JejqEUlzHc_sZA,514
|
|
813
830
|
mindsdb/integrations/handlers/influxdb_handler/icon.svg,sha256=pSGrm1cPk9DkoVdTNlX2gLvVYiWc14tpB3W6MVx1_zw,2681
|
|
814
|
-
mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py,sha256=
|
|
815
|
-
mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py,sha256
|
|
831
|
+
mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py,sha256=r8IZVgLIllb7x1kW4zIkbd2iKmwrT58ROjk1z04Qp7Q,3018
|
|
832
|
+
mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py,sha256=-K5BI7vge5KeLvaSVWmzetjsk74PtrewmHZxHbUpXPc,2926
|
|
816
833
|
mindsdb/integrations/handlers/influxdb_handler/requirements.txt,sha256=pnabyssMXTG6qyb-zFqe_n7PO62qTbVqCuAGGRsy5zM,16
|
|
817
|
-
mindsdb/integrations/handlers/informix_handler/__about__.py,sha256=
|
|
818
|
-
mindsdb/integrations/handlers/informix_handler/__init__.py,sha256=
|
|
834
|
+
mindsdb/integrations/handlers/informix_handler/__about__.py,sha256=4n25Q-5vIbtv_KuxRmmruhpc8yq2KzWvuCWUJgmbfrY,354
|
|
835
|
+
mindsdb/integrations/handlers/informix_handler/__init__.py,sha256=s7fptJ1Z5EpEckg_J4fca4UCM_kNicTKZdfY9M8_hgk,519
|
|
819
836
|
mindsdb/integrations/handlers/informix_handler/icon.svg,sha256=tDk36rxKSHxTWTgjJMKr2UZArLv52AVO55WwycxMRcw,3200
|
|
820
|
-
mindsdb/integrations/handlers/informix_handler/informix_handler.py,sha256=
|
|
837
|
+
mindsdb/integrations/handlers/informix_handler/informix_handler.py,sha256=uersEm-4Wbx9ZzVKfQRt4AM39UKeR7G3oPeAhRyoRmc,9474
|
|
821
838
|
mindsdb/integrations/handlers/informix_handler/requirements.txt,sha256=5FT1SNHRoxRCeEJzbulBeqnF3nwaE3yLbEmzbe07qYM,20
|
|
822
839
|
mindsdb/integrations/handlers/informix_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
823
|
-
mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py,sha256=
|
|
824
|
-
mindsdb/integrations/handlers/ingres_handler/__about__.py,sha256=
|
|
840
|
+
mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py,sha256=jrSKsgEtrtZWdWsUYF5IeWHp4-5pEdCUM-jG-LX_0po,1693
|
|
841
|
+
mindsdb/integrations/handlers/ingres_handler/__about__.py,sha256=jI6Q2QYOVWknPKsGN45YBgzkrRQPzJM7ixSOGv32Pfk,387
|
|
825
842
|
mindsdb/integrations/handlers/ingres_handler/__init__.py,sha256=CqmW9XrhEWgtP4p3Bzl-iHCbfbij1ymARg2RYxpNP4g,616
|
|
826
843
|
mindsdb/integrations/handlers/ingres_handler/connection_args.py,sha256=JPOvqMtKn8kZC9rCkVTYJKa-wMXg4AC3sAncUioRmXM,984
|
|
827
844
|
mindsdb/integrations/handlers/ingres_handler/icon.svg,sha256=0uFQrEkfHJjg5zryeUMvmiLJu_js5XtpI6bwu_QJBxo,2321
|
|
828
|
-
mindsdb/integrations/handlers/ingres_handler/ingres_handler.py,sha256=
|
|
845
|
+
mindsdb/integrations/handlers/ingres_handler/ingres_handler.py,sha256=ULIQIY2OCLHqAyIkNnwchGxrHIloXxcWMqmK7Vnki9g,6631
|
|
829
846
|
mindsdb/integrations/handlers/ingres_handler/requirements.txt,sha256=XxjyLM894_H9S0ORs3IwhWw8N4TN8pKZ7G3h834U6J0,30
|
|
830
847
|
mindsdb/integrations/handlers/ingres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
831
848
|
mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py,sha256=QOZsHp3SYvlH71sxXseQa63teRSukAmV44svwxObA_s,1817
|
|
@@ -843,11 +860,11 @@ mindsdb/integrations/handlers/jira_handler/__about__.py,sha256=qP5rGBzzyFBTJnGNC
|
|
|
843
860
|
mindsdb/integrations/handlers/jira_handler/__init__.py,sha256=-WxcLvQvLWii6lNY6-nlNwwkMBSMg8n97pleTAflrQY,509
|
|
844
861
|
mindsdb/integrations/handlers/jira_handler/icon.svg,sha256=mv8Ee-sh3YbNrGHgdQdgazMICVjU1StIu1Y41H9SjRc,1246
|
|
845
862
|
mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py,sha256=UXlwCX728lR_YZg4ipb7hkCyUcH710nIpPirR7s_xdA,2266
|
|
846
|
-
mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=
|
|
847
|
-
mindsdb/integrations/handlers/jira_handler/jira_tables.py,sha256=
|
|
863
|
+
mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=GCluOKeW8fe2ZyRljUENcbebVhLgj9vsSOmxpWYazHc,5334
|
|
864
|
+
mindsdb/integrations/handlers/jira_handler/jira_tables.py,sha256=xXx9t-EszV9CBDqZbjzgaYiPogDw9J7I_eVhy1WxlE0,7372
|
|
848
865
|
mindsdb/integrations/handlers/jira_handler/requirements.txt,sha256=vVWJtxeUJEMAttQBlw2Sd7la-QjEo7Vb1yfIKWighOs,20
|
|
849
866
|
mindsdb/integrations/handlers/kinetica_handler/__about__.py,sha256=t4T3AR68hK91GASSzoP8aWSbbtmszFC0-i7Nb8UVIgs,344
|
|
850
|
-
mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=
|
|
867
|
+
mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=A7cHYBXBpQUOqwEEmdbt93bnTbkRq37w_C5VKYxtpZA,605
|
|
851
868
|
mindsdb/integrations/handlers/kinetica_handler/connection_args.py,sha256=3AaekEw24nX7mmRsqrYfs0M4jCVQ4VvdRHQDFRBosxs,1682
|
|
852
869
|
mindsdb/integrations/handlers/kinetica_handler/icon.svg,sha256=nx3pfKWVp3gcwAxzVjosbSfjkciYSOBuNlhYXXsrg60,758
|
|
853
870
|
mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py,sha256=ilRmQSwjeyOcHJNQgZYy1Mr3ZHtVcbRjX5kAsW4Au9Q,327
|
|
@@ -869,11 +886,11 @@ mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py,sha
|
|
|
869
886
|
mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkObedPPwbyNl9tB0ygJN6qj0aPwPYI_fqc,345
|
|
870
887
|
mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
|
|
871
888
|
mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
|
|
872
|
-
mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=
|
|
889
|
+
mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=8dYeUKwMprSSwDmd5eV0MK_-6_xNqyK3HuhXWoiISGI,12840
|
|
873
890
|
mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=X3GMk6YUemVSiVvr0Rd2P2HerVhXFeL84yzrBgAiWHk,238
|
|
874
|
-
mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=
|
|
891
|
+
mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=61Akpoh4m2cRJR7TV5tCChQzr-C0oSdDXJajcVIcAqM,11066
|
|
875
892
|
mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
|
|
876
|
-
mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=
|
|
893
|
+
mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=BUu04qSc8FUVVXAlsAV74Dc4AppYJbuA-FiWd8ncciY,511
|
|
877
894
|
mindsdb/integrations/handlers/leonardoai_handler/icon.svg,sha256=KEKKFuyndNcw3pjatLgw2HL8qfoxTyKU1fl4821j04E,99151
|
|
878
895
|
mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py,sha256=O5QAZPLnotBtYWCZC8kIM11nMK79vBy09AFIZxWWHIc,8339
|
|
879
896
|
mindsdb/integrations/handlers/leonardoai_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -901,13 +918,13 @@ mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=byOltfkHeB
|
|
|
901
918
|
mindsdb/integrations/handlers/lightfm_handler/settings.py,sha256=0iwjsbfzYwBsCizVymXn-vwhOYrES7Hm0MEmiviGP4I,143
|
|
902
919
|
mindsdb/integrations/handlers/lightwood_handler/__about__.py,sha256=9SiT20BQuKEgzGSxhDunieyX33S5XS0cst9MxDfw-1o,345
|
|
903
920
|
mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfef9lCHd7293J6GEEZRXLP5Jp07KkvOc,504
|
|
904
|
-
mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=
|
|
921
|
+
mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=p3FXxafjrwa2Af6xkMO3MCOVLWxZEWfAmEu1sx0qIb8,9056
|
|
905
922
|
mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
906
|
-
mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=
|
|
923
|
+
mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=UuN1FUZrB292qZjGriQEbPly7vGBd8S-7DVNjqZAWRA,23596
|
|
907
924
|
mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=jEN0TN09G2-yFrr5FSEMjEVZFnkoS7nu2lJrJdjVBLI,91
|
|
908
925
|
mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
|
|
909
926
|
mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
910
|
-
mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=
|
|
927
|
+
mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=Mm68eznjSa55qxmbmR6mXtNfvPYAClIghMKJZ94IvE0,10963
|
|
911
928
|
mindsdb/integrations/handlers/lindorm_handler/__about__.py,sha256=2V9KbVFWmQ2v98va5Rz1dpmhgDWOZAYOF-wCy3cDQx0,338
|
|
912
929
|
mindsdb/integrations/handlers/lindorm_handler/__init__.py,sha256=jZNxAhQpnXT6u7E72ZFPugYsbH5Fw-TH_JbHWRDWEY4,534
|
|
913
930
|
mindsdb/integrations/handlers/lindorm_handler/icon.svg,sha256=Zj6gBi36Sf8YPQP0mYWr0YMznOeHdMNECasW_-C4o7g,1293
|
|
@@ -924,9 +941,9 @@ mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84
|
|
|
924
941
|
mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
|
|
925
942
|
mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
|
|
926
943
|
mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
|
|
927
|
-
mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py,sha256=
|
|
944
|
+
mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py,sha256=7QxPi037d4O1RSoJQGpPWVg0ZAJU4mAZl1NOjh4t2MQ,7844
|
|
928
945
|
mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=xoOq5UyUuLyAbii-dIMeUoLts_iloEsv6qM9KBe4cvs,101
|
|
929
|
-
mindsdb/integrations/handlers/llama_index_handler/settings.py,sha256=
|
|
946
|
+
mindsdb/integrations/handlers/llama_index_handler/settings.py,sha256=BnnqbiH7_kYe8al1O8Lw_p3Vfuvjhd6ccCtf8URQQks,2125
|
|
930
947
|
mindsdb/integrations/handlers/ludwig_handler/__about__.py,sha256=5pC8567sj_ZZW70dm7Chkc4He6-F8l5oUKE1W9V98Ck,343
|
|
931
948
|
mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7rK_zPFFAIHGjEsGR_rc2FK8r8HyM,536
|
|
932
949
|
mindsdb/integrations/handlers/ludwig_handler/functions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -953,42 +970,42 @@ mindsdb/integrations/handlers/materialize_handler/__init__.py,sha256=qmqjhRT_tlQ
|
|
|
953
970
|
mindsdb/integrations/handlers/materialize_handler/icon.svg,sha256=eW4-LaqQNx5EafDYyIQ5Pbb5BRukc_ucVznSaNl9kxI,2689
|
|
954
971
|
mindsdb/integrations/handlers/materialize_handler/materialize_handler.py,sha256=Rcrm-agBunQvS169phBqcAYjaPdbf-Z5k_4ewChaadg,1285
|
|
955
972
|
mindsdb/integrations/handlers/materialize_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
956
|
-
mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py,sha256=
|
|
973
|
+
mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py,sha256=SDzmHE6za1rvfokfFg5NG9Shb4hhXW6F6YS5SNF_8Fk,1743
|
|
957
974
|
mindsdb/integrations/handlers/matrixone_handler/__about__.py,sha256=KOZEaZHRuygfVIaMa6eLg1JVc1Q1I29NTMUKEcUeWyQ,349
|
|
958
975
|
mindsdb/integrations/handlers/matrixone_handler/__init__.py,sha256=L03K4CVKdm39mrmHsU69VSlUvcMTWwFyS6hm3JVMIUc,608
|
|
959
976
|
mindsdb/integrations/handlers/matrixone_handler/connection_args.py,sha256=opm2teKIjCkiu3g_y7yBhVSfDjhm-1AWQ2k1M3tQWcw,1514
|
|
960
977
|
mindsdb/integrations/handlers/matrixone_handler/icon.svg,sha256=cK7b_17ULqrgVpt25DIxysj66Uvy7NavFgCsFIVztpg,1573
|
|
961
|
-
mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py,sha256=
|
|
978
|
+
mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py,sha256=1tlj7hJb4yCtIrhlO3aFE410RjFECa1BNLeW-2KxiAs,5426
|
|
962
979
|
mindsdb/integrations/handlers/matrixone_handler/requirements.txt,sha256=IKlV-f4o90sOdnMd6HBvo0l2nqfJOGUzkwZeaEEGuRg,8
|
|
963
980
|
mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
964
|
-
mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py,sha256=
|
|
981
|
+
mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py,sha256=TR6lwB-RkAL5zL5kTtisSiQIULJWkxmdjNvhFd7tWJE,1764
|
|
965
982
|
mindsdb/integrations/handlers/maxdb_handler/__about__.py,sha256=nDz8qDfeQKaF0HKC9IVxYyHlOrXTsL7n9jbn195frF0,355
|
|
966
983
|
mindsdb/integrations/handlers/maxdb_handler/__init__.py,sha256=XCc-TQtkecXdDnYN7_vq_Fy4ZB8SJOJTf0bKpDTjOxY,629
|
|
967
|
-
mindsdb/integrations/handlers/maxdb_handler/connection_args.py,sha256=
|
|
984
|
+
mindsdb/integrations/handlers/maxdb_handler/connection_args.py,sha256=EklXmJRXp3dyPLoicbdCLat7jXRZosQBkf0cVMFQON8,1197
|
|
968
985
|
mindsdb/integrations/handlers/maxdb_handler/icon.svg,sha256=7jODNJNSaNSUNoYan37vYjmlcxW_vKEjihtAlYALfvs,2141
|
|
969
|
-
mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py,sha256=
|
|
986
|
+
mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py,sha256=k39A9Doq0bfP1puBRjaNCGmGYaVAKh730uNSN3EBT0M,6274
|
|
970
987
|
mindsdb/integrations/handlers/maxdb_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
|
|
971
988
|
mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
972
989
|
mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py,sha256=SCan0bNQflgAI8TkLaB2fDthVvLD782hfKjk5MBVZe8,1905
|
|
973
990
|
mindsdb/integrations/handlers/mediawiki_handler/__about__.py,sha256=Im8ti6Uspe9wQMPKlL-vIDcpbn1fnK6fpIGP1OafMxI,352
|
|
974
991
|
mindsdb/integrations/handlers/mediawiki_handler/__init__.py,sha256=v8i-YPI6G8RTEoHBWYmo8dOotG5GjMW2wO_J9LAbNF8,519
|
|
975
992
|
mindsdb/integrations/handlers/mediawiki_handler/icon.svg,sha256=Z4jCs-VpTi_pE42tWpR17KMnsqCFqLdRo1xohIQ03jw,18250
|
|
976
|
-
mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py,sha256=
|
|
977
|
-
mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py,sha256=
|
|
993
|
+
mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py,sha256=iCwaaHH_1PPb_mbB5Gjw5b6wZSevXl6DwsASDbd1p-8,2171
|
|
994
|
+
mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py,sha256=aUxwScoGep_WRDT3folNKw4ibKy4WYhQpO5-0ODl4vU,3300
|
|
978
995
|
mindsdb/integrations/handlers/mediawiki_handler/requirements.txt,sha256=f-jsIxP6w7iNJXPZPprQWJt8TJdUF8t-rd8LPI6BdGI,12
|
|
979
|
-
mindsdb/integrations/handlers/mendeley_handler/__about__.py,sha256=
|
|
980
|
-
mindsdb/integrations/handlers/mendeley_handler/__init__.py,sha256=
|
|
996
|
+
mindsdb/integrations/handlers/mendeley_handler/__about__.py,sha256=xxFjvdXr1iURhudTMYiJjmMoGjNCdRgqWeRuIEHBeP0,352
|
|
997
|
+
mindsdb/integrations/handlers/mendeley_handler/__init__.py,sha256=TWDZxQ2PxOPRo1iSHHRAAnr-M40ZzbHY6RZ2kon2obA,502
|
|
981
998
|
mindsdb/integrations/handlers/mendeley_handler/icon.svg,sha256=Y23EUrpYDjFkcfS3Skymo95cljxFfvWmFxpgC6pEmqY,2721
|
|
982
|
-
mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py,sha256=
|
|
983
|
-
mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py,sha256=
|
|
999
|
+
mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py,sha256=OOCmDZFbCQTey6ny38jL41_rVtP-PKePLdSq2YgWabc,8642
|
|
1000
|
+
mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py,sha256=K8pql75hTLX8OTxH22-WvAuXDujvKT1wa-LFup-w_h8,4305
|
|
984
1001
|
mindsdb/integrations/handlers/mendeley_handler/requirements.txt,sha256=5NtTuM0F-GT1vXQ9TOHefy9jOMekxjCj1CTE_4R77H4,8
|
|
985
1002
|
mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
986
|
-
mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py,sha256=
|
|
1003
|
+
mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py,sha256=O-bC4bOxEqcJQrM4ow5kdP3viCCIJtwsFmM3x16ZFnM,4256
|
|
987
1004
|
mindsdb/integrations/handlers/merlion_handler/__about__.py,sha256=GTZx3ozWF2-uL8K-jkgoTQfa1oubMo6cta8q9_KUr28,340
|
|
988
1005
|
mindsdb/integrations/handlers/merlion_handler/__init__.py,sha256=Vnsx6LfB2MjP74BOFz3hh9gwx9mUwCcGE8pa59rU5WA,496
|
|
989
1006
|
mindsdb/integrations/handlers/merlion_handler/adapters.py,sha256=AHJTqMaeZccLdSPJJL8-z_7hW9yvWduKsKMx7AmagVw,8498
|
|
990
1007
|
mindsdb/integrations/handlers/merlion_handler/icon.svg,sha256=aKxzmbIlD4LQFGcK88UjXGKw4e6ijOe3y0h3JiebtCc,2657
|
|
991
|
-
mindsdb/integrations/handlers/merlion_handler/merlion_handler.py,sha256=
|
|
1008
|
+
mindsdb/integrations/handlers/merlion_handler/merlion_handler.py,sha256=hC9pptlqcTXRsntiHvlaj8Uq1KHFRv0pBodgbP4nVd4,8234
|
|
992
1009
|
mindsdb/integrations/handlers/merlion_handler/requirements.txt,sha256=LVD7uiS37M3s5euOJpdQ9PMWMSup4fa4l6SWkYZjx3k,40
|
|
993
1010
|
mindsdb/integrations/handlers/milvus_handler/__about__.py,sha256=x0vzyNeIFW7xPkANac4OjathpNcegTJGSKntWMgejE8,337
|
|
994
1011
|
mindsdb/integrations/handlers/milvus_handler/__init__.py,sha256=taILRcHeskllVItoKEXNbBBEHaxL4s3naNmx7p7Jt6Y,651
|
|
@@ -998,7 +1015,7 @@ mindsdb/integrations/handlers/milvus_handler/milvus_handler.py,sha256=m4RZFC2rgJ
|
|
|
998
1015
|
mindsdb/integrations/handlers/milvus_handler/requirements.txt,sha256=wP47AN-TxIWEvcmbiJPpShjUYg5dl2MMzdsoO_ZxmKo,14
|
|
999
1016
|
mindsdb/integrations/handlers/milvus_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1000
1017
|
mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py,sha256=y5XNkeYH2InRNiN_9DRnVCOBy79mX99W9wVffmFeo2Q,349
|
|
1001
|
-
mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py,sha256=
|
|
1018
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py,sha256=zmRTKYCBZGkC83QGO9yCIilHOtHQ5cwXhlNiWyQxXxw,609
|
|
1002
1019
|
mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
1003
1020
|
mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py,sha256=sNWU03rca17GkgdMi_UFEuzo6ATDqwIe2k1uJZuRC0g,4757
|
|
1004
1021
|
mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
|
|
@@ -1008,18 +1025,18 @@ mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_h
|
|
|
1008
1025
|
mindsdb/integrations/handlers/mlflow_handler/__about__.py,sha256=RwGes8LTCMNXSgxng8eFSvVnQdYuM3f8fBdooQ_WW6U,336
|
|
1009
1026
|
mindsdb/integrations/handlers/mlflow_handler/__init__.py,sha256=xSY2LlXwQe30h_8sHSjqIDyrUON4jV6xaUHj7qO8fZs,579
|
|
1010
1027
|
mindsdb/integrations/handlers/mlflow_handler/icon.svg,sha256=-K-ZAaguq8fBoIUzBtmPjmfFQYneuoqaF4E1tMPox5w,1154
|
|
1011
|
-
mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py,sha256=
|
|
1028
|
+
mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py,sha256=rvzOnMuK46FuBwsHRBD0DNxTqx3o2cHqRFl4ZHl1On0,4123
|
|
1012
1029
|
mindsdb/integrations/handlers/mlflow_handler/requirements.txt,sha256=wm8UqYyUHI21EvrTDHb3eYICy0dOVDLBhAL-jp5zbuI,7
|
|
1013
|
-
mindsdb/integrations/handlers/monetdb_handler/__about__.py,sha256=
|
|
1014
|
-
mindsdb/integrations/handlers/monetdb_handler/__init__.py,sha256=
|
|
1015
|
-
mindsdb/integrations/handlers/monetdb_handler/connection_args.py,sha256=
|
|
1030
|
+
mindsdb/integrations/handlers/monetdb_handler/__about__.py,sha256=aWjion1UbVN_C-K9gxydLJiZpv2TfrAJHLSrxO4Xw3c,343
|
|
1031
|
+
mindsdb/integrations/handlers/monetdb_handler/__init__.py,sha256=_T-6GpzgzI9bbuqKKtIUcmBfRncPCeKSvHNliPdaNhw,635
|
|
1032
|
+
mindsdb/integrations/handlers/monetdb_handler/connection_args.py,sha256=tYHHm8FPTQWlRSxArJPGyFLcAzC-u-z3b5LeVjTrois,1171
|
|
1016
1033
|
mindsdb/integrations/handlers/monetdb_handler/icon.svg,sha256=_Yrcx_2YctQ_UYUCha5xUxo8AF2gJhMXSKXajROJbhA,611
|
|
1017
|
-
mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py,sha256=
|
|
1034
|
+
mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py,sha256=A0BV1xzH2aZYHSMK0hJmIjNb3D5nWKk6N5neAvzIQmA,6872
|
|
1018
1035
|
mindsdb/integrations/handlers/monetdb_handler/requirements.txt,sha256=3fXn4kTvoUNAZ3Lf65ApFHB4tCgYUVXY_rOEiHKc7sw,28
|
|
1019
1036
|
mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1020
|
-
mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py,sha256=
|
|
1037
|
+
mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py,sha256=SIJY1GlhpkfV8CvPLayuQhRhSeGJAFUKv-9sgztaaFY,1603
|
|
1021
1038
|
mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1022
|
-
mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py,sha256=
|
|
1039
|
+
mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py,sha256=Gmtj12Lq11VBFnk485jRXxAE7q3IIJ638Q-XEV5EVKQ,1129
|
|
1023
1040
|
mindsdb/integrations/handlers/mongodb_handler/__about__.py,sha256=umKxXuUAypdohvLd96NtqFO1JJ8Wjl6xqOo2W0jOcA4,339
|
|
1024
1041
|
mindsdb/integrations/handlers/mongodb_handler/__init__.py,sha256=iENrcoLHevbky-eZHcnKRqyZbg3DvPmSMlQtf1KyshQ,601
|
|
1025
1042
|
mindsdb/integrations/handlers/mongodb_handler/connection_args.py,sha256=kqrTEM14g291rR0SlgsNyHc-leRuSIw2fi1iLR0oQbI,1347
|
|
@@ -1029,54 +1046,53 @@ mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py,sha256=47DEQpj8H
|
|
|
1029
1046
|
mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py,sha256=764dX8lCUGjkoZgu8CXvVvg9SuLXiMIuspQV0cxX07Y,3868
|
|
1030
1047
|
mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1031
1048
|
mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py,sha256=W1LzgaH60dJr9HWhgIY6P3EttuttOPxcozNQvEY9azk,8923
|
|
1032
|
-
mindsdb/integrations/handlers/monkeylearn_handler/__about__.py,sha256=
|
|
1033
|
-
mindsdb/integrations/handlers/monkeylearn_handler/__init__.py,sha256=
|
|
1049
|
+
mindsdb/integrations/handlers/monkeylearn_handler/__about__.py,sha256=Hp2Vfuhlac2IketBCHU82XTg1s5svR5PdbeTXX9D9x4,356
|
|
1050
|
+
mindsdb/integrations/handlers/monkeylearn_handler/__init__.py,sha256=55jADklA9zLFmTtoBtAPWYegsgluG6WzFomoh5vkKQM,512
|
|
1034
1051
|
mindsdb/integrations/handlers/monkeylearn_handler/icon.png,sha256=RuKBcb_iTZoldGb3U5GDxemB49E9ALC8uZbIoMY54BI,14734
|
|
1035
|
-
mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py,sha256=
|
|
1036
|
-
mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt,sha256=T_nkUvOkkl0BSWXQAIDqh4a3gNW8aVTYuhMGYDnJ1jE,19
|
|
1052
|
+
mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py,sha256=99zEzCFP-_lBHnpXaUsp6RJOR-XvZPFONQlcXUkEj2c,3530
|
|
1037
1053
|
mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py,sha256=rUQ0p9bqHSjpEgXe9T-Hq-bfGrMHIU5Rmiwt-orDOCk,369
|
|
1038
1054
|
mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py,sha256=vraI6WlfpNk0C_D0wQH7Wxxy7zpI57rOp2t2XPgHuSk,533
|
|
1039
1055
|
mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z2hQUMEyyP8DUmhgUtjvsfN3HU2EBes,2430
|
|
1040
|
-
mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=
|
|
1041
|
-
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=
|
|
1056
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=BE_33QGV5BDRJ55HQben-PCpzI55Ns4DKYKW3QnLLYA,3517
|
|
1057
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=uzJz0O7ofHcsICFE-fsQS10UrqnVvDjXk1ul3FsQb6s,9343
|
|
1042
1058
|
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=rBD6sEli8XP-cxTogFu2J7ScO_WTw1gM-6gZm2P8lsc,2802
|
|
1043
1059
|
mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt,sha256=8R8PuNfdoud8HqxiFGWQGPxloaJqw_qmF0a8blYJPIs,89
|
|
1044
1060
|
mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
|
|
1045
1061
|
mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
|
|
1046
1062
|
mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
|
|
1047
|
-
mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=
|
|
1048
|
-
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=
|
|
1049
|
-
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py,sha256=
|
|
1063
|
+
mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=nrBxokTdhD3-2J8Wvxl6wSULfgHp77Zt6eEwrharGgY,15734
|
|
1064
|
+
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=XYsB-iQa11j-MctJlSyDUj-TZkPpGCaAGRgEPo_oOkc,9823
|
|
1065
|
+
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py,sha256=hkhu2rhB8Nz0zdt5cHbuQX5CmB2njdpE1_Nukse37W0,13054
|
|
1050
1066
|
mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=6jx_GtaB_5uRpqmcNBJwBgPzPMMe9ygj4bRLE2zkwCw,130
|
|
1051
1067
|
mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWRxOrMuktBneTm9JRLeGkZiSSH-EQ,363
|
|
1052
1068
|
mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
|
|
1053
1069
|
mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
|
|
1054
1070
|
mindsdb/integrations/handlers/mssql_handler/icon.svg,sha256=CMPDc66jCYyao_ui5eRds92raysDIMNuhIs59Tvbk_8,11944
|
|
1055
|
-
mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=
|
|
1071
|
+
mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=1kuYNAAm_OjsblBiZLEQlEA2tli9rjEIO7vSijdAuQM,11758
|
|
1056
1072
|
mindsdb/integrations/handlers/mssql_handler/requirements.txt,sha256=U59auV3ZAxBGXdMbyXxdRI3LTfCICvZVZWKWMnLUlwA,17
|
|
1057
1073
|
mindsdb/integrations/handlers/mssql_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1058
1074
|
mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py,sha256=gh8t3ft5Xy-EZ3Rfk1oopojQTrbc_DDE-uAlWpeH-8E,6010
|
|
1059
|
-
mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=
|
|
1060
|
-
mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=
|
|
1061
|
-
mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256
|
|
1075
|
+
mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=6kvzqW7nBK7T6fWasLd0kSRXltGkk6xH2PTkxZ46GgA,333
|
|
1076
|
+
mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=vE9F5Fi6Xgpfpsy6ABbIdeHMbD0do4nHqvq8B94IvJU,627
|
|
1077
|
+
mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=btTVpawoIuruXOjAI7Ycmcega2Xgu7P8gSr1iz4lUew,2278
|
|
1062
1078
|
mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
|
|
1063
|
-
mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=
|
|
1079
|
+
mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=Ck5R0vV9EBbRFifjrVb8BrOEBndryI4o8QCNlmEGNXo,10981
|
|
1064
1080
|
mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
|
|
1065
|
-
mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=
|
|
1081
|
+
mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=lC3KC5pr_IDeM9_hkAFkdui1INrin5ab_zKLOITxWbM,1722
|
|
1066
1082
|
mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
|
|
1067
1083
|
mindsdb/integrations/handlers/neuralforecast_handler/__init__.py,sha256=0SNrc82F2GXSyAjgTW8hg7w4DeOv_5FRgPpqLXAOJmE,520
|
|
1068
1084
|
mindsdb/integrations/handlers/neuralforecast_handler/icon.svg,sha256=HKtmkuQG4MUNFXbPtRvDi5E83rEFV9jrCB0dllAY78M,587
|
|
1069
|
-
mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py,sha256=
|
|
1085
|
+
mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py,sha256=bpkyDASHKXbvK8bLWpqlyap-xmNXc4qYwomqR9VEACE,6369
|
|
1070
1086
|
mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt,sha256=QqpZHr3q1Sa0nKkAP6wUTL8t09509U_ZM08AzB7r6NQ,47
|
|
1071
1087
|
mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt,sha256=sZ8ZY1L1kcdEkQh5pFcTdhRv4GFg9d0KhbkNnR1dliw,47
|
|
1072
1088
|
mindsdb/integrations/handlers/newsapi_handler/__about__.py,sha256=_gzxz-dUmjrc5xXwMJIViKH1OfnYlc7QdhWB2G98TyY,348
|
|
1073
1089
|
mindsdb/integrations/handlers/newsapi_handler/__init__.py,sha256=IRtuDlckj4oizdLfMnTgg5XPKF0WiJ2t_DqC6qZ8T4c,656
|
|
1074
1090
|
mindsdb/integrations/handlers/newsapi_handler/connection_args.py,sha256=JWc8heNZZiSCUJwfFZwHwsAyymMPPjvM-4OzYaqXwuo,351
|
|
1075
1091
|
mindsdb/integrations/handlers/newsapi_handler/icon.png,sha256=wL8QtDMhHOTX34hnWhCK3N0fRnz6HE_OQHJoVWB5wKs,2790
|
|
1076
|
-
mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py,sha256=
|
|
1092
|
+
mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py,sha256=6BaK-xWp-ChLysetelS4jYkuUb-2vE3VWhv6PsM1uGc,6861
|
|
1077
1093
|
mindsdb/integrations/handlers/newsapi_handler/requirements.txt,sha256=ZMZx7R-ofhzidSHeGcVTwBPe4M-2uV2DhgqEzkMggAI,14
|
|
1078
1094
|
mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1079
|
-
mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py,sha256=
|
|
1095
|
+
mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py,sha256=vK1bDzGFe6xv49GaGg5KxMi4aqfucELCDy0TOGKvWZ4,3164
|
|
1080
1096
|
mindsdb/integrations/handlers/notion_handler/__about__.py,sha256=8PzWcQ8EwUJJP85c0ULZiqA7yJ_ORag4s24Zb_LoCRU,332
|
|
1081
1097
|
mindsdb/integrations/handlers/notion_handler/__init__.py,sha256=g7OgmHmkIkFSVVRj2p2qC0moiMJojYhR6zeUlICpFPM,575
|
|
1082
1098
|
mindsdb/integrations/handlers/notion_handler/icon.svg,sha256=SjnxMq53m3RYhjSpFTgCHqsyjfAPug7icx4pDesx_7c,2157
|
|
@@ -1094,19 +1110,19 @@ mindsdb/integrations/handlers/npm_handler/npm_tables.py,sha256=MzIZoLtxP8hPbP8iy
|
|
|
1094
1110
|
mindsdb/integrations/handlers/npm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1095
1111
|
mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py,sha256=-FwuMgPnwPq-V_KO9FYoEF2o3haiPwvrVlJs3q5r0Vw,336
|
|
1096
1112
|
mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py,sha256=paftrrmbebUGH5cIoDhZa4rZaeC2U30_qMhmx367W9E,597
|
|
1097
|
-
mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py,sha256=
|
|
1113
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py,sha256=nv4T7nIfb7eVkWcYTZ8PFbev1FwlZwaqBxxpl1uCHcA,2294
|
|
1098
1114
|
mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg,sha256=ZDedx7Q5AiSvVkgsmUp7e_0nA_pMmV4oIq9PySEwy8U,430
|
|
1099
|
-
mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py,sha256
|
|
1115
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py,sha256=jlTgIdClmO0wEKY_1iTa2J4nsHBsnJPl1EBkkFxtWBQ,7516
|
|
1100
1116
|
mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
|
|
1101
1117
|
mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1102
|
-
mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py,sha256=
|
|
1118
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py,sha256=jf3aGFmjoZMKy-27-GYwnEhTto6XqNx9xEjiAuqZT1Q,1607
|
|
1103
1119
|
mindsdb/integrations/handlers/oceanbase_handler/__about__.py,sha256=S_N-F0kLk-rHk5cFhaBoxoefgNyCVROw9m-AhnqIfPg,349
|
|
1104
1120
|
mindsdb/integrations/handlers/oceanbase_handler/__init__.py,sha256=yu63QADQtwN8sSl-tOm0mmtj6xuQE4y5W3paYwJrwNA,493
|
|
1105
1121
|
mindsdb/integrations/handlers/oceanbase_handler/icon.svg,sha256=Qn_vch2K3SZ4_AIboy6YJviOh2jy12ayL3wlxqNe_Eo,2615
|
|
1106
|
-
mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py,sha256=
|
|
1122
|
+
mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py,sha256=dgRDDDjTQJ2UO3qlNxpSGmtj08t7xPyFz1buhHGgTqk,1292
|
|
1107
1123
|
mindsdb/integrations/handlers/oceanbase_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1108
1124
|
mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1109
|
-
mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py,sha256=
|
|
1125
|
+
mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py,sha256=2HAV-2VjoBfuTp4wpRbjvA7iaooYDXsNfI9Khixicdw,1710
|
|
1110
1126
|
mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py,sha256=GRLp7ZSDZhp79nBWuiL2q9iAzXCt2K5ET183uUTURWs,353
|
|
1111
1127
|
mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py,sha256=QBbvBtdXouX1ycjlnmSe-2s2BQqxjFpN0l405Xav6m0,651
|
|
1112
1128
|
mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py,sha256=Zs5TByom5GYzon8q6LlpACtwT1LRhtr9oVItLheiTJU,409
|
|
@@ -1117,7 +1133,7 @@ mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py,sha256=P
|
|
|
1117
1133
|
mindsdb/integrations/handlers/ollama_handler/__about__.py,sha256=iMlpDUjfee6lBQ7ceSf__Idg-1KDWYfN4dlq0LzQuQg,336
|
|
1118
1134
|
mindsdb/integrations/handlers/ollama_handler/__init__.py,sha256=imwsmeuGX1gkPAzQJR-ZYXKGmV16_yybIWM0PiwALCo,492
|
|
1119
1135
|
mindsdb/integrations/handlers/ollama_handler/icon.png,sha256=Uetj2OTGPx-taxPKdD33uuVttZO62o9zB1IW6PxiVPE,113588
|
|
1120
|
-
mindsdb/integrations/handlers/ollama_handler/ollama_handler.py,sha256=
|
|
1136
|
+
mindsdb/integrations/handlers/ollama_handler/ollama_handler.py,sha256=kkIAlQtMq8fiQ0JOP4k-m7AFRBYu86BnK6derw_3YT0,7248
|
|
1121
1137
|
mindsdb/integrations/handlers/openai_handler/__about__.py,sha256=CHoor6pfv6jc7Lfp8SZYiRlHoCwA-QM0PYRqvIRNSEc,336
|
|
1122
1138
|
mindsdb/integrations/handlers/openai_handler/__init__.py,sha256=2oicF7rVoEJTh-_p_7bpmh3shHYL2zZr4tPj0ZDXeCI,621
|
|
1123
1139
|
mindsdb/integrations/handlers/openai_handler/constants.py,sha256=szFwNnhFO8g_XJh8DnqxlrmZh9YTkiTiCpvAI0txZak,1356
|
|
@@ -1141,9 +1157,9 @@ mindsdb/integrations/handlers/opengauss_handler/connection_args.py,sha256=djyHDw
|
|
|
1141
1157
|
mindsdb/integrations/handlers/opengauss_handler/icon.svg,sha256=8BPamScxKmfX5Z8fOLHLfClhLvHOq8bHG8BDzGIUD1s,1758
|
|
1142
1158
|
mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py,sha256=NnWs_KPO_YwZerErE7pHS-WddF64wwFgjO9ZJ9YgX34,329
|
|
1143
1159
|
mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1144
|
-
mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py,sha256=
|
|
1160
|
+
mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py,sha256=TYV-jzdujQLWEUc1G8e_5onxF9sK8UMOeXlDoqDPuKE,1350
|
|
1145
1161
|
mindsdb/integrations/handlers/openstreetmap_handler/__about__.py,sha256=3RDQ9NOdLjcvJPu_L2jMUt_8DzBta_xrczUOuTDlc_E,365
|
|
1146
|
-
mindsdb/integrations/handlers/openstreetmap_handler/__init__.py,sha256=
|
|
1162
|
+
mindsdb/integrations/handlers/openstreetmap_handler/__init__.py,sha256=n0iCCdhTDJzpgVRTTGpZzNlw0oHWS9mYRfPqmtR8QF0,535
|
|
1147
1163
|
mindsdb/integrations/handlers/openstreetmap_handler/icon.svg,sha256=5hoDC6qGLkl9sx_MYWHZrPvdInB7AGUNrjDoIOh9Qoo,4496
|
|
1148
1164
|
mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py,sha256=7WGZ2vPr35ROcXLSYQSkgHspDqJj31mVrvaq_i1gA6I,2657
|
|
1149
1165
|
mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py,sha256=U8DxNHv0Kiw14qIQBcMRuU8jUJMRZlsKP1IkIiDHgH0,7765
|
|
@@ -1152,9 +1168,9 @@ mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py,sha256=47D
|
|
|
1152
1168
|
mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py,sha256=Y54Bmy0WEMtWuA8tLEuqYisytrrctanPEFgeuQ_b1dQ,1228
|
|
1153
1169
|
mindsdb/integrations/handlers/oracle_handler/__about__.py,sha256=IIt4NVwQ52K79l7v7lc4andzcy6iiodvfjlAvQdHiCQ,354
|
|
1154
1170
|
mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=9U8p9zE7yi32hWtWEQTFcVz5CSgAGlu6E9C-hPf_tBE,629
|
|
1155
|
-
mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=
|
|
1171
|
+
mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=EXsizLXCjKijmhqu8QM77QuhMrUiYuAg_jarKOTE_Kc,2191
|
|
1156
1172
|
mindsdb/integrations/handlers/oracle_handler/icon.svg,sha256=43yVX7g6fI4SLk9h23xsJvzLl9fMOfiKlQ4aNyQ3yxU,537
|
|
1157
|
-
mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=
|
|
1173
|
+
mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=nTjTftUura00bxtlJ4Q3M4A3VKguyVuUSvzN52Ln6fw,14287
|
|
1158
1174
|
mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=6My_yqlFsKIvJvanjJc8usHiQ5Ax_rKaHrzNYNKC71c,16
|
|
1159
1175
|
mindsdb/integrations/handlers/oracle_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1160
1176
|
mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py,sha256=TjY4cZHMPUaLyusCTTHCRGC30pXDUqqM2vEjw2UqB1Q,1064
|
|
@@ -1164,29 +1180,29 @@ mindsdb/integrations/handlers/orioledb_handler/connection_args.py,sha256=JFKd8Cq
|
|
|
1164
1180
|
mindsdb/integrations/handlers/orioledb_handler/icon.svg,sha256=khiifOJbVeBcwWiQwHLp6QMuaX4i5NOTiFZ5ZQW4ECU,810
|
|
1165
1181
|
mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py,sha256=Zwn-t6gmnTsaV4QWQJ4_A7CWFTLBPmHpxaF0mMk7H-U,326
|
|
1166
1182
|
mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1167
|
-
mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py,sha256=
|
|
1168
|
-
mindsdb/integrations/handlers/palm_handler/__about__.py,sha256=
|
|
1169
|
-
mindsdb/integrations/handlers/palm_handler/__init__.py,sha256=
|
|
1183
|
+
mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py,sha256=np4FasdVouzaut3VStZ-3Sqs1JiHXSA0PI_b3qJUH1o,1716
|
|
1184
|
+
mindsdb/integrations/handlers/palm_handler/__about__.py,sha256=dYiciWuNZmYUD2TQ4INdwPJJiVoxMxzq8rJKJktv6wY,330
|
|
1185
|
+
mindsdb/integrations/handlers/palm_handler/__init__.py,sha256=u6FOilJhaeXRl770VxMq3oawwNI29hv4krTRri3_DIU,491
|
|
1170
1186
|
mindsdb/integrations/handlers/palm_handler/icon.svg,sha256=Xb82wnFVYT0l5faztB3oTYTfi-rIGkcvRDetK81nbJg,1485
|
|
1171
|
-
mindsdb/integrations/handlers/palm_handler/palm_handler.py,sha256=
|
|
1187
|
+
mindsdb/integrations/handlers/palm_handler/palm_handler.py,sha256=06G26sgMCVgCtHwk1cUJW0D6U5lBQjfyOV-bYFWCt_w,16685
|
|
1172
1188
|
mindsdb/integrations/handlers/palm_handler/requirements.txt,sha256=wKp4vDYyCwYpn1Dfpo-ahLr7zCLvydBkK-Hwv3MH52c,29
|
|
1173
1189
|
mindsdb/integrations/handlers/paypal_handler/__about__.py,sha256=eJUqtTCdMRDCDc0e22MPWbBV53QCuAtSIKmQPgcp0sU,343
|
|
1174
1190
|
mindsdb/integrations/handlers/paypal_handler/__init__.py,sha256=d5CYHhab_iHFnfz0ZSP9D8C-26K9uN11CCoJ4M0F-Y0,507
|
|
1175
1191
|
mindsdb/integrations/handlers/paypal_handler/icon.svg,sha256=M6piOj2CGQzqA24es1eEGNqMqNyavUO0JnAQQJo2Xn0,1833
|
|
1176
|
-
mindsdb/integrations/handlers/paypal_handler/paypal_handler.py,sha256=
|
|
1177
|
-
mindsdb/integrations/handlers/paypal_handler/paypal_tables.py,sha256=
|
|
1192
|
+
mindsdb/integrations/handlers/paypal_handler/paypal_handler.py,sha256=K5Fvegf4BAP0j6e0RYCmp_hcFJINX1E8sfrCVkeMTFE,3804
|
|
1193
|
+
mindsdb/integrations/handlers/paypal_handler/paypal_tables.py,sha256=btQaKoIQtI0v51-eVsfJ7dxXHcbf7JStUtNf8sRmgNQ,9865
|
|
1178
1194
|
mindsdb/integrations/handlers/paypal_handler/requirements.txt,sha256=-j6LjRFgj3aSEEyaARzXn95dQjJxjtyXRX0uKOGKSUg,13
|
|
1179
1195
|
mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8BhcEkBX8zHZASRKHTsD04JnTTYyFaWA5A,345
|
|
1180
1196
|
mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
|
|
1181
1197
|
mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
|
|
1182
1198
|
mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
|
|
1183
|
-
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=
|
|
1199
|
+
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=2Z_lEXByoLC2jluoKP1lD0YJn3PVpLnMDSXGeUtYgHE,23053
|
|
1184
1200
|
mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1185
1201
|
mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
|
|
1186
|
-
mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=
|
|
1202
|
+
mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=njwyWqUt8PmCISBN4KjcDnZPakbro1E5lSqTEEZbTO8,607
|
|
1187
1203
|
mindsdb/integrations/handlers/phoenix_handler/connection_args.py,sha256=ql5detlrKQP6ZePgYK6QnPjPJrpmw_GQBqgA8-LR5xA,1784
|
|
1188
1204
|
mindsdb/integrations/handlers/phoenix_handler/icon.png,sha256=8lmaL2c4b6wPtGyEhBY_x11cNWUUfWyGO7btp1iRqpM,43812
|
|
1189
|
-
mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py,sha256=
|
|
1205
|
+
mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py,sha256=xW7HL0EC0T4XJcD6LMHwgLzt6GqnuR3Xr5oLPgDfL1g,6994
|
|
1190
1206
|
mindsdb/integrations/handlers/phoenix_handler/requirements.txt,sha256=eqUy51tMW_d06Cs2sRDz8sHCF5yHOC1XcMFwthsKDfc,20
|
|
1191
1207
|
mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1192
1208
|
mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py,sha256=4CrciavIFEvjDLRDZ8xKQo96QpTWzKalSBBiQpH5BRU,1037
|
|
@@ -1198,10 +1214,10 @@ mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py,sha256=mRjWgH
|
|
|
1198
1214
|
mindsdb/integrations/handlers/pinecone_handler/requirements.txt,sha256=9VvkJSZPyG8l8V0QYvhOXRd7cj1EHVKji8zpdKvR-Vk,22
|
|
1199
1215
|
mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1200
1216
|
mindsdb/integrations/handlers/pinot_handler/__about__.py,sha256=CxF5ZlieeDDW0W8POUfJVq1XlMavk9q2zEn9PXbgjs4,353
|
|
1201
|
-
mindsdb/integrations/handlers/pinot_handler/__init__.py,sha256=
|
|
1217
|
+
mindsdb/integrations/handlers/pinot_handler/__init__.py,sha256=YjB9ir-F0pHf3z4NrJOnAhv61PAsg2TzUyr9Jh1g0hM,599
|
|
1202
1218
|
mindsdb/integrations/handlers/pinot_handler/connection_args.py,sha256=9oWFtv5vfZf_HsgSZGkuFn358Twmn4vTFfN4qYFrcSA,1595
|
|
1203
1219
|
mindsdb/integrations/handlers/pinot_handler/icon.svg,sha256=AZlN-V4za1cZSJgHcDiSxnHAGfHWURJngDI31Zt4-Mk,10555
|
|
1204
|
-
mindsdb/integrations/handlers/pinot_handler/pinot_handler.py,sha256=
|
|
1220
|
+
mindsdb/integrations/handlers/pinot_handler/pinot_handler.py,sha256=mFmHVmWBgFUwp4StwjFDFcViEKi8fLcretFCVPPKGVA,6995
|
|
1205
1221
|
mindsdb/integrations/handlers/pinot_handler/requirements.txt,sha256=jxLeePj-OklKWl1qyG7CpGrxluIl0RFrGtFAniWKXwc,7
|
|
1206
1222
|
mindsdb/integrations/handlers/pinot_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1207
1223
|
mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py,sha256=iyKkN2KXZQO1faw2z-C0-UCiLLo5b91h_LceM9-_5lA,1132
|
|
@@ -1213,15 +1229,15 @@ mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py,sha
|
|
|
1213
1229
|
mindsdb/integrations/handlers/plaid_handler/__about__.py,sha256=8TBy0mepwizi0HF6P1NePAbBHyQNzGeq3CQY6Ep96uI,337
|
|
1214
1230
|
mindsdb/integrations/handlers/plaid_handler/__init__.py,sha256=uboEmuYGsEOf5VsvXgMhWG3LyfHHjwXd3SgijtNnS9w,492
|
|
1215
1231
|
mindsdb/integrations/handlers/plaid_handler/icon.svg,sha256=atBMW32ERpCOyYNoA361LeYNx79PydyGPB3_KRjIgOc,1389
|
|
1216
|
-
mindsdb/integrations/handlers/plaid_handler/plaid_handler.py,sha256=
|
|
1217
|
-
mindsdb/integrations/handlers/plaid_handler/plaid_tables.py,sha256=
|
|
1232
|
+
mindsdb/integrations/handlers/plaid_handler/plaid_handler.py,sha256=DkFliw1xZTghJ9DJ_V4TGsMazdEqyAoRCKajQjlthXs,8035
|
|
1233
|
+
mindsdb/integrations/handlers/plaid_handler/plaid_tables.py,sha256=Dog_oQPiv6W4M2knRgr5adsWJrPE5B4loPZQfN8EXvo,5099
|
|
1218
1234
|
mindsdb/integrations/handlers/plaid_handler/requirements.txt,sha256=wNOPb2f61Lp9XAk0-rmqUr4xhlJFs-I7VBNS02wuPoo,12
|
|
1219
|
-
mindsdb/integrations/handlers/plaid_handler/utils.py,sha256=
|
|
1235
|
+
mindsdb/integrations/handlers/plaid_handler/utils.py,sha256=U0SJ01F3Xv4mS3sVAEv7J7jawIrSO9hiRFTHLL0pOUg,144
|
|
1220
1236
|
mindsdb/integrations/handlers/planetscale_handler/__about__.py,sha256=ZFE7rrd6Os1ep3a49zBpkMCFazDtvI_K7_EGHRa2tSY,351
|
|
1221
1237
|
mindsdb/integrations/handlers/planetscale_handler/__init__.py,sha256=cuM2ry8CRoMxejl7FjqH13YQfI04TMEiBK4AqOCHnkU,617
|
|
1222
1238
|
mindsdb/integrations/handlers/planetscale_handler/connection_args.py,sha256=5z7GXhlTy0H_9OZM4VL7jcPJLyVwN4iSbYe4epj72wA,1016
|
|
1223
1239
|
mindsdb/integrations/handlers/planetscale_handler/icon.svg,sha256=PNowYe4GZh4X-NTBx3Uu8oXfrTcy3spU_iwcn0a942c,391
|
|
1224
|
-
mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py,sha256=
|
|
1240
|
+
mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py,sha256=8OzLDd9lXsPpvBKWLION0br0zwHMubVxCtiVM0oGjRw,332
|
|
1225
1241
|
mindsdb/integrations/handlers/planetscale_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1226
1242
|
mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py,sha256=mJIqeNmkUTDg54Vipz6piPH5p2YoP5A07Ns8ZhBtjQo,388
|
|
1227
1243
|
mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py,sha256=i4yXTcit_hAOEcrnxL8nM8frP81zf4wXq4MbdVUCTiA,563
|
|
@@ -1229,7 +1245,7 @@ mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg,sha256=RnN
|
|
|
1229
1245
|
mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py,sha256=cZWfB3hBCoNOhrZ--aYBczI8cYbrrybvTgNzGMX4hRo,3117
|
|
1230
1246
|
mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt,sha256=vIzgVNcxRpbMMJtEjTxm_7TVHy7_v6atr3v-R4pw78k,7
|
|
1231
1247
|
mindsdb/integrations/handlers/portkey_handler/__about__.py,sha256=9x2OD2B_XjPHEtU9WgknXRZEN79nAO70UKYvjEKAwPY,343
|
|
1232
|
-
mindsdb/integrations/handlers/portkey_handler/__init__.py,sha256=
|
|
1248
|
+
mindsdb/integrations/handlers/portkey_handler/__init__.py,sha256=dOUsR5Vacl5rfNB6HkBVbRmdVP32fL-EwgfUnM0oS_k,581
|
|
1233
1249
|
mindsdb/integrations/handlers/portkey_handler/icon.svg,sha256=CqWYmE-XNzkWUYUvDUMy92aF2Jy1dqlOKLI3ZbvYAWA,1511
|
|
1234
1250
|
mindsdb/integrations/handlers/portkey_handler/portkey_handler.py,sha256=TrcJfF5yeJIpRhAycNRmJ_fi1Hd5RS_nbbz4OoQZq2U,2054
|
|
1235
1251
|
mindsdb/integrations/handlers/portkey_handler/requirements.txt,sha256=wjzruG3CMIRu7Vn-lTmSRbI9Dn8Je9STtMzkdb00Ljk,18
|
|
@@ -1237,9 +1253,9 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
|
|
|
1237
1253
|
mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
|
|
1238
1254
|
mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
|
|
1239
1255
|
mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
|
|
1240
|
-
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=
|
|
1256
|
+
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=GkggjAIMJ9WGJ4ord1y7FdECpyl3LySagr91Jy7WD9U,19648
|
|
1241
1257
|
mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1242
|
-
mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=
|
|
1258
|
+
mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
|
|
1243
1259
|
mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
|
|
1244
1260
|
mindsdb/integrations/handlers/pycaret_handler/__init__.py,sha256=U93z3BWS-ntj4nhuHjnZunw3K3oEgqHh5l18hA_DyIo,564
|
|
1245
1261
|
mindsdb/integrations/handlers/pycaret_handler/icon.png,sha256=zALpK46ynoWZAVadSu-vMrVA5jbpsGUY4-2ackLwOk4,10283
|
|
@@ -1262,25 +1278,25 @@ mindsdb/integrations/handlers/qdrant_handler/requirements.txt,sha256=5PoI_uItTqB
|
|
|
1262
1278
|
mindsdb/integrations/handlers/questdb_handler/__about__.py,sha256=weXXIZ9HI8thG0RfEVQGIK7cEUGxfEh2wElImcJhAhc,339
|
|
1263
1279
|
mindsdb/integrations/handlers/questdb_handler/__init__.py,sha256=JZAKIojr65atHm3V_hpDNtB7yT1qYnJLjt-ADeM6Rgs,485
|
|
1264
1280
|
mindsdb/integrations/handlers/questdb_handler/icon.svg,sha256=t0dSnSPKN2mv0ciNWsKETBgPgGmboxEq7yHdDOAmFBA,2029
|
|
1265
|
-
mindsdb/integrations/handlers/questdb_handler/questdb_handler.py,sha256=
|
|
1281
|
+
mindsdb/integrations/handlers/questdb_handler/questdb_handler.py,sha256=bbpFvzXpHaCeI1qKuWhp14VElO52BoEClPVMj7OQr10,2156
|
|
1266
1282
|
mindsdb/integrations/handlers/questdb_handler/requirements.txt,sha256=HGuEvKvrA6CsAGIzg_BbIUwsy_YWi87tzsCvqcX1ajs,8
|
|
1267
1283
|
mindsdb/integrations/handlers/questdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1268
|
-
mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py,sha256=
|
|
1284
|
+
mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py,sha256=mBvQmBq2klrPd5ATMu7Aqo52O1_A42nUeMUjUQkpmBw,1163
|
|
1269
1285
|
mindsdb/integrations/handlers/quickbooks_handler/__about__.py,sha256=UeCTBvtHTGR0Xabsn4wkx0doUKJPRfaIH3WgHM_6rgY,348
|
|
1270
1286
|
mindsdb/integrations/handlers/quickbooks_handler/__init__.py,sha256=gG215ZGlhdBM3UJkt9VmbENaefQCaIQL9AXWjqyaqeI,512
|
|
1271
1287
|
mindsdb/integrations/handlers/quickbooks_handler/icon.svg,sha256=LwOkRzgobIrDcToWQo_ProJ2u1ai0OYgwjiF4Exli-w,1289
|
|
1272
|
-
mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py,sha256=
|
|
1273
|
-
mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py,sha256=
|
|
1288
|
+
mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py,sha256=v5oo2p7EKBWqUFYSvgxYgi1aIJLgMirX7UJJ96j_HH8,3309
|
|
1289
|
+
mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py,sha256=QZgLx1WBD2-ZeeLk1aLjBLVpEKMZ5cfQf5vh72dMUCo,13275
|
|
1274
1290
|
mindsdb/integrations/handlers/quickbooks_handler/requirements.txt,sha256=bkFLX7l8c7R9-fZFnxgKDON3rqNxV503j3PXW-BQ_og,6
|
|
1275
1291
|
mindsdb/integrations/handlers/rag_handler/__about__.py,sha256=L6sE0_ZF9S4f5pmJjt5qa974dmekriF7876FZdXnvcU,369
|
|
1276
1292
|
mindsdb/integrations/handlers/rag_handler/__init__.py,sha256=mfFU3tWa66-hWoih8YRdr6FrF7KNv2xUsHs6Z326Mko,517
|
|
1277
1293
|
mindsdb/integrations/handlers/rag_handler/exceptions.py,sha256=uRHei8e_2oa7uBgMXQyEM9oTDjczBbyTODeu6R426v8,337
|
|
1278
1294
|
mindsdb/integrations/handlers/rag_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
1279
|
-
mindsdb/integrations/handlers/rag_handler/ingest.py,sha256=
|
|
1295
|
+
mindsdb/integrations/handlers/rag_handler/ingest.py,sha256=oLUFPhILDU4BK1mtpio72CKktkJxod3FsQQ7iymmLiQ,5875
|
|
1280
1296
|
mindsdb/integrations/handlers/rag_handler/rag.py,sha256=4PtyArS3tt4hzvjejR_9hq_W37MKop3h9XVkSFgqe2o,4764
|
|
1281
|
-
mindsdb/integrations/handlers/rag_handler/rag_handler.py,sha256=
|
|
1297
|
+
mindsdb/integrations/handlers/rag_handler/rag_handler.py,sha256=zfBiNmPs_OG9d1OHi79S4jVoThfPrFZbPUlLFZOu79g,5401
|
|
1282
1298
|
mindsdb/integrations/handlers/rag_handler/requirements.txt,sha256=_7K_npewsQgRtUH_S-COwkUJ35urOaKDSEJsZZItr20,185
|
|
1283
|
-
mindsdb/integrations/handlers/rag_handler/settings.py,sha256=
|
|
1299
|
+
mindsdb/integrations/handlers/rag_handler/settings.py,sha256=rnn4jMyS427EAYN63b9-PTqAKjm2FVm6P4xMN2RuIRE,15626
|
|
1284
1300
|
mindsdb/integrations/handlers/ray_serve_handler/__about__.py,sha256=42oqKM1C-nIisvPvAL5fIxBDP-rxEduXnGrUUjrfLIU,345
|
|
1285
1301
|
mindsdb/integrations/handlers/ray_serve_handler/__init__.py,sha256=MYDLydWeimQ74znwnrrgnh9S6YgtE7UnJcYBVlWv6r8,596
|
|
1286
1302
|
mindsdb/integrations/handlers/ray_serve_handler/icon.svg,sha256=spxNMpiGLzxt46VM70-m-z4xButrIQ_dzLTarJKYSOA,1990
|
|
@@ -1288,8 +1304,8 @@ mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=TvaO
|
|
|
1288
1304
|
mindsdb/integrations/handlers/reddit_handler/__about__.py,sha256=Xp4s3kJp-REycH83S1RLSaPZHpFqbn-MjRuQZ5BpBuQ,336
|
|
1289
1305
|
mindsdb/integrations/handlers/reddit_handler/__init__.py,sha256=n3dhcPIHT_89hQxEXKQbHApOGBGQxtvWxp-fvFL083s,496
|
|
1290
1306
|
mindsdb/integrations/handlers/reddit_handler/icon.svg,sha256=JAhHkvjiEfOz_BSbBVosQs8VXegNanxdnNUNz1bHyRM,3986
|
|
1291
|
-
mindsdb/integrations/handlers/reddit_handler/reddit_handler.py,sha256=
|
|
1292
|
-
mindsdb/integrations/handlers/reddit_handler/reddit_tables.py,sha256=
|
|
1307
|
+
mindsdb/integrations/handlers/reddit_handler/reddit_handler.py,sha256=NaNmhIWHTUfbCF6XaIWnQPrtFOymtVlmxQhPVtEnQKA,3221
|
|
1308
|
+
mindsdb/integrations/handlers/reddit_handler/reddit_tables.py,sha256=fTkwwrgFCptkfhssPr_7nM5yvt-H-3t9HQcmXqdwzSY,6549
|
|
1293
1309
|
mindsdb/integrations/handlers/reddit_handler/requirements.txt,sha256=fr-1_smtJ1skff4zL826Kumcy_XKQ_THIPJ1lwTPqIM,4
|
|
1294
1310
|
mindsdb/integrations/handlers/redshift_handler/__about__.py,sha256=l9Ri3bz7eW3C5cp1UdSylSkLs8iWAoSH8H4foxb0Lb8,357
|
|
1295
1311
|
mindsdb/integrations/handlers/redshift_handler/__init__.py,sha256=CwcbbRYbQLXROfpRN3KOjqle2oEfOVkB1y-4h2HUOTs,631
|
|
@@ -1301,7 +1317,7 @@ mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py,sh
|
|
|
1301
1317
|
mindsdb/integrations/handlers/replicate_handler/__about__.py,sha256=2_18jFKOFO_515IYxchEJYQG77sR5MJTvOPUfZ_pjnU,349
|
|
1302
1318
|
mindsdb/integrations/handlers/replicate_handler/__init__.py,sha256=zQ9LKlq8v86y64-gjITtCsVuYO2cmOKZ39f3RlK_EYs,551
|
|
1303
1319
|
mindsdb/integrations/handlers/replicate_handler/icon.svg,sha256=56p1aqrvUXjoBcNd29dI5ZttA7IV7om95rDylErIzko,371
|
|
1304
|
-
mindsdb/integrations/handlers/replicate_handler/replicate_handler.py,sha256=
|
|
1320
|
+
mindsdb/integrations/handlers/replicate_handler/replicate_handler.py,sha256=MgX78U7ce-t7JJ32rCSQU0xaYjvTj5-WndmlYIHKJNs,6873
|
|
1305
1321
|
mindsdb/integrations/handlers/replicate_handler/requirements.txt,sha256=sjsGjIFCY5tCRuDpJJVIactIpN5fqbc5NaTEcjHOhKM,9
|
|
1306
1322
|
mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png,sha256=crRGtMnf3xzPy7U1fh9-2gqc52QhzNs1DlQkMx6TRtg,355320
|
|
1307
1323
|
mindsdb/integrations/handlers/replicate_handler/assets/groot.png,sha256=TxwVa0APOhGRQD8Ut36xnBgeFiReIxOKeqzjJrFKk9k,1314584
|
|
@@ -1310,18 +1326,18 @@ mindsdb/integrations/handlers/rocket_chat_handler/__about__.py,sha256=FdPpY1CH5g
|
|
|
1310
1326
|
mindsdb/integrations/handlers/rocket_chat_handler/__init__.py,sha256=Lfa_w0jgfGLpdlYbLf5YWS1DKJrEktvUF8JVvkydTe4,499
|
|
1311
1327
|
mindsdb/integrations/handlers/rocket_chat_handler/icon.svg,sha256=PXczKYqazHgTvOI_jbWbd8b0SWirVt7OVS3OJzMn8Eg,2492
|
|
1312
1328
|
mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt,sha256=iDoxDNf9uWvVT4X-a3kz4MLEqacKzCmd5mtV1eTmQ14,14
|
|
1313
|
-
mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py,sha256=
|
|
1314
|
-
mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py,sha256=
|
|
1329
|
+
mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py,sha256=x6thVWvE3E0FVk2vobNylnqf1DoLIBCH_myejkKAJHM,5251
|
|
1330
|
+
mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py,sha256=nlmFowKqiFDPsNraa7qokl2KtK8LoYBstM-hCKWIhUs,6272
|
|
1315
1331
|
mindsdb/integrations/handlers/rockset_handler/__about__.py,sha256=HCXICDPS1kDFOFXzRgD7eHKcJOjQCrc-RVf1ArGMEQU,342
|
|
1316
1332
|
mindsdb/integrations/handlers/rockset_handler/__init__.py,sha256=c3soxU78fuJzO0tQRZIwwOZIifTQXeiSq6Ez6zYZJ-k,601
|
|
1317
|
-
mindsdb/integrations/handlers/rockset_handler/connection_args.py,sha256=
|
|
1333
|
+
mindsdb/integrations/handlers/rockset_handler/connection_args.py,sha256=rYvw8MgsHJmLppcv2ZhFARWX__0cCM-IwF4jXBPzmt0,1045
|
|
1318
1334
|
mindsdb/integrations/handlers/rockset_handler/icon.svg,sha256=duxHx1t4AN_ggwucppIBTdgmcRH6yO5Ru84xU-wioX4,539
|
|
1319
1335
|
mindsdb/integrations/handlers/rockset_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1320
1336
|
mindsdb/integrations/handlers/rockset_handler/rockset_handler.py,sha256=DbaGbWFhzHB1o0VNTUOyp9Hu79MqwuffzGZbcjdBnGA,314
|
|
1321
1337
|
mindsdb/integrations/handlers/rockset_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1322
1338
|
mindsdb/integrations/handlers/rockset_handler/tests/test.png,sha256=foksCl8DjyzOxikbkTP_AdFEk3VHai6UJgQIzPihvpY,194064
|
|
1323
1339
|
mindsdb/integrations/handlers/rockset_handler/tests/test2.png,sha256=u4OFmvGERdC_7e91njNwQ44Yd46hNtaQ-yhpVIXSPOw,108141
|
|
1324
|
-
mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py,sha256=
|
|
1340
|
+
mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py,sha256=HkZCijNeQ5idzUQf3pwj9I09EmOlb3_vd1uUcUToFwE,1063
|
|
1325
1341
|
mindsdb/integrations/handlers/s3_handler/__about__.py,sha256=5_5F8HudwW0tS4NJfkodjzu0NmOfdLcw9eMPFj5aXP8,330
|
|
1326
1342
|
mindsdb/integrations/handlers/s3_handler/__init__.py,sha256=_tcu60ouXkbhS42OVG9UUSTbujkPiA7fzzu5QS-4iKM,587
|
|
1327
1343
|
mindsdb/integrations/handlers/s3_handler/connection_args.py,sha256=2zNyZx2ly5BZOfcoGRer-KvUyqN81BdQGy-v0UDfe2I,1531
|
|
@@ -1348,17 +1364,17 @@ mindsdb/integrations/handlers/scylla_handler/__init__.py,sha256=1Hn_nUReOm-KBULI
|
|
|
1348
1364
|
mindsdb/integrations/handlers/scylla_handler/connection_args.py,sha256=s93jwcTAMKjANKcevJHM86nshheVIoHdTTNEIYfu-Ss,1332
|
|
1349
1365
|
mindsdb/integrations/handlers/scylla_handler/icon.svg,sha256=yAOhsR8j8qQ_mwNGv22OwGQp553qg-IXqAXr3JOpeTE,9670
|
|
1350
1366
|
mindsdb/integrations/handlers/scylla_handler/requirements.txt,sha256=oak5VzU4W2taxZgdL4URrh_MJaYaNozZS3Amyk9vbT0,13
|
|
1351
|
-
mindsdb/integrations/handlers/scylla_handler/scylla_handler.py,sha256=
|
|
1367
|
+
mindsdb/integrations/handlers/scylla_handler/scylla_handler.py,sha256=YdDnuIccLCxRL70PqeVYxbNAEOBM4tNdQHeXsPCjaXE,7437
|
|
1352
1368
|
mindsdb/integrations/handlers/scylla_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1353
1369
|
mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py,sha256=GNCPWgfvKjik--BMF4tn4w0azPmNOTvHymKugnhML24,1290
|
|
1354
1370
|
mindsdb/integrations/handlers/sendinblue_handler/__about__.py,sha256=mNrBV_1MfkupAJVeDMrCR6lBUfXpRwn6XXmBQ922hGU,355
|
|
1355
1371
|
mindsdb/integrations/handlers/sendinblue_handler/__init__.py,sha256=9GNW50IOpUczJgBwFwUkIxAwHgcF_QnzvIm_M3vcPQU,523
|
|
1356
1372
|
mindsdb/integrations/handlers/sendinblue_handler/icon.svg,sha256=dgYCEWBM6Yj67OQVYaBb-13EucoE2CtQikprO2GanPY,2730
|
|
1357
1373
|
mindsdb/integrations/handlers/sendinblue_handler/requirements.txt,sha256=u6iN5asBaZDyg9vOw6OWq8dCvVV7w5fcli0dLedgilA,14
|
|
1358
|
-
mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py,sha256=
|
|
1359
|
-
mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py,sha256=
|
|
1374
|
+
mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py,sha256=4Ce7Y1XoDus4h2OyV2QtGkm8g90ChZKL2Uhi87B9X3g,2589
|
|
1375
|
+
mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py,sha256=6jfOevdBSl5KL1QfVvOIkfPu8CBGK7IwxmLP17LarGA,10823
|
|
1360
1376
|
mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py,sha256=gnGsZj1RtQnkRqj225n83FiyMhoifRg2t0-zUhZSz6M,394
|
|
1361
|
-
mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py,sha256=
|
|
1377
|
+
mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py,sha256=evSAH_KalqpI3Wlx59HdDDvXLiwIDQhmRfapwdRmNzs,606
|
|
1362
1378
|
mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg,sha256=Di1nWIp9lQK9xqiyU4XttTIB9bQj44JNRPbUG05xOGE,2691
|
|
1363
1379
|
mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt,sha256=YQ5L-FeZum2bJwIetXy8w0DVmriE3puvTJwsYIswXm8,61
|
|
1364
1380
|
mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py,sha256=9Tw-saClJANaocCdvWyf6Za6BI13VE7xq65SLxEmQdM,2692
|
|
@@ -1379,7 +1395,7 @@ mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py,sha256=47DEQp
|
|
|
1379
1395
|
mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py,sha256=xQ2ahguYDRXm_xuEiGVMa8uknJdgEyaBnocRxZ6t38o,1896
|
|
1380
1396
|
mindsdb/integrations/handlers/sheets_handler/__about__.py,sha256=9Sayal4tNbITvTgskEmn01QRvmeucON1435o0IKzSSI,356
|
|
1381
1397
|
mindsdb/integrations/handlers/sheets_handler/__init__.py,sha256=yTemBTQ6ptZ-WpFzaKL95MvHf5m1KoGk7M7lWJE_gUs,603
|
|
1382
|
-
mindsdb/integrations/handlers/sheets_handler/connection_args.py,sha256=
|
|
1398
|
+
mindsdb/integrations/handlers/sheets_handler/connection_args.py,sha256=07sRCoh0XZHsqTCbsDKuUyuzXEAlArBbLrai1OvFEGA,530
|
|
1383
1399
|
mindsdb/integrations/handlers/sheets_handler/icon.svg,sha256=Wz4CS_9u6_zaouNSS-ePCRUnwpUZUn9hJ2J04BEksvs,5628
|
|
1384
1400
|
mindsdb/integrations/handlers/sheets_handler/sheets_handler.py,sha256=q_Md27HqvDQk9vZh9JT1E6NPuckaveEDVYfYQeb7O1U,5264
|
|
1385
1401
|
mindsdb/integrations/handlers/sheets_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1388,17 +1404,17 @@ mindsdb/integrations/handlers/shopify_handler/__about__.py,sha256=w70w9xG4laoJ6f
|
|
|
1388
1404
|
mindsdb/integrations/handlers/shopify_handler/__init__.py,sha256=VeIeMd6vofxyaAkLPX6X63Ye0of6s768mZ7gLvXrQ_8,511
|
|
1389
1405
|
mindsdb/integrations/handlers/shopify_handler/icon.svg,sha256=-htxdS5C7rsXqiY3H0Y5LVhvHG_cb8Iw7MuJc8Ra2Qo,2452
|
|
1390
1406
|
mindsdb/integrations/handlers/shopify_handler/requirements.txt,sha256=keRn5kMNcJHM3MBDc26Y-mYR747z5HdsJeURBQ3sygY,11
|
|
1391
|
-
mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=
|
|
1392
|
-
mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=
|
|
1393
|
-
mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=
|
|
1394
|
-
mindsdb/integrations/handlers/singlestore_handler/__init__.py,sha256=
|
|
1407
|
+
mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=Phcoh8ukUSJQ-RwqV_pp2at4blJHrMDQg6zjP8EXmiw,4935
|
|
1408
|
+
mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=eFxuR6PUx772Oc_LCgDOiDYjBhwS6fcDwiLgOFBhbnM,38545
|
|
1409
|
+
mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=_15qBORkD-oCNaAG43vfOz-8UokwaQlTJMkVPVphWtU,351
|
|
1410
|
+
mindsdb/integrations/handlers/singlestore_handler/__init__.py,sha256=MSAEudTZyL-23T9amF0pU1wJjLYkn34VqJHtOYT1C1A,501
|
|
1395
1411
|
mindsdb/integrations/handlers/singlestore_handler/icon.svg,sha256=ZHU9Xd8NgO4VADPp3jl42HZ7eqcf8aTAvN7xUCTfMAc,2064
|
|
1396
1412
|
mindsdb/integrations/handlers/singlestore_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1397
|
-
mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py,sha256=
|
|
1413
|
+
mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py,sha256=h4OrRQmX0LVJj9RkS5-MikNbwFnNtKZp-NQx6SKmlIA,435
|
|
1398
1414
|
mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1399
|
-
mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py,sha256=
|
|
1415
|
+
mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py,sha256=lyEa50BGn8ISmKuo1oqIfvisVoNCbqZ6REQhpV3rxEU,1442
|
|
1400
1416
|
mindsdb/integrations/handlers/slack_handler/__about__.py,sha256=ykbgm6frTOTB8b-PtZrQEv_jMijGD2e-GIziyygILZM,335
|
|
1401
|
-
mindsdb/integrations/handlers/slack_handler/__init__.py,sha256=
|
|
1417
|
+
mindsdb/integrations/handlers/slack_handler/__init__.py,sha256=2GZF65ujVCePlbVWsC-0lCmlcUyfP0hQQ57pqiXYy44,517
|
|
1402
1418
|
mindsdb/integrations/handlers/slack_handler/connection_args.py,sha256=mzsx968FZZ3gVFXcTimbegcSucYcKzdRnj9FWj1SZ3s,637
|
|
1403
1419
|
mindsdb/integrations/handlers/slack_handler/icon.svg,sha256=bPzub2wQkTiV8nFCoy8TCSAXxYjjg65S7jQT1_yGduM,2005
|
|
1404
1420
|
mindsdb/integrations/handlers/slack_handler/requirements.txt,sha256=92G8Qt34iNKtS1FzKMKUHZp6r8CPz-3TZLn_dD9nY7M,18
|
|
@@ -1411,7 +1427,7 @@ mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DI
|
|
|
1411
1427
|
mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
|
|
1412
1428
|
mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
|
|
1413
1429
|
mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=jPONiX7mUekXJMK0Tv1A5fhSAR2Vkc-_4E_pCDJo068,71
|
|
1414
|
-
mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=
|
|
1430
|
+
mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=46q9FH31HgdQ9P5K_iPrfH9Stn8KGolDKJr0xy0ua8M,18802
|
|
1415
1431
|
mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
|
|
1416
1432
|
mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
|
|
1417
1433
|
mindsdb/integrations/handlers/solace_handler/icon.svg,sha256=rzGNiCdLWu9OJ3j8ilXrOTwRupMp3n3RQrfm2D_Nx5A,152
|
|
@@ -1419,12 +1435,12 @@ mindsdb/integrations/handlers/solace_handler/requirements.txt,sha256=kOMDzRkpyVS
|
|
|
1419
1435
|
mindsdb/integrations/handlers/solace_handler/solace_handler.py,sha256=h82SqnLbGsgblVQgFrcMf2KejaqQPjjYv2bUWR5Tcrg,5635
|
|
1420
1436
|
mindsdb/integrations/handlers/solr_handler/__about__.py,sha256=YGongZaOYWVBJtgIf8Kzj9Iz9W8V7yYlzedzWzqKoFM,332
|
|
1421
1437
|
mindsdb/integrations/handlers/solr_handler/__init__.py,sha256=J3kSqn15RC6mruLlv2OQFtk7dgAb3qk1ss4oaDmgwYo,595
|
|
1422
|
-
mindsdb/integrations/handlers/solr_handler/connection_args.py,sha256=
|
|
1438
|
+
mindsdb/integrations/handlers/solr_handler/connection_args.py,sha256=q_zcEDLDMb14b9GwBXDmM8VamleYUISllmuI-0xe3Y0,1442
|
|
1423
1439
|
mindsdb/integrations/handlers/solr_handler/icon.svg,sha256=oMJbF8KYAXMLJFqq1X4UDjz0pToxKEDL8sCnD3SAGJU,1215
|
|
1424
1440
|
mindsdb/integrations/handlers/solr_handler/requirements.txt,sha256=5BJdrNsaD-Sw4ZWEvrST-fPHbPAxVfTINMlOnRzMfe8,15
|
|
1425
|
-
mindsdb/integrations/handlers/solr_handler/solr_handler.py,sha256=
|
|
1441
|
+
mindsdb/integrations/handlers/solr_handler/solr_handler.py,sha256=3EnWmXgfuxmnuFrXs7WFOCpwNeSHHybDlEZogpil1C0,5480
|
|
1426
1442
|
mindsdb/integrations/handlers/solr_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1427
|
-
mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py,sha256=
|
|
1443
|
+
mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py,sha256=uW7yETt0P9cvxxzNQMwJ-quf_whHXt0Yzitu9CwnqLo,1217
|
|
1428
1444
|
mindsdb/integrations/handlers/spacy_handler/__about__.py,sha256=jd6QQQ6sSZ5yoYvxSWPynn_Olt5n-ylQo5vGyZ3aqyc,345
|
|
1429
1445
|
mindsdb/integrations/handlers/spacy_handler/__init__.py,sha256=zY48kMbG9iQmG2FyFKVCFw0JpdFDb-_1caLHh5pXdDo,488
|
|
1430
1446
|
mindsdb/integrations/handlers/spacy_handler/icon.svg,sha256=wvPUPjGqsBiOaOg5gGQjnc2lw8yyF4qR8CcxhagwtkU,3544
|
|
@@ -1435,24 +1451,24 @@ mindsdb/integrations/handlers/sqlany_handler/__init__.py,sha256=qJlQ_ZZ4Ni6kHtUi
|
|
|
1435
1451
|
mindsdb/integrations/handlers/sqlany_handler/connection_args.py,sha256=I50L0E4Zq8BeJvsgRTwvIxxmyBdljWi3p3zM6tiQZ24,1334
|
|
1436
1452
|
mindsdb/integrations/handlers/sqlany_handler/icon.svg,sha256=Y2lmewh0cBgJP_8SyDgjcxrN6AG-U1_uBo-VF0xkgPg,2146
|
|
1437
1453
|
mindsdb/integrations/handlers/sqlany_handler/requirements.txt,sha256=Y0gnZVmzYd3QEf6TvdXSasgY0FkOTo-RKRbTtq2zVaE,27
|
|
1438
|
-
mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py,sha256=
|
|
1454
|
+
mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py,sha256=QztrVfyzAeMqpMCdiEZTWnbAJIUL7QzblKD8jMTXrpQ,5691
|
|
1439
1455
|
mindsdb/integrations/handlers/sqlite_handler/__about__.py,sha256=lWd9EgLYvUjLUUylfnVrPnBFF64v5WUJk0sKOaaSMT4,351
|
|
1440
1456
|
mindsdb/integrations/handlers/sqlite_handler/__init__.py,sha256=x5LSxJLjgFy461oFuc7EkIICYFjwbkR3nxRjUXD39aw,616
|
|
1441
1457
|
mindsdb/integrations/handlers/sqlite_handler/connection_args.py,sha256=fkHQz2pMUYYls0SH3QWyVRZC9EQpub8Tqogu0IMPN1w,459
|
|
1442
1458
|
mindsdb/integrations/handlers/sqlite_handler/icon.svg,sha256=_vrqIxTfukZKHbwInyi8_NXkvY7gaXmmlhBpvkizBwc,3379
|
|
1443
|
-
mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py,sha256=
|
|
1459
|
+
mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py,sha256=Uq7YJCDa9VRtV1oF6tWpPd00pxfADbydzAmNvh7vnA8,5796
|
|
1444
1460
|
mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1445
1461
|
mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py,sha256=uwdM4niujj3VPWvNZWMImOWgB0tppoYYPm7KW_V4-HM,1033
|
|
1446
1462
|
mindsdb/integrations/handlers/sqreamdb_handler/__about__.py,sha256=n99f9F2MFzGvCa-nZJWgyDolrEd9wBd2Iir71bfcvpc,346
|
|
1447
1463
|
mindsdb/integrations/handlers/sqreamdb_handler/__init__.py,sha256=CwLXvfxGQe24ArIUtDfSwKSvZdEr0XtC_AsA7wsFrJ8,604
|
|
1448
|
-
mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py,sha256=
|
|
1464
|
+
mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py,sha256=jVH0FunqHDhlQp0djRNU38KCRLQkX62nw8qmQua-90o,1382
|
|
1449
1465
|
mindsdb/integrations/handlers/sqreamdb_handler/icon.svg,sha256=ahjvGh5halSk2-D7dx4ZEYzdS9-8R2YN7bA6opumpik,19052
|
|
1450
1466
|
mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt,sha256=J0WEmaOHnBO7pofu2y7pwtBEM8CajuqxW32Gx-clg5c,40
|
|
1451
|
-
mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py,sha256=
|
|
1467
|
+
mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py,sha256=kMe64tBDCeqs638KvUXBhyskfhLSxxyRcjosVtPdj1E,4846
|
|
1452
1468
|
mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1453
|
-
mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py,sha256=
|
|
1469
|
+
mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py,sha256=b14lkOaCGGPME_sjKsc0QzvjFag38_K1kCLC08IGpZY,1425
|
|
1454
1470
|
mindsdb/integrations/handlers/stabilityai_handler/__about__.py,sha256=oUkOwYjexl28Y0r0oeAKALZKrjU4hl_g5nCQBZ_o_DQ,355
|
|
1455
|
-
mindsdb/integrations/handlers/stabilityai_handler/__init__.py,sha256=
|
|
1471
|
+
mindsdb/integrations/handlers/stabilityai_handler/__init__.py,sha256=guNpEVaDx14_vhszE-LN4PUaf_Zhb4XrwqQmx66PGYQ,513
|
|
1456
1472
|
mindsdb/integrations/handlers/stabilityai_handler/icon.svg,sha256=ZpGpqOrCHEnu6bEKUZeBBjZiOQmHdurWMs_knbfzF-Y,1284
|
|
1457
1473
|
mindsdb/integrations/handlers/stabilityai_handler/requirements.txt,sha256=3rD2bEMgLiyhsQHPbojpz07ZWrUgIW4QENkN3kWnov8,21
|
|
1458
1474
|
mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py,sha256=NZqNRDcaMaUGhuFGTUiXA5P2LtJ0BGJSKJ1LlNb5Ba4,6901
|
|
@@ -1461,15 +1477,15 @@ mindsdb/integrations/handlers/starrocks_handler/__about__.py,sha256=pkApZqHghl4G
|
|
|
1461
1477
|
mindsdb/integrations/handlers/starrocks_handler/__init__.py,sha256=SMee9IZM4-ADJKXB-GlOkf2laHNSiE3sZlSJ3Lj-piQ,493
|
|
1462
1478
|
mindsdb/integrations/handlers/starrocks_handler/icon.svg,sha256=AlnqpxH93ohQSQcItJU5-t9xgoHBjzvZSBzyyP4ryfk,1945
|
|
1463
1479
|
mindsdb/integrations/handlers/starrocks_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1464
|
-
mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py,sha256=
|
|
1480
|
+
mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py,sha256=tOdQuNu_SQWoil4NAfIERX382Ogzkd6Hl_DQXTFzKzU,1300
|
|
1465
1481
|
mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1466
|
-
mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,sha256=
|
|
1482
|
+
mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,sha256=BvJOd4sdSN4d5roPYqJd1DxF8G_ITP_pcf9HIcP0GxM,1715
|
|
1467
1483
|
mindsdb/integrations/handlers/statsforecast_handler/__about__.py,sha256=1X1F2LyKSugvGa7VZco3R4fDZTM1ED3Ku-ys2evcczY,374
|
|
1468
1484
|
mindsdb/integrations/handlers/statsforecast_handler/__init__.py,sha256=LYYrtDMAW5aFPLPyIp-rOxO2O6izWi7pNtQGAsRmmdY,516
|
|
1469
1485
|
mindsdb/integrations/handlers/statsforecast_handler/icon.svg,sha256=dg5efvtY54Q70QS8a1FGc3-RbH9vbsWoOCmHtPjANRE,590
|
|
1470
1486
|
mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=17INZW5OfTUqbRKt-gcljYlwFUCyW3PjTSkiNrm_VtQ,21
|
|
1471
1487
|
mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=17INZW5OfTUqbRKt-gcljYlwFUCyW3PjTSkiNrm_VtQ,21
|
|
1472
|
-
mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=
|
|
1488
|
+
mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=jPo3yj5nuxi6WP8xrEFx4lI1pGJbKQs-uHJLtBrLz_k,8408
|
|
1473
1489
|
mindsdb/integrations/handlers/strapi_handler/__about__.py,sha256=pCZCrsIQ2_9QSAfpIY8se9QDvIE2kP9_a5N0DnRMO6k,344
|
|
1474
1490
|
mindsdb/integrations/handlers/strapi_handler/__init__.py,sha256=TnZspPGgLSMgWxJkY0oUd6EiPl16Xo7spn0Oswok8-o,529
|
|
1475
1491
|
mindsdb/integrations/handlers/strapi_handler/icon.svg,sha256=-00G-8wAFYndz5z04zdKnskPASN8-O-8HtrPkoI4r9M,1073
|
|
@@ -1481,26 +1497,26 @@ mindsdb/integrations/handlers/strava_handler/__about__.py,sha256=zYeH3wGTPWdK2Kd
|
|
|
1481
1497
|
mindsdb/integrations/handlers/strava_handler/__init__.py,sha256=fpoXQgaNScX27rxkNbjyY-JDCG6q0rZHNKH9XpaeoRM,507
|
|
1482
1498
|
mindsdb/integrations/handlers/strava_handler/icon.svg,sha256=WWcpMlFlIGRXqq3PUAsDzK5ShEr-UwteLWuQHzH0894,628
|
|
1483
1499
|
mindsdb/integrations/handlers/strava_handler/requirements.txt,sha256=zmg1tZLIYt6P2O_IaXMghPa0eB-mvaltye2A7xuPN1A,10
|
|
1484
|
-
mindsdb/integrations/handlers/strava_handler/strava_handler.py,sha256=
|
|
1485
|
-
mindsdb/integrations/handlers/strava_handler/strava_tables.py,sha256=
|
|
1500
|
+
mindsdb/integrations/handlers/strava_handler/strava_handler.py,sha256=dTtvUypo2vyQjMr7VMAN6v7dRRuZldDLDND7CiSfdZs,3170
|
|
1501
|
+
mindsdb/integrations/handlers/strava_handler/strava_tables.py,sha256=FDo6xabpJ-QSekFcCqj0XNkiAC6inzbV7QZw2p1mgxY,8103
|
|
1486
1502
|
mindsdb/integrations/handlers/stripe_handler/__about__.py,sha256=Uknc7T0dq-_3jvCTIHC2Fq6ds-RNewF-5m8vge-LeS0,343
|
|
1487
1503
|
mindsdb/integrations/handlers/stripe_handler/__init__.py,sha256=uyLgbv2G8ZOkcQAq_PJfTceuUCIzIpszCRA-XCj_-ag,507
|
|
1488
1504
|
mindsdb/integrations/handlers/stripe_handler/icon.svg,sha256=BdCx7kc4Np-P6ceICXzaBEH0TBOyxqLLL1zCqSZInJE,704
|
|
1489
1505
|
mindsdb/integrations/handlers/stripe_handler/requirements.txt,sha256=K-0gMu09gwC3cU_3cQHmxDY3WXl3M3xpkZHdhEyGpy0,6
|
|
1490
|
-
mindsdb/integrations/handlers/stripe_handler/stripe_handler.py,sha256=
|
|
1491
|
-
mindsdb/integrations/handlers/stripe_handler/stripe_tables.py,sha256=
|
|
1506
|
+
mindsdb/integrations/handlers/stripe_handler/stripe_handler.py,sha256=pASyHf6VxOZpUcsQoZHe6gMZjr6QGmYSuTJ4cdt4o34,2838
|
|
1507
|
+
mindsdb/integrations/handlers/stripe_handler/stripe_tables.py,sha256=i6DJq5rauKdLLqWK73yu6eFrYSWGi9q_e1na_0kzm5k,15693
|
|
1492
1508
|
mindsdb/integrations/handlers/supabase_handler/__about__.py,sha256=mvRq0yRA_Zt-0_dP5WEkuiM1k-2hcL9aBcDw30PcCE8,342
|
|
1493
1509
|
mindsdb/integrations/handlers/supabase_handler/__init__.py,sha256=7m-tY9p52UrXA5WVWDAZgoiWS1p4s4-jthx4jyx4g0E,489
|
|
1494
1510
|
mindsdb/integrations/handlers/supabase_handler/icon.svg,sha256=raGqT1S4xpEQLeHj3OEWU6W_8vVlql-R7flMBiOttnY,1174
|
|
1495
1511
|
mindsdb/integrations/handlers/supabase_handler/supabase_handler.py,sha256=hi1Ndqskeb7dDhoL71Y3eHfvzHIWCyEFY2ZZB29S2bQ,326
|
|
1496
1512
|
mindsdb/integrations/handlers/supabase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1497
|
-
mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py,sha256=
|
|
1513
|
+
mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py,sha256=TFpoZL1Dnbqu-of8EAPJuw8IXMOWfzXiyQd5myp1BrM,1399
|
|
1498
1514
|
mindsdb/integrations/handlers/surrealdb_handler/__about__.py,sha256=HU-MfMC6d2oWZZANntvc2ZJRL9sdRctDgpa0IF_2-Fc,376
|
|
1499
1515
|
mindsdb/integrations/handlers/surrealdb_handler/__init__.py,sha256=Y_DOxm1PderYV8_VidjJlPgB2QivfugI245a3SOSCTk,608
|
|
1500
1516
|
mindsdb/integrations/handlers/surrealdb_handler/connection_args.py,sha256=nbBhHClh582l4KIR8u9e5Bo7gMPwU4qDvZrrj3W6HFE,1463
|
|
1501
1517
|
mindsdb/integrations/handlers/surrealdb_handler/icon.svg,sha256=A6hrNrewVOKtHwAUherAF3mIPYijqRH4NofZYG_6f3Y,1449
|
|
1502
1518
|
mindsdb/integrations/handlers/surrealdb_handler/requirements.txt,sha256=P1aJoTZNUH39vh-kIhW1ioAFBkerI9dUdbdtxHgFH-w,12
|
|
1503
|
-
mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py,sha256=
|
|
1519
|
+
mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py,sha256=k9Y5rGTbie2yyIH72Tkm8Sh8fnb6IPAlxn-KitJM4Rk,6086
|
|
1504
1520
|
mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1505
1521
|
mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py,sha256=POOXBiNfNNaO0Ac0K5XlIZOVp47qN1bFofVixrFbnMM,1891
|
|
1506
1522
|
mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1517,9 +1533,9 @@ mindsdb/integrations/handlers/tdengine_handler/__init__.py,sha256=xPvtQ7Rw7wbVJX
|
|
|
1517
1533
|
mindsdb/integrations/handlers/tdengine_handler/connection_args.py,sha256=OPH5NEDSPxZ6iPIDBor7gHb5aDs2JhskEf7zF0S8RiQ,982
|
|
1518
1534
|
mindsdb/integrations/handlers/tdengine_handler/icon.svg,sha256=n9TFbxQXmgulHJ9xe-jv07hXVVzUVs8WUoW9i6r3vsk,4903
|
|
1519
1535
|
mindsdb/integrations/handlers/tdengine_handler/requirements.txt,sha256=Hd60uoHTQmZiGt55R7KWc-WRt0pun0sx8XJiTtC9rn4,6
|
|
1520
|
-
mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py,sha256=
|
|
1536
|
+
mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py,sha256=XQgbMA3F_Lz5qpKwXGnbp3uMTmB2ILmukY2jSRXJAcE,4299
|
|
1521
1537
|
mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1522
|
-
mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py,sha256=
|
|
1538
|
+
mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py,sha256=LCKfs5QaTzDaqdK3MSSojZr7fqExZ6GZLcRdoJzMkNQ,1559
|
|
1523
1539
|
mindsdb/integrations/handlers/teradata_handler/__about__.py,sha256=IDbZpk---hxwg_GaxnMmesQJUaDXnNkigrNDFpoVQUE,345
|
|
1524
1540
|
mindsdb/integrations/handlers/teradata_handler/__init__.py,sha256=g2iNycfebnlIMvxLpfkgAP69q58LMmTjAdUBGxN8cXc,604
|
|
1525
1541
|
mindsdb/integrations/handlers/teradata_handler/connection_args.py,sha256=0XFNxt7yZxyi2nj2H93qCG0D46MKBnGH376CQroiLEA,1040
|
|
@@ -1533,12 +1549,12 @@ mindsdb/integrations/handlers/tidb_handler/icon.svg,sha256=AYauw0wMLbfLYyXBYUw5d
|
|
|
1533
1549
|
mindsdb/integrations/handlers/tidb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1534
1550
|
mindsdb/integrations/handlers/tidb_handler/tidb_handler.py,sha256=WLmvnEFpXGhf7VXg2Vhmw7b3SK2CKtGqEQdh1AxCX4w,305
|
|
1535
1551
|
mindsdb/integrations/handlers/tidb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1536
|
-
mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py,sha256=
|
|
1552
|
+
mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py,sha256=Rh96gh61nP3ebpjUV2BeyHBcNrTZDOOfH3LqxRGY-ug,1305
|
|
1537
1553
|
mindsdb/integrations/handlers/timegpt_handler/__about__.py,sha256=wBHyAM5O7yWVgUKBGJwRM6gpy8FUWzcBxL048e4yjhA,390
|
|
1538
1554
|
mindsdb/integrations/handlers/timegpt_handler/__init__.py,sha256=lMvw91ghkXJj2RuXSi1om4KYc8xbNik3YwXcYA-Hld8,491
|
|
1539
1555
|
mindsdb/integrations/handlers/timegpt_handler/icon.svg,sha256=CfkLqkeZTKSjsQMKTx_KqkCqXvnHRyAAa1DVs-R1qiA,590
|
|
1540
1556
|
mindsdb/integrations/handlers/timegpt_handler/requirements.txt,sha256=AfBYvR80CShVm2CPUOonQgDHgcTxApeX5OTKgfkjB-I,14
|
|
1541
|
-
mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py,sha256=
|
|
1557
|
+
mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py,sha256=c0krE2oG9jJi6z3x4zvG6Jm7nvCINjhiUQszHRKl--o,9868
|
|
1542
1558
|
mindsdb/integrations/handlers/timescaledb_handler/__about__.py,sha256=joUHMPBAiylB7Uc7sipeFVWlWDZ_wqVqyyy_MivkNFI,355
|
|
1543
1559
|
mindsdb/integrations/handlers/timescaledb_handler/__init__.py,sha256=ynMpLqCRlYomZEFEinXmtYYGr0DPIMQZ9HtsytOpe6c,497
|
|
1544
1560
|
mindsdb/integrations/handlers/timescaledb_handler/icon.svg,sha256=sZHwvwAJ5SiTLSHhjdm_2YazVz0KEDQj-5KYR7cBTxo,6197
|
|
@@ -1555,13 +1571,13 @@ mindsdb/integrations/handlers/tpot_handler/__about__.py,sha256=UnKylDgzptBz8GP0A
|
|
|
1555
1571
|
mindsdb/integrations/handlers/tpot_handler/__init__.py,sha256=In_YSefcrQXPbgqBoTR77fx9sIRpBTBpWaIlhaaHHhA,526
|
|
1556
1572
|
mindsdb/integrations/handlers/tpot_handler/icon.png,sha256=j1DfF2jF1kWD3dhCET51X26QnSW9rNuLXXG7Tav3M2M,114250
|
|
1557
1573
|
mindsdb/integrations/handlers/tpot_handler/requirements.txt,sha256=8F0hdotOm6E8Y2Fp7aKkDq1laiAX8CDem43CVybzdm4,32
|
|
1558
|
-
mindsdb/integrations/handlers/tpot_handler/tpot_handler.py,sha256=
|
|
1574
|
+
mindsdb/integrations/handlers/tpot_handler/tpot_handler.py,sha256=RQwuvd9ss91dSUiHSvQ-Yt4LNmcQv_pJIkC3XBJ-BDQ,3244
|
|
1559
1575
|
mindsdb/integrations/handlers/trino_handler/__about__.py,sha256=O-XM6_t3ajkzjNhyI8J5BaVVmwwUCkQARNlJusNoYDk,333
|
|
1560
1576
|
mindsdb/integrations/handlers/trino_handler/__init__.py,sha256=aj-pP90O6WWCyWBgry5D9URUaUCM5ALoAOQYHbU6gt8,457
|
|
1561
1577
|
mindsdb/integrations/handlers/trino_handler/icon.svg,sha256=2zBJqtv37OVRHmR4HnL-Y3vPbxWf3sMvpVXGi8XkZzw,9363
|
|
1562
1578
|
mindsdb/integrations/handlers/trino_handler/requirements.txt,sha256=yd3vzlgASeU_7on8yH3NZznzB5CkHf5mZ4FQK_LQw38,22
|
|
1563
1579
|
mindsdb/integrations/handlers/trino_handler/trino_config_provider.py,sha256=FZ0xbSJTUDWR9Dj5n7qIv-KVgx49fMzGw-WcDe-aqcE,359
|
|
1564
|
-
mindsdb/integrations/handlers/trino_handler/trino_handler.py,sha256=
|
|
1580
|
+
mindsdb/integrations/handlers/trino_handler/trino_handler.py,sha256=FJxctdwK62aWdHnJVAcsmjs4VDPMPXnTOB_DtLCC4RI,6762
|
|
1565
1581
|
mindsdb/integrations/handlers/trino_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1566
1582
|
mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py,sha256=raI6x2ZTxd1_37CA22o4fPJLyBpQtkUGl1jaCkpR8U0,1630
|
|
1567
1583
|
mindsdb/integrations/handlers/tripadvisor_handler/__about__.py,sha256=I3b_Vfuym1IL8kq5MzUpKhQauM6Eh_YxPf0-jRJe7xQ,363
|
|
@@ -1586,37 +1602,37 @@ mindsdb/integrations/handlers/twitter_handler/__about__.py,sha256=7BS3uP0wt9Awep
|
|
|
1586
1602
|
mindsdb/integrations/handlers/twitter_handler/__init__.py,sha256=iD7po6ZUKvkmhiq7qLgHMNc4m0hR43ks1u9p6qx0Zdw,500
|
|
1587
1603
|
mindsdb/integrations/handlers/twitter_handler/icon.svg,sha256=2lLcQ9w8XO6H5M_Kl_TitCOUjkfKMOdUL2_1rLrN32s,471
|
|
1588
1604
|
mindsdb/integrations/handlers/twitter_handler/requirements.txt,sha256=ZJDRss3q7Ym5B2ECTFXYw-4yz1iu9odZpRI03-eD2xc,7
|
|
1589
|
-
mindsdb/integrations/handlers/twitter_handler/twitter_handler.py,sha256=
|
|
1605
|
+
mindsdb/integrations/handlers/twitter_handler/twitter_handler.py,sha256=2vpRqiagCB86Mvtirj215yfAXB4VfsbQFst8keAe7IY,16087
|
|
1590
1606
|
mindsdb/integrations/handlers/unify_handler/__about__.py,sha256=nHZmpAWcHrN8R4R2QzTX2z4ZyMOJTvh80zGhvth57sg,357
|
|
1591
1607
|
mindsdb/integrations/handlers/unify_handler/__init__.py,sha256=gGgCjnQRlM6GnhVeGHHNxda-294CXHLh8eGHDYVp0Ig,617
|
|
1592
1608
|
mindsdb/integrations/handlers/unify_handler/creation_args.py,sha256=V2eVKJzWeTQg_Kr3zjJauGHrF760RlUssfUgDsStclI,339
|
|
1593
1609
|
mindsdb/integrations/handlers/unify_handler/icon.svg,sha256=AfxEQzqUj_C__zWFdMUFDnAwurZHRQNQ7DvFHHZ8Tqs,10460
|
|
1594
1610
|
mindsdb/integrations/handlers/unify_handler/model_using_args.py,sha256=LgYS_busKCzzDKIcqeO2i9mv_viWuAJcTkrnpWy-_Ss,75
|
|
1595
1611
|
mindsdb/integrations/handlers/unify_handler/requirements.txt,sha256=HFlgdvYk-Z0_oTUGpvPXRzDSYiKj7AgifVW2XRhOpTk,14
|
|
1596
|
-
mindsdb/integrations/handlers/unify_handler/unify_handler.py,sha256=
|
|
1612
|
+
mindsdb/integrations/handlers/unify_handler/unify_handler.py,sha256=F3ibxOSIL8X93i8-yHvpBl1F16gERJSSOrNwrP0K8q0,2400
|
|
1597
1613
|
mindsdb/integrations/handlers/unify_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1598
|
-
mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py,sha256=
|
|
1614
|
+
mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py,sha256=i9GbueTvl03z-XQV1awifib4kE9FtJto7rvjyB4SwXY,1597
|
|
1599
1615
|
mindsdb/integrations/handlers/vertex_handler/__about__.py,sha256=SCffhHdeD6ZuszymGrBBPfoo-k2Yj8-Yx4PzjW855XQ,350
|
|
1600
1616
|
mindsdb/integrations/handlers/vertex_handler/__init__.py,sha256=LJCNEoHxKyxi4FzyqwIxPXZXfuBX7-FEGlROGEtEbnI,498
|
|
1601
1617
|
mindsdb/integrations/handlers/vertex_handler/icon.png,sha256=EWxLkZkclLeq83BfYAy8OV8ijKPPXmAKWJ3ltMpbLRs,23708
|
|
1602
1618
|
mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=iTc66wzuOVy_ugDXcckpDrPiey9CY5UVWB8e4Wte01Q,113
|
|
1603
|
-
mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=
|
|
1619
|
+
mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=I--3_5IYiSrb0WvSy9Kswq7O8yQKGmjFBSu0nZkin5Y,3910
|
|
1604
1620
|
mindsdb/integrations/handlers/vertex_handler/vertex_handler.py,sha256=9MmbCzJrXtMlSis9LpjlNsamuSWQ9PhTTl5D0WhHTXk,3924
|
|
1605
1621
|
mindsdb/integrations/handlers/vertica_handler/__about__.py,sha256=11Aa7YF_-bkqrVZ4D2tNwZpfa-kEt5QpaLKKVnS_WYA,343
|
|
1606
1622
|
mindsdb/integrations/handlers/vertica_handler/__init__.py,sha256=AHg3kPYNZ5BV8-t_AHyfP5pRw7ker1-JCAnaImmIyyc,600
|
|
1607
1623
|
mindsdb/integrations/handlers/vertica_handler/connection_args.py,sha256=1Gf9hLDrMkVGuoliiTx5JrxGHOpZKsb54KXiDC-adWg,1268
|
|
1608
1624
|
mindsdb/integrations/handlers/vertica_handler/icon.svg,sha256=T9aDBMWile8EWwMaQjXcWzjRAnN18PtG0Z4xT8rRtPU,1482
|
|
1609
1625
|
mindsdb/integrations/handlers/vertica_handler/requirements.txt,sha256=Gt_4VkgNTpeUohDXQP_kbLXcVw_uLf91hC8NrKPtMTw,40
|
|
1610
|
-
mindsdb/integrations/handlers/vertica_handler/vertica_handler.py,sha256=
|
|
1626
|
+
mindsdb/integrations/handlers/vertica_handler/vertica_handler.py,sha256=TS-SSAZr44CQYMm595PQTNclaXQKbdi-_oK3KC3BvTk,4747
|
|
1611
1627
|
mindsdb/integrations/handlers/vertica_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1612
|
-
mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py,sha256=
|
|
1628
|
+
mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py,sha256=ajai8sl7FlHLsCZ5jdBQQ_q1i7MxlRhXS07-dU-0rSw,1658
|
|
1613
1629
|
mindsdb/integrations/handlers/vitess_handler/__about__.py,sha256=gu0GmNcKVxMVHYbe9GhBNJ8X_s_9-DrImVUQxll-rU4,340
|
|
1614
1630
|
mindsdb/integrations/handlers/vitess_handler/__init__.py,sha256=D2IoTFIK2_28Y0EW4LZmE9hVn58Gt9iISxA-nOpMN1c,481
|
|
1615
1631
|
mindsdb/integrations/handlers/vitess_handler/icon.svg,sha256=Ru4YAcun-wgPpfILPcqGw7QwRFXZhEntYslkzkz6jQY,2834
|
|
1616
1632
|
mindsdb/integrations/handlers/vitess_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1617
|
-
mindsdb/integrations/handlers/vitess_handler/vitess_handler.py,sha256=
|
|
1633
|
+
mindsdb/integrations/handlers/vitess_handler/vitess_handler.py,sha256=HpSdFwN9TFUR03IUgFzPhIDIGaxglXLbuoeJfGmb50k,1276
|
|
1618
1634
|
mindsdb/integrations/handlers/vitess_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1619
|
-
mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py,sha256=
|
|
1635
|
+
mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py,sha256=QCu4Yq6fKSwJ3U0OUrmvIEXvDbyowejfHrXt3cEE7Lk,1695
|
|
1620
1636
|
mindsdb/integrations/handlers/weaviate_handler/__about__.py,sha256=KVr6a_8bmKvHgs_lDmhxstO5HWChFGd-mxlw3jEE5Fc,343
|
|
1621
1637
|
mindsdb/integrations/handlers/weaviate_handler/__init__.py,sha256=57wDF-H1g4I09beDPFqUEPycLcdarstPXr2dEJe-fhk,661
|
|
1622
1638
|
mindsdb/integrations/handlers/weaviate_handler/connection_args.py,sha256=R9iG_4m5HUxZDVHKtR4XTSsOF5q5ABEszpG2uMTXHDA,755
|
|
@@ -1628,7 +1644,7 @@ mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE
|
|
|
1628
1644
|
mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
|
|
1629
1645
|
mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
|
|
1630
1646
|
mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=dCBqMYKwdQdThqbxeZA0a9z--yBC5vJJ8q8MikIKA2Q,11305
|
|
1631
|
-
mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=
|
|
1647
|
+
mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=iLiQQ7CbRhKjnRyfBhhLK2m8EtaNcXIWNSP0BgruVKA,3494
|
|
1632
1648
|
mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
|
|
1633
1649
|
mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
|
|
1634
1650
|
mindsdb/integrations/handlers/webz_handler/icon.svg,sha256=Mvt32fMxE_p294_hTqGVY3vnRkbZOJ2a0n9M72aZjTk,1042
|
|
@@ -1636,19 +1652,19 @@ mindsdb/integrations/handlers/webz_handler/requirements.txt,sha256=OFXmQCjEWHwfH
|
|
|
1636
1652
|
mindsdb/integrations/handlers/webz_handler/webz_handler.py,sha256=Oxtx_V-EFL9u7mr5qv1WaPP6TrddSoHlk_lbVNDDwWE,5765
|
|
1637
1653
|
mindsdb/integrations/handlers/webz_handler/webz_tables.py,sha256=w5PKcG62_HQA_8m1W4xIiQJ6eJKTXq-GjQ8_deUdAwU,6219
|
|
1638
1654
|
mindsdb/integrations/handlers/whatsapp_handler/__about__.py,sha256=TVjX_hyWXjHSGd_VgGztlHFCCJMD5a1XSMpROpTIxj4,344
|
|
1639
|
-
mindsdb/integrations/handlers/whatsapp_handler/__init__.py,sha256=
|
|
1655
|
+
mindsdb/integrations/handlers/whatsapp_handler/__init__.py,sha256=_NwgjGtXWfSP7S7V9JXr-GbWYz5b2z4Erqz3lpqLcp8,529
|
|
1640
1656
|
mindsdb/integrations/handlers/whatsapp_handler/icon.svg,sha256=0eWNgJq2Oru3XokxTDokZUFzgx-phehzXn5XeWokXKM,3521
|
|
1641
1657
|
mindsdb/integrations/handlers/whatsapp_handler/requirements.txt,sha256=idAcm6c8tcT72EnGmYdd27H9MCytrxzuRVLpLnNnaDU,6
|
|
1642
1658
|
mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py,sha256=2TLKbQv9h2LnBBoLUQxi0Wb01raXiJkrbh-it_nTo6g,14477
|
|
1643
1659
|
mindsdb/integrations/handlers/writer_handler/__about__.py,sha256=fi8lkAE-e3p6dDhPmBtGI3nWaScrgeJ96YFEzpyyx0Y,336
|
|
1644
1660
|
mindsdb/integrations/handlers/writer_handler/__init__.py,sha256=4g7e_HuLGt2pHD0KPTU9zSQdfR9ANEdJEBOkXYurIgA,545
|
|
1645
|
-
mindsdb/integrations/handlers/writer_handler/evaluate.py,sha256=
|
|
1661
|
+
mindsdb/integrations/handlers/writer_handler/evaluate.py,sha256=mfn33gUcDm60v7gbFOnQJ2_4JXQDjbwkYGj9KRedXhI,12497
|
|
1646
1662
|
mindsdb/integrations/handlers/writer_handler/icon.svg,sha256=nx6KAU1Genn-XnAPvrucTZqU2MQC4WOBTaiImAP04Vg,1814
|
|
1647
1663
|
mindsdb/integrations/handlers/writer_handler/ingest.py,sha256=4N783Eg2nqKwmt0Hf7Mgp_ieycw9mYuwMN_V52gJC18,338
|
|
1648
1664
|
mindsdb/integrations/handlers/writer_handler/rag.py,sha256=KSkMYPZ9gRRGP4C47yhhRTsDJ7bqJ_FPUm9tI0-5WAY,415
|
|
1649
1665
|
mindsdb/integrations/handlers/writer_handler/requirements.txt,sha256=lNCsHd4W-UUS9lDEAcO9QkCK9CWYV3eGbCjnHTl5YHI,97
|
|
1650
|
-
mindsdb/integrations/handlers/writer_handler/settings.py,sha256=
|
|
1651
|
-
mindsdb/integrations/handlers/writer_handler/writer_handler.py,sha256=
|
|
1666
|
+
mindsdb/integrations/handlers/writer_handler/settings.py,sha256=XYCPO7OlV9RGOFveOieF2_nngNpwvF7Xhjv3IfnuLsQ,2805
|
|
1667
|
+
mindsdb/integrations/handlers/writer_handler/writer_handler.py,sha256=KPBEpvmF7_U_3Ov_33cPUrvLD93WhasHgKGVscYW8q0,6886
|
|
1652
1668
|
mindsdb/integrations/handlers/xata_handler/__about__.py,sha256=g-EqC8OMmbjncIYQnLG-kaiLahhKCJZmBJCzLfUKLbY,331
|
|
1653
1669
|
mindsdb/integrations/handlers/xata_handler/__init__.py,sha256=73nSEn5d_gRnjI3U92XLfjfKiik7EuSvtpOZ7L2LOYg,643
|
|
1654
1670
|
mindsdb/integrations/handlers/xata_handler/connection_args.py,sha256=V1fIbrnoNo1AQ_KjX1wN-Ve5NYplDIBqa5QtbtjZ7Fo,1010
|
|
@@ -1661,14 +1677,14 @@ mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=wz69UgXa3njxAci
|
|
|
1661
1677
|
mindsdb/integrations/handlers/youtube_handler/connection_args.py,sha256=08xO6KHfAlFvgSq9QU6PxWDk9AmmPgXdx41ayKxHGAI,923
|
|
1662
1678
|
mindsdb/integrations/handlers/youtube_handler/icon.svg,sha256=uvNffuRPGVzPxWkbZzkSrw2SHm8M8c4GbeypiHPWDss,954
|
|
1663
1679
|
mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=1TSFkd3bOkjfohLD9ZRIynuQGqAyyL-qZjZC_BWapJU,129
|
|
1664
|
-
mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=
|
|
1665
|
-
mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256
|
|
1680
|
+
mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=UPdeh6cznyxN8e8jtO-OxkmEGoqbUB7wGR8XaoozXkg,4225
|
|
1681
|
+
mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=aH3ykMHwPmfaLyB0v7eD7KnkKC7PKkO6KB9c0mK4qY8,16621
|
|
1666
1682
|
mindsdb/integrations/handlers/yugabyte_handler/__about__.py,sha256=tVimKqXLHCbBZFeVs2_LfbwaXt3oOBx2k_fTbiu4uwU,350
|
|
1667
1683
|
mindsdb/integrations/handlers/yugabyte_handler/__init__.py,sha256=ZaXZKRnnzUOGLvydpoeSjOxlLx8L_ymcXdEydokAh28,490
|
|
1668
1684
|
mindsdb/integrations/handlers/yugabyte_handler/icon.svg,sha256=9EWkdK9d1nWu45_dFleLLh3qWPf7eZLj2cwB2kwhIH4,3292
|
|
1669
|
-
mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py,sha256=
|
|
1685
|
+
mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py,sha256=UZz9RDFPbBXOUnba6Ft0Y_lggPTenQJmLex4MsMD5mA,1763
|
|
1670
1686
|
mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1671
|
-
mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py,sha256=
|
|
1687
|
+
mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py,sha256=GaiuIuRgJaHBX9pIjgAC3p3vUaaQK8MAFYbZHVAr37c,1604
|
|
1672
1688
|
mindsdb/integrations/handlers/zendesk_handler/__about__.py,sha256=-gcxH59ewAdZcRHOVNOKdOoU2pkWS2fc7w3liM0rPnE,341
|
|
1673
1689
|
mindsdb/integrations/handlers/zendesk_handler/__init__.py,sha256=Kaq_K9rpEuBJOMhlijWzkk6NRxk86G7Kpx0RbjAAsNk,633
|
|
1674
1690
|
mindsdb/integrations/handlers/zendesk_handler/connection_args.py,sha256=xlvJDA5gpIKrf7gciQ_RR57Z4sxG82QSU5p2x3KLymI,735
|
|
@@ -1699,9 +1715,9 @@ mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4Se
|
|
|
1699
1715
|
mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
|
|
1700
1716
|
mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
|
|
1701
1717
|
mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
|
|
1702
|
-
mindsdb/integrations/libs/response.py,sha256=
|
|
1718
|
+
mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
|
|
1703
1719
|
mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
|
|
1704
|
-
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=
|
|
1720
|
+
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=p4wWZIl1fq6PnCiHSjTPW5Jlrmdw9MzU7RzKvpDUXVA,18445
|
|
1705
1721
|
mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1706
1722
|
mindsdb/integrations/libs/llm/config.py,sha256=FH5ODdNmiqdwTLHpXmEla0zwEPlitNactTm_i2UUmC0,4337
|
|
1707
1723
|
mindsdb/integrations/libs/llm/utils.py,sha256=K5jc9NyME4MZWyVyirhgQA_Dq6HRvP4lhJqnlrcjWy0,25101
|
|
@@ -1717,14 +1733,14 @@ mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=ccz
|
|
|
1717
1733
|
mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
|
|
1718
1734
|
mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1719
1735
|
mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
|
|
1720
|
-
mindsdb/integrations/utilities/handler_utils.py,sha256=
|
|
1736
|
+
mindsdb/integrations/utilities/handler_utils.py,sha256=QbAUGgeyXr5fAJZqyrqtl59Re8Ze0ER5h8zK5ITrOYQ,3055
|
|
1721
1737
|
mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
|
|
1722
1738
|
mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
|
|
1723
1739
|
mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
|
|
1724
1740
|
mindsdb/integrations/utilities/sql_utils.py,sha256=zPXrG3pI-wbrrBTM9WXMwt66zsQHw2RZ1qXUX58rJ9Q,6777
|
|
1725
1741
|
mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
|
|
1726
1742
|
mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
|
|
1727
|
-
mindsdb/integrations/utilities/utils.py,sha256=
|
|
1743
|
+
mindsdb/integrations/utilities/utils.py,sha256=sM2WfOrlIyliSm2lXaPyU21l4kQZVoSv1yLsBDKv90k,972
|
|
1728
1744
|
mindsdb/integrations/utilities/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1729
1745
|
mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-8BNfeUJshGz4_MFrIDYBQ,1665
|
|
1730
1746
|
mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
|
|
@@ -1732,10 +1748,10 @@ mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_samp
|
|
|
1732
1748
|
mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1733
1749
|
mindsdb/integrations/utilities/files/file_reader.py,sha256=rqL4XgeLRaBE3B0rFfMm6zNctMJs-IHV5_tTqnqqpww,11508
|
|
1734
1750
|
mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1735
|
-
mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=
|
|
1751
|
+
mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1736
1752
|
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
|
|
1737
1753
|
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=JikiOFYkji_7l1ckXn3I8NjrruTjcI7TdpqHxLU-mIE,6292
|
|
1738
|
-
mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=
|
|
1754
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1739
1755
|
mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
|
|
1740
1756
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
|
|
1741
1757
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py,sha256=Nuug_6Zggj5Q4D01sRLpyHrGLvyLL1ONg3SiZH8i4W4,2400
|
|
@@ -1782,16 +1798,16 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
|
|
|
1782
1798
|
mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
|
|
1783
1799
|
mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1784
1800
|
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1785
|
-
mindsdb/interfaces/agents/agents_controller.py,sha256=
|
|
1801
|
+
mindsdb/interfaces/agents/agents_controller.py,sha256=l_lC08HnE7F_Iki-hm9VznEY8Afmv1-diO7YJIyqfSo,27106
|
|
1786
1802
|
mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
|
|
1787
|
-
mindsdb/interfaces/agents/constants.py,sha256=
|
|
1803
|
+
mindsdb/interfaces/agents/constants.py,sha256=7drGeBdnwJOBnPKgjd8lKhIYu1yYlYrDUxMvStIuEsA,5822
|
|
1788
1804
|
mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
|
|
1789
|
-
mindsdb/interfaces/agents/langchain_agent.py,sha256=
|
|
1805
|
+
mindsdb/interfaces/agents/langchain_agent.py,sha256=GUaxPkT7a5qXCKo2j3p-M8qpiJkwLfZv0C3epxbrMAU,28313
|
|
1790
1806
|
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
|
|
1791
1807
|
mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
|
|
1792
1808
|
mindsdb/interfaces/agents/mcp_client_agent.py,sha256=9oki-GDsN1H6fYsNLBQWTMYSHGpWliYF9I5AZSuXS8U,9814
|
|
1793
1809
|
mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
|
|
1794
|
-
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256
|
|
1810
|
+
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=-BYmUrTejJN9VAxn0OzNIwiopCK-Z5cHkSG0nAq7KAo,6725
|
|
1795
1811
|
mindsdb/interfaces/agents/run_mcp_agent.py,sha256=4ZXhIGBu3wVIZC9Ys6vTJDxGJzLXppLLqzbg1UFanS8,8689
|
|
1796
1812
|
mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
|
|
1797
1813
|
mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -1817,32 +1833,34 @@ mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
1817
1833
|
mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
|
|
1818
1834
|
mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
|
|
1819
1835
|
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1820
|
-
mindsdb/interfaces/knowledge_base/controller.py,sha256=
|
|
1836
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=UZww7HeADl03JC6GkfjVI8SuoZiylf2B_qqeX_pLiOQ,46617
|
|
1821
1837
|
mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
|
|
1822
1838
|
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1823
1839
|
mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
|
|
1824
1840
|
mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
|
|
1825
|
-
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=
|
|
1826
|
-
mindsdb/interfaces/knowledge_base/preprocessing/
|
|
1841
|
+
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=AOFnVTeoOq89sp_9Hr166ric5ti-cWodipdmDMRqCuw,14795
|
|
1842
|
+
mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=ciOiEmSN3JalwN9_d-tfJLabD_5etBYIHavCnazI0x8,17333
|
|
1843
|
+
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=5TjFLLsocR6DUfjWg1oxtnEplquSi0puPMC7Ij36G-o,6042
|
|
1827
1844
|
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1828
1845
|
mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
|
|
1829
1846
|
mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
|
|
1830
1847
|
mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1831
|
-
mindsdb/interfaces/query_context/context_controller.py,sha256=
|
|
1848
|
+
mindsdb/interfaces/query_context/context_controller.py,sha256=AonESR6kb3kuqT-t_eJJXJfFSr9TWJVnpxdWkenBiuY,19756
|
|
1832
1849
|
mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
|
|
1833
1850
|
mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
|
|
1834
1851
|
mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1835
1852
|
mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
|
|
1836
|
-
mindsdb/interfaces/skills/skill_tool.py,sha256=
|
|
1853
|
+
mindsdb/interfaces/skills/skill_tool.py,sha256=aC_eaiKT_bJhMoMjmWviFLh84zqDaBvag8DgO1fSQGw,20392
|
|
1837
1854
|
mindsdb/interfaces/skills/skills_controller.py,sha256=cNblNQNOJXQkuXq0q2g7-OmAFG-QoBbRign6gHt6NLg,6319
|
|
1838
|
-
mindsdb/interfaces/skills/sql_agent.py,sha256=
|
|
1855
|
+
mindsdb/interfaces/skills/sql_agent.py,sha256=Zs1WPLencvKfmDFw1aAKJowmGXuNGlOg0merHhGdDbI,24881
|
|
1839
1856
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1840
1857
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1858
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=RyckwnehpSofJpfwMJTaRy2zPZlZnpSv_h1odb8HDQU,6855
|
|
1841
1859
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
|
|
1842
|
-
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=
|
|
1860
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=fpOkZDMVihwzXHxMSrHqicVNLMK45RPUyNlTgARVzqI,12072
|
|
1843
1861
|
mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1844
1862
|
mindsdb/interfaces/storage/db.py,sha256=tIbODmfE6YkFup2PfVhT6lgTWNkwkJK42evSNWn52Ns,20309
|
|
1845
|
-
mindsdb/interfaces/storage/fs.py,sha256=
|
|
1863
|
+
mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
|
|
1846
1864
|
mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
|
|
1847
1865
|
mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
|
|
1848
1866
|
mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1854,13 +1872,15 @@ mindsdb/interfaces/tasks/task_thread.py,sha256=RJfPF8BUpwS95M-ytDyq35-1RUp2_Q4K3
|
|
|
1854
1872
|
mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1855
1873
|
mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
|
|
1856
1874
|
mindsdb/interfaces/triggers/triggers_controller.py,sha256=tmyaI9Pi-EUkaoN5jtRc0aGa_OgDfRRuag0-7mz-VgU,5523
|
|
1875
|
+
mindsdb/interfaces/variables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1876
|
+
mindsdb/interfaces/variables/variables_controller.py,sha256=UZ9WBL6fJibtP5Ao5Jzz3Lq_Da7ZkuoYhVS1ilLCSkc,2915
|
|
1857
1877
|
mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1858
1878
|
mindsdb/metrics/metrics.py,sha256=6pV5DO85OF_iIBTma0TXRUrfNHU9a0Ds2RS2u1-XYrU,1956
|
|
1859
1879
|
mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
|
|
1860
1880
|
mindsdb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1861
1881
|
mindsdb/migrations/alembic.ini,sha256=NdEIqmmxo5mIPQYbimTMVJ3VRay5BBs0PM1XsaAr1Gw,2193
|
|
1862
|
-
mindsdb/migrations/env.py,sha256=
|
|
1863
|
-
mindsdb/migrations/migrate.py,sha256=
|
|
1882
|
+
mindsdb/migrations/env.py,sha256=mkmVUSL2a107tiE8FPcFFeGxvEiyEwXQ75BNbMNjLG4,2217
|
|
1883
|
+
mindsdb/migrations/migrate.py,sha256=VA0hVz_PaV1VFn5gQ4NZofLHJD8gJyaI4snrHvG0IpY,2989
|
|
1864
1884
|
mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py,sha256=SdJFsF-awdH0vvyJ_cku-QggiSZAn0x1PHNF_3YgMFk,5871
|
|
1865
1885
|
mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py,sha256=VKgouePcADnmsp-AyxILjOhPVTvIZccorsH_UJN0V7E,1050
|
|
1866
1886
|
mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py,sha256=ZBqlmRK3mqvLtzFaA1AqF-rlXCPyc45wG3l1S1COs5A,10817
|
|
@@ -1920,11 +1940,12 @@ mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_j
|
|
|
1920
1940
|
mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py,sha256=5I6Zs75EzHCAEvRPbjnCEhgT-YfXJU1fHR4GeZxMyVY,1087
|
|
1921
1941
|
mindsdb/migrations/versions/2025-03-21_fda503400e43_queries.py,sha256=rZ0oj2DTLxz4sRWVElZ4YfSzEK19fIcLuRfS_3LX0rY,1418
|
|
1922
1942
|
mindsdb/migrations/versions/2025-04-22_53502b6d63bf_query_database.py,sha256=z_RcbWyUz88jc-qFS--G49Cyfb5xY0-fH7aI9r5_2qg,633
|
|
1943
|
+
mindsdb/migrations/versions/2025-05-21_9f150e4f9a05_checkpoint_1.py,sha256=Nb13ralIE2QRHn1I1ZnQWFbATGeaqH3srbpdJ5XL0x0,17470
|
|
1923
1944
|
mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1924
1945
|
mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1925
1946
|
mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
|
|
1926
1947
|
mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
|
|
1927
|
-
mindsdb/utilities/config.py,sha256=
|
|
1948
|
+
mindsdb/utilities/config.py,sha256=qF1Tr1YPz0c2O5GqUbZZkWKci_7kstCkuL-5OXAFJgI,26578
|
|
1928
1949
|
mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
|
|
1929
1950
|
mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
|
|
1930
1951
|
mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
|
|
@@ -1938,7 +1959,7 @@ mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
|
|
|
1938
1959
|
mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
|
|
1939
1960
|
mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
|
|
1940
1961
|
mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
|
|
1941
|
-
mindsdb/utilities/starters.py,sha256=
|
|
1962
|
+
mindsdb/utilities/starters.py,sha256=zSsSwCdO4k2Sv-8Q8to7y-tc2LkP8gwzP6rbdcL06hI,1508
|
|
1942
1963
|
mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
|
|
1943
1964
|
mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
|
|
1944
1965
|
mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
|
|
@@ -1960,8 +1981,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
|
|
|
1960
1981
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1961
1982
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1962
1983
|
mindsdb/utilities/render/sqlalchemy_render.py,sha256=6NqOcfz19dhd0PEyNfOtNHsBt1fGjq2E3nFNUad5HOk,31444
|
|
1963
|
-
mindsdb-25.5.
|
|
1964
|
-
mindsdb-25.5.
|
|
1965
|
-
mindsdb-25.5.
|
|
1966
|
-
mindsdb-25.5.
|
|
1967
|
-
mindsdb-25.5.
|
|
1984
|
+
mindsdb-25.5.4.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1985
|
+
mindsdb-25.5.4.0.dist-info/METADATA,sha256=fildVyD-98sD9p-kaIUtYeQlu3EQhWdw5hW8VhWFXPk,44945
|
|
1986
|
+
mindsdb-25.5.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1987
|
+
mindsdb-25.5.4.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1988
|
+
mindsdb-25.5.4.0.dist-info/RECORD,,
|