MindsDB 1.2.9__py3-none-any.whl → 24.12.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-24.12.4.0.dist-info/LICENSE +199 -0
- MindsDB-24.12.4.0.dist-info/METADATA +910 -0
- MindsDB-24.12.4.0.dist-info/RECORD +1922 -0
- {MindsDB-1.2.9.dist-info → MindsDB-24.12.4.0.dist-info}/WHEEL +1 -1
- mindsdb/__about__.py +5 -5
- mindsdb/__init__.py +1 -11
- mindsdb/__main__.py +556 -0
- mindsdb/api/common/check_auth.py +42 -0
- mindsdb/api/executor/__init__.py +2 -0
- mindsdb/api/executor/command_executor.py +2047 -0
- mindsdb/api/executor/controllers/__init__.py +1 -0
- mindsdb/api/executor/controllers/session_controller.py +91 -0
- mindsdb/api/executor/data_types/answer.py +16 -0
- mindsdb/api/executor/data_types/response_type.py +8 -0
- mindsdb/api/executor/datahub/__init__.py +1 -0
- mindsdb/api/executor/datahub/classes/tables_row.py +65 -0
- mindsdb/api/executor/datahub/datanodes/__init__.py +4 -0
- mindsdb/api/executor/datahub/datanodes/datanode.py +20 -0
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +180 -0
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +281 -0
- mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +428 -0
- mindsdb/api/executor/datahub/datanodes/project_datanode.py +186 -0
- mindsdb/api/executor/datahub/datanodes/system_tables.py +525 -0
- mindsdb/api/executor/exceptions.py +39 -0
- mindsdb/api/executor/planner/__init__.py +5 -0
- mindsdb/api/executor/planner/exceptions.py +3 -0
- mindsdb/api/executor/planner/plan_join.py +640 -0
- mindsdb/api/executor/planner/plan_join_ts.py +384 -0
- mindsdb/api/executor/planner/query_plan.py +29 -0
- mindsdb/api/executor/planner/query_planner.py +837 -0
- mindsdb/api/executor/planner/query_prepare.py +527 -0
- mindsdb/api/executor/planner/step_result.py +19 -0
- mindsdb/api/executor/planner/steps.py +262 -0
- mindsdb/api/executor/planner/ts_utils.py +93 -0
- mindsdb/api/executor/planner/utils.py +126 -0
- mindsdb/api/executor/sql_query/result_set.py +312 -0
- mindsdb/api/executor/sql_query/sql_query.py +318 -0
- mindsdb/api/executor/sql_query/steps/__init__.py +13 -0
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +424 -0
- mindsdb/api/executor/sql_query/steps/base.py +21 -0
- mindsdb/api/executor/sql_query/steps/delete_step.py +49 -0
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +116 -0
- mindsdb/api/executor/sql_query/steps/insert_step.py +129 -0
- mindsdb/api/executor/sql_query/steps/join_step.py +109 -0
- mindsdb/api/executor/sql_query/steps/map_reduce_step.py +179 -0
- mindsdb/api/executor/sql_query/steps/multiple_step.py +24 -0
- mindsdb/api/executor/sql_query/steps/prepare_steps.py +59 -0
- mindsdb/api/executor/sql_query/steps/project_step.py +86 -0
- mindsdb/api/executor/sql_query/steps/sql_steps.py +41 -0
- mindsdb/api/executor/sql_query/steps/subselect_step.py +159 -0
- mindsdb/api/executor/sql_query/steps/union_step.py +56 -0
- mindsdb/api/executor/sql_query/steps/update_step.py +129 -0
- mindsdb/api/executor/utilities/functions.py +37 -0
- mindsdb/api/executor/utilities/sql.py +195 -0
- mindsdb/api/http/gui.py +94 -0
- mindsdb/api/http/gunicorn_wrapper.py +17 -0
- mindsdb/api/http/initialize.py +454 -0
- mindsdb/api/http/namespaces/agents.py +499 -0
- mindsdb/api/http/namespaces/analysis.py +117 -0
- mindsdb/api/http/namespaces/auth.py +167 -0
- mindsdb/api/http/namespaces/chatbots.py +318 -0
- mindsdb/api/http/namespaces/config.py +286 -0
- mindsdb/api/http/namespaces/configs/agents.py +3 -0
- mindsdb/api/http/namespaces/configs/analysis.py +3 -0
- mindsdb/api/http/namespaces/configs/auth.py +4 -0
- mindsdb/api/http/namespaces/configs/chatbots.py +3 -0
- mindsdb/api/http/namespaces/configs/config.py +3 -0
- mindsdb/api/http/namespaces/configs/databases.py +3 -0
- mindsdb/api/http/namespaces/configs/default.py +4 -0
- mindsdb/api/http/namespaces/configs/files.py +4 -0
- mindsdb/api/http/namespaces/configs/handlers.py +3 -0
- mindsdb/api/http/namespaces/configs/jobs.py +3 -0
- mindsdb/api/http/namespaces/configs/knowledge_bases.py +3 -0
- mindsdb/api/http/namespaces/configs/projects.py +3 -0
- mindsdb/api/http/namespaces/configs/skills.py +3 -0
- mindsdb/api/http/namespaces/configs/sql.py +3 -0
- mindsdb/api/http/namespaces/configs/tabs.py +3 -0
- mindsdb/api/http/namespaces/configs/tree.py +3 -0
- mindsdb/api/http/namespaces/configs/util.py +3 -0
- mindsdb/api/http/namespaces/configs/webhooks.py +3 -0
- mindsdb/api/http/namespaces/databases.py +394 -0
- mindsdb/api/http/namespaces/default.py +152 -0
- mindsdb/api/http/namespaces/file.py +191 -0
- mindsdb/api/http/namespaces/handlers.py +232 -0
- mindsdb/api/http/namespaces/jobs.py +99 -0
- mindsdb/api/http/namespaces/knowledge_bases.py +420 -0
- mindsdb/api/http/namespaces/models.py +297 -0
- mindsdb/api/http/namespaces/projects.py +46 -0
- mindsdb/api/http/namespaces/skills.py +170 -0
- mindsdb/api/http/namespaces/sql.py +162 -0
- mindsdb/api/http/namespaces/tab.py +131 -0
- mindsdb/api/http/namespaces/tree.py +105 -0
- mindsdb/api/http/namespaces/util.py +144 -0
- mindsdb/api/http/namespaces/views.py +153 -0
- mindsdb/api/http/namespaces/webhooks.py +29 -0
- mindsdb/api/http/start.py +67 -0
- mindsdb/api/http/utils.py +37 -0
- mindsdb/api/mongo/classes/__init__.py +5 -0
- mindsdb/api/mongo/classes/query_sql.py +18 -0
- mindsdb/api/mongo/classes/responder.py +45 -0
- mindsdb/api/mongo/classes/responder_collection.py +34 -0
- mindsdb/api/mongo/classes/scram.py +86 -0
- mindsdb/api/mongo/classes/session.py +23 -0
- mindsdb/api/mongo/functions/__init__.py +19 -0
- mindsdb/api/mongo/responders/__init__.py +73 -0
- mindsdb/api/mongo/responders/add_shard.py +13 -0
- mindsdb/api/mongo/responders/aggregate.py +90 -0
- mindsdb/api/mongo/responders/buildinfo.py +17 -0
- mindsdb/api/mongo/responders/coll_stats.py +62 -0
- mindsdb/api/mongo/responders/company_id.py +25 -0
- mindsdb/api/mongo/responders/connection_status.py +22 -0
- mindsdb/api/mongo/responders/count.py +21 -0
- mindsdb/api/mongo/responders/db_stats.py +31 -0
- mindsdb/api/mongo/responders/delete.py +105 -0
- mindsdb/api/mongo/responders/describe.py +23 -0
- mindsdb/api/mongo/responders/end_sessions.py +13 -0
- mindsdb/api/mongo/responders/find.py +175 -0
- mindsdb/api/mongo/responders/get_cmd_line_opts.py +18 -0
- mindsdb/api/mongo/responders/get_free_monitoring_status.py +14 -0
- mindsdb/api/mongo/responders/get_parameter.py +23 -0
- mindsdb/api/mongo/responders/getlog.py +14 -0
- mindsdb/api/mongo/responders/host_info.py +28 -0
- mindsdb/api/mongo/responders/insert.py +268 -0
- mindsdb/api/mongo/responders/is_master.py +20 -0
- mindsdb/api/mongo/responders/is_master_lower.py +13 -0
- mindsdb/api/mongo/responders/list_collections.py +55 -0
- mindsdb/api/mongo/responders/list_databases.py +37 -0
- mindsdb/api/mongo/responders/list_indexes.py +22 -0
- mindsdb/api/mongo/responders/ping.py +13 -0
- mindsdb/api/mongo/responders/recv_chunk_start.py +13 -0
- mindsdb/api/mongo/responders/replsetgetstatus.py +13 -0
- mindsdb/api/mongo/responders/sasl_continue.py +34 -0
- mindsdb/api/mongo/responders/sasl_start.py +33 -0
- mindsdb/api/mongo/responders/update_range_deletions.py +12 -0
- mindsdb/api/mongo/responders/whatsmyuri.py +18 -0
- mindsdb/api/mongo/server.py +388 -0
- mindsdb/api/mongo/start.py +15 -0
- mindsdb/api/mongo/utilities/mongodb_ast.py +257 -0
- mindsdb/api/mongo/utilities/mongodb_parser.py +145 -0
- mindsdb/api/mongo/utilities/mongodb_query.py +84 -0
- mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +130 -0
- mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +3 -0
- mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +37 -0
- mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +22 -0
- mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +151 -0
- mindsdb/api/mysql/mysql_proxy/data_types/__init__.py +0 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +212 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +166 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +15 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +140 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +44 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +94 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +159 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +52 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +58 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +20 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +80 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +96 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +106 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +13 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +54 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +46 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +53 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +16 -0
- mindsdb/api/mysql/mysql_proxy/executor/__init__.py +2 -0
- mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +138 -0
- mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py +0 -0
- mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +135 -0
- mindsdb/api/mysql/mysql_proxy/libs/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +1030 -0
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +930 -0
- mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +18 -0
- mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +48 -0
- mindsdb/api/mysql/start.py +13 -0
- mindsdb/api/postgres/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/executor/__init__.py +1 -0
- mindsdb/api/postgres/postgres_proxy/executor/executor.py +188 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +322 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +34 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +31 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +1265 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +31 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +253 -0
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +479 -0
- mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +10 -0
- mindsdb/api/postgres/start.py +11 -0
- mindsdb/integrations/__init__.py +0 -0
- mindsdb/integrations/handlers/__init__.py +0 -0
- mindsdb/integrations/handlers/access_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/access_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/access_handler/access_handler.py +197 -0
- mindsdb/integrations/handlers/access_handler/connection_args.py +15 -0
- mindsdb/integrations/handlers/access_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/access_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/access_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +32 -0
- mindsdb/integrations/handlers/aerospike_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aerospike_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +236 -0
- mindsdb/integrations/handlers/aerospike_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/aerospike_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/aerospike_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aerospike_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +36 -0
- mindsdb/integrations/handlers/airtable_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/airtable_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +211 -0
- mindsdb/integrations/handlers/airtable_handler/connection_args.py +26 -0
- mindsdb/integrations/handlers/airtable_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/airtable_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +34 -0
- mindsdb/integrations/handlers/altibase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/altibase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +253 -0
- mindsdb/integrations/handlers/altibase_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/altibase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/altibase_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/altibase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +67 -0
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +68 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +180 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +21 -0
- mindsdb/integrations/handlers/anthropic_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anthropic_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +108 -0
- mindsdb/integrations/handlers/anthropic_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/anthropic_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +290 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py +51 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py +212 -0
- mindsdb/integrations/handlers/apache_doris_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/apache_doris_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +10 -0
- mindsdb/integrations/handlers/apache_doris_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aqicn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aqicn_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn.py +35 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +97 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +425 -0
- mindsdb/integrations/handlers/aqicn_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/aqicn_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/athena_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/athena_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/athena_handler/athena_handler.py +218 -0
- mindsdb/integrations/handlers/athena_handler/connection_args.py +51 -0
- mindsdb/integrations/handlers/athena_handler/icon.svg +22 -0
- mindsdb/integrations/handlers/athena_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py +85 -0
- mindsdb/integrations/handlers/aurora_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aurora_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +140 -0
- mindsdb/integrations/handlers/aurora_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/aurora_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/aurora_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aurora_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +37 -0
- mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +37 -0
- mindsdb/integrations/handlers/autogluon_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autogluon_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +57 -0
- mindsdb/integrations/handlers/autogluon_handler/config.py +17 -0
- mindsdb/integrations/handlers/autogluon_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/autogluon_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/autokeras_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autokeras_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +139 -0
- mindsdb/integrations/handlers/autokeras_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/autokeras_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/autosklearn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autosklearn_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +53 -0
- mindsdb/integrations/handlers/autosklearn_handler/config.py +29 -0
- mindsdb/integrations/handlers/autosklearn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/azure_blob_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/azure_blob_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py +346 -0
- mindsdb/integrations/handlers/azure_blob_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/azure_blob_handler/icon.svg +30 -0
- mindsdb/integrations/handlers/azure_blob_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/bedrock_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/bedrock_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py +328 -0
- mindsdb/integrations/handlers/bedrock_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/bedrock_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/bedrock_handler/settings.py +287 -0
- mindsdb/integrations/handlers/bedrock_handler/utilities.py +46 -0
- mindsdb/integrations/handlers/bigquery_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/bigquery_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +181 -0
- mindsdb/integrations/handlers/bigquery_handler/connection_args.py +30 -0
- mindsdb/integrations/handlers/bigquery_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/bigquery_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +221 -0
- mindsdb/integrations/handlers/binance_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/binance_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/binance_handler/binance_handler.py +144 -0
- mindsdb/integrations/handlers/binance_handler/binance_tables.py +175 -0
- mindsdb/integrations/handlers/binance_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/binance_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/box_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/box_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/box_handler/box_handler.py +257 -0
- mindsdb/integrations/handlers/box_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/box_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/box_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/byom_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/byom_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/byom_handler/byom_handler.py +678 -0
- mindsdb/integrations/handlers/byom_handler/connection_args.py +19 -0
- mindsdb/integrations/handlers/byom_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +229 -0
- mindsdb/integrations/handlers/byom_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cassandra_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cassandra_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +27 -0
- mindsdb/integrations/handlers/cassandra_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/cassandra_handler/icon.svg +33 -0
- mindsdb/integrations/handlers/cassandra_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +39 -0
- mindsdb/integrations/handlers/chromadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/chromadb_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +491 -0
- mindsdb/integrations/handlers/chromadb_handler/connection_args.py +28 -0
- mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
- mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/chromadb_handler/settings.py +62 -0
- mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ckan_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ckan_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +310 -0
- mindsdb/integrations/handlers/ckan_handler/connection_args.py +22 -0
- mindsdb/integrations/handlers/ckan_handler/icon.png +0 -0
- mindsdb/integrations/handlers/ckan_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ckan_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +156 -0
- mindsdb/integrations/handlers/clickhouse_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/clickhouse_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +168 -0
- mindsdb/integrations/handlers/clickhouse_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/clickhouse_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/clickhouse_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +41 -0
- mindsdb/integrations/handlers/clipdrop_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/clipdrop_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +87 -0
- mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +193 -0
- mindsdb/integrations/handlers/clipdrop_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +219 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py +33 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +50 -0
- mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +123 -0
- mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py +41 -0
- mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
- mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +37 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +37 -0
- mindsdb/integrations/handlers/cockroach_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cockroach_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +11 -0
- mindsdb/integrations/handlers/cockroach_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +34 -0
- mindsdb/integrations/handlers/cohere_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cohere_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +88 -0
- mindsdb/integrations/handlers/cohere_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/cohere_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/coinbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/coinbase_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +138 -0
- mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +56 -0
- mindsdb/integrations/handlers/coinbase_handler/connection_args.py +34 -0
- mindsdb/integrations/handlers/coinbase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/coinbase_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/confluence_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/confluence_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +102 -0
- mindsdb/integrations/handlers/confluence_handler/confluence_table.py +193 -0
- mindsdb/integrations/handlers/confluence_handler/connection_args.py +32 -0
- mindsdb/integrations/handlers/confluence_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/confluence_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/confluence_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +68 -0
- mindsdb/integrations/handlers/couchbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/couchbase_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/couchbase_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +208 -0
- mindsdb/integrations/handlers/couchbase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/couchbase_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/couchbase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +39 -0
- mindsdb/integrations/handlers/couchbasevector_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/couchbasevector_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py +472 -0
- mindsdb/integrations/handlers/couchbasevector_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/couchbasevector_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/crate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/crate_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/crate_handler/crate_handler.py +226 -0
- mindsdb/integrations/handlers/crate_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/crate_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/crate_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +46 -0
- mindsdb/integrations/handlers/d0lt_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/d0lt_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +12 -0
- mindsdb/integrations/handlers/d0lt_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/d0lt_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +53 -0
- mindsdb/integrations/handlers/databend_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/databend_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/databend_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/databend_handler/databend_handler.py +199 -0
- mindsdb/integrations/handlers/databend_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/databend_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/databend_handler/tests/__init__.py +1 -0
- mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +37 -0
- mindsdb/integrations/handlers/databricks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/databricks_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/databricks_handler/connection_args.py +58 -0
- mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +261 -0
- mindsdb/integrations/handlers/databricks_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/databricks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/databricks_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +37 -0
- mindsdb/integrations/handlers/datastax_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/datastax_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +12 -0
- mindsdb/integrations/handlers/datastax_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/datastax_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/datastax_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +38 -0
- mindsdb/integrations/handlers/db2_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/db2_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/db2_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/db2_handler/db2_handler.py +235 -0
- mindsdb/integrations/handlers/db2_handler/icon.svg +49 -0
- mindsdb/integrations/handlers/db2_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/db2_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +46 -0
- mindsdb/integrations/handlers/derby_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/derby_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/derby_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/derby_handler/derby_handler.py +203 -0
- mindsdb/integrations/handlers/derby_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/derby_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/derby_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +46 -0
- mindsdb/integrations/handlers/discord_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/discord_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/discord_handler/discord_handler.py +187 -0
- mindsdb/integrations/handlers/discord_handler/discord_tables.py +189 -0
- mindsdb/integrations/handlers/discord_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/discord_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/discord_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +59 -0
- mindsdb/integrations/handlers/dockerhub_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dockerhub_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/dockerhub_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +55 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +112 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +509 -0
- mindsdb/integrations/handlers/dockerhub_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/documentdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/documentdb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/documentdb_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +41 -0
- mindsdb/integrations/handlers/documentdb_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/dremio_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dremio_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/dremio_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +222 -0
- mindsdb/integrations/handlers/dremio_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/dremio_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/dremio_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +35 -0
- mindsdb/integrations/handlers/dropbox_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dropbox_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/dropbox_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py +253 -0
- mindsdb/integrations/handlers/dropbox_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/dropbox_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py +18 -0
- mindsdb/integrations/handlers/druid_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/druid_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/druid_handler/connection_args.py +51 -0
- mindsdb/integrations/handlers/druid_handler/druid_handler.py +216 -0
- mindsdb/integrations/handlers/druid_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/druid_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/druid_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +35 -0
- mindsdb/integrations/handlers/dspy_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dspy_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/dspy_handler/dspy_handler.py +250 -0
- mindsdb/integrations/handlers/dspy_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/dspy_handler/requirements.txt +8 -0
- mindsdb/integrations/handlers/duckdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/duckdb_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/duckdb_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +170 -0
- mindsdb/integrations/handlers/duckdb_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +48 -0
- mindsdb/integrations/handlers/dummy_data_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dummy_data_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +97 -0
- mindsdb/integrations/handlers/dummy_data_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/dynamodb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dynamodb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/dynamodb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +293 -0
- mindsdb/integrations/handlers/dynamodb_handler/icon.svg +17 -0
- mindsdb/integrations/handlers/dynamodb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +34 -0
- mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py +45 -0
- mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +12 -0
- mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +66 -0
- mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py +38 -0
- mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +288 -0
- mindsdb/integrations/handlers/elasticsearch_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +32 -0
- mindsdb/integrations/handlers/email_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/email_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/email_handler/email_client.py +165 -0
- mindsdb/integrations/handlers/email_handler/email_handler.py +99 -0
- mindsdb/integrations/handlers/email_handler/email_ingestor.py +86 -0
- mindsdb/integrations/handlers/email_handler/email_tables.py +159 -0
- mindsdb/integrations/handlers/email_handler/icon.png +0 -0
- mindsdb/integrations/handlers/email_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/email_handler/settings.py +60 -0
- mindsdb/integrations/handlers/empress_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/empress_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/empress_handler/connection_args.py +42 -0
- mindsdb/integrations/handlers/empress_handler/empress_handler.py +211 -0
- mindsdb/integrations/handlers/empress_handler/icon.png +0 -0
- mindsdb/integrations/handlers/empress_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/empress_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +55 -0
- mindsdb/integrations/handlers/eventbrite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/eventbrite_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +94 -0
- mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +612 -0
- mindsdb/integrations/handlers/eventbrite_handler/icon.png +0 -0
- mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +216 -0
- mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/faunadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/faunadb_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/faunadb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +267 -0
- mindsdb/integrations/handlers/faunadb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/faunadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +41 -0
- mindsdb/integrations/handlers/file_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/file_handler/__init__.py +16 -0
- mindsdb/integrations/handlers/file_handler/file_handler.py +528 -0
- mindsdb/integrations/handlers/file_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/file_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/file_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/file_handler/tests/data/test.txt +10 -0
- mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +458 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py +56 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py +89 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg +67 -0
- mindsdb/integrations/handlers/firebird_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/firebird_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/firebird_handler/connection_args.py +34 -0
- mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +240 -0
- mindsdb/integrations/handlers/firebird_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/firebird_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/firebird_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +37 -0
- mindsdb/integrations/handlers/flaml_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/flaml_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +47 -0
- mindsdb/integrations/handlers/flaml_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/flaml_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/frappe_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/frappe_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_client.py +111 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +209 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +82 -0
- mindsdb/integrations/handlers/frappe_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/gcs_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gcs_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/gcs_handler/connection_args.py +29 -0
- mindsdb/integrations/handlers/gcs_handler/gcs_handler.py +375 -0
- mindsdb/integrations/handlers/gcs_handler/gcs_tables.py +50 -0
- mindsdb/integrations/handlers/gcs_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/gcs_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/github_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/github_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/github_handler/connection_args.py +32 -0
- mindsdb/integrations/handlers/github_handler/github_handler.py +124 -0
- mindsdb/integrations/handlers/github_handler/github_tables.py +965 -0
- mindsdb/integrations/handlers/github_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/github_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/gitlab_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gitlab_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +84 -0
- mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +393 -0
- mindsdb/integrations/handlers/gitlab_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/gitlab_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/gmail_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gmail_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/gmail_handler/connection_args.py +27 -0
- mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +566 -0
- mindsdb/integrations/handlers/gmail_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/gmail_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/gmail_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +50 -0
- mindsdb/integrations/handlers/gmail_handler/utils.py +45 -0
- mindsdb/integrations/handlers/google_analytics_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_analytics_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py +129 -0
- mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py +283 -0
- mindsdb/integrations/handlers/google_analytics_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py +48 -0
- mindsdb/integrations/handlers/google_books_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_books_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +184 -0
- mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +185 -0
- mindsdb/integrations/handlers/google_books_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/google_books_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_books_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +41 -0
- mindsdb/integrations/handlers/google_calendar_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_calendar_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +12 -0
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +292 -0
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +228 -0
- mindsdb/integrations/handlers/google_calendar_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +56 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py +20 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +396 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +435 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +64 -0
- mindsdb/integrations/handlers/google_fit_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_fit_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +155 -0
- mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +69 -0
- mindsdb/integrations/handlers/google_fit_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/google_fit_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/google_gemini_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_gemini_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py +370 -0
- mindsdb/integrations/handlers/google_gemini_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/google_gemini_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_search_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_search_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_search_handler/connection_args.py +15 -0
- mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +205 -0
- mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +220 -0
- mindsdb/integrations/handlers/google_search_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/google_search_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_search_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +55 -0
- mindsdb/integrations/handlers/greptimedb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/greptimedb_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py +21 -0
- mindsdb/integrations/handlers/greptimedb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/greptimedb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/groq_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/groq_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/groq_handler/groq_handler.py +136 -0
- mindsdb/integrations/handlers/groq_handler/icon.svg +30 -0
- mindsdb/integrations/handlers/groq_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/groq_handler/settings.py +31 -0
- mindsdb/integrations/handlers/hackernews_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hackernews_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +102 -0
- mindsdb/integrations/handlers/hackernews_handler/hn_table.py +152 -0
- mindsdb/integrations/handlers/hackernews_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/hana_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hana_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hana_handler/connection_args.py +57 -0
- mindsdb/integrations/handlers/hana_handler/hana_handler.py +259 -0
- mindsdb/integrations/handlers/hana_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/hana_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/hive_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hive_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hive_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/hive_handler/hive_handler.py +224 -0
- mindsdb/integrations/handlers/hive_handler/icon.svg +41 -0
- mindsdb/integrations/handlers/hive_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/hive_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +50 -0
- mindsdb/integrations/handlers/hsqldb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hsqldb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +197 -0
- mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
- mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/hubspot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hubspot_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +96 -0
- mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +589 -0
- mindsdb/integrations/handlers/hubspot_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +6 -0
- mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +250 -0
- mindsdb/integrations/handlers/huggingface_api_handler/icon.svg +24 -0
- mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +9 -0
- mindsdb/integrations/handlers/huggingface_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/huggingface_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/huggingface_handler/finetune.py +223 -0
- mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +383 -0
- mindsdb/integrations/handlers/huggingface_handler/icon.svg +24 -0
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt +5 -0
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +6 -0
- mindsdb/integrations/handlers/huggingface_handler/settings.py +27 -0
- mindsdb/integrations/handlers/ibm_cos_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ibm_cos_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py +38 -0
- mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py +338 -0
- mindsdb/integrations/handlers/ibm_cos_handler/icon.svg +54 -0
- mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ibm_cos_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py +23 -0
- mindsdb/integrations/handlers/ignite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ignite_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/ignite_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/ignite_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +207 -0
- mindsdb/integrations/handlers/ignite_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ignite_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +33 -0
- mindsdb/integrations/handlers/impala_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/impala_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/impala_handler/connection_args.py +37 -0
- mindsdb/integrations/handlers/impala_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/impala_handler/impala_handler.py +156 -0
- mindsdb/integrations/handlers/impala_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/impala_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +50 -0
- mindsdb/integrations/handlers/influxdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/influxdb_handler/__init__.py +26 -0
- mindsdb/integrations/handlers/influxdb_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +105 -0
- mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +81 -0
- mindsdb/integrations/handlers/influxdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/informix_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/informix_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/informix_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/informix_handler/informix_handler.py +318 -0
- mindsdb/integrations/handlers/informix_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/informix_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +52 -0
- mindsdb/integrations/handlers/ingres_handler/__about__.py +10 -0
- mindsdb/integrations/handlers/ingres_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/ingres_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/ingres_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +210 -0
- mindsdb/integrations/handlers/ingres_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/ingres_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +53 -0
- mindsdb/integrations/handlers/instatus_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/instatus_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/instatus_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +127 -0
- mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +393 -0
- mindsdb/integrations/handlers/intercom_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/intercom_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/intercom_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +117 -0
- mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +152 -0
- mindsdb/integrations/handlers/jira_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/jira_handler/__init__.py +26 -0
- mindsdb/integrations/handlers/jira_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/jira_handler/jira_handler.py +119 -0
- mindsdb/integrations/handlers/jira_handler/jira_table.py +151 -0
- mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/kinetica_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/kinetica_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/kinetica_handler/connection_args.py +54 -0
- mindsdb/integrations/handlers/kinetica_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +12 -0
- mindsdb/integrations/handlers/lancedb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lancedb_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/lancedb_handler/connection_args.py +35 -0
- mindsdb/integrations/handlers/lancedb_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +329 -0
- mindsdb/integrations/handlers/lancedb_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/lancedb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +99 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +221 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py +111 -0
- mindsdb/integrations/handlers/langchain_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/langchain_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/langchain_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +278 -0
- mindsdb/integrations/handlers/langchain_handler/requirements.txt +8 -0
- mindsdb/integrations/handlers/langchain_handler/tools.py +247 -0
- mindsdb/integrations/handlers/leonardoai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/leonardoai_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/leonardoai_handler/icon.svg +306 -0
- mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py +225 -0
- mindsdb/integrations/handlers/leonardoai_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/libsql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/libsql_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/libsql_handler/connection_args.py +22 -0
- mindsdb/integrations/handlers/libsql_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/libsql_handler/libsql_handler.py +192 -0
- mindsdb/integrations/handlers/libsql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/libsql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py +45 -0
- mindsdb/integrations/handlers/lightdash_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightdash_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/lightdash_handler/api.py +513 -0
- mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
- mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +108 -0
- mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +648 -0
- mindsdb/integrations/handlers/lightdash_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lightfm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightfm_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/lightfm_handler/helpers.py +175 -0
- mindsdb/integrations/handlers/lightfm_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +198 -0
- mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/lightfm_handler/settings.py +7 -0
- mindsdb/integrations/handlers/lightwood_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightwood_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/lightwood_handler/functions.py +252 -0
- mindsdb/integrations/handlers/lightwood_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +581 -0
- mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +258 -0
- mindsdb/integrations/handlers/lightwood_handler/utils.py +76 -0
- mindsdb/integrations/handlers/lindorm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lindorm_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/lindorm_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +220 -0
- mindsdb/integrations/handlers/lindorm_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +33 -0
- mindsdb/integrations/handlers/litellm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/litellm_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/litellm_handler/icon.png +0 -0
- mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +141 -0
- mindsdb/integrations/handlers/litellm_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/litellm_handler/settings.py +39 -0
- mindsdb/integrations/handlers/llama_index_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/llama_index_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/llama_index_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +201 -0
- mindsdb/integrations/handlers/llama_index_handler/requirements.txt +5 -0
- mindsdb/integrations/handlers/llama_index_handler/settings.py +65 -0
- mindsdb/integrations/handlers/ludwig_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ludwig_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
- mindsdb/integrations/handlers/ludwig_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +68 -0
- mindsdb/integrations/handlers/ludwig_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/ludwig_handler/utils.py +12 -0
- mindsdb/integrations/handlers/luma_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/luma_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/luma_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/luma_handler/icon.png +0 -0
- mindsdb/integrations/handlers/luma_handler/luma.py +47 -0
- mindsdb/integrations/handlers/luma_handler/luma_handler.py +77 -0
- mindsdb/integrations/handlers/luma_handler/luma_tables.py +164 -0
- mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/mariadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mariadb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/mariadb_handler/connection_args.py +76 -0
- mindsdb/integrations/handlers/mariadb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +12 -0
- mindsdb/integrations/handlers/mariadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/materialize_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/materialize_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/materialize_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +43 -0
- mindsdb/integrations/handlers/materialize_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +56 -0
- mindsdb/integrations/handlers/matrixone_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/matrixone_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/matrixone_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/matrixone_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +168 -0
- mindsdb/integrations/handlers/matrixone_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +56 -0
- mindsdb/integrations/handlers/maxdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/maxdb_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/maxdb_handler/connection_args.py +42 -0
- mindsdb/integrations/handlers/maxdb_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +185 -0
- mindsdb/integrations/handlers/maxdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +55 -0
- mindsdb/integrations/handlers/mediawiki_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mediawiki_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/mediawiki_handler/icon.svg +153 -0
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +87 -0
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +98 -0
- mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mendeley_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mendeley_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/mendeley_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +225 -0
- mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +134 -0
- mindsdb/integrations/handlers/mendeley_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +108 -0
- mindsdb/integrations/handlers/merlion_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/merlion_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/merlion_handler/adapters.py +182 -0
- mindsdb/integrations/handlers/merlion_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +205 -0
- mindsdb/integrations/handlers/merlion_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/milvus_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/milvus_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/milvus_handler/connection_args.py +112 -0
- mindsdb/integrations/handlers/milvus_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +332 -0
- mindsdb/integrations/handlers/milvus_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/milvus_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py +132 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/settings.py +18 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py +160 -0
- mindsdb/integrations/handlers/mlflow_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mlflow_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/mlflow_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +83 -0
- mindsdb/integrations/handlers/mlflow_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/monetdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/monetdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/monetdb_handler/connection_args.py +44 -0
- mindsdb/integrations/handlers/monetdb_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +219 -0
- mindsdb/integrations/handlers/monetdb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +50 -0
- mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +50 -0
- mindsdb/integrations/handlers/mongodb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mongodb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/mongodb_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/mongodb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +372 -0
- mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py +125 -0
- mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +286 -0
- mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/monkeylearn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +81 -0
- mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg +31 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +102 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +252 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +100 -0
- mindsdb/integrations/handlers/ms_teams_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ms_teams_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/ms_teams_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +193 -0
- mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/mssql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mssql_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/mssql_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/mssql_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +218 -0
- mindsdb/integrations/handlers/mssql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mssql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +169 -0
- mindsdb/integrations/handlers/mysql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mysql_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/mysql_handler/connection_args.py +76 -0
- mindsdb/integrations/handlers/mysql_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +214 -0
- mindsdb/integrations/handlers/mysql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mysql_handler/settings.py +46 -0
- mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/neuralforecast_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +135 -0
- mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +2 -0
- mindsdb/integrations/handlers/newsapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/newsapi_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/newsapi_handler/connection_args.py +14 -0
- mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
- mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +209 -0
- mindsdb/integrations/handlers/newsapi_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +90 -0
- mindsdb/integrations/handlers/notion_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/notion_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/notion_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/notion_handler/notion_handler.py +238 -0
- mindsdb/integrations/handlers/notion_handler/notion_table.py +422 -0
- mindsdb/integrations/handlers/notion_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/notion_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +62 -0
- mindsdb/integrations/handlers/npm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/npm_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/npm_handler/api.py +26 -0
- mindsdb/integrations/handlers/npm_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/npm_handler/npm_handler.py +53 -0
- mindsdb/integrations/handlers/npm_handler/npm_tables.py +242 -0
- mindsdb/integrations/handlers/npm_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +65 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +228 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +50 -0
- mindsdb/integrations/handlers/oceanbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oceanbase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/oceanbase_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +48 -0
- mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +56 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +45 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +100 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +208 -0
- mindsdb/integrations/handlers/ollama_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ollama_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/ollama_handler/icon.png +0 -0
- mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +171 -0
- mindsdb/integrations/handlers/openai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openai_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/openai_handler/constants.py +36 -0
- mindsdb/integrations/handlers/openai_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/openai_handler/helpers.py +197 -0
- mindsdb/integrations/handlers/openai_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/openai_handler/model_using_args.py +5 -0
- mindsdb/integrations/handlers/openai_handler/openai_handler.py +1188 -0
- mindsdb/integrations/handlers/openai_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/openai_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py +509 -0
- mindsdb/integrations/handlers/openbb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openbb_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/openbb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +119 -0
- mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +337 -0
- mindsdb/integrations/handlers/openbb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/opengauss_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/opengauss_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/opengauss_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/opengauss_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +11 -0
- mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +45 -0
- mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +90 -0
- mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +243 -0
- mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +37 -0
- mindsdb/integrations/handlers/oracle_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oracle_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/oracle_handler/connection_args.py +70 -0
- mindsdb/integrations/handlers/oracle_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +246 -0
- mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/oracle_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +32 -0
- mindsdb/integrations/handlers/orioledb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/orioledb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/orioledb_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/orioledb_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +11 -0
- mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +56 -0
- mindsdb/integrations/handlers/palm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/palm_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/palm_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/palm_handler/palm_handler.py +448 -0
- mindsdb/integrations/handlers/palm_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/paypal_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/paypal_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/paypal_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +145 -0
- mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +283 -0
- mindsdb/integrations/handlers/paypal_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pgvector_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pgvector_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pgvector_handler/connection_args.py +54 -0
- mindsdb/integrations/handlers/pgvector_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +447 -0
- mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/phoenix_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/phoenix_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/phoenix_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
- mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +229 -0
- mindsdb/integrations/handlers/phoenix_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +33 -0
- mindsdb/integrations/handlers/pinecone_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pinecone_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pinecone_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/pinecone_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +304 -0
- mindsdb/integrations/handlers/pinecone_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/pinot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pinot_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/pinot_handler/connection_args.py +49 -0
- mindsdb/integrations/handlers/pinot_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +223 -0
- mindsdb/integrations/handlers/pinot_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pinot_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +36 -0
- mindsdb/integrations/handlers/pirateweather_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pirateweather_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pirateweather_handler/connection_args.py +14 -0
- mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
- mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +236 -0
- mindsdb/integrations/handlers/plaid_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/plaid_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/plaid_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +225 -0
- mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +159 -0
- mindsdb/integrations/handlers/plaid_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/plaid_handler/utils.py +9 -0
- mindsdb/integrations/handlers/planetscale_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/planetscale_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/planetscale_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/planetscale_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +14 -0
- mindsdb/integrations/handlers/planetscale_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +103 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/portkey_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/portkey_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/portkey_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/portkey_handler/portkey_handler.py +79 -0
- mindsdb/integrations/handlers/portkey_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/postgres_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/postgres_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/postgres_handler/connection_args.py +65 -0
- mindsdb/integrations/handlers/postgres_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +396 -0
- mindsdb/integrations/handlers/postgres_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +172 -0
- mindsdb/integrations/handlers/pycaret_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pycaret_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/pycaret_handler/icon.png +0 -0
- mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +116 -0
- mindsdb/integrations/handlers/pycaret_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/pycaret_handler/test/__init__.py +0 -0
- mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +242 -0
- mindsdb/integrations/handlers/pypi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pypi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/pypi_handler/api.py +152 -0
- mindsdb/integrations/handlers/pypi_handler/icon.svg +123 -0
- mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +73 -0
- mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +263 -0
- mindsdb/integrations/handlers/qdrant_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/qdrant_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/qdrant_handler/connection_args.py +75 -0
- mindsdb/integrations/handlers/qdrant_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +402 -0
- mindsdb/integrations/handlers/qdrant_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/questdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/questdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/questdb_handler/icon.svg +25 -0
- mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +72 -0
- mindsdb/integrations/handlers/questdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/questdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +35 -0
- mindsdb/integrations/handlers/quickbooks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/quickbooks_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/quickbooks_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +97 -0
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +374 -0
- mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rag_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rag_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/rag_handler/exceptions.py +26 -0
- mindsdb/integrations/handlers/rag_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/rag_handler/ingest.py +185 -0
- mindsdb/integrations/handlers/rag_handler/rag.py +147 -0
- mindsdb/integrations/handlers/rag_handler/rag_handler.py +144 -0
- mindsdb/integrations/handlers/rag_handler/requirements.txt +6 -0
- mindsdb/integrations/handlers/rag_handler/settings.py +479 -0
- mindsdb/integrations/handlers/ray_serve_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ray_serve_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/ray_serve_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +66 -0
- mindsdb/integrations/handlers/reddit_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/reddit_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/reddit_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +106 -0
- mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +195 -0
- mindsdb/integrations/handlers/reddit_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/redshift_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/redshift_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/redshift_handler/connection_args.py +58 -0
- mindsdb/integrations/handlers/redshift_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +69 -0
- mindsdb/integrations/handlers/redshift_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +154 -0
- mindsdb/integrations/handlers/replicate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/replicate_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +162 -0
- mindsdb/integrations/handlers/replicate_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +153 -0
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +201 -0
- mindsdb/integrations/handlers/rockset_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rockset_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/rockset_handler/connection_args.py +45 -0
- mindsdb/integrations/handlers/rockset_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/rockset_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +11 -0
- mindsdb/integrations/handlers/rockset_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +32 -0
- mindsdb/integrations/handlers/s3_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/s3_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/s3_handler/connection_args.py +47 -0
- mindsdb/integrations/handlers/s3_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/s3_handler/s3_handler.py +454 -0
- mindsdb/integrations/handlers/s3_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +37 -0
- mindsdb/integrations/handlers/salesforce_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/salesforce_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/salesforce_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/salesforce_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/salesforce_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +180 -0
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +129 -0
- mindsdb/integrations/handlers/sap_erp_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sap_erp_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sap_erp_handler/api.py +79 -0
- mindsdb/integrations/handlers/sap_erp_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +161 -0
- mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +1928 -0
- mindsdb/integrations/handlers/sap_erp_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/scylla_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/scylla_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/scylla_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/scylla_handler/icon.svg +17 -0
- mindsdb/integrations/handlers/scylla_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +205 -0
- mindsdb/integrations/handlers/scylla_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +38 -0
- mindsdb/integrations/handlers/sendinblue_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sendinblue_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sendinblue_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +94 -0
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +276 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py +75 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/settings.py +12 -0
- mindsdb/integrations/handlers/serpstack_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/serpstack_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/serpstack_handler/icon.svg +86 -0
- mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py +123 -0
- mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py +260 -0
- mindsdb/integrations/handlers/sharepoint_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sharepoint_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sharepoint_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +579 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +147 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +581 -0
- mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +53 -0
- mindsdb/integrations/handlers/sharepoint_handler/utils.py +163 -0
- mindsdb/integrations/handlers/sheets_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sheets_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sheets_handler/connection_args.py +20 -0
- mindsdb/integrations/handlers/sheets_handler/icon.svg +55 -0
- mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +176 -0
- mindsdb/integrations/handlers/sheets_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +33 -0
- mindsdb/integrations/handlers/shopify_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/shopify_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/shopify_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +143 -0
- mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +1083 -0
- mindsdb/integrations/handlers/singlestore_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/singlestore_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/singlestore_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/singlestore_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +12 -0
- mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +42 -0
- mindsdb/integrations/handlers/slack_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/slack_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/slack_handler/connection_args.py +26 -0
- mindsdb/integrations/handlers/slack_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/slack_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/slack_handler/slack_handler.py +339 -0
- mindsdb/integrations/handlers/slack_handler/slack_tables.py +718 -0
- mindsdb/integrations/handlers/slack_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +27 -0
- mindsdb/integrations/handlers/snowflake_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/snowflake_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/snowflake_handler/connection_args.py +63 -0
- mindsdb/integrations/handlers/snowflake_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/snowflake_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +280 -0
- mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py +230 -0
- mindsdb/integrations/handlers/solace_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/solace_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/solace_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/solace_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/solace_handler/solace_handler.py +169 -0
- mindsdb/integrations/handlers/solr_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/solr_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/solr_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/solr_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/solr_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/solr_handler/solr_handler.py +176 -0
- mindsdb/integrations/handlers/solr_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +38 -0
- mindsdb/integrations/handlers/spacy_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/spacy_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/spacy_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/spacy_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +194 -0
- mindsdb/integrations/handlers/sqlany_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqlany_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqlany_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/sqlany_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/sqlany_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +179 -0
- mindsdb/integrations/handlers/sqlite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqlite_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqlite_handler/connection_args.py +16 -0
- mindsdb/integrations/handlers/sqlite_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +184 -0
- mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +32 -0
- mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +48 -0
- mindsdb/integrations/handlers/sqreamdb_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +154 -0
- mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +45 -0
- mindsdb/integrations/handlers/stabilityai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/stabilityai_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/stabilityai_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +186 -0
- mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +172 -0
- mindsdb/integrations/handlers/starrocks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/starrocks_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/starrocks_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/starrocks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +48 -0
- mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +56 -0
- mindsdb/integrations/handlers/statsforecast_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/statsforecast_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/statsforecast_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
- mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +192 -0
- mindsdb/integrations/handlers/strapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/strapi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/strapi_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +153 -0
- mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +131 -0
- mindsdb/integrations/handlers/strapi_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +51 -0
- mindsdb/integrations/handlers/strava_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/strava_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/strava_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/strava_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/strava_handler/strava_handler.py +113 -0
- mindsdb/integrations/handlers/strava_handler/strava_tables.py +247 -0
- mindsdb/integrations/handlers/stripe_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/stripe_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/stripe_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/stripe_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +102 -0
- mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +508 -0
- mindsdb/integrations/handlers/supabase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/supabase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/supabase_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +11 -0
- mindsdb/integrations/handlers/supabase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +46 -0
- mindsdb/integrations/handlers/surrealdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/surrealdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/surrealdb_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/surrealdb_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +196 -0
- mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +57 -0
- mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +20 -0
- mindsdb/integrations/handlers/symbl_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/symbl_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/symbl_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/symbl_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/symbl_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +106 -0
- mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +648 -0
- mindsdb/integrations/handlers/tdengine_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tdengine_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/tdengine_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/tdengine_handler/icon.svg +59 -0
- mindsdb/integrations/handlers/tdengine_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +146 -0
- mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +48 -0
- mindsdb/integrations/handlers/teradata_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/teradata_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/teradata_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/teradata_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/teradata_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +245 -0
- mindsdb/integrations/handlers/tidb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tidb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/tidb_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/tidb_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/tidb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/tidb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +45 -0
- mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +11 -0
- mindsdb/integrations/handlers/timegpt_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/timegpt_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/timegpt_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/timegpt_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +205 -0
- mindsdb/integrations/handlers/timescaledb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/timescaledb_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/timescaledb_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +47 -0
- mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +46 -0
- mindsdb/integrations/handlers/tpot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tpot_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/tpot_handler/icon.png +0 -0
- mindsdb/integrations/handlers/tpot_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +80 -0
- mindsdb/integrations/handlers/trino_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/trino_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/trino_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/trino_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/trino_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +48 -0
- mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +12 -0
- mindsdb/integrations/handlers/trino_handler/trino_handler.py +182 -0
- mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +215 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +275 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +477 -0
- mindsdb/integrations/handlers/twelve_labs_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twelve_labs_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/twelve_labs_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/twelve_labs_handler/settings.py +271 -0
- mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py +567 -0
- mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py +285 -0
- mindsdb/integrations/handlers/twilio_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twilio_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/twilio_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/twilio_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +385 -0
- mindsdb/integrations/handlers/twitter_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twitter_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/twitter_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/twitter_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +471 -0
- mindsdb/integrations/handlers/unify_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/unify_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/unify_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/unify_handler/icon.svg +25 -0
- mindsdb/integrations/handlers/unify_handler/model_using_args.py +5 -0
- mindsdb/integrations/handlers/unify_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/unify_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +60 -0
- mindsdb/integrations/handlers/unify_handler/unify_handler.py +67 -0
- mindsdb/integrations/handlers/vertex_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vertex_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/vertex_handler/icon.png +0 -0
- mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/vertex_handler/vertex_client.py +95 -0
- mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +87 -0
- mindsdb/integrations/handlers/vertica_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vertica_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/vertica_handler/connection_args.py +41 -0
- mindsdb/integrations/handlers/vertica_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/vertica_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/vertica_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +53 -0
- mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +160 -0
- mindsdb/integrations/handlers/vitess_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vitess_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/vitess_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/vitess_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/vitess_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +56 -0
- mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +48 -0
- mindsdb/integrations/handlers/weaviate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/weaviate_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/weaviate_handler/connection_args.py +29 -0
- mindsdb/integrations/handlers/weaviate_handler/icon.svg +197 -0
- mindsdb/integrations/handlers/weaviate_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +652 -0
- mindsdb/integrations/handlers/web_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/web_handler/__init__.py +24 -0
- mindsdb/integrations/handlers/web_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/web_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +343 -0
- mindsdb/integrations/handlers/web_handler/web_handler.py +91 -0
- mindsdb/integrations/handlers/webz_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/webz_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/webz_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/webz_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/webz_handler/webz_handler.py +175 -0
- mindsdb/integrations/handlers/webz_handler/webz_tables.py +218 -0
- mindsdb/integrations/handlers/whatsapp_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/whatsapp_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/whatsapp_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/whatsapp_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py +420 -0
- mindsdb/integrations/handlers/writer_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/writer_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/writer_handler/evaluate.py +362 -0
- mindsdb/integrations/handlers/writer_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/writer_handler/ingest.py +11 -0
- mindsdb/integrations/handlers/writer_handler/rag.py +14 -0
- mindsdb/integrations/handlers/writer_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/writer_handler/settings.py +86 -0
- mindsdb/integrations/handlers/writer_handler/writer_handler.py +188 -0
- mindsdb/integrations/handlers/xata_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/xata_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/xata_handler/connection_args.py +35 -0
- mindsdb/integrations/handlers/xata_handler/icon.svg +29 -0
- mindsdb/integrations/handlers/xata_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/xata_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/xata_handler/xata_handler.py +347 -0
- mindsdb/integrations/handlers/youtube_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/youtube_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/youtube_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/youtube_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +164 -0
- mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +448 -0
- mindsdb/integrations/handlers/yugabyte_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/yugabyte_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/yugabyte_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +49 -0
- mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +60 -0
- mindsdb/integrations/handlers/zendesk_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zendesk_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/zendesk_handler/connection_args.py +33 -0
- mindsdb/integrations/handlers/zendesk_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/zendesk_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py +89 -0
- mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +463 -0
- mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/zipcodebase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +67 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +107 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +499 -0
- mindsdb/integrations/handlers/zotero_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zotero_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/zotero_handler/icon.svg +102 -0
- mindsdb/integrations/handlers/zotero_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/zotero_handler/zotero_handler.py +109 -0
- mindsdb/integrations/handlers/zotero_handler/zotero_tables.py +157 -0
- mindsdb/integrations/libs/__init__.py +3 -0
- mindsdb/integrations/libs/api_handler.py +436 -0
- mindsdb/integrations/libs/api_handler_exceptions.py +18 -0
- mindsdb/integrations/libs/base.py +355 -0
- mindsdb/integrations/libs/const.py +23 -0
- mindsdb/integrations/libs/llm/__init__.py +0 -0
- mindsdb/integrations/libs/llm/config.py +106 -0
- mindsdb/integrations/libs/llm/utils.py +603 -0
- mindsdb/integrations/libs/ml_exec_base.py +453 -0
- mindsdb/integrations/libs/ml_handler_process/__init__.py +8 -0
- mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/create_validation_process.py +14 -0
- mindsdb/integrations/libs/ml_handler_process/describe_process.py +117 -0
- mindsdb/integrations/libs/ml_handler_process/func_call_process.py +26 -0
- mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/learn_process.py +156 -0
- mindsdb/integrations/libs/ml_handler_process/predict_process.py +35 -0
- mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/update_process.py +27 -0
- mindsdb/integrations/libs/process_cache.py +430 -0
- mindsdb/integrations/libs/realtime_chat_handler.py +33 -0
- mindsdb/integrations/libs/response.py +95 -0
- mindsdb/integrations/libs/storage_handler.py +88 -0
- mindsdb/integrations/libs/vectordatabase_handler.py +534 -0
- mindsdb/integrations/utilities/__init__.py +0 -0
- mindsdb/integrations/utilities/datasets/__init__.py +0 -0
- mindsdb/integrations/utilities/datasets/dataset.py +73 -0
- mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +21 -0
- mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +106 -0
- mindsdb/integrations/utilities/date_utils.py +79 -0
- mindsdb/integrations/utilities/handler_utils.py +70 -0
- mindsdb/integrations/utilities/handlers/__init__.py +0 -0
- mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +138 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +2 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py +11 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py +2 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py +59 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +108 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +128 -0
- mindsdb/integrations/utilities/handlers/query_utilities/__init__.py +4 -0
- mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py +63 -0
- mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py +44 -0
- mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py +17 -0
- mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py +71 -0
- mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py +134 -0
- mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py +67 -0
- mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py +18 -0
- mindsdb/integrations/utilities/install.py +134 -0
- mindsdb/integrations/utilities/query_traversal.py +239 -0
- mindsdb/integrations/utilities/rag/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/chains/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +218 -0
- mindsdb/integrations/utilities/rag/config_loader.py +77 -0
- mindsdb/integrations/utilities/rag/loaders/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/loaders/file_loader.py +44 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py +54 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +84 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +60 -0
- mindsdb/integrations/utilities/rag/pipelines/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/pipelines/rag.py +253 -0
- mindsdb/integrations/utilities/rag/rag_pipeline_builder.py +83 -0
- mindsdb/integrations/utilities/rag/rerankers/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +156 -0
- mindsdb/integrations/utilities/rag/retrievers/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py +117 -0
- mindsdb/integrations/utilities/rag/retrievers/base.py +10 -0
- mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py +101 -0
- mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +149 -0
- mindsdb/integrations/utilities/rag/settings.py +511 -0
- mindsdb/integrations/utilities/rag/splitters/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/splitters/file_splitter.py +132 -0
- mindsdb/integrations/utilities/rag/utils.py +52 -0
- mindsdb/integrations/utilities/rag/vector_store.py +99 -0
- mindsdb/integrations/utilities/sql_utils.py +224 -0
- mindsdb/integrations/utilities/test_utils.py +30 -0
- mindsdb/integrations/utilities/time_series_utils.py +191 -0
- mindsdb/integrations/utilities/utils.py +32 -0
- mindsdb/interfaces/__init__.py +1 -0
- mindsdb/interfaces/agents/__init__.py +0 -0
- mindsdb/interfaces/agents/agents_controller.py +435 -0
- mindsdb/interfaces/agents/callback_handlers.py +130 -0
- mindsdb/interfaces/agents/constants.py +179 -0
- mindsdb/interfaces/agents/langchain_agent.py +676 -0
- mindsdb/interfaces/agents/langfuse_callback_handler.py +163 -0
- mindsdb/interfaces/agents/mindsdb_chat_model.py +196 -0
- mindsdb/interfaces/agents/mindsdb_database_agent.py +54 -0
- mindsdb/interfaces/agents/safe_output_parser.py +51 -0
- mindsdb/interfaces/chatbot/__init__.py +1 -0
- mindsdb/interfaces/chatbot/chatbot_controller.py +409 -0
- mindsdb/interfaces/chatbot/chatbot_executor.py +226 -0
- mindsdb/interfaces/chatbot/chatbot_task.py +174 -0
- mindsdb/interfaces/chatbot/memory.py +223 -0
- mindsdb/interfaces/chatbot/model_executor.py +107 -0
- mindsdb/interfaces/chatbot/polling.py +233 -0
- mindsdb/interfaces/chatbot/types.py +38 -0
- mindsdb/interfaces/database/__init__.py +0 -0
- mindsdb/interfaces/database/database.py +122 -0
- mindsdb/interfaces/database/integrations.py +931 -0
- mindsdb/interfaces/database/log.py +297 -0
- mindsdb/interfaces/database/projects.py +397 -0
- mindsdb/interfaces/database/views.py +139 -0
- mindsdb/interfaces/file/__init__.py +0 -0
- mindsdb/interfaces/file/file_controller.py +146 -0
- mindsdb/interfaces/functions/__init__.py +0 -0
- mindsdb/interfaces/functions/controller.py +207 -0
- mindsdb/interfaces/jobs/__init__.py +0 -0
- mindsdb/interfaces/jobs/jobs_controller.py +549 -0
- mindsdb/interfaces/jobs/scheduler.py +143 -0
- mindsdb/interfaces/knowledge_base/__init__.py +0 -0
- mindsdb/interfaces/knowledge_base/controller.py +899 -0
- mindsdb/interfaces/knowledge_base/preprocessing/__init__.py +0 -0
- mindsdb/interfaces/knowledge_base/preprocessing/constants.py +13 -0
- mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +176 -0
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +401 -0
- mindsdb/interfaces/knowledge_base/preprocessing/models.py +108 -0
- mindsdb/interfaces/model/__init__.py +0 -0
- mindsdb/interfaces/model/functions.py +155 -0
- mindsdb/interfaces/model/model_controller.py +488 -0
- mindsdb/interfaces/query_context/__init__.py +0 -0
- mindsdb/interfaces/query_context/context_controller.py +289 -0
- mindsdb/interfaces/query_context/last_query.py +266 -0
- mindsdb/interfaces/skills/__init__.py +1 -0
- mindsdb/interfaces/skills/custom/__init__.py +0 -0
- mindsdb/interfaces/skills/custom/text2sql/__init__.py +0 -0
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py +37 -0
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +88 -0
- mindsdb/interfaces/skills/retrieval_tool.py +110 -0
- mindsdb/interfaces/skills/skill_tool.py +255 -0
- mindsdb/interfaces/skills/skills_controller.py +175 -0
- mindsdb/interfaces/skills/sql_agent.py +256 -0
- mindsdb/interfaces/storage/__init__.py +1 -0
- mindsdb/interfaces/storage/db.py +597 -0
- mindsdb/interfaces/storage/fs.py +631 -0
- mindsdb/interfaces/storage/json.py +97 -0
- mindsdb/interfaces/storage/model_fs.py +282 -0
- mindsdb/interfaces/tabs/__init__.py +0 -0
- mindsdb/interfaces/tabs/tabs_controller.py +291 -0
- mindsdb/interfaces/tasks/__init__.py +0 -0
- mindsdb/interfaces/tasks/task.py +16 -0
- mindsdb/interfaces/tasks/task_monitor.py +150 -0
- mindsdb/interfaces/tasks/task_thread.py +55 -0
- mindsdb/interfaces/triggers/__init__.py +0 -0
- mindsdb/interfaces/triggers/trigger_task.py +95 -0
- mindsdb/interfaces/triggers/triggers_controller.py +167 -0
- mindsdb/metrics/__init__.py +0 -0
- mindsdb/metrics/metrics.py +50 -0
- mindsdb/metrics/server.py +26 -0
- mindsdb/migrations/__init__.py +0 -0
- mindsdb/migrations/alembic.ini +65 -0
- mindsdb/migrations/env.py +87 -0
- mindsdb/migrations/migrate.py +53 -0
- mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +178 -0
- mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +38 -0
- mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +256 -0
- mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +156 -0
- mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +106 -0
- mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +29 -0
- mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +33 -0
- mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +42 -0
- mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +36 -0
- mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +81 -0
- mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +69 -0
- mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +74 -0
- mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +59 -0
- mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +90 -0
- mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +115 -0
- mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +66 -0
- mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +106 -0
- mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +34 -0
- mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +56 -0
- mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +42 -0
- mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +36 -0
- mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +33 -0
- mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +35 -0
- mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +46 -0
- mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +41 -0
- mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +28 -0
- mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +35 -0
- mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +60 -0
- mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +54 -0
- mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +38 -0
- mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +26 -0
- mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +32 -0
- mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +35 -0
- mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +29 -0
- mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +82 -0
- mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +28 -0
- mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +54 -0
- mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +38 -0
- mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +33 -0
- mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py +44 -0
- mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py +32 -0
- mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py +44 -0
- mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py +36 -0
- mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py +34 -0
- mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py +50 -0
- mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py +47 -0
- mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py +42 -0
- mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py +27 -0
- mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py +41 -0
- mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py +28 -0
- mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py +103 -0
- mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py +44 -0
- mindsdb/migrations/versions/__init__.py +0 -0
- mindsdb/utilities/__init__.py +0 -0
- mindsdb/utilities/auth.py +73 -0
- mindsdb/utilities/cache.py +282 -0
- mindsdb/utilities/config.py +530 -0
- mindsdb/utilities/context.py +57 -0
- mindsdb/utilities/context_executor.py +59 -0
- mindsdb/utilities/exception.py +29 -0
- mindsdb/utilities/fs.py +153 -0
- mindsdb/utilities/functions.py +197 -0
- mindsdb/utilities/hooks/__init__.py +34 -0
- mindsdb/utilities/hooks/profiling.py +74 -0
- mindsdb/utilities/json_encoder.py +33 -0
- mindsdb/utilities/log.py +97 -0
- mindsdb/utilities/log_controller.py +39 -0
- mindsdb/utilities/ml_task_queue/__init__.py +57 -0
- mindsdb/utilities/ml_task_queue/base.py +14 -0
- mindsdb/utilities/ml_task_queue/const.py +26 -0
- mindsdb/utilities/ml_task_queue/consumer.py +252 -0
- mindsdb/utilities/ml_task_queue/producer.py +81 -0
- mindsdb/utilities/ml_task_queue/task.py +82 -0
- mindsdb/utilities/ml_task_queue/utils.py +124 -0
- mindsdb/utilities/otel.py +72 -0
- mindsdb/utilities/profiler/__init__.py +19 -0
- mindsdb/utilities/profiler/profiler.py +144 -0
- mindsdb/utilities/ps.py +78 -0
- mindsdb/utilities/render/__init__.py +0 -0
- mindsdb/utilities/render/sqlalchemy_render.py +831 -0
- mindsdb/utilities/security.py +54 -0
- mindsdb/utilities/sentry.py +46 -0
- mindsdb/utilities/telemetry.py +44 -0
- mindsdb/utilities/wizards.py +49 -0
- MindsDB-1.2.9.dist-info/LICENSE +0 -21
- MindsDB-1.2.9.dist-info/METADATA +0 -111
- MindsDB-1.2.9.dist-info/RECORD +0 -55
- mindsdb/config/__init__.py +0 -32
- mindsdb/config/helpers.py +0 -21
- mindsdb/external_libs/stats.py +0 -61
- mindsdb/libs/__init__.py +0 -6
- mindsdb/libs/backends/lightwood.py +0 -113
- mindsdb/libs/backends/ludwig.py +0 -507
- mindsdb/libs/constants/mindsdb.py +0 -81
- mindsdb/libs/controllers/predictor.py +0 -592
- mindsdb/libs/controllers/transaction.py +0 -254
- mindsdb/libs/data_sources/file_ds.py +0 -196
- mindsdb/libs/data_types/data_source.py +0 -59
- mindsdb/libs/data_types/mindsdb_logger.py +0 -127
- mindsdb/libs/data_types/probability_evaluation.py +0 -56
- mindsdb/libs/data_types/transaction_data.py +0 -15
- mindsdb/libs/data_types/transaction_output_data.py +0 -29
- mindsdb/libs/data_types/transaction_output_row.py +0 -35
- mindsdb/libs/helpers/explain_prediction.py +0 -114
- mindsdb/libs/helpers/file_helpers.py +0 -66
- mindsdb/libs/helpers/general_helpers.py +0 -276
- mindsdb/libs/helpers/multi_data_source.py +0 -28
- mindsdb/libs/helpers/parser.py +0 -161
- mindsdb/libs/helpers/probabilistic_validator.py +0 -198
- mindsdb/libs/helpers/sqlite_helpers.py +0 -33
- mindsdb/libs/helpers/text_helpers.py +0 -79
- mindsdb/libs/helpers/train_helpers.py +0 -4
- mindsdb/libs/phases/base_module.py +0 -62
- mindsdb/libs/phases/data_extractor/data_extractor.py +0 -233
- mindsdb/libs/phases/data_transformer/data_transformer.py +0 -103
- mindsdb/libs/phases/model_analyzer/helpers/column_evaluator.py +0 -120
- mindsdb/libs/phases/model_analyzer/model_analyzer.py +0 -119
- mindsdb/libs/phases/model_interface/model_interface.py +0 -33
- mindsdb/libs/phases/stats_generator/scores.py +0 -377
- mindsdb/libs/phases/stats_generator/stats_generator.py +0 -694
- mindsdb/scraps.py +0 -133
- {MindsDB-1.2.9.dist-info → MindsDB-24.12.4.0.dist-info}/top_level.txt +0 -0
- /mindsdb/{external_libs → api}/__init__.py +0 -0
- /mindsdb/{libs/backends → api/common}/__init__.py +0 -0
- /mindsdb/{libs/constants → api/executor/data_types}/__init__.py +0 -0
- /mindsdb/{libs/controllers → api/executor/datahub/classes}/__init__.py +0 -0
- /mindsdb/{libs/data_sources → api/executor/sql_query}/__init__.py +0 -0
- /mindsdb/{libs/data_types → api/executor/utilities}/__init__.py +0 -0
- /mindsdb/{libs/helpers → api/http}/__init__.py +0 -0
- /mindsdb/{libs/phases → api/http/namespaces}/__init__.py +0 -0
- /mindsdb/{libs/phases/data_extractor → api/http/namespaces/configs}/__init__.py +0 -0
- /mindsdb/{libs/phases/data_transformer → api/mongo}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_analyzer → api/mongo/utilities}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_analyzer/helpers → api/mysql}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_interface → api/mysql/mysql_proxy}/__init__.py +0 -0
- /mindsdb/{libs/phases/stats_generator → api/mysql/mysql_proxy/classes}/__init__.py +0 -0
|
@@ -0,0 +1,1922 @@
|
|
|
1
|
+
mindsdb/__about__.py,sha256=T6csLNym5g600aqNQVpA_XCCVaoWgGRIhQoj2pjpHeI,445
|
|
2
|
+
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
|
+
mindsdb/__main__.py,sha256=WfA21e9gafJftWqykv-sjFhCU8KgQxfW7sd3E7I96bQ,21724
|
|
4
|
+
mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
|
|
7
|
+
mindsdb/api/executor/__init__.py,sha256=a90gM1dHPu7KYIcxehIq_fl8ntJ7I5AxhQEvhJDMSiE,62
|
|
8
|
+
mindsdb/api/executor/command_executor.py,sha256=R0g8ACIqLg7DX5kHhDSDa2PdVu_YOIBuwXpop4KKhZY,80629
|
|
9
|
+
mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
|
|
10
|
+
mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
|
|
11
|
+
mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
|
|
12
|
+
mindsdb/api/executor/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
mindsdb/api/executor/data_types/answer.py,sha256=ZglwIpy9qB5ltfsflpVZR0A9Zrpuu3qTKB75kI3jthQ,412
|
|
14
|
+
mindsdb/api/executor/data_types/response_type.py,sha256=eAmjV_UoOKTLh6H7Qi9_1VFhvGm7k1u30D8anJJASGo,128
|
|
15
|
+
mindsdb/api/executor/datahub/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
16
|
+
mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=wT3TzoK3dFNiRc92rh_Hgo1uqaznFldtXBUGCzKNOlg,1934
|
|
18
|
+
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
19
|
+
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=-WsN9svEd1FlcToR56wmfJYGSiGcryfx5StnBHdj4JA,355
|
|
20
|
+
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=D0wM8_uPfTcmnswcnyXGH86UZOiPg2ASmDuOVs3zhMY,6323
|
|
21
|
+
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=EmEaH8foFIDBo9f8rb51yKugqJbKO0jZbLZkSJzXq1Q,9515
|
|
22
|
+
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=OQJbmzGLYzbA0v-_rwmzB5gvwpJVO0c9h6oNjeGjGPU,12554
|
|
23
|
+
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=4Apa575dvcuSG-e6x-Aae_YzPUnW4RGJ7KUDoYswxHI,6826
|
|
24
|
+
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=puAzEVGfZCckan8febfdREtnO-lJYnP0a7T2GwRexGo,14388
|
|
25
|
+
mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
|
|
26
|
+
mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
|
|
27
|
+
mindsdb/api/executor/planner/plan_join.py,sha256=rZn21LGxWyRou4iVOpNpt9IY4TytPoIDJy8rfGqfhoE,22506
|
|
28
|
+
mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
|
|
29
|
+
mindsdb/api/executor/planner/query_plan.py,sha256=T2KAz19cYrtPwJp4JKAYU9WeBzFppCH3btAQZLknsNw,716
|
|
30
|
+
mindsdb/api/executor/planner/query_planner.py,sha256=xJJWmhay9AHU3X28tPFZzuqSeoxnqvIgXV4KTRuboz4,30879
|
|
31
|
+
mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
|
|
32
|
+
mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
|
|
33
|
+
mindsdb/api/executor/planner/steps.py,sha256=kB7FtJiUjiuDYk8a3qw_-EK4VKqcRZSr-udSTyctq6M,8830
|
|
34
|
+
mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
|
|
35
|
+
mindsdb/api/executor/planner/utils.py,sha256=pCec75lLc5V84LYMheprYxT7RGeJPKiNZrqA_bYmco0,3838
|
|
36
|
+
mindsdb/api/executor/sql_query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
mindsdb/api/executor/sql_query/result_set.py,sha256=yrawGqD1abkSEGITm0Y6BB7hv65OeFQtpTOxk06sWBQ,9407
|
|
38
|
+
mindsdb/api/executor/sql_query/sql_query.py,sha256=6S_PTYYsi9T4I6EvL8X5VvD8sbogSKsuxCQt9gYgGgc,11064
|
|
39
|
+
mindsdb/api/executor/sql_query/steps/__init__.py,sha256=73K_wevliekB1qX5g6RW_TN6wKqXneBVkk52m3Ualvk,728
|
|
40
|
+
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=Ww72Six7d8qdhcSnnGXyOKln2OiMBvTgNFexsNMJOIU,16324
|
|
41
|
+
mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
|
|
42
|
+
mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=YsHVlszYDV2-kxCcMnaGUyf-m7clrFzw0h0o4ZCvZAU,1324
|
|
43
|
+
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=3ciEmtczfTHDFhRwi1sgAwqt5Scl_QQxYeIrVlbfvv0,3643
|
|
44
|
+
mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=xjVSFzopHVW85sq5p5WVp4hcwkS3qdN8Ygc50jMjFJ0,3738
|
|
45
|
+
mindsdb/api/executor/sql_query/steps/join_step.py,sha256=DaXK56CI_JIO2_iATCFIDQA6d9Uf5stxOV6Wx_SQEvQ,4290
|
|
46
|
+
mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=44X1vwnPbXYQ4cQa-PS8mCQH7VgnW0v_NpG5B_wcNb4,5447
|
|
47
|
+
mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSjjHmPpNLMVPX4adAU-PoHJBuY,656
|
|
48
|
+
mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=QATZ17UHZe5h41jqJP0yicXMsr1B7ak4p7CLHogFbAA,1538
|
|
49
|
+
mindsdb/api/executor/sql_query/steps/project_step.py,sha256=WQ23VkfWrVHKRnyy91Kh9uRI7Twb-IBvSQl2TZy_21w,2854
|
|
50
|
+
mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=RXZ1L05H_MHwVNdf6qDbIStsDjG_3QxEr3wPuFtZMdM,891
|
|
51
|
+
mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=Is5KeKzFUbuAkWsbPTU1Bs9o-Lmho5p7_ELPaDwjWTY,5353
|
|
52
|
+
mindsdb/api/executor/sql_query/steps/union_step.py,sha256=BTVFZz28sGPgbwDOb7pUQxDYC3_WVOjLGBz-9eAmC60,1947
|
|
53
|
+
mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0MeUNsgVsK4pm2VrwM2ZrRua2JFvUHGhvzwzXRc8I1o,4563
|
|
54
|
+
mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
|
|
56
|
+
mindsdb/api/executor/utilities/sql.py,sha256=zIvYZy2gjXlHGet_T-uj91d2SSASQT_SbrUfM0rOIek,6521
|
|
57
|
+
mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
+
mindsdb/api/http/gui.py,sha256=V1_SYzBvEbRfpwSaNdxdlU2ylS-OhJ8IK6p6pcHNJXo,3087
|
|
59
|
+
mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
|
|
60
|
+
mindsdb/api/http/initialize.py,sha256=irU6IAhiyFkRDPmLgakhrBqh0Xi4x4aAo4jViF7eSLk,16116
|
|
61
|
+
mindsdb/api/http/start.py,sha256=3F2iob1EHNh9cCeuxD1RjlVp0wnRw-ybh7lU5KaYGK8,2350
|
|
62
|
+
mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
|
|
63
|
+
mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
mindsdb/api/http/namespaces/agents.py,sha256=fD1w2HbHYLEYr-UQ7eAPhkvrOrNlOAWw37oNNyWTmJw,18858
|
|
65
|
+
mindsdb/api/http/namespaces/analysis.py,sha256=Dp3izdLkG35cSAKNUPJfuGoFSRe34CzFPKk2CEVjDoI,3821
|
|
66
|
+
mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
|
|
67
|
+
mindsdb/api/http/namespaces/chatbots.py,sha256=9UBguchWd04wfYCrsNcFkkt0RCbg-eJcv79RIcJa5Zk,11738
|
|
68
|
+
mindsdb/api/http/namespaces/config.py,sha256=msgxhD9pBnit1w7WD4OYWaq-YtgNCzraxN7ibAvcGcU,9880
|
|
69
|
+
mindsdb/api/http/namespaces/databases.py,sha256=WlEBulLFPLtpQXGvnHR9a0r5nHGFhq44OgQPdu8TyxM,16016
|
|
70
|
+
mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
|
|
71
|
+
mindsdb/api/http/namespaces/file.py,sha256=u6xYa_moAMb0UXWGkNtErGw9nk-FbloRuLHrLCANjoU,6644
|
|
72
|
+
mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
|
|
73
|
+
mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
|
|
74
|
+
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=ghAra4exIvFA8Figel9cZLcXPVqE1TtSDtkiF23j2Ng,16534
|
|
75
|
+
mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
|
|
76
|
+
mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
|
|
77
|
+
mindsdb/api/http/namespaces/skills.py,sha256=2eG5NtaqJSXQ_ex9Tus0sHA7oF4_SKOxPTdlpnz2tkk,5923
|
|
78
|
+
mindsdb/api/http/namespaces/sql.py,sha256=l3QZ8n6xfEEXVLcOGniOnyaHRMqLtMBrLuJ8bBRkRaU,5796
|
|
79
|
+
mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
|
|
80
|
+
mindsdb/api/http/namespaces/tree.py,sha256=8I_X7Uhn6OAEsgWOfneF1UBif0T0YFmj-SG_iT20C3E,3807
|
|
81
|
+
mindsdb/api/http/namespaces/util.py,sha256=cArp3u3UBZ1pzNagjB_JjqeRTtIvE5WTNG5iuygn9_4,4587
|
|
82
|
+
mindsdb/api/http/namespaces/views.py,sha256=fIuK_D0-jr_F2UmYSdfxBWXhpbYjPhwxTs8yF0v35XI,6172
|
|
83
|
+
mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
|
|
84
|
+
mindsdb/api/http/namespaces/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
+
mindsdb/api/http/namespaces/configs/agents.py,sha256=9LKToZNLtQGBhj1nRwIjaTNDeI5PA-TbVVW1qwFdqzc,124
|
|
86
|
+
mindsdb/api/http/namespaces/configs/analysis.py,sha256=9RjJAQnyceBdrZ02MaITkebbkFGxPB_YggyKVRxsYeo,99
|
|
87
|
+
mindsdb/api/http/namespaces/configs/auth.py,sha256=7HR_8bnmVKmOvEpyVRP-dom4cJjjIgZkCf1-cSSHmK8,103
|
|
88
|
+
mindsdb/api/http/namespaces/configs/chatbots.py,sha256=djxaG_pITUBVlEvaLc4jcsic2bXFQYXa2kYuhvS0PF0,128
|
|
89
|
+
mindsdb/api/http/namespaces/configs/config.py,sha256=qMSz1C_tO7CKXFAvK4VZ4xuDFjmn8MSeHMD3nsDzHCY,102
|
|
90
|
+
mindsdb/api/http/namespaces/configs/databases.py,sha256=lPDIX53Tnuapd69622SCSkVHvB_53FRBpFfW_HT_Gfk,147
|
|
91
|
+
mindsdb/api/http/namespaces/configs/default.py,sha256=kyB8W4woUH4pzBzHUa91dEDpVrnS92v-ru94L1p2n7Q,103
|
|
92
|
+
mindsdb/api/http/namespaces/configs/files.py,sha256=IW6VGH8JPNIRI7dKcIfZR7l43JwzQBYljauzt0YLkNM,86
|
|
93
|
+
mindsdb/api/http/namespaces/configs/handlers.py,sha256=vOilR7rt70x4YYx5AWATc2_dtJQ83yPhP7IYdXgNl1c,107
|
|
94
|
+
mindsdb/api/http/namespaces/configs/jobs.py,sha256=XqKmxLPX8oUgPPIL8de64dIFmJ0L6W0vpPeiTTjaI_w,120
|
|
95
|
+
mindsdb/api/http/namespaces/configs/knowledge_bases.py,sha256=TkRI8H3pkRs22UAbqO0hMm-_OYxbSq675uDBcB5didY,142
|
|
96
|
+
mindsdb/api/http/namespaces/configs/projects.py,sha256=0fi2HiNlGS8LocnVTWKUUrQQ-P4ICvnTlgo5FEFfa5M,91
|
|
97
|
+
mindsdb/api/http/namespaces/configs/skills.py,sha256=OJ6V7r51nnnckf0xbyCgMyOSOdt5NO5mV6APfvhKCHU,130
|
|
98
|
+
mindsdb/api/http/namespaces/configs/sql.py,sha256=pVStP_vUxjChq2kh4Hk5OHaK8J-UNocoSykvhdmhgiw,98
|
|
99
|
+
mindsdb/api/http/namespaces/configs/tabs.py,sha256=5kB0gcdPuYxUebeRuNCHkX8uleEDs1tlhQupfNXqDD4,109
|
|
100
|
+
mindsdb/api/http/namespaces/configs/tree.py,sha256=MIVdZLdwQP5DnJMO8lBN7ee1uUiT6Wy5LL865qAAizg,112
|
|
101
|
+
mindsdb/api/http/namespaces/configs/util.py,sha256=BY7FtouA0QjxiygxCIrQNfP3z1dbXdbQzeKfsSW7UDE,93
|
|
102
|
+
mindsdb/api/http/namespaces/configs/webhooks.py,sha256=WTZAN2r6GdR8LbhAyh9osFGaFDtgPDCl7VMSew-NUqs,116
|
|
103
|
+
mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
+
mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
|
|
105
|
+
mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
|
|
106
|
+
mindsdb/api/mongo/classes/__init__.py,sha256=djMptbZ7tE2nfdbkIl4JS8--qISMWQ1t-dZCwYsF5X4,177
|
|
107
|
+
mindsdb/api/mongo/classes/query_sql.py,sha256=VaaizxL9RaM7Udq3U4QAc3I01XwILvNWgAUoUwEnceg,575
|
|
108
|
+
mindsdb/api/mongo/classes/responder.py,sha256=f70rusIQLTSfK2p2-Hrew09haP-SWEJaZQwEPM7ISmU,1764
|
|
109
|
+
mindsdb/api/mongo/classes/responder_collection.py,sha256=nfqahPNvwqvzNtqQy_Rj1Ml4qWS_igDykvvldqqHOII,769
|
|
110
|
+
mindsdb/api/mongo/classes/scram.py,sha256=pTSejWIV-lqu-WrXa8HNJrkWHPeEP0nle4POQXj6QOs,3217
|
|
111
|
+
mindsdb/api/mongo/classes/session.py,sha256=PscakqhYijuAjgxrwkJRgFuGtZhf38aKJbW-cQY81uA,812
|
|
112
|
+
mindsdb/api/mongo/functions/__init__.py,sha256=4seMQSsLgygeK41jqIBdwymTj0R59XploqLrSsCqSgU,266
|
|
113
|
+
mindsdb/api/mongo/responders/__init__.py,sha256=9P4apLtuhBegQBqm75nyliyodbJobxzgPZHxLoea3cA,2733
|
|
114
|
+
mindsdb/api/mongo/responders/add_shard.py,sha256=QxtUNTom7utI6LI_qYCbKVJ-6ky4RDqptdJ-zRlUITo,228
|
|
115
|
+
mindsdb/api/mongo/responders/aggregate.py,sha256=o-C0sAZwATRanS1isOzljJsQKxnK0ZrNLDOhuy7AXhc,2698
|
|
116
|
+
mindsdb/api/mongo/responders/buildinfo.py,sha256=nhZHFAzwbdHW-KlSHWirv9znPnCejxlPi-MO4f6TYNY,317
|
|
117
|
+
mindsdb/api/mongo/responders/coll_stats.py,sha256=jNJzxzDpl8MjOYkWSrCSs00Rbyr8b4O8qw1h3kxj8cE,1767
|
|
118
|
+
mindsdb/api/mongo/responders/company_id.py,sha256=ixY9HpSROzHEQ0CR_vAH2-3Mc0HBJVipSKhD2uxfXEs,689
|
|
119
|
+
mindsdb/api/mongo/responders/connection_status.py,sha256=smUfHSg75_s49fxdjUGdpBsVd01bZjUlEhg8vvR3H8E,577
|
|
120
|
+
mindsdb/api/mongo/responders/count.py,sha256=U1-r9adlVlkwnjNOheyWTxUg6J9M3o8uR-vApDrrmQY,487
|
|
121
|
+
mindsdb/api/mongo/responders/db_stats.py,sha256=NdR31lYQi0Vb0kmeCNyiaQlcT8ButyyP01Q-euzP1NY,825
|
|
122
|
+
mindsdb/api/mongo/responders/delete.py,sha256=B782oXqPjfaYyXjD9E-0E3l1a8GedzyL5uqQtb7R24Y,3642
|
|
123
|
+
mindsdb/api/mongo/responders/describe.py,sha256=FP9Si2eIh_ZEXPHvQzIn3igGVmvKZTH6C4JRYFoey9s,612
|
|
124
|
+
mindsdb/api/mongo/responders/end_sessions.py,sha256=nuArjKPdLI_e2ZmL-mSaEypIgYXG2bGqlfF8JyFwHkw,230
|
|
125
|
+
mindsdb/api/mongo/responders/find.py,sha256=6zget6S2lN9jR2B5W0GuDabDw4_wzWsmym7D1L12_FU,5705
|
|
126
|
+
mindsdb/api/mongo/responders/get_cmd_line_opts.py,sha256=vPEaRqJu0PjIt45mFvjpZJ8Y9p9bDzeiQqVtN3DZhPo,314
|
|
127
|
+
mindsdb/api/mongo/responders/get_free_monitoring_status.py,sha256=YwP9gVmtD9KHH_INuZtYqjOlEkOQg7vq4r8kSvAK-vU,272
|
|
128
|
+
mindsdb/api/mongo/responders/get_parameter.py,sha256=DcdD9ELIvcA9b3DZZr7WW5ypXYaV7pkVrurI4CCRhFA,602
|
|
129
|
+
mindsdb/api/mongo/responders/getlog.py,sha256=X8IWDSO0pvHw2B9x-YWYOvkaOUQoI8iB1frDOtGnSsw,244
|
|
130
|
+
mindsdb/api/mongo/responders/host_info.py,sha256=k9y4UkU-_5iIvaDNofOl8GRM0DwkhTfW8pp9idvkYjI,627
|
|
131
|
+
mindsdb/api/mongo/responders/insert.py,sha256=iOZfen6mqbuFcA3u4hEv6Dgh451VbPOX1mDY2F9-DEU,9468
|
|
132
|
+
mindsdb/api/mongo/responders/is_master.py,sha256=En4AY_SlXmItUVfxv0_0XoE10zpKe68sAC7UldspyII,446
|
|
133
|
+
mindsdb/api/mongo/responders/is_master_lower.py,sha256=w07COvzytNh8QCsDtKIO3yIljkWRoa7ax0yjffhqZ0o,285
|
|
134
|
+
mindsdb/api/mongo/responders/list_collections.py,sha256=nNJnjIkFHwj0l23qruu_LQAtumKWD1yt_VoR-U4Dj3o,1536
|
|
135
|
+
mindsdb/api/mongo/responders/list_databases.py,sha256=EC5WIxAAhMyWdmFYOT3R-H41bI27koz2Wk8KitaoIh4,920
|
|
136
|
+
mindsdb/api/mongo/responders/list_indexes.py,sha256=d66BhuKfiWvMIvO7ATE6h-zwsEu5Y-BNVVf_aPD-BN8,538
|
|
137
|
+
mindsdb/api/mongo/responders/ping.py,sha256=oUZKu842eAe7T5Hr9HqLxsPwz4r26IwHrScelreGEOQ,223
|
|
138
|
+
mindsdb/api/mongo/responders/recv_chunk_start.py,sha256=eZHnyvgSW58m-8_OjyWCx5aTn16q21Z9J01-zB6gSts,234
|
|
139
|
+
mindsdb/api/mongo/responders/replsetgetstatus.py,sha256=K1qrYmE8hkU8gBFB_CmHYdavJnTE_kptStael5qSpWs,235
|
|
140
|
+
mindsdb/api/mongo/responders/sasl_continue.py,sha256=V7hUrqBfAd0osdXSkKyUJ-dHH0X2FpIEwPrQ5zUKCCo,890
|
|
141
|
+
mindsdb/api/mongo/responders/sasl_start.py,sha256=BaJBgmd14_uugYVAo3fZ0csrAJmw9n2FANZ64Tg_nk4,1004
|
|
142
|
+
mindsdb/api/mongo/responders/update_range_deletions.py,sha256=PSguIk7ZH4R6gpi-fXbxTf3tJ2UUpybfMp6tZ70FySU,180
|
|
143
|
+
mindsdb/api/mongo/responders/whatsmyuri.py,sha256=VbJJF2s8YlFzQJyqSgRBWk429Q2kdcrYAjZsfMKGQvw,481
|
|
144
|
+
mindsdb/api/mongo/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
|
+
mindsdb/api/mongo/utilities/mongodb_ast.py,sha256=-4gpCs8y3ibHLQIws--tmnbN5sRIz8SxzD0yR0n7m60,7666
|
|
146
|
+
mindsdb/api/mongo/utilities/mongodb_parser.py,sha256=n4EcvqnrRMylJMTDDlCQvJh0L9zlYUbH7V29oNV4K58,4256
|
|
147
|
+
mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaDvqFRCvf8gIJ-u9s,2147
|
|
148
|
+
mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
|
+
mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
|
|
150
|
+
mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
+
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=tLp9HgbZa8bTqXshemuv2AJTjwXXyuRCgjV8l5DRuMk,34987
|
|
152
|
+
mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
+
mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
|
|
154
|
+
mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
|
|
155
|
+
mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py,sha256=EPdgPoazneHngvbeBcAHzK3kLmUOOeZoGyJepYDO_P4,4436
|
|
156
|
+
mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py,sha256=TxhoWBkpVJShG-tPLDd4_7xhz-CtjoWBtq83k5U4oEc,75
|
|
157
|
+
mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=WaO0-VOItkG2rZzffQEz2aGiKZniqTicuuTuXmBz0lA,939
|
|
158
|
+
mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py,sha256=a8Gi2hcTPYSTtqscMcEW2R-1Qu_YmMcP1CN9DOfavo0,6246
|
|
160
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py,sha256=3jjsF8bs9EJga-miiIElMZegi_-IRApeneer4AzawsA,4913
|
|
161
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py,sha256=OusdXUJI3gD62ewP4z3UH_VHrbfX7u2eSwDdL7Z0Ois,1550
|
|
162
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py,sha256=jlmxpn-SIZs35jHgaQySRXUFWewX5VYYbpa_k8VlYik,4683
|
|
163
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py,sha256=uG8HKkYSbFRadDOu18OVDhV7wgGy-dXwTYFXxgwRqDg,1097
|
|
164
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py,sha256=V6eXSr2NuRjyTjF25D5o9jG0_0R1Ry1nGJ6W2-NCMww,2982
|
|
165
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py,sha256=I5kuON2Jh7V8k7o5xxeO7IUII6-DsGrYrrmkgiMMBBE,5765
|
|
166
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py,sha256=7u7ICCXKcoPOnCYauo41AH0VDDUpThqlc0JZ74AOcQI,1428
|
|
167
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py,sha256=Z69BdxP2zgRkdbMH80LHQViD0IXBqrtZSS8nAj2AgMc,1520
|
|
168
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py,sha256=GpnE4vjpcVlawiCDjINu-kt3SWz13Ly0lHTo6yQlD6Y,486
|
|
169
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py,sha256=NYLm3iIflBISShSFw9xGLNBtIIuCoqf9w77V-kdw87I,2927
|
|
170
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py,sha256=9VjwaNrM4obv_QfK_wv4YZcpc1ub5JW7_lKrhzAG8O8,3770
|
|
171
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py,sha256=qyhrVvgLwyChXdQrTT8SGa1cUfVgqfOjbkqOHkW5mxA,3785
|
|
172
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py,sha256=vgrffdKjKDpEPTMXyTEaQDk7WBOjhyCEHu73ju6NH1I,421
|
|
173
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py,sha256=W1Xpgl_1NsA-WNnyJF-MBLisV8p-V5T1u7Xcxgl7mDk,1523
|
|
174
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py,sha256=_Pc2uTLyEkXxdSt3LY6uxpWaVOE1Nblvljw5CoggWTw,1426
|
|
175
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py,sha256=ykZJyhvw8iDq8CwVHW0RW5SWbTbfqyX1aD9dOo5Y9MA,1494
|
|
176
|
+
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py,sha256=cm2f1fjPy0nfKWCPARMvq92smMij_X4WTjOdxRlMXOM,521
|
|
177
|
+
mindsdb/api/mysql/mysql_proxy/executor/__init__.py,sha256=U4cWmxMMtOYdK4a3OvSyy-VzICWiURroIAKMKMoRcnM,38
|
|
178
|
+
mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=NjpldrNX1MzPU18NpDXUPt1J6GUpwHMaxWUPIuuDzgU,4156
|
|
179
|
+
mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
|
+
mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py,sha256=k5ZmduhQW2E3Mf_jns-dyVLsRxXUAJE1b3Qbr1FkHKo,4116
|
|
181
|
+
mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
182
|
+
mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
183
|
+
mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=-u2Qf_i-ytlkq3dQ5QIMcbBXalgh-kB4w2xXLcQX7gc,35316
|
|
184
|
+
mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
|
|
185
|
+
mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=6iKdCaPRytM2uk9F0fXEl7Xl89wU-_28K0CtndChvfU,407
|
|
186
|
+
mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
|
|
187
|
+
mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
+
mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
|
|
189
|
+
mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
|
+
mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=fudxwxAwMN9mb82CUiUqSkaHW9YJ6g3s0nF-Px5QZXc,19392
|
|
191
|
+
mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
|
|
192
|
+
mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=UhiZ21LikbFIks3fy9QLOjK9B-sqeRarte6X-rsBL7U,6378
|
|
193
|
+
mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
+
mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
|
|
195
|
+
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
|
|
196
|
+
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py,sha256=YzwqqOdkSqdWp_E_IY-UIkPpv0SakABZ7EsUdYtKFKo,1093
|
|
197
|
+
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256=-c3u1LOiZQm8auH-decAC1FX0Qc7ziGQHYVN04nJG0s,40804
|
|
198
|
+
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py,sha256=3qpSK3UWHW-Uo1qjgnz51aGPDCcVDfvQBcsmE932A8Y,626
|
|
199
|
+
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py,sha256=VDdUFydhXPrDyFD4iy_BHF4e9COXElcqmTBRqwYofKU,8422
|
|
200
|
+
mindsdb/api/postgres/postgres_proxy/utilities/__init__.py,sha256=3RdLBT2FuJ1jzjysirDmfzQ0ocRcrhKONrJw2XQB2PQ,259
|
|
201
|
+
mindsdb/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
|
+
mindsdb/integrations/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
+
mindsdb/integrations/handlers/access_handler/__about__.py,sha256=kTxz8PpOUa1zRCCgYRoef7GDBwgi1kNgVM45YakJBwA,372
|
|
204
|
+
mindsdb/integrations/handlers/access_handler/__init__.py,sha256=_t69AscRdxqG30MB4ai44N1Unq9HnNcH0Rx16dxaRgE,626
|
|
205
|
+
mindsdb/integrations/handlers/access_handler/access_handler.py,sha256=mYRfKucY4kcMxzHdDBAcGnOIWPFlr11tWbqz1CULYyc,6008
|
|
206
|
+
mindsdb/integrations/handlers/access_handler/connection_args.py,sha256=iYmUBi90giQgXkaXVdDLSPOTUIfD1d3ifQPS_wA0y20,384
|
|
207
|
+
mindsdb/integrations/handlers/access_handler/icon.svg,sha256=QOe2uE3V0DqiGvkrmzn2QqIQXWYV5uq_EqCf_lNAzPE,2406
|
|
208
|
+
mindsdb/integrations/handlers/access_handler/requirements.txt,sha256=jOCym-5XZ34jB9zFEWVma2YkFHLdT0rfa_fs_0Qf9BY,25
|
|
209
|
+
mindsdb/integrations/handlers/access_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
210
|
+
mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py,sha256=N7qrBR6n_pXJH_PlNKGQ0jLHkzGkplFRl5b9bhRDL70,1074
|
|
211
|
+
mindsdb/integrations/handlers/aerospike_handler/__about__.py,sha256=lWCw_y_QtHQbXdjw8fXeC7kEu8t4GihAtxXUbZ1s51g,348
|
|
212
|
+
mindsdb/integrations/handlers/aerospike_handler/__init__.py,sha256=DbELAOwHSlVEzx8_56hy02XhPH6Cr_TrRXxlXbm-zEI,664
|
|
213
|
+
mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py,sha256=lXzp2h3z4_mqB1ytLCKwvJ8pCJS_oqz3oSm_XciFPyI,7781
|
|
214
|
+
mindsdb/integrations/handlers/aerospike_handler/connection_args.py,sha256=KAfIIzFFKp0Z4kcp6Njo8xhlpsOFvAApqoP99j0qDHo,1355
|
|
215
|
+
mindsdb/integrations/handlers/aerospike_handler/icon.svg,sha256=4jN6xmd-B8ce3OWepjkmMODXIMPK3Kur4Zp5zNjTl7A,535
|
|
216
|
+
mindsdb/integrations/handlers/aerospike_handler/requirements.txt,sha256=BJZnhyuqUZchiIUWDtqf1WDqbq2Cun-IPY8wSLXQ09Q,18
|
|
217
|
+
mindsdb/integrations/handlers/aerospike_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
|
+
mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py,sha256=epSRNgldYVOr__3OQkxSdmcVG_ETFwj2fJETitaeJNE,1139
|
|
219
|
+
mindsdb/integrations/handlers/airtable_handler/__about__.py,sha256=-sIyuPGmLIspKFevaohQszgFNrUJaQy9zIRL7fK1FzA,348
|
|
220
|
+
mindsdb/integrations/handlers/airtable_handler/__init__.py,sha256=14_oq1I9KqGqr1s6iBp_Wycf-JLdURyrQDXTL4ze1U8,604
|
|
221
|
+
mindsdb/integrations/handlers/airtable_handler/airtable_handler.py,sha256=0pVg2DjAPPZazY80MWTz1Jk2qR7-GsoioHKJ03d7dBg,6249
|
|
222
|
+
mindsdb/integrations/handlers/airtable_handler/connection_args.py,sha256=jaJsvzdxY-KBMLeYnbs9CN2_Uxv2PtUPH8P232nmnLY,612
|
|
223
|
+
mindsdb/integrations/handlers/airtable_handler/icon.svg,sha256=1uku6nwUIPY2EyAWwFFdlDmhxQpSeCAmZ63m0VUNy2k,1930
|
|
224
|
+
mindsdb/integrations/handlers/airtable_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
|
+
mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py,sha256=qeo4RXcD1tUekJBWy80FCzGkcZnUMujaAlpjpzug_dY,1072
|
|
226
|
+
mindsdb/integrations/handlers/altibase_handler/__about__.py,sha256=ZY1RPt9CD2wMP8RGsKLZs8NbEl9Yy53kPc1RzMmvMYY,342
|
|
227
|
+
mindsdb/integrations/handlers/altibase_handler/__init__.py,sha256=rK6V3BzcoGDJjd35j9KDF61YYex00gztc2aD7HlzM0g,604
|
|
228
|
+
mindsdb/integrations/handlers/altibase_handler/altibase_handler.py,sha256=bmMqX9KFb4D8yFCKmS0M0cZONa18LuI_lVgW3d0CmAs,8469
|
|
229
|
+
mindsdb/integrations/handlers/altibase_handler/connection_args.py,sha256=ZhKFsT_RWmgQ4qrZ6Cj2ZVfWRDEN1rct0NnfGwyokqw,1631
|
|
230
|
+
mindsdb/integrations/handlers/altibase_handler/icon.svg,sha256=J257YKU1qoLHhxcrgHRI87TsbsUCgdnM-GBc2UEa318,182
|
|
231
|
+
mindsdb/integrations/handlers/altibase_handler/requirements.txt,sha256=twiDQB9BlXYcOCWeh7dfpnk6_mGveQJ9vAiOpCMWLpU,18
|
|
232
|
+
mindsdb/integrations/handlers/altibase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
|
+
mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py,sha256=lMhjT8Zd_L1nWVRAV3VzQ25jThqVfxAcQW6xGMp1i38,2025
|
|
234
|
+
mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py,sha256=jMlO4RnnArBBm2Ub_Y_io04v8UbvXmKsNLUiXHAe_0A,2054
|
|
235
|
+
mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py,sha256=IBOgrwQqNcJL_VvH1XsVRAUSveSxBBH5ua4ahQa_plo,377
|
|
236
|
+
mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py,sha256=UYxqRaBOgLmT8uZOu4iVQbW821ZdsrPrYeBaMBu-9nY,518
|
|
237
|
+
mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py,sha256=1WC6r2vUVCuRWzXIvaUVZMLKPr3m5g7OlfbsCJKXE74,7556
|
|
238
|
+
mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
239
|
+
mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt,sha256=JP68nJ1w5HbQlikWyYDNhFb8fpC66xbOkBv7_C-3lbE,39
|
|
240
|
+
mindsdb/integrations/handlers/anomaly_detection_handler/utils.py,sha256=X6mKCvRvIsRWhefL6KxJBRKbsYEJKMPGnZ7N28717JI,649
|
|
241
|
+
mindsdb/integrations/handlers/anthropic_handler/__about__.py,sha256=BOpGrNVVqgxZkoDI7YdR8TAulmniOiheh3NlVVD1OEM,354
|
|
242
|
+
mindsdb/integrations/handlers/anthropic_handler/__init__.py,sha256=vDmuCqYx-DtIhKdTs86wprg1W06qFMGu6l0opqagQOc,589
|
|
243
|
+
mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py,sha256=40VQRMqF_hSYdHpONhWjHvsEXO5TlqMOIpx7H1THY58,3398
|
|
244
|
+
mindsdb/integrations/handlers/anthropic_handler/icon.svg,sha256=YqBanC9E0WpQAEC9e8LgOF1vu5S5r58iHox3rBk6fxY,328
|
|
245
|
+
mindsdb/integrations/handlers/anthropic_handler/requirements.txt,sha256=Q1rkpICQCgBQcAmOyBWXu0r3h7-OvO7-nYVbNjjUtE0,18
|
|
246
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py,sha256=jFauECyixaq2FZz0bUE1RcO6-dyCn70YjM_TOFp4bYA,372
|
|
247
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py,sha256=E93atZpIhT_3B08vEbLHuBKG6wRSkTvTIXKGkEeDB3E,597
|
|
248
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py,sha256=qIu1OxZZ3hzrQGAaQ0_eqNB6sBB-4zNhqfU6XCGHIII,10699
|
|
249
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py,sha256=RUBy6Cw_gEUXq_7OXPGgeShUgFzPe5uoMhZ6qIFBmt8,374
|
|
250
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg,sha256=VBWUTscZjn_SpZAC_2i5lvAE-LH6OixgH7KWNPtkpP8,1743
|
|
251
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt,sha256=rzdC67iknfxXMZrxfbRDox_DbNuIFEHzv8R2adXpWTE,109
|
|
252
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py,sha256=5vF3QvzIO8M1g-Kaja1zrpzohl7IM2Tt41VAVR2Kilk,1468
|
|
253
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
254
|
+
mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py,sha256=gq0GHcJ-d21bqTl5NeIF6clAPlmMEaUniJMkXS4ryw8,7255
|
|
255
|
+
mindsdb/integrations/handlers/apache_doris_handler/__about__.py,sha256=mv5hhHBYs8v9_hT4TCelKBfYjWsEMumdup3AN_bUD_I,354
|
|
256
|
+
mindsdb/integrations/handlers/apache_doris_handler/__init__.py,sha256=jvtoYewBNtDYo6KVLDsbTuw5s-iLRZEaoBUDc-pzTJU,504
|
|
257
|
+
mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py,sha256=26MUB8QF8iCXq_g99wNgSQxKeliFxbL8uWXm3jV8HJk,319
|
|
258
|
+
mindsdb/integrations/handlers/apache_doris_handler/icon.svg,sha256=ZL8Z6bcnSHfwtQTDQTcAJ72ZU-YIHxsJbuymVEgptps,1933
|
|
259
|
+
mindsdb/integrations/handlers/apache_doris_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
260
|
+
mindsdb/integrations/handlers/aqicn_handler/__about__.py,sha256=5bncvM6qPtlo9wthOhmb-Az9XnFqGbTzO8YA8t8HVAU,371
|
|
261
|
+
mindsdb/integrations/handlers/aqicn_handler/__init__.py,sha256=tb_AvG8m55s-FJKG5eWmCk46GHGkgU1pmq83d8H3PEk,641
|
|
262
|
+
mindsdb/integrations/handlers/aqicn_handler/aqicn.py,sha256=A9L-xviv7FhV7WEgQ9hVB1ckJxk6BbwweLTlJvJgXFA,1137
|
|
263
|
+
mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py,sha256=7wi1xystf4aZsDgVkDpRh3XPY6uqS5B9n2AZ8MXXwoI,2844
|
|
264
|
+
mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py,sha256=Hsbhgcf3t2bGCyyFDm5PrRWKXCs-cF6ITqjArwWwhPw,12221
|
|
265
|
+
mindsdb/integrations/handlers/aqicn_handler/connection_args.py,sha256=MCDPWEpofDCHwXRJejoiiklW9zgQLvbiPepzgpH8WRE,383
|
|
266
|
+
mindsdb/integrations/handlers/aqicn_handler/icon.png,sha256=szvrnMeWLwNyuc8K97RhwF0eMP50F4g8uIPFzaFv2Hc,3304
|
|
267
|
+
mindsdb/integrations/handlers/aqicn_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
|
+
mindsdb/integrations/handlers/athena_handler/__about__.py,sha256=InmsDZtSD9GSPrGtI9YeOVyhySlQtyncvuq75Pp1YOQ,349
|
|
269
|
+
mindsdb/integrations/handlers/athena_handler/__init__.py,sha256=xD5paMxFeEArtLXHbiL4mR_qQWbLv9ihYXV2Ewm33_k,603
|
|
270
|
+
mindsdb/integrations/handlers/athena_handler/athena_handler.py,sha256=bpePBSaqCFHoFV8xPOqBHyVClIDgxTaTOccxqUVE3IU,7364
|
|
271
|
+
mindsdb/integrations/handlers/athena_handler/connection_args.py,sha256=SyL13n4hmf0PawLmaB461gdaen4Ks67eDvEu-FdUSSk,1512
|
|
272
|
+
mindsdb/integrations/handlers/athena_handler/icon.svg,sha256=we38wkYQyrWIFk3HbyJM_pp0F4gIts7FkAieuzwSPtA,1375
|
|
273
|
+
mindsdb/integrations/handlers/athena_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
+
mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py,sha256=0K7WV2fEX5DF6PSVVWOkqhZT7j_E9RvU36Yq92n8BLA,2362
|
|
275
|
+
mindsdb/integrations/handlers/aurora_handler/__about__.py,sha256=c03paiA025o6lc11MIXcPMdmWFGW5mSCz6rHAbGayo8,365
|
|
276
|
+
mindsdb/integrations/handlers/aurora_handler/__init__.py,sha256=wxUTZ0jcSk4363zRWZrUxdneaxLmpClLrBm3lVn3_6k,603
|
|
277
|
+
mindsdb/integrations/handlers/aurora_handler/aurora_handler.py,sha256=IY4TuFD3k4lNGara6xU6h3cp2CVpgbo_zPodOxHreYM,4469
|
|
278
|
+
mindsdb/integrations/handlers/aurora_handler/connection_args.py,sha256=Stt-pEG6p3wwJ85Qd9EqMI8o_9kUo-XqDMb3jIP_Eok,1932
|
|
279
|
+
mindsdb/integrations/handlers/aurora_handler/icon.svg,sha256=R4hw2PSmlsmPyQ2460GBGichg7rhwvIWCQmt2kN8-zk,690
|
|
280
|
+
mindsdb/integrations/handlers/aurora_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
281
|
+
mindsdb/integrations/handlers/aurora_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
282
|
+
mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py,sha256=qbDUxXiVUBSBG4rkyXO3R78x-1oMf7qTnGaXv2VDjPA,1180
|
|
283
|
+
mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py,sha256=nmwIOZ35IJ4otwIKldJVU-i2gMoYmtgcN5pHfPPqN5s,1188
|
|
284
|
+
mindsdb/integrations/handlers/autogluon_handler/__about__.py,sha256=pzp_ueZfGxReUgv4NSZQJmynQIYLcvm-6-n6prUfmuY,337
|
|
285
|
+
mindsdb/integrations/handlers/autogluon_handler/__init__.py,sha256=sWRXwYFd9GmcCyqHtrhbJ8zxvmSKA4Wce57o1U0kJP4,522
|
|
286
|
+
mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py,sha256=Vd3ZXS0SE4uKXEwfgz3hzOY_oV3V2QZ9FPIYtZ1yM8o,1771
|
|
287
|
+
mindsdb/integrations/handlers/autogluon_handler/config.py,sha256=0XrzN4IZheuv82Z97FgdBF4GkxWTS8nowoUm2gVm4l8,278
|
|
288
|
+
mindsdb/integrations/handlers/autogluon_handler/icon.svg,sha256=1DWvvXtPk3CsPNPaGi_LyRm1n2S4uTvPGxBZxCFoymE,956
|
|
289
|
+
mindsdb/integrations/handlers/autogluon_handler/requirements.txt,sha256=-YcvGjdvwcaaIS_raNf8mrfYtti3VqBSZ6JzlITtVGI,29
|
|
290
|
+
mindsdb/integrations/handlers/autokeras_handler/__about__.py,sha256=O1GbcYW-3EwU3NGSR1xo-31gc9404Vz5mOalPK48-4s,352
|
|
291
|
+
mindsdb/integrations/handlers/autokeras_handler/__init__.py,sha256=twksFx9Qgm7syJBsWJMuXmrAnH7ha1cbwIfvDymxE68,560
|
|
292
|
+
mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py,sha256=xSIf8UAVcP-Sbat6t089j4oc3aH1INYhxpk9PNFpaXs,5772
|
|
293
|
+
mindsdb/integrations/handlers/autokeras_handler/icon.svg,sha256=EBz7nZ-VyXT7Ps3es7p4AwzTXUKegnal0UHG4tVx30g,693
|
|
294
|
+
mindsdb/integrations/handlers/autokeras_handler/requirements.txt,sha256=Tt8vuUUNRP6fvafQQ7E80xO-kcZnzGWn6Zdasxb2swQ,21
|
|
295
|
+
mindsdb/integrations/handlers/autosklearn_handler/__about__.py,sha256=5MLlCXNdhytRAHGaROfNZ6ZIS9u8bKFoYtSeDG1jvEI,359
|
|
296
|
+
mindsdb/integrations/handlers/autosklearn_handler/__init__.py,sha256=KSndjfPj1fG_m1lFEEC_W4CR0PEphrtj-x4r-Fg-Stw,562
|
|
297
|
+
mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=QtQRyj-aKxtMFPrcOiYVqu1TuiN6zFxIT_NdpvYDc88,1683
|
|
298
|
+
mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=COLDouTPwcSqxxLNAEd28h7IAcbWEKT61nZbz24dD0o,710
|
|
299
|
+
mindsdb/integrations/handlers/autosklearn_handler/icon.png,sha256=kbcEAnyOFO2mj20-godaONlkzrtK-3Oj-yhQ-kX1O78,15729
|
|
300
|
+
mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=M80gYwMHVvAlFBJKtarluQacFmr6etbrUQgKjoX_hNM,32
|
|
301
|
+
mindsdb/integrations/handlers/azure_blob_handler/__about__.py,sha256=qDGv39-0a0ze7k1E3MzW2O_5IMJmXOxzITb1MB8Vslg,365
|
|
302
|
+
mindsdb/integrations/handlers/azure_blob_handler/__init__.py,sha256=F9z916N_iyz70Cph5N-dGWs-gFkW2AuP0n8Cf3Dr-iE,618
|
|
303
|
+
mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py,sha256=E2tKRD8gHmRG6z2gl6nsx-77eZZWYa5UKO02j3lxt7o,11216
|
|
304
|
+
mindsdb/integrations/handlers/azure_blob_handler/connection_args.py,sha256=Ah9weluvWvQmadscC_tvSXsYeomAg3uvuoWxpUCgp4k,637
|
|
305
|
+
mindsdb/integrations/handlers/azure_blob_handler/icon.svg,sha256=NE5ly0iXjmT7HGR5_MmAmFKzhrVu7ua-6RGwsOhRzyw,1696
|
|
306
|
+
mindsdb/integrations/handlers/azure_blob_handler/requirements.txt,sha256=eVrDyLXhbscy-qkqdFdqW7Tyztdhxu32fa9j_i9l23c,19
|
|
307
|
+
mindsdb/integrations/handlers/bedrock_handler/__about__.py,sha256=ILej1IFcfR7_67FZe6eYlbRfk9yhp8ToEJy_2D6QHQA,354
|
|
308
|
+
mindsdb/integrations/handlers/bedrock_handler/__init__.py,sha256=zFc-rdzENlOVL5V5s5h3TB38xEpcqtG7UVQuPHw0z-I,554
|
|
309
|
+
mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py,sha256=iMUaa39wS4GDVnzY2qZTK3fELkgwBl2SW8CueZqJBFM,13672
|
|
310
|
+
mindsdb/integrations/handlers/bedrock_handler/icon.svg,sha256=aNB2faW_YZfJB9qM91VzEdGIln941F3k6MHqKpTlMYs,1812
|
|
311
|
+
mindsdb/integrations/handlers/bedrock_handler/requirements.txt,sha256=EwPIRxQtl3RRCHxjoXkGNkx9MFRfzsdeWB7VSF83RfA,26
|
|
312
|
+
mindsdb/integrations/handlers/bedrock_handler/settings.py,sha256=cG_SWH0PfQ6o-evaMrv1OEYfS80NbRzMC4lkgXrw_08,11018
|
|
313
|
+
mindsdb/integrations/handlers/bedrock_handler/utilities.py,sha256=hx8mzWLApZIV-mgp_CJM8qj-X51gX9-hcTXdGxE5fSs,1184
|
|
314
|
+
mindsdb/integrations/handlers/bigquery_handler/__about__.py,sha256=hRxU4C7TM6ssU3oxS89oDVFfx-p_Wjj_jNh_Y6vq544,349
|
|
315
|
+
mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNicKAh4FLIX2TX_v6ac2r6djxr_5d9WI,612
|
|
316
|
+
mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=TaRObxvb1tlcCWVvMpA8n5axAhHKX6U9_OrGCBY00fs,6896
|
|
317
|
+
mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
|
|
318
|
+
mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
|
|
319
|
+
mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=rV1GskvFDvRL5nxRw8ZWFPnOm9OSP-TvdnDFZH2nsSU,50
|
|
320
|
+
mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
|
+
mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py,sha256=NIKmL53wA4AjWxd3BgR7GYAfoYYvVjPGa6Owvpy0WuA,7489
|
|
322
|
+
mindsdb/integrations/handlers/binance_handler/__about__.py,sha256=sRDhFENBpGgEy14erGnc-_KecQcR6O7yAGSUIY_ZWfQ,348
|
|
323
|
+
mindsdb/integrations/handlers/binance_handler/__init__.py,sha256=Bpc_CzIOl54rF2k4VXWOsTi5vp5NcdWnDVKbnD79nJI,484
|
|
324
|
+
mindsdb/integrations/handlers/binance_handler/binance_handler.py,sha256=ddjhQl-IwuyBlj5qw-j_H4dGD1B3mfhn9de5A-MY-v8,5322
|
|
325
|
+
mindsdb/integrations/handlers/binance_handler/binance_tables.py,sha256=y0UYLFRuLsZ2wNx15k_7C3DNRfZX0phMK84KSFf76yE,7458
|
|
326
|
+
mindsdb/integrations/handlers/binance_handler/icon.svg,sha256=POoCRcSxpPDhqcDIQtEzugAi_Ib4H6zwIbB7uEqZVl8,1020
|
|
327
|
+
mindsdb/integrations/handlers/binance_handler/requirements.txt,sha256=1c_Bkv-FK_40YWyOZvBIAHG73Hw7h3RFc14N1XWLPcU,17
|
|
328
|
+
mindsdb/integrations/handlers/box_handler/__about__.py,sha256=5Tc5cScsS47jvOk5sFEL34M2YKY7yy7bifRpYeEkcTA,329
|
|
329
|
+
mindsdb/integrations/handlers/box_handler/__init__.py,sha256=zc_gSF2ua4pFVziU4b3MREiHJH3BQBeqGV4U1E-I_yI,619
|
|
330
|
+
mindsdb/integrations/handlers/box_handler/box_handler.py,sha256=2piBs2Bi1UdOaK5VuZJfBpflV4QsxFQJo6bqDqc06Fs,9696
|
|
331
|
+
mindsdb/integrations/handlers/box_handler/connection_args.py,sha256=QJqJgDe9RrzD4v77TfRVt-dh7ord5CcgnciyJ_zThLA,373
|
|
332
|
+
mindsdb/integrations/handlers/box_handler/icon.svg,sha256=LhDX_Yikte5esxe9qOtHNn4dk1VT_PsiPcx3UAe1gew,1383
|
|
333
|
+
mindsdb/integrations/handlers/box_handler/requirements.txt,sha256=FQc6GqJL5eYYA9-oPcRQbmJR0HrSmnSz-5Q82yiR2sE,11
|
|
334
|
+
mindsdb/integrations/handlers/byom_handler/__about__.py,sha256=5MMwfPjVWxerbcXI564QKIUaYW43COokSWU8KBBlOEg,330
|
|
335
|
+
mindsdb/integrations/handlers/byom_handler/__init__.py,sha256=Z7tZblShNgUwwbfWQrhQGIGJOcAIaJKd5TaWmRTk64c,503
|
|
336
|
+
mindsdb/integrations/handlers/byom_handler/byom_handler.py,sha256=TbjxUi1nn5cGseaUTW4FNZv2yqYIqqoxFO0SbAIt1Bc,24818
|
|
337
|
+
mindsdb/integrations/handlers/byom_handler/connection_args.py,sha256=chqPtpiEBtko8kxS15ImkZ6Q3kuhv7vwOzV3JeyU4cU,522
|
|
338
|
+
mindsdb/integrations/handlers/byom_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
339
|
+
mindsdb/integrations/handlers/byom_handler/proc_wrapper.py,sha256=GqOB8Zw4-SYsn4lu3tkYORaNfgM4bm0HMDPyOJtErKk,5644
|
|
340
|
+
mindsdb/integrations/handlers/byom_handler/requirements.txt,sha256=h6O_RVhgcy3aggFmF8FpaGEzPbObfUEhoG3NeItFexc,27
|
|
341
|
+
mindsdb/integrations/handlers/cassandra_handler/__about__.py,sha256=rMC_DPK11JoHKA9UceTm_jkUOggj04XKkAUqw5P8wXg,347
|
|
342
|
+
mindsdb/integrations/handlers/cassandra_handler/__init__.py,sha256=US2TGuaKp48HJX_ayeNypltbagOASrnKSSUsCMNjsl4,564
|
|
343
|
+
mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py,sha256=HoQPp0Ox20BDCNB8rtrwAEoGLuh7gWDiP4YQC4_pQhU,787
|
|
344
|
+
mindsdb/integrations/handlers/cassandra_handler/connection_args.py,sha256=q4P5UYKtYl2nKQZxoS2Sap2ih9_zutGKx_1sZUYe7GI,1344
|
|
345
|
+
mindsdb/integrations/handlers/cassandra_handler/icon.svg,sha256=PPODV-GIeIjS7v_5ebf8ppkZ3ncmvGRBbhLCUW8EsEM,14968
|
|
346
|
+
mindsdb/integrations/handlers/cassandra_handler/requirements.txt,sha256=rqCdhshsrLHUE1NaKVAoV80IPlo88sOVRbFdTfgnwdk,65
|
|
347
|
+
mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
|
+
mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py,sha256=9MibR3PQlvZzt7Q0rCU6R8dICvqhPA_kxoUp4JiVEVE,1353
|
|
349
|
+
mindsdb/integrations/handlers/chromadb_handler/__about__.py,sha256=28MPMq-Rjb1tR4SawSItNeGvVRupERgeHUDW7KRiyr4,345
|
|
350
|
+
mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2JpJT_nUryqEZrRR3TtpAmynMFOfHr4,659
|
|
351
|
+
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=-fP9xV0N2l9rGkqFhUpJL_op4y7XWNqGGvzUUvJevcU,17409
|
|
352
|
+
mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
|
|
353
|
+
mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
|
|
354
|
+
mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=2QnNLVCgbaL3gdmiBda5kNKdRli30TdPkWJnV7rjTdA,16
|
|
355
|
+
mindsdb/integrations/handlers/chromadb_handler/settings.py,sha256=2WL-LMu4ESft90BriiYOmo_WQoXPfh59u_8YeJ3Ml5c,1965
|
|
356
|
+
mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
|
+
mindsdb/integrations/handlers/ckan_handler/__about__.py,sha256=asp1VEDXJCLipP3uoPK7Q_qXIODhH89pJqQyjv6P3WE,337
|
|
358
|
+
mindsdb/integrations/handlers/ckan_handler/__init__.py,sha256=ERm0z1dxntDJfeAyYMKbzmKB48LmZC03o_g5gh9GXC4,621
|
|
359
|
+
mindsdb/integrations/handlers/ckan_handler/ckan_handler.py,sha256=Ax91L41oyd0Yd6pL4Gg24KxkunU1K5xeRdHY0n1HJXY,10885
|
|
360
|
+
mindsdb/integrations/handlers/ckan_handler/connection_args.py,sha256=ZSr6LCPYAGfwWl0lB8K9j7AsbzgUNNG4i8TvpyZtc6g,721
|
|
361
|
+
mindsdb/integrations/handlers/ckan_handler/icon.png,sha256=bak0o_aTqEg7quWFRGvTt_0jKfLu5JupRjVQ7Zj45R8,8453
|
|
362
|
+
mindsdb/integrations/handlers/ckan_handler/requirements.txt,sha256=OA1uNuLzCdHtHEXFxGFdMnbGKYTrLWl9AmOFLtBvlUM,7
|
|
363
|
+
mindsdb/integrations/handlers/ckan_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
+
mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py,sha256=k6FNozFZw3Sy6VeL-HU1l_nvLe4XFbeeLYRIFbXvRy4,5210
|
|
365
|
+
mindsdb/integrations/handlers/clickhouse_handler/__about__.py,sha256=bcgP1184NBCWVD8DSJ18Y-BR2vvT4ESzhOa9fHQVC7E,347
|
|
366
|
+
mindsdb/integrations/handlers/clickhouse_handler/__init__.py,sha256=tfXb-LepNm3ftmcEc28HHrXmNTZlv67gbdDXmYEhy-g,611
|
|
367
|
+
mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py,sha256=wYrIRuxSwcWpYtMiVOPpZmiV_iX6gBWiZ7SfaZuMbYI,5608
|
|
368
|
+
mindsdb/integrations/handlers/clickhouse_handler/connection_args.py,sha256=vLcdjuhOT8N4eFLlz5WBUaC9IF53uztuEnzYaDd0eoU,1594
|
|
369
|
+
mindsdb/integrations/handlers/clickhouse_handler/icon.svg,sha256=KIUu8bJwUyhJQArja0Vf8nEKsLnskVSnIwe6V5DDA1g,387
|
|
370
|
+
mindsdb/integrations/handlers/clickhouse_handler/requirements.txt,sha256=lIzdNFpCyYcro3zNaCmXUaESg-Bi6udOePVVizUOhWw,29
|
|
371
|
+
mindsdb/integrations/handlers/clickhouse_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
372
|
+
mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py,sha256=qrdFWfAFNGTlDICcG0r0WazV8YBVIao97stTHIW7rWY,1445
|
|
373
|
+
mindsdb/integrations/handlers/clipdrop_handler/__about__.py,sha256=qxntIEKZ5A_TAmAx1zrTO4-EZ0B_WwBaEmrZTHJO2z8,344
|
|
374
|
+
mindsdb/integrations/handlers/clipdrop_handler/__init__.py,sha256=_jQf2NAPpON5bJtj803y1tY9DbpZIzw4umUthwmTLJ4,555
|
|
375
|
+
mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py,sha256=dNvip-To674woTo1LOpwGU7HRytW9WLao7HxYZ_EQok,3276
|
|
376
|
+
mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py,sha256=ONsQeOget1NPADzlReUg90dN7vx_xrUnNKsfa-KlAok,7348
|
|
377
|
+
mindsdb/integrations/handlers/clipdrop_handler/icon.svg,sha256=Ca3q1hJeXf05UZgqBQL1bpzecbHiMg2JKoulLmLfPuc,1759
|
|
378
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py,sha256=TiC7BoErftX_7VdIZy4rr7U4vHhwHgB4BRuGE4pXZ9Y,363
|
|
379
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py,sha256=EbN-bFKPqGNC9f2W4TGg5egmv4pAXzi9r69OaJlTMt0,662
|
|
380
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py,sha256=IQw6chG0tQ6GwARCsPcxN84wTuU4m0yjB6-jXTrwjlg,6646
|
|
381
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py,sha256=5GtkAk0qjYsMSlNJzEYcU3l-sM4R14Jz6ReriaUpF6U,937
|
|
382
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/icon.png,sha256=401gDIndTS_b_1KzDnoqgSpzEjZBLTA91-yU6KRWISA,75313
|
|
383
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt,sha256=SxP9VNIudLA-kKwZF57LeWjWaGEyhnUJQIa6mtq_Swg,39
|
|
384
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
385
|
+
mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py,sha256=qRCqnbHeG_BughmJJamLaTT0dGyEk6ZbZCc80Sk1ghU,1592
|
|
386
|
+
mindsdb/integrations/handlers/cloud_sql_handler/__about__.py,sha256=yhGv3W7rjxMgWatT6V36PqpaQ6o-y-acgfqHItqxl6c,366
|
|
387
|
+
mindsdb/integrations/handlers/cloud_sql_handler/__init__.py,sha256=c7KlYhFuWKlu52Com-cwTTPoX0QP19Qdzf0K5rBQyTM,614
|
|
388
|
+
mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py,sha256=lbw8oMAYW0nOxVtghmFrT-t9UE9hMtaniWq9jmpy3gs,3901
|
|
389
|
+
mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py,sha256=5KIYS2P555wodGUezO8xT-kLcLRTCTFT387EeM6r3Kc,1278
|
|
390
|
+
mindsdb/integrations/handlers/cloud_sql_handler/icon.png,sha256=ySspFcclAbho0P_mFb57wAnawtk92XToRRHBlO7BmJk,27975
|
|
391
|
+
mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt,sha256=nUotYA64SxizF23uAEoMqvbWsNJNehQeNEikI25wdVk,128
|
|
392
|
+
mindsdb/integrations/handlers/cloud_sql_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
393
|
+
mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py,sha256=aW8hvjihagJmH11rSaNKVVq0O8RpH8_8eRDWMp1XI94,1157
|
|
394
|
+
mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py,sha256=JqH9X1iwBdDrhpdkTAa42M_xOvr5S0WGOenxl-oTuM8,1157
|
|
395
|
+
mindsdb/integrations/handlers/cockroach_handler/__about__.py,sha256=WJ9y2jEWMHTAXISi2FE-JC_D0lHq4hM5GP_PS7KYBtE,347
|
|
396
|
+
mindsdb/integrations/handlers/cockroach_handler/__init__.py,sha256=ePLPPqm3y_TogGvSbV2YVnonr2OvXO_zjM1sBzIYCiE,496
|
|
397
|
+
mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py,sha256=QYaraAj443YUIPPuPaZyKpTQuBL3G62RK43W3dF89Yw,344
|
|
398
|
+
mindsdb/integrations/handlers/cockroach_handler/icon.svg,sha256=wmbJ8ohZjonsKFBzBWtsepcGHgd9vPThF511bY4CHTI,1857
|
|
399
|
+
mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
400
|
+
mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py,sha256=27akhmCYkbVtYP4rxb5wBnresmg90jC8Tu2C4Z-kUJM,1187
|
|
401
|
+
mindsdb/integrations/handlers/cohere_handler/__about__.py,sha256=X4Et6UwjebxXaX6dkXcvmTgd4QtfDZPCzT7izAiN6i4,345
|
|
402
|
+
mindsdb/integrations/handlers/cohere_handler/__init__.py,sha256=-Hf005uTMDYyZKQUcg-GwpN5HpwliDxzggjfWMi-wEA,542
|
|
403
|
+
mindsdb/integrations/handlers/cohere_handler/cohere_handler.py,sha256=8t9IjQUWwJ93vSlJYBPHga2I5KYNxVJcYnQ6GYAwrc8,2635
|
|
404
|
+
mindsdb/integrations/handlers/cohere_handler/icon.svg,sha256=kEpvJyEbO4rn816mPouHGZpz00aCQSsDsggX7W91GPc,1163
|
|
405
|
+
mindsdb/integrations/handlers/cohere_handler/requirements.txt,sha256=3t7MDeOrgNzjAXw6oE0wZrb_Z7ja8xPmy1PkozpBsvc,14
|
|
406
|
+
mindsdb/integrations/handlers/coinbase_handler/__about__.py,sha256=xTttDB5JtPIrUnMfXLTqyoL4hPocuAAqKuy9LJPaoiA,349
|
|
407
|
+
mindsdb/integrations/handlers/coinbase_handler/__init__.py,sha256=sDfgFgGFigLwtNbDzBk3OEK4mHQSfONG6dH-F_HcNPA,605
|
|
408
|
+
mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py,sha256=KPQm__Yg_u2K6-tNLgsffrHInu74Hahjp02-ft8Sn6Y,5239
|
|
409
|
+
mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py,sha256=mQGJ5A8WDNHFylEFKAuY4Fl6fep37s_K_XHRwiPzUbI,1658
|
|
410
|
+
mindsdb/integrations/handlers/coinbase_handler/connection_args.py,sha256=dPstScm0azXyC4CAgRrqlFzphXfH4ePL0LgXSB_Pjfs,866
|
|
411
|
+
mindsdb/integrations/handlers/coinbase_handler/icon.svg,sha256=MWExiK7-0F7OeLSLKfoROiNAf0cHvQWbsmXo2A8gaBo,1909
|
|
412
|
+
mindsdb/integrations/handlers/coinbase_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
413
|
+
mindsdb/integrations/handlers/confluence_handler/__about__.py,sha256=0U9j9CfAa3mfGZPk6sq1n5LfCpnHtCgIH1JkaSsPRnQ,356
|
|
414
|
+
mindsdb/integrations/handlers/confluence_handler/__init__.py,sha256=68yvHlrf7xrRjrOqkzYIXfr4mFEQKs2GtCQKBhvuuWU,646
|
|
415
|
+
mindsdb/integrations/handlers/confluence_handler/confluence_handler.py,sha256=jBrwbXKcjiaAeaExeOWfRWRyho0EtCwdXkBxOvUIXXM,3027
|
|
416
|
+
mindsdb/integrations/handlers/confluence_handler/confluence_table.py,sha256=NEGw0_FRErHbx2dfw2x3i2lNKD9OJAq2p1ffj4W9snk,6415
|
|
417
|
+
mindsdb/integrations/handlers/confluence_handler/connection_args.py,sha256=SGE1AMgywnlY8YYBfzYH7p0Y88AMCWKVhmTvcWh-ouQ,750
|
|
418
|
+
mindsdb/integrations/handlers/confluence_handler/icon.svg,sha256=Piz_ZFABS16FgHfePv3-6yBU2c-h7yeX1bZ5JXFJ_Fk,2500
|
|
419
|
+
mindsdb/integrations/handlers/confluence_handler/requirements.txt,sha256=uGqoPIycab1Q50-NoN8vHp7TdzfHVamy9_t1RvONbog,21
|
|
420
|
+
mindsdb/integrations/handlers/confluence_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
421
|
+
mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py,sha256=pICgz5DHaXNg8bqL1wtoD_cBWDrgnIHw9vbZoLKciyk,2163
|
|
422
|
+
mindsdb/integrations/handlers/couchbase_handler/__about__.py,sha256=edORh0-jjv2_SYfeqStXH_zhdp_rnsnyPQVhDHUV8Ns,345
|
|
423
|
+
mindsdb/integrations/handlers/couchbase_handler/__init__.py,sha256=l3m7YZgPa8Tw3RuGaUP5_Qj2wGp-wMTjc-7xZPj9vGU,643
|
|
424
|
+
mindsdb/integrations/handlers/couchbase_handler/connection_args.py,sha256=lx5GpK_R76pW94mSQE-sKdgoWz6Wrx4Yfn4cLYvPs48,1056
|
|
425
|
+
mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py,sha256=2ROy_quent5WXKLcMI4hu1BsseIZuFyt1crPXyOUH0Q,7003
|
|
426
|
+
mindsdb/integrations/handlers/couchbase_handler/icon.svg,sha256=_ZSMN1TvuS549tOXXYhVw-H3NsEf9xW5EHi1n3bZvZU,1683
|
|
427
|
+
mindsdb/integrations/handlers/couchbase_handler/requirements.txt,sha256=pwK85wWdjM4UJM115415Ga8pzzeW3ReFly3RDIv2jdg,16
|
|
428
|
+
mindsdb/integrations/handlers/couchbase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
|
+
mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py,sha256=fK7c0OMW3RukknwPycHyjrvQO2uqhxZr6uIP8w7UFxk,1237
|
|
430
|
+
mindsdb/integrations/handlers/couchbasevector_handler/__about__.py,sha256=_uh8OYOAuVgPojEiM8-_mmJ7IkagJAO-1tPqRRTb3YQ,376
|
|
431
|
+
mindsdb/integrations/handlers/couchbasevector_handler/__init__.py,sha256=3aGHLMAkOMTbE3FvjsKTF29b3EvoVsahP53ojwXyP7g,667
|
|
432
|
+
mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py,sha256=EIzVfSwQ85HIrmk0NIDam2EGZpeYmv_sZnSYLn5TA60,1079
|
|
433
|
+
mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py,sha256=xd_ixnu3oYO10FIqhL_V3m-zb3pqAF6guSr0Q5RXpis,16060
|
|
434
|
+
mindsdb/integrations/handlers/couchbasevector_handler/icon.svg,sha256=_ZSMN1TvuS549tOXXYhVw-H3NsEf9xW5EHi1n3bZvZU,1683
|
|
435
|
+
mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt,sha256=pwK85wWdjM4UJM115415Ga8pzzeW3ReFly3RDIv2jdg,16
|
|
436
|
+
mindsdb/integrations/handlers/couchbasevector_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
437
|
+
mindsdb/integrations/handlers/crate_handler/__about__.py,sha256=vxOswVcs0bQMndVPG3Pq1BnU_V7BqTXioNRu4vkcrEw,345
|
|
438
|
+
mindsdb/integrations/handlers/crate_handler/__init__.py,sha256=lkk_8YKFqIvquEtZwW5CkLslW5h6odPCD8ay7nHAMzQ,505
|
|
439
|
+
mindsdb/integrations/handlers/crate_handler/crate_handler.py,sha256=eL-2e521blk16ONDsPfeyi_tKEa77ApdQroabflMbgQ,7413
|
|
440
|
+
mindsdb/integrations/handlers/crate_handler/icon.svg,sha256=HrNCOvUJmYdU8pr_LWcDm_VcWKtMT5c9-BvbjNTXigw,634
|
|
441
|
+
mindsdb/integrations/handlers/crate_handler/requirements.txt,sha256=_4FlEaScN-rUFJpF46gLMXIcJcRLZy6nmrgzhluwWc4,25
|
|
442
|
+
mindsdb/integrations/handlers/crate_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
|
+
mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py,sha256=0n-pXyJyiY0lqHWDzuG799X5VBWkfLc4HUbXcBxLYdU,1484
|
|
444
|
+
mindsdb/integrations/handlers/d0lt_handler/__about__.py,sha256=5n7a8tXoXudguZZiwlUYHddienkP4C4TJSVW5cvYz14,334
|
|
445
|
+
mindsdb/integrations/handlers/d0lt_handler/__init__.py,sha256=m9ZGhpxZCM2Rzs4plnAFUI8Wni3iTTN7IFy07Hm4aPU,516
|
|
446
|
+
mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py,sha256=rq79Y0F8VjE5Xs-wqJ6zpYYChFxo76r7Dx6BwoiUEbs,335
|
|
447
|
+
mindsdb/integrations/handlers/d0lt_handler/icon.svg,sha256=nySvh4nXcjCzvzGS9jDTp9yU4F33cnREkeLtXeB80TY,2136
|
|
448
|
+
mindsdb/integrations/handlers/d0lt_handler/requirements.txt,sha256=bVkVUwIJ4qaRszTVpSh-8Ed6AfOeSlFyZhTbk5wvc3A,68
|
|
449
|
+
mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
450
|
+
mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py,sha256=e1WXfEqrL9i5nKh4ezJscNhq6tPenu9bIC8XlhCh1U8,1687
|
|
451
|
+
mindsdb/integrations/handlers/databend_handler/__about__.py,sha256=7JUx-OSm5Mchr34W5b1uhO-dk8Zcv2S4QsEajk6_8yk,348
|
|
452
|
+
mindsdb/integrations/handlers/databend_handler/__init__.py,sha256=CC0lyRAxEqvn8NFb6_S5fAcxEHQl0j6yLK74dOfdMkQ,604
|
|
453
|
+
mindsdb/integrations/handlers/databend_handler/connection_args.py,sha256=TxJUFN8JBEHe3OlGHgFxYtkQ7IhjP8SWrzWuFqD4Xhg,1103
|
|
454
|
+
mindsdb/integrations/handlers/databend_handler/databend_handler.py,sha256=YkPGljMN__YrWhBscPR8mcImY5bteGwXI6OtGZcDpNE,6080
|
|
455
|
+
mindsdb/integrations/handlers/databend_handler/icon.svg,sha256=oNgKNWZpC3VrRF06IfAfxPCDqegdb_pbVLrHHJmfsgk,2675
|
|
456
|
+
mindsdb/integrations/handlers/databend_handler/requirements.txt,sha256=Gep4uTns63iLl3hVM8uvDdVRu6WHxHHE9E4F1drJEQY,19
|
|
457
|
+
mindsdb/integrations/handlers/databend_handler/tests/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
458
|
+
mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py,sha256=iNr_jkRHbUhY1SrtFG2jGl_RYrNekNHW70XXF-gpa9g,1231
|
|
459
|
+
mindsdb/integrations/handlers/databricks_handler/__about__.py,sha256=_DJsf3lXMtRb-c9tlUQesBW5_Vinsvd7uGjcDHaQhwE,363
|
|
460
|
+
mindsdb/integrations/handlers/databricks_handler/__init__.py,sha256=go72eMqUWKLj4j7wnUbf3znTL4TQXrLfc1hTpxBxumc,675
|
|
461
|
+
mindsdb/integrations/handlers/databricks_handler/connection_args.py,sha256=tdHFSNaXlAUFkM-FX7cMXEfdF6UtEgcNPSaRhFXuSUg,1885
|
|
462
|
+
mindsdb/integrations/handlers/databricks_handler/databricks_handler.py,sha256=BFNxA5Xsdajva89SpUPMghUEubn3VaE8NsMhZhAG88s,9434
|
|
463
|
+
mindsdb/integrations/handlers/databricks_handler/icon.svg,sha256=p4vKYvjt5bXU6R88i6xcoNKHO2DNlAGZGGZPZKNkroU,618
|
|
464
|
+
mindsdb/integrations/handlers/databricks_handler/requirements.txt,sha256=WKJM5-tYSbdFsVTs9gLd3jTqmqD8nUi6yhI4ALUVyZw,24
|
|
465
|
+
mindsdb/integrations/handlers/databricks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
|
+
mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py,sha256=5b8Qcb4eZMfBtSrTpgfi-Gwk_BU5iOrV8_DWLNF01VE,1302
|
|
467
|
+
mindsdb/integrations/handlers/datastax_handler/__about__.py,sha256=KFwu-VBIpci40lIAMfFzBKW3iCXBYox8JL73Y7ma62M,351
|
|
468
|
+
mindsdb/integrations/handlers/datastax_handler/__init__.py,sha256=09dmrlJcr1F9ODZ_oYeIn1_Kzc5YmrYXrX4ErqChc1Q,521
|
|
469
|
+
mindsdb/integrations/handlers/datastax_handler/datastax_handler.py,sha256=dEMTmJDzzP-n7j_dRNKWbLdEa55tEBFnOcpd_qreCjM,327
|
|
470
|
+
mindsdb/integrations/handlers/datastax_handler/icon.svg,sha256=EMm-unr7QImi_qKGWVxpv15UIZ-QhKyW6tYQQUlr2jg,445
|
|
471
|
+
mindsdb/integrations/handlers/datastax_handler/requirements.txt,sha256=rqCdhshsrLHUE1NaKVAoV80IPlo88sOVRbFdTfgnwdk,65
|
|
472
|
+
mindsdb/integrations/handlers/datastax_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
473
|
+
mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py,sha256=jouy-RVD_8opIQasaNpdXfy-8UmvF4sTwfFbJ9rHHlA,1277
|
|
474
|
+
mindsdb/integrations/handlers/db2_handler/__about__.py,sha256=rTCKpGiOExZyKA4DYWwR6PEucz2G9YzGJO-wcym3h74,339
|
|
475
|
+
mindsdb/integrations/handlers/db2_handler/__init__.py,sha256=qisYmWiLYVEv61w_UpA_xDCnyJ5HqjtzS_9Z8vVukLw,622
|
|
476
|
+
mindsdb/integrations/handlers/db2_handler/connection_args.py,sha256=rpAadcAI1UvVjU4TII361eo1z8Lw1Z7_NcnviHJjrGQ,1430
|
|
477
|
+
mindsdb/integrations/handlers/db2_handler/db2_handler.py,sha256=9fxZ4Sq2_M2ryq1JfBnIHltWmQRy92JsnCpiLvXI45Q,8472
|
|
478
|
+
mindsdb/integrations/handlers/db2_handler/icon.svg,sha256=k9vZddOTe0Ze89caW3w6h3VvUnCoJn1K1959qQ-BGY0,56094
|
|
479
|
+
mindsdb/integrations/handlers/db2_handler/requirements.txt,sha256=aJAgOH3JdjG_8A2nFZhUUvYOkcKHJcdrz0-RchhcGNw,17
|
|
480
|
+
mindsdb/integrations/handlers/db2_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
|
+
mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py,sha256=Ozp6YSf2ixihKGg-JS_7SJjoG9mgMYhrjMSijtjoNFE,1439
|
|
482
|
+
mindsdb/integrations/handlers/derby_handler/__about__.py,sha256=TuqZrWJwnJT68J4uDLsQRbr59rDeT2R-ljATO9fh_0I,351
|
|
483
|
+
mindsdb/integrations/handlers/derby_handler/__init__.py,sha256=EhaDomgWqB_JLo761BIMh0YsvOKP5KUT9Em4zZ9u12o,603
|
|
484
|
+
mindsdb/integrations/handlers/derby_handler/connection_args.py,sha256=WQa1eZFFGzEcWEbUYn6HK87UTYcb6WBJQbV2rUogWHI,2046
|
|
485
|
+
mindsdb/integrations/handlers/derby_handler/derby_handler.py,sha256=oEUeHXlYHf1PfIhkwFovr-twtsXEoqRsgSYm-VMgN6I,6860
|
|
486
|
+
mindsdb/integrations/handlers/derby_handler/icon.svg,sha256=Q571Chfv-Mo8BM6S1-pNZFBY-FjpZmTAnQ0R0pes7ZM,2278
|
|
487
|
+
mindsdb/integrations/handlers/derby_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
|
|
488
|
+
mindsdb/integrations/handlers/derby_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
|
+
mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py,sha256=bnu2Q1RnDYDt5s95HZfDIF4LUYhpBm5XpWiw8J3EGEQ,1513
|
|
490
|
+
mindsdb/integrations/handlers/discord_handler/__about__.py,sha256=wxrgI1w9DRxdDHlBX68xY1pIJqFt4Bks-Ea1hTGfviQ,342
|
|
491
|
+
mindsdb/integrations/handlers/discord_handler/__init__.py,sha256=SyPHPhB_V079zA_cyXCj45ei6lichsPqRP10LyBr8fk,511
|
|
492
|
+
mindsdb/integrations/handlers/discord_handler/discord_handler.py,sha256=7IZnygHlBsCMIcFYSVLmUvsQW5-BJCTI3IPrrGzc9i0,5600
|
|
493
|
+
mindsdb/integrations/handlers/discord_handler/discord_tables.py,sha256=i2_6VSZT8jdZTEXNfOe8a6K4Z3lb25Xd5IkfbmGiM4Q,5899
|
|
494
|
+
mindsdb/integrations/handlers/discord_handler/icon.svg,sha256=BzH2QWqsSOjWBf1H7nJys7koDyV6BsSMheyK1i0hMgI,1330
|
|
495
|
+
mindsdb/integrations/handlers/discord_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
496
|
+
mindsdb/integrations/handlers/discord_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
497
|
+
mindsdb/integrations/handlers/discord_handler/tests/test_discord.py,sha256=WcvAe1HBYgHQYiTTH5livuWeLSOaFRrvRoAVA6BS-rA,2172
|
|
498
|
+
mindsdb/integrations/handlers/dockerhub_handler/__about__.py,sha256=UcCZ97wGHWne4UosDBcpGWtvSKQ5lsmBSqrMto-f6bQ,347
|
|
499
|
+
mindsdb/integrations/handlers/dockerhub_handler/__init__.py,sha256=abNDl-TCh_MZlLgtZ7YK79j6qnXSMH1TBbXljxBjNFA,641
|
|
500
|
+
mindsdb/integrations/handlers/dockerhub_handler/connection_args.py,sha256=X-mvTlTXI4dZeE8PcjVbghQpDaa8Cg5D3XUvMGYn4i8,572
|
|
501
|
+
mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py,sha256=4xb08iI-B0YpiDbOzC-urzInQSM9BE-DoATJNu8Is_U,2277
|
|
502
|
+
mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py,sha256=bJWYNLM3fwUvrWY-QSt-a6hIwmCJoeHJBOWRLME60mk,3661
|
|
503
|
+
mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py,sha256=zGGEGeNP1zP8sEMv6oJXp157zjwhs00ENFK5_icQYXw,16832
|
|
504
|
+
mindsdb/integrations/handlers/dockerhub_handler/icon.svg,sha256=50v7YRsy6q8H58p7CMNSAN7LwKzRGifEIgblLev4s3c,3562
|
|
505
|
+
mindsdb/integrations/handlers/documentdb_handler/__about__.py,sha256=Rt-G8q9KTwAaFdsfTKRieXvp7JnaJGPJUe2WeLGocgw,350
|
|
506
|
+
mindsdb/integrations/handlers/documentdb_handler/__init__.py,sha256=i3J0cPOg7QqkP15-2seahXI1xILvPthpmxClhqAq1d8,620
|
|
507
|
+
mindsdb/integrations/handlers/documentdb_handler/connection_args.py,sha256=ajm9eMQSeALndWLJ4E8MmriwXSrTDlIJTEJYmoXxFl8,1553
|
|
508
|
+
mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py,sha256=oJi8FH59c0jyZ_6Lxj7KygC_koXA110EC3m-k16gbqw,1378
|
|
509
|
+
mindsdb/integrations/handlers/documentdb_handler/icon.svg,sha256=pKDMFy1Ivlwa6Bp2_SEiCF5HQoGy4c6wtd9XfdOI2Is,3512
|
|
510
|
+
mindsdb/integrations/handlers/dremio_handler/__about__.py,sha256=Q_m7a8g1uswUxT09spU-FGLw3c4fIsBKsBlC4iLZFLU,351
|
|
511
|
+
mindsdb/integrations/handlers/dremio_handler/__init__.py,sha256=HYjTdxnhiy3JVW-0CzqvM14Or5qAJEIxeRtpd9xyxXY,587
|
|
512
|
+
mindsdb/integrations/handlers/dremio_handler/connection_args.py,sha256=3PIE05Jl7mkF_9KL_Kjx0rwjpZI5U7vpYq2ojd5BgYk,814
|
|
513
|
+
mindsdb/integrations/handlers/dremio_handler/dremio_handler.py,sha256=pSuaEZCCn8hsVCPYGKXScbkVPmLfPC-hlQR6HANGCyk,6798
|
|
514
|
+
mindsdb/integrations/handlers/dremio_handler/icon.svg,sha256=fs5ugLp1d0xMQUoAHcOV-5XEX6u0uADR_GC1A0SBjIo,5946
|
|
515
|
+
mindsdb/integrations/handlers/dremio_handler/requirements.txt,sha256=ZiPvp-U57bcOoUraVGdpnob28iZpZuTU2fgeXIED9U8,17
|
|
516
|
+
mindsdb/integrations/handlers/dremio_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
|
+
mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py,sha256=1DUEbxg8KmJlssZiCTgdRmbh5XymVcvhfQ2m6vvTuSE,1109
|
|
518
|
+
mindsdb/integrations/handlers/dropbox_handler/__about__.py,sha256=ed6WT6b9smsPd3V-igdcbJRF7iupm8hE84IpoyV8VaA,352
|
|
519
|
+
mindsdb/integrations/handlers/dropbox_handler/__init__.py,sha256=b00K2j6EnUbWBTf8K_YIJiAhXcshz3Hi78wImbmSXX4,635
|
|
520
|
+
mindsdb/integrations/handlers/dropbox_handler/connection_args.py,sha256=Dag8oWuJMOSsTvYF38EjD14V26b2dQqxYsFxWfA_IU4,533
|
|
521
|
+
mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py,sha256=A9CWKbV49PQ6o5oLrJdXhcNSXVE5ryXhBG8jyLypPzQ,9306
|
|
522
|
+
mindsdb/integrations/handlers/dropbox_handler/icon.svg,sha256=2xMK3vVhsgF3aNINNx_tps95Nzi1JynUEwRXUclZ8HE,441
|
|
523
|
+
mindsdb/integrations/handlers/dropbox_handler/requirements.txt,sha256=dRcFk9VZ8ifzfUIgVucBqXSISbZh-S90qP_uPJd8G7k,7
|
|
524
|
+
mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
525
|
+
mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py,sha256=M6jrM1f991HCRQC15KlNm5xZ6TN1fpkGzut8ZGM8RZk,611
|
|
526
|
+
mindsdb/integrations/handlers/druid_handler/__about__.py,sha256=psafZg7bMoHnSdx4ThYNV5hFZiq1Y8ZB06SqzAPvabw,362
|
|
527
|
+
mindsdb/integrations/handlers/druid_handler/__init__.py,sha256=NLIjL_lH0cVF7PV3jaE76Lv9CJXYskuNVWRC9S98tow,598
|
|
528
|
+
mindsdb/integrations/handlers/druid_handler/connection_args.py,sha256=dlwEAIswp5kkBIiHGXGe_AkI06W6RukP5QPT4BxKvoI,1401
|
|
529
|
+
mindsdb/integrations/handlers/druid_handler/druid_handler.py,sha256=prguxSB2AmoeVkCxCtIsHe7_OGNqFGfRE3Ahxrn1FxI,6405
|
|
530
|
+
mindsdb/integrations/handlers/druid_handler/icon.svg,sha256=ak7qaXWafkb6MvCGtG5wAfVcffKNuARcUtF74uqVDEw,2823
|
|
531
|
+
mindsdb/integrations/handlers/druid_handler/requirements.txt,sha256=dahrkIufqj8IX1uzmprfLUzgIAKmeJYmrvcEhwOpdJI,8
|
|
532
|
+
mindsdb/integrations/handlers/druid_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
533
|
+
mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py,sha256=wp-pQHT1dzN40tljlw1hQ2BT3JFK1nyT4iWPAozTgPA,1084
|
|
534
|
+
mindsdb/integrations/handlers/dspy_handler/__about__.py,sha256=ccuDl-tLUGQXL38nvRaeBVcCS2dzcEPixX399d2i7I8,330
|
|
535
|
+
mindsdb/integrations/handlers/dspy_handler/__init__.py,sha256=jM_sypbHyhUmaDeyUfNI4YjSBFtbioGXlHU6uda0dCQ,484
|
|
536
|
+
mindsdb/integrations/handlers/dspy_handler/dspy_handler.py,sha256=58hr9suXP0vOwypIpyRCHKmHorjFnJbcquTSJkMOt9w,9817
|
|
537
|
+
mindsdb/integrations/handlers/dspy_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
|
|
538
|
+
mindsdb/integrations/handlers/dspy_handler/requirements.txt,sha256=34t0xu_rRo5IIBj5QlxlXZafxslAydXcMrV0ABoYnYw,123
|
|
539
|
+
mindsdb/integrations/handlers/duckdb_handler/__about__.py,sha256=3-dlZBVENpzU6Ixavw99OK8O5jLNG1h-K1AMB9KFRTY,342
|
|
540
|
+
mindsdb/integrations/handlers/duckdb_handler/__init__.py,sha256=wlBN2aVSGipXwSyszMaa2dTwENjoZEh2ybWjYwNpKlk,629
|
|
541
|
+
mindsdb/integrations/handlers/duckdb_handler/connection_args.py,sha256=-NWJxBuJCbVPPFqVgNt-_1aeYvC6TIhDymOGMb7lTkY,589
|
|
542
|
+
mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py,sha256=X7l66Hc8GhD47cDsnBtZXK4iU-Hjb-E7JKY8rVsGe3c,4927
|
|
543
|
+
mindsdb/integrations/handlers/duckdb_handler/icon.svg,sha256=T8c92QUj8kiRDT8eYNEeVwAMeu2vTmRSbeF_c8iA99M,658
|
|
544
|
+
mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
545
|
+
mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py,sha256=jkGvXoQEoQnzcj3zuORu7upfcoaGcDmVOe83IqzPQbQ,1479
|
|
546
|
+
mindsdb/integrations/handlers/dummy_data_handler/__about__.py,sha256=PSYHn55hrQRpnqoXiTNmXNdhCSmWmEhLL7Nb4eKdhkw,228
|
|
547
|
+
mindsdb/integrations/handlers/dummy_data_handler/__init__.py,sha256=peKZXPxEaMzXOIJCrKalzz8TQwcnZP4YOy3amask-cc,491
|
|
548
|
+
mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py,sha256=-NnUD3-9eM7XSWoiRKjF85geGYcXG-wWC6j1QO9aWtA,2951
|
|
549
|
+
mindsdb/integrations/handlers/dummy_data_handler/icon.svg,sha256=K9XlyM95whoniFSqPOz8tm2hxKJxanwZWoYD0IzDzrg,152
|
|
550
|
+
mindsdb/integrations/handlers/dynamodb_handler/__about__.py,sha256=C-WnvzjgGPutV61FH6eTAkpnc3Y3DRdoKwaNUXLhWkg,357
|
|
551
|
+
mindsdb/integrations/handlers/dynamodb_handler/__init__.py,sha256=yTEVxzxm3SCeATwL0lPyASgiowEVH00C7Nciy_31lyU,631
|
|
552
|
+
mindsdb/integrations/handlers/dynamodb_handler/connection_args.py,sha256=YvZVfEsd9mYf5rjMaP-RdBsk_G9hT6VLco-2ocjLmK8,1258
|
|
553
|
+
mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py,sha256=No8Cig3npPnuBJAaJAqBTtGOkmntXdIpCpcpWyrwCk0,10185
|
|
554
|
+
mindsdb/integrations/handlers/dynamodb_handler/icon.svg,sha256=AaQQ17vrSmYxbOEHBXbGFIXN5M6o0QppoulunnzH-jM,1929
|
|
555
|
+
mindsdb/integrations/handlers/dynamodb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
556
|
+
mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py,sha256=quhBKHZSx2I4jXwIiGoq1aJ1Hdnknu8bu47m_peX4vk,1190
|
|
557
|
+
mindsdb/integrations/handlers/edgelessdb_handler/__about__.py,sha256=zix5zticXI84wfMnj_WbNS_xnMKSxzT_VkhPGCgeY1A,348
|
|
558
|
+
mindsdb/integrations/handlers/edgelessdb_handler/__init__.py,sha256=9KgytVTZdIcZrXa5bxquJPmoKNGnrC-P4gqDjVU_kEY,613
|
|
559
|
+
mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py,sha256=yFTIXoNGiCRl-d_-jNrRbcDw6X3iGC9fxBC3eztegs4,1568
|
|
560
|
+
mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py,sha256=fRAe-IiLCr84mcIt3g_Ykd3c4TrXnknb10foSg9Q_c0,324
|
|
561
|
+
mindsdb/integrations/handlers/edgelessdb_handler/icon.svg,sha256=bkgVNzOgmtUSz3_9P74YBBLE5577nQlcHqJLKpy8d_8,742
|
|
562
|
+
mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
563
|
+
mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
564
|
+
mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py,sha256=diwhvsyDddLZl0utBKgUufQkW-bogIEEkinOw8SKWBQ,2005
|
|
565
|
+
mindsdb/integrations/handlers/elasticsearch_handler/__about__.py,sha256=yRczUDJEBZh4uQfJodmmmSLc-W8Ytk5HkpXK7Ev2VeY,363
|
|
566
|
+
mindsdb/integrations/handlers/elasticsearch_handler/__init__.py,sha256=ExwZlMAOr1ODX3ihoCeME8on-tzmb2ENRLipG5xzlhA,659
|
|
567
|
+
mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py,sha256=G7VApBaBz8GNzxY7TURE_UpLs6x8knlfywa5tyzWTXo,1296
|
|
568
|
+
mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py,sha256=wj3Z_TCmTEL7TpDF-wBWZKM4AW-25V-GhuAMiL4-uXY,9681
|
|
569
|
+
mindsdb/integrations/handlers/elasticsearch_handler/icon.svg,sha256=F1dgOHTbPK0y0-8oQ_LBZ-it2oW3FT-dqcizVdSr5Yk,3383
|
|
570
|
+
mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt,sha256=wHoplUEHpeUaz5ADZLqmn88sV9JBJU53GwT1rd8abYA,49
|
|
571
|
+
mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
572
|
+
mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py,sha256=CVTDvLoshAP-JZbuc-Sc3xWNKvtarxUTE6U0NZYRpqs,1107
|
|
573
|
+
mindsdb/integrations/handlers/email_handler/__about__.py,sha256=_gKp2yLFTagL1ArgnqbFmG_9ESO4dCQl3Ze3UEI2KMo,333
|
|
574
|
+
mindsdb/integrations/handlers/email_handler/__init__.py,sha256=uzS0asjT5GArzwJQ5T6WjAEcg154q1zcSaThn_uhWK0,492
|
|
575
|
+
mindsdb/integrations/handlers/email_handler/email_client.py,sha256=IG-YsPqEtAenMExOTe01BdGqIWUJP-LiaIvDCDSb1nA,6334
|
|
576
|
+
mindsdb/integrations/handlers/email_handler/email_handler.py,sha256=ZskExJjNT3FVlpgSJReKvAgFoQsMwy_niX6u-7IV7P4,2722
|
|
577
|
+
mindsdb/integrations/handlers/email_handler/email_ingestor.py,sha256=uBHhhK1ffAb4RK77PblUQrfzUuCnMh3lcOIuBVDfApI,3385
|
|
578
|
+
mindsdb/integrations/handlers/email_handler/email_tables.py,sha256=XKQozrHwQGCktGCeFXo6lbSMpcy1f0_23AnlSJVrRUo,5203
|
|
579
|
+
mindsdb/integrations/handlers/email_handler/icon.png,sha256=3gOB-brv6-jfOqqkCxW-loNPKNgj326ixKoiqEOHxsA,32416
|
|
580
|
+
mindsdb/integrations/handlers/email_handler/requirements.txt,sha256=d2_KpNooVtDHqxLWDNluZrthOh9Fh8zieJvvkJWzV8c,12
|
|
581
|
+
mindsdb/integrations/handlers/email_handler/settings.py,sha256=H-c3-h01gHjDLwbqdiMYq2MsoWrk4yz6t0LbC16UygA,1642
|
|
582
|
+
mindsdb/integrations/handlers/empress_handler/__about__.py,sha256=IRkXh-2mR6-bdwmnZuuDPcLpVTPpZPefflnuNYkrs6o,399
|
|
583
|
+
mindsdb/integrations/handlers/empress_handler/__init__.py,sha256=332JGOh5TY7yl2rKrKVyHTnZapqM4iD5Y5tWfahL6h8,609
|
|
584
|
+
mindsdb/integrations/handlers/empress_handler/connection_args.py,sha256=frb3E7UmeJhviNF60G4sW1XeZIYei0YiK1_4hG1UamA,1173
|
|
585
|
+
mindsdb/integrations/handlers/empress_handler/empress_handler.py,sha256=n_BCVCGCSRXowktS7l2o2HdtfWS-O39LhKxrh5_pdTw,6604
|
|
586
|
+
mindsdb/integrations/handlers/empress_handler/icon.png,sha256=B_oBuK-KIok4xB4xIrY0_YyERtRxRArHTgq5pQijXjg,328372
|
|
587
|
+
mindsdb/integrations/handlers/empress_handler/requirements.txt,sha256=umevgm7tGyu-W5va3oAigDA6kfytgbeJwNf6yaEExrs,6
|
|
588
|
+
mindsdb/integrations/handlers/empress_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
589
|
+
mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py,sha256=cAyjg1-I6UtQdt_kJhjPAN0hFA4GUL3KUjrrhncnzQc,1843
|
|
590
|
+
mindsdb/integrations/handlers/eventbrite_handler/__about__.py,sha256=6vW0yW5891KS0A2OpYISm6pIpfrm1n9jKM7YJIOgW6A,369
|
|
591
|
+
mindsdb/integrations/handlers/eventbrite_handler/__init__.py,sha256=TAPI4R6-FoqqHm2fyTZafjLECOSmXTy3b00xQo30K8I,523
|
|
592
|
+
mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py,sha256=aho7SvZGDYUSWc8qzAt2qyx05QzkdPjjUg2ujN7cJKU,3267
|
|
593
|
+
mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py,sha256=mCm3RLAWs06jgDbEeTFgAUpRKBdHKcErKyp6IzBqLBM,18318
|
|
594
|
+
mindsdb/integrations/handlers/eventbrite_handler/icon.png,sha256=gJdi1iZr7NJlgsNFs1uAbo_CXN6TgOMke3fByX3TafU,7954
|
|
595
|
+
mindsdb/integrations/handlers/eventbrite_handler/requirements.txt,sha256=tkujt3jIsMXBs5zpqLJSvKSMxs0F1sFpxWNr-uN3ozo,17
|
|
596
|
+
mindsdb/integrations/handlers/eventstoredb_handler/__about__.py,sha256=IkNIOvJEgwl45RZfbzqonIIDgyU5XzWGsfgtK0hWp8g,359
|
|
597
|
+
mindsdb/integrations/handlers/eventstoredb_handler/__init__.py,sha256=25J3hSo3__Z-XpLuEuVGFtFp9DO7UYw9piixPkt1kPQ,523
|
|
598
|
+
mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py,sha256=RQ73Z5brrYwGtGpwPikXLL4pqm1zsKTYI330Usa-Ms8,9134
|
|
599
|
+
mindsdb/integrations/handlers/eventstoredb_handler/icon.svg,sha256=IAuS_Ev-9EYH7H9lhrBC3wdN8IycizZGohiB4kyqeeU,2404
|
|
600
|
+
mindsdb/integrations/handlers/faunadb_handler/__about__.py,sha256=pOnuQTkQK37OzOgA_r71Gzfpc6F0SIPnu-VHTv0w3yk,337
|
|
601
|
+
mindsdb/integrations/handlers/faunadb_handler/__init__.py,sha256=8y_tC2s3Bqr8uGFQiwSC3-gIjATv242SPjJGZP0eHCo,656
|
|
602
|
+
mindsdb/integrations/handlers/faunadb_handler/connection_args.py,sha256=vvKT0AK_g6nQe9a2GgKTERuly70HeipeBaJxxh2yQ6c,958
|
|
603
|
+
mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py,sha256=6nmnBmYXlzmJJfX-UphddVwVDYQm2AySdKScZcgwiTs,9437
|
|
604
|
+
mindsdb/integrations/handlers/faunadb_handler/icon.svg,sha256=If5c0mi_wvgmk7HAygWwnE60UBn3jtxNNk5Xj4moskE,807
|
|
605
|
+
mindsdb/integrations/handlers/faunadb_handler/requirements.txt,sha256=ks9cePCx9THiqIBPQg9KVvELzn-Zfkf4IJrqa-7U1FM,7
|
|
606
|
+
mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
607
|
+
mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py,sha256=JrgVIq6jucZjUCr8FpbC9ByJ3WdZGppZKHdovvFbNiw,1151
|
|
608
|
+
mindsdb/integrations/handlers/file_handler/__about__.py,sha256=UavP5jJ_xWIaJ0oRsEANLulczZ0craaUb3XLfCSBmEc,331
|
|
609
|
+
mindsdb/integrations/handlers/file_handler/__init__.py,sha256=46Hnm3ijRsYw95BkkBxHJK8k4h_2Te0j1W0r3-ptVCg,329
|
|
610
|
+
mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=GkRe1rQ67sAj6HtCgXYvg69ciV5GfgCCo_zn5kYIwDA,18379
|
|
611
|
+
mindsdb/integrations/handlers/file_handler/icon.svg,sha256=hsXEvUzrO7WQMOPC83LYQt-FW0wey9TCj5EwiIJwKwk,565
|
|
612
|
+
mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=0a-9n_mDJfSsmbTIL94YxHTIFm2oybXwTap6-oSNg_U,119
|
|
613
|
+
mindsdb/integrations/handlers/file_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
614
|
+
mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py,sha256=LIt7TYz7frHICCOHJtPnab-7RNoofHyYZll8oMpWw34,14991
|
|
615
|
+
mindsdb/integrations/handlers/file_handler/tests/data/test.txt,sha256=SUG2Uw_Hmth51gyaCJyeyfAbFssHfsB3qWFcxBX_W1g,570
|
|
616
|
+
mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py,sha256=Dz6gPZVoxWJqMgte07pkMKtQq42u7qYtCiaxdHVgANw,392
|
|
617
|
+
mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py,sha256=AncBNXt6EECSYDNTlnkxkQ3_dfgEITMKaUUWjV-KSMY,537
|
|
618
|
+
mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py,sha256=axJOdZhnvWVOhX8_a2D-r77rWplj0_oh_dMkMqEI3rA,2086
|
|
619
|
+
mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py,sha256=TNwb3icgrhPgbqEelfIBeJtI_nPJgASdSqE1djqK-EQ,2826
|
|
620
|
+
mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg,sha256=nxtKAqIDg708ym06TbMWvXJ6F1SJCpEoK9pdRE5y5E0,4881
|
|
621
|
+
mindsdb/integrations/handlers/firebird_handler/__about__.py,sha256=XsNT56zjORbC-Zdl6JZ7PSHrm80LPHjKmVgYJ_BjLy4,357
|
|
622
|
+
mindsdb/integrations/handlers/firebird_handler/__init__.py,sha256=aH6jiir9NpFnFtsM0X-z-m6ifrE3oLDEbHVrcDw_RRg,624
|
|
623
|
+
mindsdb/integrations/handlers/firebird_handler/connection_args.py,sha256=dnksNcYLtaOJWi_knMO5TaRMAduRgNUYXDSNYa3eylc,976
|
|
624
|
+
mindsdb/integrations/handlers/firebird_handler/firebird_handler.py,sha256=FWPzt9f2qyzYkgcg3jst8B85ieNAhHR98VB20VMtqnw,8672
|
|
625
|
+
mindsdb/integrations/handlers/firebird_handler/icon.svg,sha256=krIiRyzwtZf8wzdt3QQhFMBAZ25JwgJF6mGJm8ku7H4,4207
|
|
626
|
+
mindsdb/integrations/handlers/firebird_handler/requirements.txt,sha256=8uUhkMD0GvdwVt6WhNaBVVBeiedhNEHNdkTXZJudoDA,41
|
|
627
|
+
mindsdb/integrations/handlers/firebird_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
628
|
+
mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py,sha256=Hkjr4lz0oWzUupvaT-1-DXaCxQMNFwFdz1VBu_2tJ1w,1243
|
|
629
|
+
mindsdb/integrations/handlers/flaml_handler/__about__.py,sha256=vQJvUYCSJpM2L_K3BpZIf2wPg0O6gwMZb8hwtGDFJEk,338
|
|
630
|
+
mindsdb/integrations/handlers/flaml_handler/__init__.py,sha256=MHYGvpWtU8o5izMpv4d0CxBIamoCmP-J9Ti5bq_f2-I,531
|
|
631
|
+
mindsdb/integrations/handlers/flaml_handler/flaml_handler.py,sha256=M3A5cl46SulSqbdAUmuDApYHqj1RdR6aRoPUN4PtAoM,1617
|
|
632
|
+
mindsdb/integrations/handlers/flaml_handler/icon.svg,sha256=L5ADXk0pRN8VFCYew_jeJXjVTP8etzLQsUwAjjuPwIA,3096
|
|
633
|
+
mindsdb/integrations/handlers/flaml_handler/requirements.txt,sha256=YbK2xIvGKGeFqBEel014cWFzfgwukPKcloTX4ar3Bpk,32
|
|
634
|
+
mindsdb/integrations/handlers/frappe_handler/__about__.py,sha256=NPBXQAHQGMUoAxc3L0e5Cu_CnccWeyyPEVLe1jNwe4o,345
|
|
635
|
+
mindsdb/integrations/handlers/frappe_handler/__init__.py,sha256=JTd4ltTHkkVOmZuitOz2GpA3S_cZJxDmlp3A18imeUo,480
|
|
636
|
+
mindsdb/integrations/handlers/frappe_handler/frappe_client.py,sha256=gBcMlUf-Gj8Jkj0Ggv-WZ3t9eoWroUigzCFI12hrWGY,4374
|
|
637
|
+
mindsdb/integrations/handlers/frappe_handler/frappe_handler.py,sha256=hI6s-rBRS-GV8RLKDiS5sWWYLKZ--2vsgK-50tZ2iLo,7976
|
|
638
|
+
mindsdb/integrations/handlers/frappe_handler/frappe_tables.py,sha256=yQpL0zTv2P9soboTp7S9nKdmNvUOgRZjB-zVSLRIPNg,2648
|
|
639
|
+
mindsdb/integrations/handlers/frappe_handler/icon.svg,sha256=UsWb6k9kIQ1zO4xkf8GM_VaW6xGs_Xb_f1I9TuitBSI,920
|
|
640
|
+
mindsdb/integrations/handlers/frappe_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
641
|
+
mindsdb/integrations/handlers/gcs_handler/__about__.py,sha256=A4HdOx9Tf186tzO0P3Z-qanuiBQwHnS0VNPLzuf-fzY,345
|
|
642
|
+
mindsdb/integrations/handlers/gcs_handler/__init__.py,sha256=-xMMzYD5re71zy1fxFsmMkdrzItS92E0FnWDF9i0oAY,601
|
|
643
|
+
mindsdb/integrations/handlers/gcs_handler/connection_args.py,sha256=FttAzFwG_z9_VVDl68DQOZUlh2nJOXJ5jPUBMdXDbAI,830
|
|
644
|
+
mindsdb/integrations/handlers/gcs_handler/gcs_handler.py,sha256=O9oS394y7p50-Wv7gWdJRRVFL58FPiOgnqnMnsRpUKM,12263
|
|
645
|
+
mindsdb/integrations/handlers/gcs_handler/gcs_tables.py,sha256=3jjKFhqvNm7zHCUvpVvQjPRSQjrcZV1wOw61-ZSWAAs,1682
|
|
646
|
+
mindsdb/integrations/handlers/gcs_handler/icon.svg,sha256=56wtNuOB923CuGU-TPsYRxu9DzmgjK5aMy51iY0z_hQ,1761
|
|
647
|
+
mindsdb/integrations/handlers/gcs_handler/requirements.txt,sha256=zLZXjAKF7BzZXlUq0fXrTQqzUsxV1nO_fsHaXTSowF8,46
|
|
648
|
+
mindsdb/integrations/handlers/github_handler/__about__.py,sha256=bDVOGS37C6HVRgSOekhxUcvW2Eg0Z5k2bq558mUM07M,339
|
|
649
|
+
mindsdb/integrations/handlers/github_handler/__init__.py,sha256=ov-CvC4-1IbwvuKykY7i3wJxHnYenbU8KtNZUSRzB-0,629
|
|
650
|
+
mindsdb/integrations/handlers/github_handler/connection_args.py,sha256=jnJKzK-5UI5-GZVh57iWaYXkAlhnc8p_4vUn357wXow,911
|
|
651
|
+
mindsdb/integrations/handlers/github_handler/github_handler.py,sha256=EKK1e0fOQsvZAyas0ZT8cjFDyhtXdAwlNOmR6QVAcpo,3746
|
|
652
|
+
mindsdb/integrations/handlers/github_handler/github_tables.py,sha256=37l7UVJaCGanxZcBObIIJfK37k6LZLnK91N6TcMZJl8,30850
|
|
653
|
+
mindsdb/integrations/handlers/github_handler/icon.svg,sha256=c1j3IrEwYsGXPwW-hjZDpOceLhVCW_0tT8Aba5PdF5c,1198
|
|
654
|
+
mindsdb/integrations/handlers/github_handler/requirements.txt,sha256=ggn1M2VGEZcJPTW2vei8pt2sHD5Iifca4oQ13CyMHqY,8
|
|
655
|
+
mindsdb/integrations/handlers/gitlab_handler/__about__.py,sha256=2uH49-_UriKLYrfBa8yIU6j1L9Bxpyp5Gqm7zsTT7eA,341
|
|
656
|
+
mindsdb/integrations/handlers/gitlab_handler/__init__.py,sha256=MleI0P8FKMYzbzd_XPkTbCjT1_Ub21hreu56QhXQuy8,481
|
|
657
|
+
mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=fSj7r7irmC2WEOWGKM9An3V-gs-U1Ub5HommbwPdBDs,2575
|
|
658
|
+
mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py,sha256=efbt7uGL5sKZvu5gvsqr8W-guyoZpZBUEncJabTztJY,15320
|
|
659
|
+
mindsdb/integrations/handlers/gitlab_handler/icon.svg,sha256=bQ1whEb3IObHqMiZAHomuekYicpYFVnD7W0y-4JyzKc,1995
|
|
660
|
+
mindsdb/integrations/handlers/gitlab_handler/requirements.txt,sha256=1W6ZjjUzciSZ0BX4yJ7C54BWdhWYLCw5ASu-VQohWro,13
|
|
661
|
+
mindsdb/integrations/handlers/gmail_handler/__about__.py,sha256=uj5U9JF0CynCH3ZE858VyDrJUiFgnTSZQcIbEhwnMbw,355
|
|
662
|
+
mindsdb/integrations/handlers/gmail_handler/__init__.py,sha256=2Ed7Pfbdz56spFnl9WGf1vcRdL73LBjBr5lG_-dje38,540
|
|
663
|
+
mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=YTGF2c9QS9zsr7bWwc_WZaHQFe68mnxhItNe6fUJO84,780
|
|
664
|
+
mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=GF2hg8mzSktS8UCStMgWnmfULcOotgS8hmELoFdQMLM,19697
|
|
665
|
+
mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHrma_Ho8dyXNTAgXnQK25hYD4,862
|
|
666
|
+
mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
|
|
667
|
+
mindsdb/integrations/handlers/gmail_handler/utils.py,sha256=jXNBgCJhBQjt0micfqvGG-Ly-4Uoor__HFUtmUNiVfU,1332
|
|
668
|
+
mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
669
|
+
mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py,sha256=wjJHWn2jBFHm4gBtuVSoc4MdFoIy54jkfnCbPz77KHc,1479
|
|
670
|
+
mindsdb/integrations/handlers/google_analytics_handler/__about__.py,sha256=68QyRQWAMw0MGDM64tuGkSrjepQmQKQea5zvfw0r0Aw,369
|
|
671
|
+
mindsdb/integrations/handlers/google_analytics_handler/__init__.py,sha256=ynl-z128m2YPF9IOqeCysVdQ8AcSkW6HXISTixyoLok,532
|
|
672
|
+
mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py,sha256=-u--wXJwBMBfToVa0Vtx_tPPty9q8X4hkCCy_LCV3j4,4706
|
|
673
|
+
mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py,sha256=ya4ZEvj4piomTQhICWLG-GIMUzZwiXvmsdT7ZTNaylU,10186
|
|
674
|
+
mindsdb/integrations/handlers/google_analytics_handler/icon.svg,sha256=wDK8PISrdQpdaPBZZpzkC-tXNlxKccBtYRUy99mvDvY,1066
|
|
675
|
+
mindsdb/integrations/handlers/google_analytics_handler/requirements.txt,sha256=HAn-QtKytgMh31qMGR4YZA2pQIK8Nmh-rB4M5dLrau8,47
|
|
676
|
+
mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
677
|
+
mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py,sha256=cHXwGAuWmuroN-x_b0YKWgGD4ax0Vad3V4xzgHDgqSU,1815
|
|
678
|
+
mindsdb/integrations/handlers/google_books_handler/__about__.py,sha256=O5UgmDgG_LDRCZi_Jyc4wZLcYsWzPL6BJIkRFxjm2Do,379
|
|
679
|
+
mindsdb/integrations/handlers/google_books_handler/__init__.py,sha256=6qKoU8qvFL6a-GPqPW_IPa2IYIhQJzOuf2T8AKOKM6A,504
|
|
680
|
+
mindsdb/integrations/handlers/google_books_handler/google_books_handler.py,sha256=_GGQMKamWOaTpKn0NS-A27RNjfYVKvRoefm74Y-xZdY,6901
|
|
681
|
+
mindsdb/integrations/handlers/google_books_handler/google_books_tables.py,sha256=knoFrJ1fo6lvDCywk5QbM21ohrgcEHZFd2BwTAE5eDU,6268
|
|
682
|
+
mindsdb/integrations/handlers/google_books_handler/icon.svg,sha256=PNUyfFJEaEAgCxmomXG_1SYW9VaSF5zilZi6X9Xuhls,962
|
|
683
|
+
mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
|
|
684
|
+
mindsdb/integrations/handlers/google_books_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
685
|
+
mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py,sha256=tuww8tSsOPizyjPEcHcu7E73q08ErErQbXBSKxw9fWY,1487
|
|
686
|
+
mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZz9sTlrSoW5FIUbFZqmW4WD1BNe-66IC1hj6Vs,388
|
|
687
|
+
mindsdb/integrations/handlers/google_calendar_handler/__init__.py,sha256=ms_QDVhQf3b_jnweJXDVAUFYuyKkPb6JgEfGEzJ9uzA,580
|
|
688
|
+
mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=CEelHk3psXLlIaBHm8ks47Dp37qKJZvdwM--K0rXdgM,307
|
|
689
|
+
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=gMTuUPEJXr4RFwOO3U2MZpG6GayDnv6K7YoBP1bDR2s,10756
|
|
690
|
+
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=SWioh20npLHBTJu8XsYIImdWZ2mgs34pcvPrudCmOjs,8111
|
|
691
|
+
mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
|
|
692
|
+
mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=VLKq7qTszTaLU3DehUPxnYlzhgVwm7qXxAPocmXQoIs,110
|
|
693
|
+
mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
694
|
+
mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py,sha256=Tv1O__exOy2k58VNAG3LQgOUKICIUt_-RpqAzuGiiRA,2215
|
|
695
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py,sha256=kUidXzaoLPxNOiywhLPrUFjG4JZl8krOHzS0QMWl7Tg,424
|
|
696
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py,sha256=5WMq9JHkNT9EHmedLyt5wru80V2NxMeNSvemsiTpUEk,662
|
|
697
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py,sha256=NdwKKW8VAMNiInueKkXoX0QP8Fu9ECXq0tTBdpGc_Zo,563
|
|
698
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py,sha256=iRAdruNYOo7Qo7_RxccRD9sO35hZp1RUUgYneLoLAkM,15706
|
|
699
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py,sha256=KnTbG2iq2IzTKu0LWBZXCKw5xRRBqG9VawKwy1csFKc,14279
|
|
700
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg,sha256=q8FcSns7BbYLiMtErVngNMkLGXbjxeeP8IuKIGhKKJA,2651
|
|
701
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
|
|
702
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
703
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py,sha256=0yOsRSpKCGiHAKpe9m7g7HENYY2vcCPVk6sP1k5wLsI,2436
|
|
704
|
+
mindsdb/integrations/handlers/google_fit_handler/__about__.py,sha256=f6IFxoETFim29W0z7BPQG57SWBNyy838DTuBY_68I6k,358
|
|
705
|
+
mindsdb/integrations/handlers/google_fit_handler/__init__.py,sha256=ZzcJSVhfMTx5CqAjRCydCB7Mc2ERPT7GtQ8FOtZkXFQ,495
|
|
706
|
+
mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py,sha256=w2tKHb9SR6bvH_4-Xys-Xzpep7vWgxVKnHt-8sZI6vA,6619
|
|
707
|
+
mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py,sha256=H9_iidTDuqh5vonMbxaNSqUZ3xnRZcdjKRzN1gm9bjU,2496
|
|
708
|
+
mindsdb/integrations/handlers/google_fit_handler/icon.svg,sha256=3ZgBVbln5KXnYpVLDTbYDGfQp_hUGW3W0GJGVJUjQ98,1511
|
|
709
|
+
mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=QGBNRuyeerx46dPHS7zSgFtC0LD6JuGUY97WlIJtpp0,48
|
|
710
|
+
mindsdb/integrations/handlers/google_gemini_handler/__about__.py,sha256=6wu9JKGI5scaFTcO59kcrQ1F6ooVaaPeS3-sYxOYojI,374
|
|
711
|
+
mindsdb/integrations/handlers/google_gemini_handler/__init__.py,sha256=EUCAGAXFNB-VuxjGG-knqIVPIAZ_ujj57rd_1yxr0Gk,617
|
|
712
|
+
mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py,sha256=9wsvVDBdcB39_vpYxZNzqY5C2cC3iNv1KORV9abBK1A,14235
|
|
713
|
+
mindsdb/integrations/handlers/google_gemini_handler/icon.svg,sha256=9BPToOkNdB09F5Wo4t0i-rZGtkvZ1qJQGLAd8fU-jjM,289
|
|
714
|
+
mindsdb/integrations/handlers/google_gemini_handler/requirements.txt,sha256=uPpLvaLJlCXM3dvVyu9WYWWfK-MOzdmOXAbgape5e80,36
|
|
715
|
+
mindsdb/integrations/handlers/google_search_handler/__about__.py,sha256=EPaDjDJvD7XZjKVF8kcxylyhDldS9MzxcHlkD51hufY,382
|
|
716
|
+
mindsdb/integrations/handlers/google_search_handler/__init__.py,sha256=w5PUmHFndJkZtMrfrf3ruBtqvE6tNY_SswSBmJowU7s,630
|
|
717
|
+
mindsdb/integrations/handlers/google_search_handler/connection_args.py,sha256=HShiT9T2GITGncYL8t2PsN8m6PUMQeqjCdn_mizNfY8,408
|
|
718
|
+
mindsdb/integrations/handlers/google_search_handler/google_search_handler.py,sha256=IYGAuZUcOKriVkRFCyXPtIgT87rteXnxTYB_qVlpDkk,7682
|
|
719
|
+
mindsdb/integrations/handlers/google_search_handler/google_search_tables.py,sha256=faXQl06-MdO3EzzyQh4PQjag6g30VyFvbGGd6699Cio,7375
|
|
720
|
+
mindsdb/integrations/handlers/google_search_handler/icon.svg,sha256=Dsio_gu-jTENejm6qPAAfAvarnRDUocgqmMtjCuyw6U,3303
|
|
721
|
+
mindsdb/integrations/handlers/google_search_handler/requirements.txt,sha256=TyDnIqls4wGBI3n0t7ESsnQth4pkv698rxUwtjcqrj8,46
|
|
722
|
+
mindsdb/integrations/handlers/google_search_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
723
|
+
mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py,sha256=V-jX_GbRwpu7lq8l-4Kf5x-PTxyXL5TaWsnX5nfIkUM,2178
|
|
724
|
+
mindsdb/integrations/handlers/greptimedb_handler/__about__.py,sha256=dqfX5vPUkk2ilQY9jy3BO0WN3pwcqTRa8mCNnQKg6CA,345
|
|
725
|
+
mindsdb/integrations/handlers/greptimedb_handler/__init__.py,sha256=ISK47wPQcYRiOKWAjpp9pKtVpC6bBmj7UAg7AfaSVFo,496
|
|
726
|
+
mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py,sha256=aTULTagT4TYqHz31DgeaJnTVrmtFXXQnXKUl1Jb9X2Q,629
|
|
727
|
+
mindsdb/integrations/handlers/greptimedb_handler/icon.svg,sha256=Gos2jNeTXp0y9wiFkV_PNR2ZSBuoWOcOani7uDN6zP8,1298
|
|
728
|
+
mindsdb/integrations/handlers/greptimedb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
729
|
+
mindsdb/integrations/handlers/groq_handler/__about__.py,sha256=wnuD05vkrrFPXlJ7AR9f2a88KzcmdSsuLbOisvZdwOc,330
|
|
730
|
+
mindsdb/integrations/handlers/groq_handler/__init__.py,sha256=iAQYzb8aVi5FSThNLWVwvNsNbHoyHHMR_lcxYKNulHY,569
|
|
731
|
+
mindsdb/integrations/handlers/groq_handler/groq_handler.py,sha256=IbQlHpR-0_6cGNJFlVJbxiIMD9jaz_VP8vShA65PHuQ,4823
|
|
732
|
+
mindsdb/integrations/handlers/groq_handler/icon.svg,sha256=S923SyjHSrjPJBzvHvYVDMFQYNh9AqjzZtzOd41ePlg,2495
|
|
733
|
+
mindsdb/integrations/handlers/groq_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
|
|
734
|
+
mindsdb/integrations/handlers/groq_handler/settings.py,sha256=-ro_v2nGmx_5S3CS2RHAr5f8BvbDN-ACYnpyBsV4dAo,723
|
|
735
|
+
mindsdb/integrations/handlers/hackernews_handler/__about__.py,sha256=xCBY8u73sc_PHT5gj0PGygqxJkBymwyFlUxb85bC81o,340
|
|
736
|
+
mindsdb/integrations/handlers/hackernews_handler/__init__.py,sha256=8qw3ZBMLKmpUHE1N2rWeQGCNkGc0Q8EyEfszMoYfGUk,505
|
|
737
|
+
mindsdb/integrations/handlers/hackernews_handler/hn_handler.py,sha256=pOAX1Hd5uBMTjvlN5dhbTdFl75KhIrpEYAsBNkVbR44,3722
|
|
738
|
+
mindsdb/integrations/handlers/hackernews_handler/hn_table.py,sha256=fTXAc-AX4cfDHzFv5eamIxST3ky2jezCAe7HzDWC6Wg,5281
|
|
739
|
+
mindsdb/integrations/handlers/hackernews_handler/icon.svg,sha256=w7g3BTaZJroLn0KfbT9SYBtcJMCNws4s3djy6LxIqRc,611
|
|
740
|
+
mindsdb/integrations/handlers/hana_handler/__about__.py,sha256=lU0KWojOUkMWjzARuZP9qLWn3LblHSjUBuZV8Ewfy1E,341
|
|
741
|
+
mindsdb/integrations/handlers/hana_handler/__init__.py,sha256=FvP0UIPGS7APeAorBgBe5_QybJ4kKm9E_gdlUCasAFM,592
|
|
742
|
+
mindsdb/integrations/handlers/hana_handler/connection_args.py,sha256=aeh0aSAyOIm7cCwTmF6Q5UswaloZJO-ygEW3vYK4NA8,1687
|
|
743
|
+
mindsdb/integrations/handlers/hana_handler/hana_handler.py,sha256=9z0g4XOE4xzczdlFSaquqwR9GfPIK89cveSjtiepb_Q,8979
|
|
744
|
+
mindsdb/integrations/handlers/hana_handler/icon.svg,sha256=xw37jaHp98MBkfzigqrDfsTVn-hoPjctgD2GK2GwpCc,2135
|
|
745
|
+
mindsdb/integrations/handlers/hana_handler/requirements.txt,sha256=b7GgFHgx_G72NmefIlV1HOGNinufY-L3RG1Ur02s9eU,23
|
|
746
|
+
mindsdb/integrations/handlers/hive_handler/__about__.py,sha256=T-GL1yB_F0nuAcGDYsAr1fb9CU6KZtiMlalPCVLwhis,333
|
|
747
|
+
mindsdb/integrations/handlers/hive_handler/__init__.py,sha256=N_3Z7Rf-3kt7Gwm4Fr-VJvqK3jqkKK7Ax_WvLl0dEwg,588
|
|
748
|
+
mindsdb/integrations/handlers/hive_handler/connection_args.py,sha256=IYbgjwtAzKDuR99m-K9PBYvsN3q6cEu7r7eILkNBBdw,1599
|
|
749
|
+
mindsdb/integrations/handlers/hive_handler/hive_handler.py,sha256=VziWof6giCClHCzOHbiKJfYw8GNgDnmbjACRwAZna1s,7912
|
|
750
|
+
mindsdb/integrations/handlers/hive_handler/icon.svg,sha256=g07RaULUyoFzFpk2S9o5cwww__dB8YTS2bGvRtUpROI,17076
|
|
751
|
+
mindsdb/integrations/handlers/hive_handler/requirements.txt,sha256=KsI9Z7vv9d8vCEOyR4uO8R9I1ZTe84mW6kD0pZwJ-Fg,26
|
|
752
|
+
mindsdb/integrations/handlers/hive_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
753
|
+
mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py,sha256=Zvm3CXu9A86Jmh-mTX8WVYI_ceLciLJYFs9_mKV3Kas,1638
|
|
754
|
+
mindsdb/integrations/handlers/hsqldb_handler/__about__.py,sha256=8bNNZpNOyuFnwjUzcyXY5PXJRt0TxuaiVn5uGVTJB9Q,348
|
|
755
|
+
mindsdb/integrations/handlers/hsqldb_handler/__init__.py,sha256=jkLVMUxIKVPD0Wk6_ehi8Vg-jbAts4A2gbFAz3w4qQ8,620
|
|
756
|
+
mindsdb/integrations/handlers/hsqldb_handler/connection_args.py,sha256=PJVN6oDs0pjpE8TBW6TCRPK_4gWUi-LBMycqBLSKDc8,942
|
|
757
|
+
mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py,sha256=TucJGFkrOqyVWfZKtCaj_XBPUMogbtzc10JJjQiTdXQ,6580
|
|
758
|
+
mindsdb/integrations/handlers/hsqldb_handler/icon.png,sha256=OYVUi8q-tKafOg0Evg2GY_UYuGxa9lUJ93KSNfPB464,41120
|
|
759
|
+
mindsdb/integrations/handlers/hsqldb_handler/requirements.txt,sha256=K8ZUSiKPbTlaT2Yd895mW4_uKNc3k9e_N_Xd0pMc6uE,14
|
|
760
|
+
mindsdb/integrations/handlers/hubspot_handler/__about__.py,sha256=XoRC9G5UEVYBF2NlqyVqk4H9431bafGacrirhcBPqmA,349
|
|
761
|
+
mindsdb/integrations/handlers/hubspot_handler/__init__.py,sha256=AW1XObHkkRIdszU91zFEkOMnxdDDR4LCC-W7i5GHWw4,511
|
|
762
|
+
mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py,sha256=NMYzpBVDxdo10hFFsV_Ybi3JCw3RuftheAOyPOjwMTQ,2784
|
|
763
|
+
mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py,sha256=Rfu2N3UyT7dRLhdZoHHANHsUf70-j4mAPrHG-V1Yg7k,19943
|
|
764
|
+
mindsdb/integrations/handlers/hubspot_handler/icon.svg,sha256=FoLHI5CdLMqZLv_M0PvMu_TzlLtt-t-vhoaGIBiC7cY,1453
|
|
765
|
+
mindsdb/integrations/handlers/hubspot_handler/requirements.txt,sha256=50SL5fyMnNRccXgKNrQ9UW5zK5iiJWYvNK_yXdJhgV8,19
|
|
766
|
+
mindsdb/integrations/handlers/huggingface_api_handler/__about__.py,sha256=gUWilT75wrd2aRmL3iK3XXI8XjXu4mpun3pcmVwrZ4A,381
|
|
767
|
+
mindsdb/integrations/handlers/huggingface_api_handler/__init__.py,sha256=Bs6kqNT2-WSRioNS6kcJxl_DQrC0SH9_QuS6APYTGlE,537
|
|
768
|
+
mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py,sha256=I_B7veduC6daBX3c-XAGQdlxFKs5In1MwoKy-sDGJWU,112
|
|
769
|
+
mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py,sha256=xa_DwxhfH3K2-K89GP0XAoVg7bWY_XDsCSQFlx1q8-s,8773
|
|
770
|
+
mindsdb/integrations/handlers/huggingface_api_handler/icon.svg,sha256=whd-gZx9HMMl9EvhQk0VK9p45RQD5PiJlv7Le3K3ORo,9064
|
|
771
|
+
mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt,sha256=VOb0WF-xUjIE1a7j3kUqIAzdFix4_0fp0E8zQK31poo,32
|
|
772
|
+
mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
773
|
+
mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py,sha256=gNbILP3emqqlboEypuaScSkTcjazGGPYql2AD7nK1rg,128
|
|
774
|
+
mindsdb/integrations/handlers/huggingface_handler/__about__.py,sha256=B1bb52kL0iLViLiewWIK183GOKoe5Q0XJZvD66wXl24,353
|
|
775
|
+
mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=f-LxhPOlZsXjLDk7kgQZTwX49umR1z9QK2yUB3F5_EU,550
|
|
776
|
+
mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=gDf5yC-ot2IZdONMIcQ5bEvKMtk-nci5OcSYmvmEGQg,8085
|
|
777
|
+
mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=2wSfHCnAFbiHco37Eq_1f71vwSfoZ_ntz9f-d7pmlvI,13620
|
|
778
|
+
mindsdb/integrations/handlers/huggingface_handler/icon.svg,sha256=yU820GpXed8h9CloppHH0D1-EJjrorSLlbjciV91b9k,9064
|
|
779
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=37qtrMLnf8-qhODBYBZNpbqytCumfJ7SDDpc1QU8gVw,53
|
|
780
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=OGoorRy7iZuqdLANapJ78O_kdCqVpTpGfqv24m5MHFE,178
|
|
781
|
+
mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1dAcKyjEcuK1LSktqK_5tPLJzQGCNTs0GR9CMe8qTvk,984
|
|
782
|
+
mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
|
|
783
|
+
mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
|
|
784
|
+
mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py,sha256=2DuHEQN03FRK7_-6jC_f-wfNtWRHuWbAdAd8FhdEPcE,1247
|
|
785
|
+
mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py,sha256=6Q9xLi9aCGgTxg7DfvmU6iWgoByL2TZBG1osv5d8Og8,10838
|
|
786
|
+
mindsdb/integrations/handlers/ibm_cos_handler/icon.svg,sha256=j_O5MKmhrIWDJyr83W7EIncxd7-tYpgUygICzoLGy3I,5039
|
|
787
|
+
mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt,sha256=AdxeB_L0qaXBtA866ZsBRStOvQgQUDBVVGh-e3yXlR0,11
|
|
788
|
+
mindsdb/integrations/handlers/ibm_cos_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
789
|
+
mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py,sha256=D-1sggor3rv8idMRkUfqUxwp_tt5B8BukphVE_t3joU,746
|
|
790
|
+
mindsdb/integrations/handlers/ignite_handler/__about__.py,sha256=JCbuC9y4O67kV2WnkEKxHaG-q4TsSht6iHSlvGghhCo,365
|
|
791
|
+
mindsdb/integrations/handlers/ignite_handler/__init__.py,sha256=aOkkbYJsf_Lx8Mchu1P9qcuVlM2l3xLKMgcCFmtJGCE,603
|
|
792
|
+
mindsdb/integrations/handlers/ignite_handler/connection_args.py,sha256=vUXKE6OGKgOpmfcTO-btzDxiU6T6lJo0hbKkL8kxDNI,1432
|
|
793
|
+
mindsdb/integrations/handlers/ignite_handler/icon.svg,sha256=cWiLZ9OhSr8xaQOdvWA7olhSTVMVhosFecqhgkeOpvo,761
|
|
794
|
+
mindsdb/integrations/handlers/ignite_handler/ignite_handler.py,sha256=oJwGiZuZLR6WI2Qo8KrKjDg-ZIf7njfIKz5fjKwRV7I,6191
|
|
795
|
+
mindsdb/integrations/handlers/ignite_handler/requirements.txt,sha256=m7u5LbpqU24wb5b-DIZwt5JrhUEA89V3rEJpCxvOo5s,8
|
|
796
|
+
mindsdb/integrations/handlers/ignite_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
797
|
+
mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py,sha256=XB8VKfVcSogqCH0qLLuHFtKv9zvJijl8ppyodDa0bh8,1013
|
|
798
|
+
mindsdb/integrations/handlers/impala_handler/__about__.py,sha256=QGCeIOj7d-zhiZ2ASWEnYsqUi4Uh6HOD8VlnhONMJqM,340
|
|
799
|
+
mindsdb/integrations/handlers/impala_handler/__init__.py,sha256=UUqzynhwjdtR3C15SlEk4l1gWmcY2rwRZav4A-u6mBg,603
|
|
800
|
+
mindsdb/integrations/handlers/impala_handler/connection_args.py,sha256=7kEss06khoj028LHa5BJX_J98AzHWa6XsSHJl4bxhKM,1014
|
|
801
|
+
mindsdb/integrations/handlers/impala_handler/icon.svg,sha256=7B1XK3fvSTD9Qgt0BPC1VVZ3mT4-VJDee9-a5i5SLpM,3532
|
|
802
|
+
mindsdb/integrations/handlers/impala_handler/impala_handler.py,sha256=gz3hliQZHpfa6yFEtMXe47sdJcPwH-d0pomODy1iaBI,4668
|
|
803
|
+
mindsdb/integrations/handlers/impala_handler/requirements.txt,sha256=zcKPuzs5i3hgQysOipGvPtdT9AeSdLXZ6CVeAOJ9vIk,6
|
|
804
|
+
mindsdb/integrations/handlers/impala_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
805
|
+
mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py,sha256=d2vP8uKDkfzMlX_LvVJ1Q0Zt1xhlto_ZK_AKq6AOPTg,1559
|
|
806
|
+
mindsdb/integrations/handlers/influxdb_handler/__about__.py,sha256=egazk3dcKssZ-2IAe9Eg8Jt_3XHrp0biwnhxdViaPP4,350
|
|
807
|
+
mindsdb/integrations/handlers/influxdb_handler/__init__.py,sha256=-ElkaT108WoD5ubpZn0RM8aMRsi76JejqEUlzHc_sZA,514
|
|
808
|
+
mindsdb/integrations/handlers/influxdb_handler/icon.svg,sha256=pSGrm1cPk9DkoVdTNlX2gLvVYiWc14tpB3W6MVx1_zw,2681
|
|
809
|
+
mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py,sha256=sgTyWPCrqbNs8BbDM7RGOly6jAkcduZiPsGeocJzVnI,3053
|
|
810
|
+
mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py,sha256=YEqFxKAuy6S67-WDsQcoTk0mknMPb25-VsUR72mm-YA,2998
|
|
811
|
+
mindsdb/integrations/handlers/influxdb_handler/requirements.txt,sha256=pnabyssMXTG6qyb-zFqe_n7PO62qTbVqCuAGGRsy5zM,16
|
|
812
|
+
mindsdb/integrations/handlers/informix_handler/__about__.py,sha256=L393rkaVbfovY3vNSN2co7ByMS8DxYWzqLC9gy4ZimI,354
|
|
813
|
+
mindsdb/integrations/handlers/informix_handler/__init__.py,sha256=N7bAxq3j1f3b_sBJfD1hoS-OyHGWz4UuKXKqB-Waruk,493
|
|
814
|
+
mindsdb/integrations/handlers/informix_handler/icon.svg,sha256=tDk36rxKSHxTWTgjJMKr2UZArLv52AVO55WwycxMRcw,3200
|
|
815
|
+
mindsdb/integrations/handlers/informix_handler/informix_handler.py,sha256=_hRa_S802VRSMd2lYUhgFKFvyzn4Fy83Dg4pT3Nf97E,9639
|
|
816
|
+
mindsdb/integrations/handlers/informix_handler/requirements.txt,sha256=5FT1SNHRoxRCeEJzbulBeqnF3nwaE3yLbEmzbe07qYM,20
|
|
817
|
+
mindsdb/integrations/handlers/informix_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
818
|
+
mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py,sha256=RI5OpLzSnk-tzejdGvjfGLPgjfnvyAXQHaaimHViXws,1702
|
|
819
|
+
mindsdb/integrations/handlers/ingres_handler/__about__.py,sha256=25tgcaHrt3ii120Ph9ETLOBf7Rlh97EpyY6WSJBYyQM,389
|
|
820
|
+
mindsdb/integrations/handlers/ingres_handler/__init__.py,sha256=CqmW9XrhEWgtP4p3Bzl-iHCbfbij1ymARg2RYxpNP4g,616
|
|
821
|
+
mindsdb/integrations/handlers/ingres_handler/connection_args.py,sha256=JPOvqMtKn8kZC9rCkVTYJKa-wMXg4AC3sAncUioRmXM,984
|
|
822
|
+
mindsdb/integrations/handlers/ingres_handler/icon.svg,sha256=0uFQrEkfHJjg5zryeUMvmiLJu_js5XtpI6bwu_QJBxo,2321
|
|
823
|
+
mindsdb/integrations/handlers/ingres_handler/ingres_handler.py,sha256=Kx2CM7i7Dwb05CaJU40HNhyZ0j-jdqtVGSzz5l7xsmg,6629
|
|
824
|
+
mindsdb/integrations/handlers/ingres_handler/requirements.txt,sha256=XxjyLM894_H9S0ORs3IwhWw8N4TN8pKZ7G3h834U6J0,30
|
|
825
|
+
mindsdb/integrations/handlers/ingres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
826
|
+
mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py,sha256=QOZsHp3SYvlH71sxXseQa63teRSukAmV44svwxObA_s,1817
|
|
827
|
+
mindsdb/integrations/handlers/instatus_handler/__about__.py,sha256=htGPbTxW_xeUjNOpxrmDMoKFO6seFna8PANP9s7P1Js,351
|
|
828
|
+
mindsdb/integrations/handlers/instatus_handler/__init__.py,sha256=jfrEv4ak7ByXWwxvsWMz7zSgTRdkSkQ_PCGEl-XrCMw,537
|
|
829
|
+
mindsdb/integrations/handlers/instatus_handler/icon.svg,sha256=EJrrdCDbbMlgHjqjCI0fbvBzkMe74R7cv-HPTcE0h20,987
|
|
830
|
+
mindsdb/integrations/handlers/instatus_handler/instatus_handler.py,sha256=ZnoIXEiBlMO7eJLC2YgMo4cIlxC3w98B_NADiK8ijAg,4064
|
|
831
|
+
mindsdb/integrations/handlers/instatus_handler/instatus_tables.py,sha256=jL95koXjU1Yv3BcZfpkN4ewfKWyQOws-rr978RrSmEY,15203
|
|
832
|
+
mindsdb/integrations/handlers/intercom_handler/__about__.py,sha256=NAj2i_3vFY4PsF_HtYaRK3MKoVWtLaHkeCuQp8dqpNA,350
|
|
833
|
+
mindsdb/integrations/handlers/intercom_handler/__init__.py,sha256=zj6Z_zYzyvlzctK9On95gusWEfNG2DMHlarkIaWNfGU,537
|
|
834
|
+
mindsdb/integrations/handlers/intercom_handler/icon.svg,sha256=7_xPA2UKXxXmYfsb0RE7a2HtTpok35t3-0zBzCa09qg,3716
|
|
835
|
+
mindsdb/integrations/handlers/intercom_handler/intercom_handler.py,sha256=_B0jxBo7Cso2o6pzmmycrFMaB6cJpCdYHMxRLPeGMO4,3726
|
|
836
|
+
mindsdb/integrations/handlers/intercom_handler/intercom_tables.py,sha256=GKEJEhujvyWLLE326yOj-pECujnZV1cZwR65N3LBO-I,4953
|
|
837
|
+
mindsdb/integrations/handlers/jira_handler/__about__.py,sha256=qP5rGBzzyFBTJnGNCeyOjiBlzfYjt26PU6bw_8MJQOQ,337
|
|
838
|
+
mindsdb/integrations/handlers/jira_handler/__init__.py,sha256=Hsc-LAL8aLWwwjZ1D6k_vI_2L21-XET2sSuf0Pg-ga4,508
|
|
839
|
+
mindsdb/integrations/handlers/jira_handler/icon.svg,sha256=mv8Ee-sh3YbNrGHgdQdgazMICVjU1StIu1Y41H9SjRc,1246
|
|
840
|
+
mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=6EB4Dk7rM2tQ-GkP0ZdN7P5NHkGnSCEgqe51OtjiCPo,3213
|
|
841
|
+
mindsdb/integrations/handlers/jira_handler/jira_table.py,sha256=K4mhPAhW5ui_LQCU9feXgqZeyPlhNcGrb6R8vDHBYwM,5472
|
|
842
|
+
mindsdb/integrations/handlers/jira_handler/requirements.txt,sha256=uGqoPIycab1Q50-NoN8vHp7TdzfHVamy9_t1RvONbog,21
|
|
843
|
+
mindsdb/integrations/handlers/kinetica_handler/__about__.py,sha256=t4T3AR68hK91GASSzoP8aWSbbtmszFC0-i7Nb8UVIgs,344
|
|
844
|
+
mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=xGpX3Z4sE32AqOPHJ09Vhh-9tvjusZACBCAUwTv8hDI,683
|
|
845
|
+
mindsdb/integrations/handlers/kinetica_handler/connection_args.py,sha256=3AaekEw24nX7mmRsqrYfs0M4jCVQ4VvdRHQDFRBosxs,1682
|
|
846
|
+
mindsdb/integrations/handlers/kinetica_handler/icon.svg,sha256=nx3pfKWVp3gcwAxzVjosbSfjkciYSOBuNlhYXXsrg60,758
|
|
847
|
+
mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py,sha256=ilRmQSwjeyOcHJNQgZYy1Mr3ZHtVcbRjX5kAsW4Au9Q,327
|
|
848
|
+
mindsdb/integrations/handlers/lancedb_handler/__about__.py,sha256=iI1t0lKHsgKeLHJ0wxXGGsZVlGJx78evxb4ESWlpIZc,342
|
|
849
|
+
mindsdb/integrations/handlers/lancedb_handler/__init__.py,sha256=nwShTdkEcKKhiDL8VhKi3CHC30WrSp7o37GdY1H-Zdc,655
|
|
850
|
+
mindsdb/integrations/handlers/lancedb_handler/connection_args.py,sha256=KtHvSBLPS9P7LKlXULwRlUTUCvpG69bES2DUL-e2xME,956
|
|
851
|
+
mindsdb/integrations/handlers/lancedb_handler/icon.svg,sha256=UHDcgJDgSbA74qyN6dLXKquPHXjYHd93g-TyQlIR84s,3475
|
|
852
|
+
mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py,sha256=zQik_f_QjArzSrla_uxwYPQIdiKIwnYZIIABQmI__Zc,12399
|
|
853
|
+
mindsdb/integrations/handlers/lancedb_handler/requirements.txt,sha256=8AKaoOwfOlQy5_GN79GwKmSAMqf1JXhB0LmchBzNvpg,37
|
|
854
|
+
mindsdb/integrations/handlers/lancedb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
855
|
+
mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py,sha256=dHFnAMplZCfXk0DwpDM1gKIsG42vEypx9-51nRoCQZc,3351
|
|
856
|
+
mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py,sha256=CqrMPm5gho1vYeXuFNSisjwl32JpHR3IoKv3xw_7fx8,388
|
|
857
|
+
mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py,sha256=7PKWnAB9pBcfxF2SjM3wLmyEq787zj0ZPvSaZD8zoR8,627
|
|
858
|
+
mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
|
|
859
|
+
mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py,sha256=JA3TUIGKFXTSklpWL-PSePrwxW7iKbSElQJh-20T5uA,8021
|
|
860
|
+
mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt,sha256=C_GVvAYnKB13ILpKZcGHSuNg8km5qIB4gbEUaD4Ifz0,24
|
|
861
|
+
mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py,sha256=gxrwh_0d2FiOqAo4xmr-7KGLTFuSuBxLH0gfvmHPVIg,3734
|
|
862
|
+
mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkObedPPwbyNl9tB0ygJN6qj0aPwPYI_fqc,345
|
|
863
|
+
mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
|
|
864
|
+
mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
|
|
865
|
+
mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=2MoMZYz4e4f4NCE-hHheJulxFJAkJudrvOn6-EAGv4Y,12816
|
|
866
|
+
mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=EcU_mjgRnDFYJfsQ1w2-frY6b_PXW8GCOu9znxbJpEk,245
|
|
867
|
+
mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=lb0zKsVpTafWi5QSVTbQ0hgvVx1Yr1rLg_i6rTHcVsQ,11385
|
|
868
|
+
mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
|
|
869
|
+
mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=qoDI2PYu2Kw5TapUlHC1QUIfufxvzuJ1RpLBEpd_woE,512
|
|
870
|
+
mindsdb/integrations/handlers/leonardoai_handler/icon.svg,sha256=KEKKFuyndNcw3pjatLgw2HL8qfoxTyKU1fl4821j04E,99151
|
|
871
|
+
mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py,sha256=O5QAZPLnotBtYWCZC8kIM11nMK79vBy09AFIZxWWHIc,8339
|
|
872
|
+
mindsdb/integrations/handlers/leonardoai_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
873
|
+
mindsdb/integrations/handlers/libsql_handler/__about__.py,sha256=hy-tLs04aanNqP9mWyeGYAoKIs0EVDQniJMlCOSigHo,334
|
|
874
|
+
mindsdb/integrations/handlers/libsql_handler/__init__.py,sha256=vl601iatl-jWUJgEqzMoj4wPKCAuSHHVgWYPuQg2YBk,629
|
|
875
|
+
mindsdb/integrations/handlers/libsql_handler/connection_args.py,sha256=st1NAeYytjiJPGR4aCq_l-bP3kfL8rTWl8YQU5bzD34,633
|
|
876
|
+
mindsdb/integrations/handlers/libsql_handler/icon.svg,sha256=IZHGEplFR4oN4gwuUFAAeOzc2RPU8xN-QpfLT_nIEPE,1387
|
|
877
|
+
mindsdb/integrations/handlers/libsql_handler/libsql_handler.py,sha256=vV0bbYGeAj2BWVGiP5a_MyJmz2yfuSV0gXrYaqw5_YU,5670
|
|
878
|
+
mindsdb/integrations/handlers/libsql_handler/requirements.txt,sha256=MyYe1ToKoyhNZ2H99ogXXa4QBPT8DbJ3kpe9D4QhnBk,20
|
|
879
|
+
mindsdb/integrations/handlers/libsql_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
880
|
+
mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py,sha256=mGlShrwD8LjnIBPH8puq57Rioz9GBNCqq2v4WJLzyTg,1496
|
|
881
|
+
mindsdb/integrations/handlers/lightdash_handler/__about__.py,sha256=qBinCmC0IIFdnHTr-1e8lYqZBtK5znj0HZsXg_VVo34,346
|
|
882
|
+
mindsdb/integrations/handlers/lightdash_handler/__init__.py,sha256=SjDqBFOQoiLuGj3WjZDQ5wZJvSnk317tT0kKFU8OWoc,540
|
|
883
|
+
mindsdb/integrations/handlers/lightdash_handler/api.py,sha256=adgA5TfzlaHqU0B73cUhMUWwlQV0KWmE85GW75NtuCc,18709
|
|
884
|
+
mindsdb/integrations/handlers/lightdash_handler/icon.png,sha256=UqsulULwua8hq05g5UpZ87xJgLCMXmdPNKqlmiRF_U8,11253
|
|
885
|
+
mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py,sha256=DL4GPMxZ0EvUgrSMh_d9bQKlP1bwkr5OoUGauatufRA,3174
|
|
886
|
+
mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py,sha256=UNvyyy4uTMwldOKGlJZYpsj23mnZg_JrHS5Z53a0kBg,20193
|
|
887
|
+
mindsdb/integrations/handlers/lightdash_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
888
|
+
mindsdb/integrations/handlers/lightfm_handler/__about__.py,sha256=6-huamWfIlxzn2QCszwhEPfoyBBywjlukisArxx4z3w,353
|
|
889
|
+
mindsdb/integrations/handlers/lightfm_handler/__init__.py,sha256=f-fMTNsGErwLMvjcSt3WtoCIvZBXzPMGfuHSUhbrLfM,516
|
|
890
|
+
mindsdb/integrations/handlers/lightfm_handler/helpers.py,sha256=N7hYwxcyjPxlVf2G4c2KTtlxQaBet1lbHiR5kNwFG8M,5263
|
|
891
|
+
mindsdb/integrations/handlers/lightfm_handler/icon.svg,sha256=_KcxXXP005uyyLsAIHfRahtW82RkNnfw2L1ywQIuV3A,1678
|
|
892
|
+
mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py,sha256=CECVhsWFGAyXQjsKGPPOwQQjjnB0KSOQSLbG9WjRLCc,6794
|
|
893
|
+
mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=KMMF1queeogn0PaPxqIdRAfK2dS7ZGeRzHpJcIVI8rM,14
|
|
894
|
+
mindsdb/integrations/handlers/lightfm_handler/settings.py,sha256=0iwjsbfzYwBsCizVymXn-vwhOYrES7Hm0MEmiviGP4I,143
|
|
895
|
+
mindsdb/integrations/handlers/lightwood_handler/__about__.py,sha256=9SiT20BQuKEgzGSxhDunieyX33S5XS0cst9MxDfw-1o,345
|
|
896
|
+
mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfef9lCHd7293J6GEEZRXLP5Jp07KkvOc,504
|
|
897
|
+
mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=WkeI0J19WPh_36wZvezpnV2SW6wc9tEkumKil3qTB-4,9139
|
|
898
|
+
mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
899
|
+
mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=H-Xq0Zxc3hfGHGmmWSXkAmT79V_8R6DQ00nnPRUl-3M,23643
|
|
900
|
+
mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=PYbKEcTXCOLhCYqJqceUy0mX2_0tpOVRpWjWu3ke6es,94
|
|
901
|
+
mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
|
|
902
|
+
mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
903
|
+
mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=kQlcLZqpZEgn03-SMGOxHS5Z-2ayOO-wyaU_r4d-754,10985
|
|
904
|
+
mindsdb/integrations/handlers/lindorm_handler/__about__.py,sha256=2V9KbVFWmQ2v98va5Rz1dpmhgDWOZAYOF-wCy3cDQx0,338
|
|
905
|
+
mindsdb/integrations/handlers/lindorm_handler/__init__.py,sha256=jZNxAhQpnXT6u7E72ZFPugYsbH5Fw-TH_JbHWRDWEY4,534
|
|
906
|
+
mindsdb/integrations/handlers/lindorm_handler/icon.svg,sha256=Zj6gBi36Sf8YPQP0mYWr0YMznOeHdMNECasW_-C4o7g,1293
|
|
907
|
+
mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py,sha256=OWKgOVxsVHA6TyhCXfKTh5Q1fLh4-GCkwrDuw507_Eg,6707
|
|
908
|
+
mindsdb/integrations/handlers/lindorm_handler/requirements.txt,sha256=eqUy51tMW_d06Cs2sRDz8sHCF5yHOC1XcMFwthsKDfc,20
|
|
909
|
+
mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
910
|
+
mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha256=odnriKTV2M0T-dExrDM2iZFmDyVXXnfqznHWFAQOMco,1037
|
|
911
|
+
mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
|
|
912
|
+
mindsdb/integrations/handlers/litellm_handler/__init__.py,sha256=phvu1-lcM1HovXh4GHunND_ScTON4Yb3s4VXNVd_epU,550
|
|
913
|
+
mindsdb/integrations/handlers/litellm_handler/icon.png,sha256=mfPLH1-n3D1q3U57hADzl7s2G-W-EDevUHzmvnLTjy8,37122
|
|
914
|
+
mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=-C82eH--GVPD-4P7_lPk3GbcTGmyqYLjuGZwW9iQ4pk,4911
|
|
915
|
+
mindsdb/integrations/handlers/litellm_handler/requirements.txt,sha256=t8CkwrUVwT_keDYTRwU2DVXc-o5r4divHF7IJjK7ZN4,17
|
|
916
|
+
mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84fLe2AhBWzSzpeHbeoeVNz3T6-Rlk,2301
|
|
917
|
+
mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
|
|
918
|
+
mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
|
|
919
|
+
mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
|
|
920
|
+
mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py,sha256=GJvKsXkFnrkCg1A6MZJApe9IQDC7g0n_aSSOWPZkG7s,7859
|
|
921
|
+
mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=imQMM8eEbMS8XsR3zGGLuHkc6qCeSWAGLYUwwhZpfok,118
|
|
922
|
+
mindsdb/integrations/handlers/llama_index_handler/settings.py,sha256=4L4-EJn_D6z_DcVaQ3o22BpPwSsdmyG1ayRIrIaMTsU,2156
|
|
923
|
+
mindsdb/integrations/handlers/ludwig_handler/__about__.py,sha256=5pC8567sj_ZZW70dm7Chkc4He6-F8l5oUKE1W9V98Ck,343
|
|
924
|
+
mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7rK_zPFFAIHGjEsGR_rc2FK8r8HyM,536
|
|
925
|
+
mindsdb/integrations/handlers/ludwig_handler/functions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
926
|
+
mindsdb/integrations/handlers/ludwig_handler/icon.svg,sha256=p-EtG5_8PHHYs4u5R45t2yL4qVCFPnUqcdq3CMsvA1U,414
|
|
927
|
+
mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py,sha256=xNGqY_4LKZN2ZqAHJn2FulRu7p1CBR8eBO7C9XH5uPE,2395
|
|
928
|
+
mindsdb/integrations/handlers/ludwig_handler/requirements.txt,sha256=asD_42x_UTr28iOm12wujTStEQO6pcGXKosO0_pE6KQ,43
|
|
929
|
+
mindsdb/integrations/handlers/ludwig_handler/utils.py,sha256=6GF7yKawEaG-sWRUW7jTMb6SzU8eus19d3lK3yHEopA,250
|
|
930
|
+
mindsdb/integrations/handlers/luma_handler/__about__.py,sha256=mJacT8OVMIq5k-kY5ilNBeNP4D-S3LYJ2drayH0vyMY,332
|
|
931
|
+
mindsdb/integrations/handlers/luma_handler/__init__.py,sha256=7Zh8FJe9A0T38wdOEm3cXl8vXyROFuZC8-Mh1X2rT5A,621
|
|
932
|
+
mindsdb/integrations/handlers/luma_handler/connection_args.py,sha256=m9MPBAebtHbzHsGxtHSvxcY4P6UfAgkqGbsSE_hndNo,386
|
|
933
|
+
mindsdb/integrations/handlers/luma_handler/icon.png,sha256=qmzQGyBJ8gVeqtFQcOmS1FgrkjOGy22kOBC_7kkWMyc,6041
|
|
934
|
+
mindsdb/integrations/handlers/luma_handler/luma.py,sha256=Y5qZHkYdfez4u6Muwv_F3--xhwRn5y7J0mPM288zjmo,1939
|
|
935
|
+
mindsdb/integrations/handlers/luma_handler/luma_handler.py,sha256=WkCmRbzIGAM_qiGXkeyeoSYqPp_I-jPIHCapBZW3_rI,2060
|
|
936
|
+
mindsdb/integrations/handlers/luma_handler/luma_tables.py,sha256=oEkLIeIeWiVv3BhIuDQSctxhVOYSipZTsZDkoo0NNJo,5495
|
|
937
|
+
mindsdb/integrations/handlers/luma_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
938
|
+
mindsdb/integrations/handlers/mariadb_handler/__about__.py,sha256=-pygC7ecHFOUiUHXA-JvuOCXGwZ8pN9nspivsyTiToA,339
|
|
939
|
+
mindsdb/integrations/handlers/mariadb_handler/__init__.py,sha256=3cXYe05Q_hKGORIapl1ooPhQBnpxN-v1J7rwcVHNkDc,485
|
|
940
|
+
mindsdb/integrations/handlers/mariadb_handler/connection_args.py,sha256=wpF0-rQb0TLS-uyNnTO2mSfi8ajGLb2tZ_TL64VmjLI,2300
|
|
941
|
+
mindsdb/integrations/handlers/mariadb_handler/icon.svg,sha256=VTkOBGaGoK0cSqwjqa615Z0v5aF1HgBLwu8kNt6sAB0,2843
|
|
942
|
+
mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py,sha256=6ez29ydhTBLgW89BNz0nFnEje_xrVRq4Jc-QoZQfNHo,315
|
|
943
|
+
mindsdb/integrations/handlers/mariadb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
944
|
+
mindsdb/integrations/handlers/materialize_handler/__about__.py,sha256=SC6lPHOzm-uMgnypRn1AwUFokDgl7FXPE3-Gl2sNquk,355
|
|
945
|
+
mindsdb/integrations/handlers/materialize_handler/__init__.py,sha256=qmqjhRT_tlQ7WHrATuahPUCVx-TWr9v-p2HnVB3wH68,501
|
|
946
|
+
mindsdb/integrations/handlers/materialize_handler/icon.svg,sha256=eW4-LaqQNx5EafDYyIQ5Pbb5BRukc_ucVznSaNl9kxI,2689
|
|
947
|
+
mindsdb/integrations/handlers/materialize_handler/materialize_handler.py,sha256=Rcrm-agBunQvS169phBqcAYjaPdbf-Z5k_4ewChaadg,1285
|
|
948
|
+
mindsdb/integrations/handlers/materialize_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
949
|
+
mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py,sha256=MSp3amK6DYRWziwWkutXSHYz9-j7Hf5CpB67PvXUyNo,1774
|
|
950
|
+
mindsdb/integrations/handlers/matrixone_handler/__about__.py,sha256=KOZEaZHRuygfVIaMa6eLg1JVc1Q1I29NTMUKEcUeWyQ,349
|
|
951
|
+
mindsdb/integrations/handlers/matrixone_handler/__init__.py,sha256=L03K4CVKdm39mrmHsU69VSlUvcMTWwFyS6hm3JVMIUc,608
|
|
952
|
+
mindsdb/integrations/handlers/matrixone_handler/connection_args.py,sha256=opm2teKIjCkiu3g_y7yBhVSfDjhm-1AWQ2k1M3tQWcw,1514
|
|
953
|
+
mindsdb/integrations/handlers/matrixone_handler/icon.svg,sha256=cK7b_17ULqrgVpt25DIxysj66Uvy7NavFgCsFIVztpg,1573
|
|
954
|
+
mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py,sha256=RFsD2MRP5MVuVsTBy8Q5e17hGoR4e87k4X28nAYqdvE,5421
|
|
955
|
+
mindsdb/integrations/handlers/matrixone_handler/requirements.txt,sha256=IKlV-f4o90sOdnMd6HBvo0l2nqfJOGUzkwZeaEEGuRg,8
|
|
956
|
+
mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
957
|
+
mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py,sha256=w1X4B9kD_PEOkOl94xEDhiMXxPxDSm1tm4jNNK9P9yA,1776
|
|
958
|
+
mindsdb/integrations/handlers/maxdb_handler/__about__.py,sha256=nDz8qDfeQKaF0HKC9IVxYyHlOrXTsL7n9jbn195frF0,355
|
|
959
|
+
mindsdb/integrations/handlers/maxdb_handler/__init__.py,sha256=XCc-TQtkecXdDnYN7_vq_Fy4ZB8SJOJTf0bKpDTjOxY,629
|
|
960
|
+
mindsdb/integrations/handlers/maxdb_handler/connection_args.py,sha256=3Rzv8MuVqOD8zTj07nwMgjQDwT5i2dsSMeBYyoOnzHs,1297
|
|
961
|
+
mindsdb/integrations/handlers/maxdb_handler/icon.svg,sha256=7jODNJNSaNSUNoYan37vYjmlcxW_vKEjihtAlYALfvs,2141
|
|
962
|
+
mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py,sha256=fKViKO9Dkc6Camu1kA8SkAEsxkXFSSG99pFuoitAUGY,6273
|
|
963
|
+
mindsdb/integrations/handlers/maxdb_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
|
|
964
|
+
mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
965
|
+
mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py,sha256=SCan0bNQflgAI8TkLaB2fDthVvLD782hfKjk5MBVZe8,1905
|
|
966
|
+
mindsdb/integrations/handlers/mediawiki_handler/__about__.py,sha256=Im8ti6Uspe9wQMPKlL-vIDcpbn1fnK6fpIGP1OafMxI,352
|
|
967
|
+
mindsdb/integrations/handlers/mediawiki_handler/__init__.py,sha256=v8i-YPI6G8RTEoHBWYmo8dOotG5GjMW2wO_J9LAbNF8,519
|
|
968
|
+
mindsdb/integrations/handlers/mediawiki_handler/icon.svg,sha256=Z4jCs-VpTi_pE42tWpR17KMnsqCFqLdRo1xohIQ03jw,18250
|
|
969
|
+
mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py,sha256=Xj4jVCsBhPbm3QocNCuZCTOX94RmBhoHxVwi25yaeG0,2170
|
|
970
|
+
mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py,sha256=JbF2dFj1cwle_vCDJa_uYTFZUVpO1GTdOwRArwYLhbg,3299
|
|
971
|
+
mindsdb/integrations/handlers/mediawiki_handler/requirements.txt,sha256=f-jsIxP6w7iNJXPZPprQWJt8TJdUF8t-rd8LPI6BdGI,12
|
|
972
|
+
mindsdb/integrations/handlers/mendeley_handler/__about__.py,sha256=9spcYcoyqEO9kYdtueEGSPLqKliXKsA6q4yQ_mPFzFY,351
|
|
973
|
+
mindsdb/integrations/handlers/mendeley_handler/__init__.py,sha256=tazgghupHHkiWEDp_cATge2HAknrAaVkdSKsNuWAvZU,500
|
|
974
|
+
mindsdb/integrations/handlers/mendeley_handler/icon.svg,sha256=Y23EUrpYDjFkcfS3Skymo95cljxFfvWmFxpgC6pEmqY,2721
|
|
975
|
+
mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py,sha256=tQTh25nlhV3jkC5NDEh_PhCsi9WRVChVA6VGQwN9wRM,8684
|
|
976
|
+
mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py,sha256=M_vfXRH6caBdmHYF5VlUViMDrr21hda8n5jvQvDEIpY,4456
|
|
977
|
+
mindsdb/integrations/handlers/mendeley_handler/requirements.txt,sha256=5NtTuM0F-GT1vXQ9TOHefy9jOMekxjCj1CTE_4R77H4,8
|
|
978
|
+
mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
979
|
+
mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py,sha256=UOPSSx_Sepg6Bm8zQ9u0ctRBog1eyc3oIACGF2Huh3o,4330
|
|
980
|
+
mindsdb/integrations/handlers/merlion_handler/__about__.py,sha256=GTZx3ozWF2-uL8K-jkgoTQfa1oubMo6cta8q9_KUr28,340
|
|
981
|
+
mindsdb/integrations/handlers/merlion_handler/__init__.py,sha256=Vnsx6LfB2MjP74BOFz3hh9gwx9mUwCcGE8pa59rU5WA,496
|
|
982
|
+
mindsdb/integrations/handlers/merlion_handler/adapters.py,sha256=AHJTqMaeZccLdSPJJL8-z_7hW9yvWduKsKMx7AmagVw,8498
|
|
983
|
+
mindsdb/integrations/handlers/merlion_handler/icon.svg,sha256=aKxzmbIlD4LQFGcK88UjXGKw4e6ijOe3y0h3JiebtCc,2657
|
|
984
|
+
mindsdb/integrations/handlers/merlion_handler/merlion_handler.py,sha256=xps_fs5OP53iD5nBBKMpJM5Z_A2YeGtEOWAlCUQi3gg,8238
|
|
985
|
+
mindsdb/integrations/handlers/merlion_handler/requirements.txt,sha256=LVD7uiS37M3s5euOJpdQ9PMWMSup4fa4l6SWkYZjx3k,40
|
|
986
|
+
mindsdb/integrations/handlers/milvus_handler/__about__.py,sha256=x0vzyNeIFW7xPkANac4OjathpNcegTJGSKntWMgejE8,337
|
|
987
|
+
mindsdb/integrations/handlers/milvus_handler/__init__.py,sha256=taILRcHeskllVItoKEXNbBBEHaxL4s3naNmx7p7Jt6Y,651
|
|
988
|
+
mindsdb/integrations/handlers/milvus_handler/connection_args.py,sha256=v6_-vT-23pHabm_26u1ThxekhT6h0d13VMNWtLLSIsc,3533
|
|
989
|
+
mindsdb/integrations/handlers/milvus_handler/icon.svg,sha256=PZbTQQG4_I43ntGAjAs_Hv3g1r1InaXONDEUn7Ns03I,1117
|
|
990
|
+
mindsdb/integrations/handlers/milvus_handler/milvus_handler.py,sha256=m4RZFC2rgJmgOhE119-_UiPwT1oqUZ2-CTJvDNMaGWI,14499
|
|
991
|
+
mindsdb/integrations/handlers/milvus_handler/requirements.txt,sha256=wP47AN-TxIWEvcmbiJPpShjUYg5dl2MMzdsoO_ZxmKo,14
|
|
992
|
+
mindsdb/integrations/handlers/milvus_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
993
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py,sha256=y5XNkeYH2InRNiN_9DRnVCOBy79mX99W9wVffmFeo2Q,349
|
|
994
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py,sha256=wAUj-gCe6wpVVmmPUP-dnHbu7AboonHw8PJRVx5DyOY,608
|
|
995
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
996
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py,sha256=sNWU03rca17GkgdMi_UFEuzo6ATDqwIe2k1uJZuRC0g,4757
|
|
997
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt,sha256=akRKyhwvLrsRKZlseLcE3aKK82dAx5Y5ARfJ3b_Nn4c,92
|
|
998
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/settings.py,sha256=0bAvK-uNupYtf0lJK5-khB3lTTEfMd1UCZXWEZmhGT0,357
|
|
999
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1000
|
+
mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py,sha256=Uf2uIOmufF5tbj2NCPn8OLUtFsXt0GZg-MaxUgh2g74,5533
|
|
1001
|
+
mindsdb/integrations/handlers/mlflow_handler/__about__.py,sha256=RwGes8LTCMNXSgxng8eFSvVnQdYuM3f8fBdooQ_WW6U,336
|
|
1002
|
+
mindsdb/integrations/handlers/mlflow_handler/__init__.py,sha256=xSY2LlXwQe30h_8sHSjqIDyrUON4jV6xaUHj7qO8fZs,579
|
|
1003
|
+
mindsdb/integrations/handlers/mlflow_handler/icon.svg,sha256=-K-ZAaguq8fBoIUzBtmPjmfFQYneuoqaF4E1tMPox5w,1154
|
|
1004
|
+
mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py,sha256=GMts5NOrMl4k988i_PLjXEU_keTbVOnHgQBEA_TKPmc,3802
|
|
1005
|
+
mindsdb/integrations/handlers/mlflow_handler/requirements.txt,sha256=wm8UqYyUHI21EvrTDHb3eYICy0dOVDLBhAL-jp5zbuI,7
|
|
1006
|
+
mindsdb/integrations/handlers/monetdb_handler/__about__.py,sha256=6wVwdwZ96Sf1BfKwotS8FpPtdp_ewwd5TiOmDH6qp6Q,343
|
|
1007
|
+
mindsdb/integrations/handlers/monetdb_handler/__init__.py,sha256=BrZ71DgILOJ3OTpU7kCeQmzG1JkaWnW_7XfYkxsp9es,600
|
|
1008
|
+
mindsdb/integrations/handlers/monetdb_handler/connection_args.py,sha256=zknLKW4pi-DIMzYP_EsMCBi5nssMqmqgtfZRUJgymLQ,1166
|
|
1009
|
+
mindsdb/integrations/handlers/monetdb_handler/icon.svg,sha256=_Yrcx_2YctQ_UYUCha5xUxo8AF2gJhMXSKXajROJbhA,611
|
|
1010
|
+
mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py,sha256=lamrnbcWHwwUNW6PZ7o_jb6yd80Les_YYUUU1UOqgE0,6989
|
|
1011
|
+
mindsdb/integrations/handlers/monetdb_handler/requirements.txt,sha256=3fXn4kTvoUNAZ3Lf65ApFHB4tCgYUVXY_rOEiHKc7sw,28
|
|
1012
|
+
mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1013
|
+
mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py,sha256=bkByuUIykWAGiMsSce3U1LmdVBeRJ29_Rc3z5YtioQE,1622
|
|
1014
|
+
mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1015
|
+
mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py,sha256=wSz9AvPWR1TQI-1pgZO5nXKXZWIJ1sderGAjKJfk5EU,1134
|
|
1016
|
+
mindsdb/integrations/handlers/mongodb_handler/__about__.py,sha256=umKxXuUAypdohvLd96NtqFO1JJ8Wjl6xqOo2W0jOcA4,339
|
|
1017
|
+
mindsdb/integrations/handlers/mongodb_handler/__init__.py,sha256=iENrcoLHevbky-eZHcnKRqyZbg3DvPmSMlQtf1KyshQ,601
|
|
1018
|
+
mindsdb/integrations/handlers/mongodb_handler/connection_args.py,sha256=kqrTEM14g291rR0SlgsNyHc-leRuSIw2fi1iLR0oQbI,1347
|
|
1019
|
+
mindsdb/integrations/handlers/mongodb_handler/icon.svg,sha256=EIOSXCwZTpRPUctO4FbIE28mAK4S5uG-0fps8DLZicY,1050
|
|
1020
|
+
mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py,sha256=UmArj7C_Rn5Tp7OK-Bkm6au52yJODpRJd3BRwqrJbpg,12536
|
|
1021
|
+
mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1022
|
+
mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py,sha256=764dX8lCUGjkoZgu8CXvVvg9SuLXiMIuspQV0cxX07Y,3868
|
|
1023
|
+
mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1024
|
+
mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py,sha256=W1LzgaH60dJr9HWhgIY6P3EttuttOPxcozNQvEY9azk,8923
|
|
1025
|
+
mindsdb/integrations/handlers/monkeylearn_handler/__about__.py,sha256=5h1Isb76xRHtMCTrsge8OMOHSt5UDspcxHxiRYj50FM,355
|
|
1026
|
+
mindsdb/integrations/handlers/monkeylearn_handler/__init__.py,sha256=V0pLvgoy3VglPGnkaB5vdiU0qfWaiXNuHNJ0dF8dSkw,511
|
|
1027
|
+
mindsdb/integrations/handlers/monkeylearn_handler/icon.png,sha256=RuKBcb_iTZoldGb3U5GDxemB49E9ALC8uZbIoMY54BI,14734
|
|
1028
|
+
mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py,sha256=8lcomJA8gF88XPmk8sMu7rVnO_EMXsQL_Ob5IfwGTog,3565
|
|
1029
|
+
mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt,sha256=T_nkUvOkkl0BSWXQAIDqh4a3gNW8aVTYuhMGYDnJ1jE,19
|
|
1030
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py,sha256=rUQ0p9bqHSjpEgXe9T-Hq-bfGrMHIU5Rmiwt-orDOCk,369
|
|
1031
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py,sha256=vraI6WlfpNk0C_D0wQH7Wxxy7zpI57rOp2t2XPgHuSk,533
|
|
1032
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z2hQUMEyyP8DUmhgUtjvsfN3HU2EBes,2430
|
|
1033
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=MjvBXKUqrh3j9ikXNaEf45qVQfmFUAhjNN493rdvsfw,3490
|
|
1034
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8O2fhjoyS3N0Pb4ZVY3iong3Dm0DtCVwZkORSiPw2YM,9319
|
|
1035
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=cLXEu1uf6dqWIyrURRZjlVnsKO9iltAPpMAhLZc17y8,3146
|
|
1036
|
+
mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
|
|
1037
|
+
mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
|
|
1038
|
+
mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
|
|
1039
|
+
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=AhyeTNxk7-Yatux5T_ZHru3ZkOvb8nMk2APc2fMrFwg,5249
|
|
1040
|
+
mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=On99gSLUaYbgUGenm0cRwUf-C-pPune9zbcHkRtdoLU,40
|
|
1041
|
+
mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWRxOrMuktBneTm9JRLeGkZiSSH-EQ,363
|
|
1042
|
+
mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
|
|
1043
|
+
mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
|
|
1044
|
+
mindsdb/integrations/handlers/mssql_handler/icon.svg,sha256=CMPDc66jCYyao_ui5eRds92raysDIMNuhIs59Tvbk_8,11944
|
|
1045
|
+
mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=BuXHubjVnojY7P3y9X6-KBmTuqRmjNXQQMUdoIh0tcs,7327
|
|
1046
|
+
mindsdb/integrations/handlers/mssql_handler/requirements.txt,sha256=U59auV3ZAxBGXdMbyXxdRI3LTfCICvZVZWKWMnLUlwA,17
|
|
1047
|
+
mindsdb/integrations/handlers/mssql_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1048
|
+
mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py,sha256=gh8t3ft5Xy-EZ3Rfk1oopojQTrbc_DDE-uAlWpeH-8E,6010
|
|
1049
|
+
mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=UCFLhlYJ-_DenwFcqPKiVUA8C1-4Q0z1ygM1rzq-TZU,333
|
|
1050
|
+
mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=ikcK9oIUFjMfyRDAUKKvb8JQ4Fw-P1zLBeEHo2ZMPY8,592
|
|
1051
|
+
mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=--9ZuX6QSTbWPcRQuptMElStU6p_wkYAUGuxVhRi9JU,2288
|
|
1052
|
+
mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
|
|
1053
|
+
mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=kre20kMMPefkc3DrqD65i36WhzUc82lIotRC9_vinVc,6930
|
|
1054
|
+
mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
|
|
1055
|
+
mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=3a6VexTd2nD72WiXYG_IGeZ-n59ANggeE3X5OkdxHI8,1692
|
|
1056
|
+
mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
|
|
1057
|
+
mindsdb/integrations/handlers/neuralforecast_handler/__init__.py,sha256=0SNrc82F2GXSyAjgTW8hg7w4DeOv_5FRgPpqLXAOJmE,520
|
|
1058
|
+
mindsdb/integrations/handlers/neuralforecast_handler/icon.svg,sha256=HKtmkuQG4MUNFXbPtRvDi5E83rEFV9jrCB0dllAY78M,587
|
|
1059
|
+
mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py,sha256=QPvqLKu8Jm3ytpuxQ4qHOd5j2ceGjkjVTivqNpqLfRA,6374
|
|
1060
|
+
mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt,sha256=QqpZHr3q1Sa0nKkAP6wUTL8t09509U_ZM08AzB7r6NQ,47
|
|
1061
|
+
mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt,sha256=sZ8ZY1L1kcdEkQh5pFcTdhRv4GFg9d0KhbkNnR1dliw,47
|
|
1062
|
+
mindsdb/integrations/handlers/newsapi_handler/__about__.py,sha256=_gzxz-dUmjrc5xXwMJIViKH1OfnYlc7QdhWB2G98TyY,348
|
|
1063
|
+
mindsdb/integrations/handlers/newsapi_handler/__init__.py,sha256=IRtuDlckj4oizdLfMnTgg5XPKF0WiJ2t_DqC6qZ8T4c,656
|
|
1064
|
+
mindsdb/integrations/handlers/newsapi_handler/connection_args.py,sha256=JWc8heNZZiSCUJwfFZwHwsAyymMPPjvM-4OzYaqXwuo,351
|
|
1065
|
+
mindsdb/integrations/handlers/newsapi_handler/icon.png,sha256=wL8QtDMhHOTX34hnWhCK3N0fRnz6HE_OQHJoVWB5wKs,2790
|
|
1066
|
+
mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py,sha256=ZsXZEohWRLpD6-4zikfgVCTIncW3gf7h2obJFs7vUk0,6862
|
|
1067
|
+
mindsdb/integrations/handlers/newsapi_handler/requirements.txt,sha256=ZMZx7R-ofhzidSHeGcVTwBPe4M-2uV2DhgqEzkMggAI,14
|
|
1068
|
+
mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1069
|
+
mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py,sha256=CgMWu9V_uSSO7M3f71v6rsx1jAM94qdOKf4j1-And7Q,3188
|
|
1070
|
+
mindsdb/integrations/handlers/notion_handler/__about__.py,sha256=8PzWcQ8EwUJJP85c0ULZiqA7yJ_ORag4s24Zb_LoCRU,332
|
|
1071
|
+
mindsdb/integrations/handlers/notion_handler/__init__.py,sha256=g7OgmHmkIkFSVVRj2p2qC0moiMJojYhR6zeUlICpFPM,575
|
|
1072
|
+
mindsdb/integrations/handlers/notion_handler/icon.svg,sha256=SjnxMq53m3RYhjSpFTgCHqsyjfAPug7icx4pDesx_7c,2157
|
|
1073
|
+
mindsdb/integrations/handlers/notion_handler/notion_handler.py,sha256=0LnbdMn7Q3j-016bL2H6_NTVNrzbv8o2P3ujhUc8-70,7537
|
|
1074
|
+
mindsdb/integrations/handlers/notion_handler/notion_table.py,sha256=ofSgCBdizFPRUTOHDASuKket3iUp7690rwji-OdKtFY,12946
|
|
1075
|
+
mindsdb/integrations/handlers/notion_handler/requirements.txt,sha256=46S094puMSUA3v5T5siFTQVP7wqOyvlZJFZyxAd6Fs4,13
|
|
1076
|
+
mindsdb/integrations/handlers/notion_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1077
|
+
mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py,sha256=VB-Xk4J6X5G68ii8YTJklmCFE-bizkNhQ_5upclfoyA,2044
|
|
1078
|
+
mindsdb/integrations/handlers/npm_handler/__about__.py,sha256=o7HpI83qYpofcQrSGDsVBz60rvACFfgfWLKDNGMdRoU,328
|
|
1079
|
+
mindsdb/integrations/handlers/npm_handler/__init__.py,sha256=QZOpbUwLfi4TeqYitdMoXg3LvLikIEqpFRwIeAVKx8M,516
|
|
1080
|
+
mindsdb/integrations/handlers/npm_handler/api.py,sha256=WrNIML_a4YtzWVDVvoVoQGRSsXJ6-DmqJp0AaQS1zdA,786
|
|
1081
|
+
mindsdb/integrations/handlers/npm_handler/icon.svg,sha256=EOjLid7IAymgEyxuodxxv_1mypxcvl89zhVxvOrpq8I,674
|
|
1082
|
+
mindsdb/integrations/handlers/npm_handler/npm_handler.py,sha256=UjvdOj-iH0cXa0IWnYgYQt9BNsB6vULEico0-5hu2KU,1639
|
|
1083
|
+
mindsdb/integrations/handlers/npm_handler/npm_tables.py,sha256=MzIZoLtxP8hPbP8iyyc7uBKGDFqiRMqI5Tgu_NFnk_k,9036
|
|
1084
|
+
mindsdb/integrations/handlers/npm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1085
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py,sha256=-FwuMgPnwPq-V_KO9FYoEF2o3haiPwvrVlJs3q5r0Vw,336
|
|
1086
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py,sha256=paftrrmbebUGH5cIoDhZa4rZaeC2U30_qMhmx367W9E,597
|
|
1087
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py,sha256=TF489Lt13dBJwe8MLZH4J5RVf_34FXZzUpqI1IeAkII,2296
|
|
1088
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg,sha256=ZDedx7Q5AiSvVkgsmUp7e_0nA_pMmV4oIq9PySEwy8U,430
|
|
1089
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py,sha256=-GOqY5sYGF7NYF77tu8kPK-19rBYbwwXeKn8oySAZko,7577
|
|
1090
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt,sha256=sG7Cc6gXxY165ysIPFto4erV1oZ10BMBd_rY4GvB5Y4,11
|
|
1091
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1092
|
+
mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py,sha256=atCfHk1JYFVKLwDg5IfuQGhwH3Yn5dv4NXWEUTvM_5U,1626
|
|
1093
|
+
mindsdb/integrations/handlers/oceanbase_handler/__about__.py,sha256=S_N-F0kLk-rHk5cFhaBoxoefgNyCVROw9m-AhnqIfPg,349
|
|
1094
|
+
mindsdb/integrations/handlers/oceanbase_handler/__init__.py,sha256=yu63QADQtwN8sSl-tOm0mmtj6xuQE4y5W3paYwJrwNA,493
|
|
1095
|
+
mindsdb/integrations/handlers/oceanbase_handler/icon.svg,sha256=Qn_vch2K3SZ4_AIboy6YJviOh2jy12ayL3wlxqNe_Eo,2615
|
|
1096
|
+
mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py,sha256=3nq1-2_68nrK3HeSguWanBJa16nAtBeGOFraJO5i394,1293
|
|
1097
|
+
mindsdb/integrations/handlers/oceanbase_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1098
|
+
mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1099
|
+
mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py,sha256=8A7LUGAc1-uq7Y0-2xOLhihIfxh3I6w56qhwU5H9p8Y,1741
|
|
1100
|
+
mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py,sha256=GRLp7ZSDZhp79nBWuiL2q9iAzXCt2K5ET183uUTURWs,353
|
|
1101
|
+
mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py,sha256=QBbvBtdXouX1ycjlnmSe-2s2BQqxjFpN0l405Xav6m0,651
|
|
1102
|
+
mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py,sha256=Zs5TByom5GYzon8q6LlpACtwT1LRhtr9oVItLheiTJU,409
|
|
1103
|
+
mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg,sha256=QYLKVBMs0ZoYB6alhfklMazhfjAH_CFhLSuLbZb5FwQ,1222
|
|
1104
|
+
mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py,sha256=Sad2cbOc8FQbQDRJk8-yPXk7OMQzWWB6I6mU4HW4Gt8,1695
|
|
1105
|
+
mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py,sha256=UvHM6AEtM2uATG3lVun7EbAGejOtVQkHQGiYyrDKZBo,2991
|
|
1106
|
+
mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py,sha256=P48wV6ZJ16-S56If6ZlrCGEx3gKHWtpoWkWIJsAMguo,6516
|
|
1107
|
+
mindsdb/integrations/handlers/ollama_handler/__about__.py,sha256=iMlpDUjfee6lBQ7ceSf__Idg-1KDWYfN4dlq0LzQuQg,336
|
|
1108
|
+
mindsdb/integrations/handlers/ollama_handler/__init__.py,sha256=imwsmeuGX1gkPAzQJR-ZYXKGmV16_yybIWM0PiwALCo,492
|
|
1109
|
+
mindsdb/integrations/handlers/ollama_handler/icon.png,sha256=Uetj2OTGPx-taxPKdD33uuVttZO62o9zB1IW6PxiVPE,113588
|
|
1110
|
+
mindsdb/integrations/handlers/ollama_handler/ollama_handler.py,sha256=X-eLSoGg6Hg3xLdr_eAHrYTfWnO_SLm9R-SJahRz6PM,7268
|
|
1111
|
+
mindsdb/integrations/handlers/openai_handler/__about__.py,sha256=CHoor6pfv6jc7Lfp8SZYiRlHoCwA-QM0PYRqvIRNSEc,336
|
|
1112
|
+
mindsdb/integrations/handlers/openai_handler/__init__.py,sha256=2oicF7rVoEJTh-_p_7bpmh3shHYL2zZr4tPj0ZDXeCI,621
|
|
1113
|
+
mindsdb/integrations/handlers/openai_handler/constants.py,sha256=Vvb5XEVtTIYV89_z_VErteTfv4Bh7Cht9E7iiRSh5Ys,1326
|
|
1114
|
+
mindsdb/integrations/handlers/openai_handler/creation_args.py,sha256=v1NHiz-tLvAHrcA_vIe1A6L5UbeGpHBl88XWZVgtric,342
|
|
1115
|
+
mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=Tp-4KQQTCfYl5UYGQFBbP3hiqhmfLMnQzpiaCcA8LTk,6978
|
|
1116
|
+
mindsdb/integrations/handlers/openai_handler/icon.svg,sha256=r5vCiNm9_nL1ZbM1e6PYcTzw9KrgC0hqWT8IAi2pFbE,2625
|
|
1117
|
+
mindsdb/integrations/handlers/openai_handler/model_using_args.py,sha256=c5NBe6RGkRGVOLhc7Ksq3M3w96Kd9KECO6T01j7VS90,76
|
|
1118
|
+
mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=Dx_5vrNLX02gTXERT9_oWzziDJ45EWp1EzyqIdaU8aU,48686
|
|
1119
|
+
mindsdb/integrations/handlers/openai_handler/requirements.txt,sha256=KkH4wzs3vfzFXtZnDNpwv4a7R8-wqITWDZ3R9AbigM0,31
|
|
1120
|
+
mindsdb/integrations/handlers/openai_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1121
|
+
mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py,sha256=W3b39JCQfCF_IXUS98j7KqTqIzeYne9RDba33AxM774,18651
|
|
1122
|
+
mindsdb/integrations/handlers/openbb_handler/__about__.py,sha256=uY_N_iBpfK56YgmWfiiEAz2g4-EDozP1DKqvhPKUP60,373
|
|
1123
|
+
mindsdb/integrations/handlers/openbb_handler/__init__.py,sha256=u4aCfa9FvHTyu4zHKNL4DdqqGU07sM8DYVmBq1ek0ac,507
|
|
1124
|
+
mindsdb/integrations/handlers/openbb_handler/icon.svg,sha256=2U9anYc_Vu4Ybr3TRWVDRdkdW4f3QFxKlr-miaacYMI,525
|
|
1125
|
+
mindsdb/integrations/handlers/openbb_handler/openbb_handler.py,sha256=iYU4t8SwJ-bA6H8MTzyCa2-MJru2UQ46aJBGU3M37ls,5158
|
|
1126
|
+
mindsdb/integrations/handlers/openbb_handler/openbb_tables.py,sha256=SlG0VCEC2g43VNtehITXWh3BjyhqpMEMCti_oEdyCUo,15171
|
|
1127
|
+
mindsdb/integrations/handlers/openbb_handler/requirements.txt,sha256=VB6goXOLywkRzO61oeORtaK9djCBX9gdsZmVKMS3WGE,33
|
|
1128
|
+
mindsdb/integrations/handlers/opengauss_handler/__about__.py,sha256=OU0IX3LhLbjyNhgbljyplBNNoTlB3QXKxwRhlrpbnWs,343
|
|
1129
|
+
mindsdb/integrations/handlers/opengauss_handler/__init__.py,sha256=FbWPay_4rokYUVY5NcWt53vaXDXqI_TN4KMhaZji89k,609
|
|
1130
|
+
mindsdb/integrations/handlers/opengauss_handler/connection_args.py,sha256=djyHDwdU_gg-iqPXW9z4bdeWewxglQ0juYTc337ix0M,1086
|
|
1131
|
+
mindsdb/integrations/handlers/opengauss_handler/icon.svg,sha256=8BPamScxKmfX5Z8fOLHLfClhLvHOq8bHG8BDzGIUD1s,1758
|
|
1132
|
+
mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py,sha256=NnWs_KPO_YwZerErE7pHS-WddF64wwFgjO9ZJ9YgX34,329
|
|
1133
|
+
mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1134
|
+
mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py,sha256=qeAP2A4OmVEg7t8z7prIM3EOcFcHSI3B3Csqqoyt-TM,1379
|
|
1135
|
+
mindsdb/integrations/handlers/openstreetmap_handler/__about__.py,sha256=3RDQ9NOdLjcvJPu_L2jMUt_8DzBta_xrczUOuTDlc_E,365
|
|
1136
|
+
mindsdb/integrations/handlers/openstreetmap_handler/__init__.py,sha256=mqy_Qi3_PKIwgBafNd1KMHRIMt69vvfMLWr8KhRt5Ig,545
|
|
1137
|
+
mindsdb/integrations/handlers/openstreetmap_handler/icon.svg,sha256=5hoDC6qGLkl9sx_MYWHZrPvdInB7AGUNrjDoIOh9Qoo,4496
|
|
1138
|
+
mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py,sha256=7WGZ2vPr35ROcXLSYQSkgHspDqJj31mVrvaq_i1gA6I,2657
|
|
1139
|
+
mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py,sha256=U8DxNHv0Kiw14qIQBcMRuU8jUJMRZlsKP1IkIiDHgH0,7765
|
|
1140
|
+
mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt,sha256=uEk8OIS5aa2qdKDaIohKfyUlvY0EPDDZSFYE01mXTmY,6
|
|
1141
|
+
mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1142
|
+
mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py,sha256=Y54Bmy0WEMtWuA8tLEuqYisytrrctanPEFgeuQ_b1dQ,1228
|
|
1143
|
+
mindsdb/integrations/handlers/oracle_handler/__about__.py,sha256=IIt4NVwQ52K79l7v7lc4andzcy6iiodvfjlAvQdHiCQ,354
|
|
1144
|
+
mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=9U8p9zE7yi32hWtWEQTFcVz5CSgAGlu6E9C-hPf_tBE,629
|
|
1145
|
+
mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=6NbwAdFz7OBNIaaWH-uAF8sVcixRuRf6Srna-Mk20kk,1966
|
|
1146
|
+
mindsdb/integrations/handlers/oracle_handler/icon.svg,sha256=43yVX7g6fI4SLk9h23xsJvzLl9fMOfiKlQ4aNyQ3yxU,537
|
|
1147
|
+
mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=Q4Re2yKDduYFpYywuVjq531aE6Z9mMnAStSj4M6pg_s,8711
|
|
1148
|
+
mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=6My_yqlFsKIvJvanjJc8usHiQ5Ax_rKaHrzNYNKC71c,16
|
|
1149
|
+
mindsdb/integrations/handlers/oracle_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1150
|
+
mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py,sha256=TjY4cZHMPUaLyusCTTHCRGC30pXDUqqM2vEjw2UqB1Q,1064
|
|
1151
|
+
mindsdb/integrations/handlers/orioledb_handler/__about__.py,sha256=AT5fv9NBW3ElkX0DHZpYa6MEge8OQbrYhxixz78iTaY,346
|
|
1152
|
+
mindsdb/integrations/handlers/orioledb_handler/__init__.py,sha256=z5zE5RetKJHMqSTfwEu69yP2H_MXsa69_zKw1xkPHpo,605
|
|
1153
|
+
mindsdb/integrations/handlers/orioledb_handler/connection_args.py,sha256=JFKd8CqZmUTxFmtbO-wrn3IjuF_9G36ImxMszdjGFRI,1003
|
|
1154
|
+
mindsdb/integrations/handlers/orioledb_handler/icon.svg,sha256=khiifOJbVeBcwWiQwHLp6QMuaX4i5NOTiFZ5ZQW4ECU,810
|
|
1155
|
+
mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py,sha256=Zwn-t6gmnTsaV4QWQJ4_A7CWFTLBPmHpxaF0mMk7H-U,326
|
|
1156
|
+
mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1157
|
+
mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py,sha256=MpiPmn8cf670a_KX-OJSPdoxQxdkItn6P_m0vV8Cgy4,1747
|
|
1158
|
+
mindsdb/integrations/handlers/palm_handler/__about__.py,sha256=bbRNRDg58h_M4aBD6LA5MYKr0XI3RfUy-29ievNUzNI,329
|
|
1159
|
+
mindsdb/integrations/handlers/palm_handler/__init__.py,sha256=AjNux4_0Lhv6wRVykH49yFQFYBqB-mlvD7fXqeAA5VM,490
|
|
1160
|
+
mindsdb/integrations/handlers/palm_handler/icon.svg,sha256=Xb82wnFVYT0l5faztB3oTYTfi-rIGkcvRDetK81nbJg,1485
|
|
1161
|
+
mindsdb/integrations/handlers/palm_handler/palm_handler.py,sha256=iTGIUgswqas0zNYLowAwFACX9gzmMmefTy3qBELVnVw,16731
|
|
1162
|
+
mindsdb/integrations/handlers/palm_handler/requirements.txt,sha256=wKp4vDYyCwYpn1Dfpo-ahLr7zCLvydBkK-Hwv3MH52c,29
|
|
1163
|
+
mindsdb/integrations/handlers/paypal_handler/__about__.py,sha256=eJUqtTCdMRDCDc0e22MPWbBV53QCuAtSIKmQPgcp0sU,343
|
|
1164
|
+
mindsdb/integrations/handlers/paypal_handler/__init__.py,sha256=d5CYHhab_iHFnfz0ZSP9D8C-26K9uN11CCoJ4M0F-Y0,507
|
|
1165
|
+
mindsdb/integrations/handlers/paypal_handler/icon.svg,sha256=M6piOj2CGQzqA24es1eEGNqMqNyavUO0JnAQQJo2Xn0,1833
|
|
1166
|
+
mindsdb/integrations/handlers/paypal_handler/paypal_handler.py,sha256=2g0hE2VCKL9Jrk7UZUxisFu51wPKPMMnEqStj67XKTo,3803
|
|
1167
|
+
mindsdb/integrations/handlers/paypal_handler/paypal_tables.py,sha256=p8U0jI3k3s0R5S7BKm2NplQlmRW3H6r_AbFxHZHS1Lw,9866
|
|
1168
|
+
mindsdb/integrations/handlers/paypal_handler/requirements.txt,sha256=-j6LjRFgj3aSEEyaARzXn95dQjJxjtyXRX0uKOGKSUg,13
|
|
1169
|
+
mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8BhcEkBX8zHZASRKHTsD04JnTTYyFaWA5A,345
|
|
1170
|
+
mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
|
|
1171
|
+
mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
|
|
1172
|
+
mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
|
|
1173
|
+
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=YmkM1knyGK15cq_875N7OZHfPgu0ArytFk4G_rqdWQA,17553
|
|
1174
|
+
mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1175
|
+
mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
|
|
1176
|
+
mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=dguuDcpGTUdL7KHbLPv3OLY9fmvJrQj5I_CsfmuQdKk,606
|
|
1177
|
+
mindsdb/integrations/handlers/phoenix_handler/connection_args.py,sha256=ql5detlrKQP6ZePgYK6QnPjPJrpmw_GQBqgA8-LR5xA,1784
|
|
1178
|
+
mindsdb/integrations/handlers/phoenix_handler/icon.png,sha256=8lmaL2c4b6wPtGyEhBY_x11cNWUUfWyGO7btp1iRqpM,43812
|
|
1179
|
+
mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py,sha256=SSkE6wJW0VQs73rqT14EhWctX1O3BB89N3HD41QDBtE,6993
|
|
1180
|
+
mindsdb/integrations/handlers/phoenix_handler/requirements.txt,sha256=eqUy51tMW_d06Cs2sRDz8sHCF5yHOC1XcMFwthsKDfc,20
|
|
1181
|
+
mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1182
|
+
mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py,sha256=4CrciavIFEvjDLRDZ8xKQo96QpTWzKalSBBiQpH5BRU,1037
|
|
1183
|
+
mindsdb/integrations/handlers/pinecone_handler/__about__.py,sha256=Y216IDI1UcOoZhd2te_3UckjvAsqoM21NvfqNJLqekA,343
|
|
1184
|
+
mindsdb/integrations/handlers/pinecone_handler/__init__.py,sha256=-Zr1wUH_ggClPqhBrYyB0imqtJRNR4F6DXHsAgmpu3U,659
|
|
1185
|
+
mindsdb/integrations/handlers/pinecone_handler/connection_args.py,sha256=psQUmJK0erheDPFvzFmQE1IE4_W5AAf8U0UPntgrHNI,1612
|
|
1186
|
+
mindsdb/integrations/handlers/pinecone_handler/icon.svg,sha256=CYI0E8dqYgUElKNLdDGCrGq2oqne3PpURFB94YZYwPA,2683
|
|
1187
|
+
mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py,sha256=-LxCaS2cs8Fq6CPi0gqOUE-FQJyaFKMOVw5ZO_OUKPk,11343
|
|
1188
|
+
mindsdb/integrations/handlers/pinecone_handler/requirements.txt,sha256=HZwWHc-GcqQvKEbggsU08J0JAgN91HtiTUhHLpGSbz8,15
|
|
1189
|
+
mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1190
|
+
mindsdb/integrations/handlers/pinot_handler/__about__.py,sha256=CxF5ZlieeDDW0W8POUfJVq1XlMavk9q2zEn9PXbgjs4,353
|
|
1191
|
+
mindsdb/integrations/handlers/pinot_handler/__init__.py,sha256=_iKmsOaetC2HbqCLgOdqRNPDK67U7RmgWuQ0nFwFiMs,598
|
|
1192
|
+
mindsdb/integrations/handlers/pinot_handler/connection_args.py,sha256=9oWFtv5vfZf_HsgSZGkuFn358Twmn4vTFfN4qYFrcSA,1595
|
|
1193
|
+
mindsdb/integrations/handlers/pinot_handler/icon.svg,sha256=AZlN-V4za1cZSJgHcDiSxnHAGfHWURJngDI31Zt4-Mk,10555
|
|
1194
|
+
mindsdb/integrations/handlers/pinot_handler/pinot_handler.py,sha256=hscRU7VD_04Qwt5CZ5gHoOSwghMABbna1jf0-_71p3c,7003
|
|
1195
|
+
mindsdb/integrations/handlers/pinot_handler/requirements.txt,sha256=jxLeePj-OklKWl1qyG7CpGrxluIl0RFrGtFAniWKXwc,7
|
|
1196
|
+
mindsdb/integrations/handlers/pinot_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1197
|
+
mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py,sha256=iyKkN2KXZQO1faw2z-C0-UCiLLo5b91h_LceM9-_5lA,1132
|
|
1198
|
+
mindsdb/integrations/handlers/pirateweather_handler/__about__.py,sha256=AnJOsm2wv67Rj75avPalrDvAp3RvF5CQIOKcanhkW2Q,380
|
|
1199
|
+
mindsdb/integrations/handlers/pirateweather_handler/__init__.py,sha256=_aZnggMDkYBj2CH34Kod__6Y26j_s-ThxH3HC4UQyY4,683
|
|
1200
|
+
mindsdb/integrations/handlers/pirateweather_handler/connection_args.py,sha256=lCX_ftJ3_yihzN4DR5FwrgFaSkvWaxyV7SOlfeYkOgQ,346
|
|
1201
|
+
mindsdb/integrations/handlers/pirateweather_handler/icon.png,sha256=QwuxpOir5GfvUZWVhRjvPf0HqYpp-WRNo7OOLl07UjI,54926
|
|
1202
|
+
mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py,sha256=MjvPFYc1jDZ91TEgUJBl7KgTcgNcC_Tq222ny78WAGk,7892
|
|
1203
|
+
mindsdb/integrations/handlers/plaid_handler/__about__.py,sha256=8TBy0mepwizi0HF6P1NePAbBHyQNzGeq3CQY6Ep96uI,337
|
|
1204
|
+
mindsdb/integrations/handlers/plaid_handler/__init__.py,sha256=uboEmuYGsEOf5VsvXgMhWG3LyfHHjwXd3SgijtNnS9w,492
|
|
1205
|
+
mindsdb/integrations/handlers/plaid_handler/icon.svg,sha256=atBMW32ERpCOyYNoA361LeYNx79PydyGPB3_KRjIgOc,1389
|
|
1206
|
+
mindsdb/integrations/handlers/plaid_handler/plaid_handler.py,sha256=fIHubw33lgvwL5O5a879WHxKx48d6BzgphMl7NL_frI,8110
|
|
1207
|
+
mindsdb/integrations/handlers/plaid_handler/plaid_tables.py,sha256=25LAvLqM2sw03oYLzHTbb8ofTMlgU4q_BUSDWHX7E8c,5151
|
|
1208
|
+
mindsdb/integrations/handlers/plaid_handler/requirements.txt,sha256=wNOPb2f61Lp9XAk0-rmqUr4xhlJFs-I7VBNS02wuPoo,12
|
|
1209
|
+
mindsdb/integrations/handlers/plaid_handler/utils.py,sha256=NkIHwkE7vFYu0FdrXqFmdH_oKA7YAIsdJs2sPjol6RA,149
|
|
1210
|
+
mindsdb/integrations/handlers/planetscale_handler/__about__.py,sha256=ZFE7rrd6Os1ep3a49zBpkMCFazDtvI_K7_EGHRa2tSY,351
|
|
1211
|
+
mindsdb/integrations/handlers/planetscale_handler/__init__.py,sha256=cuM2ry8CRoMxejl7FjqH13YQfI04TMEiBK4AqOCHnkU,617
|
|
1212
|
+
mindsdb/integrations/handlers/planetscale_handler/connection_args.py,sha256=5z7GXhlTy0H_9OZM4VL7jcPJLyVwN4iSbYe4epj72wA,1016
|
|
1213
|
+
mindsdb/integrations/handlers/planetscale_handler/icon.svg,sha256=PNowYe4GZh4X-NTBx3Uu8oXfrTcy3spU_iwcn0a942c,391
|
|
1214
|
+
mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py,sha256=hRpqBAm2k0yIf30_AGKOxlDcJVSGoZuwvsF7Nqf8Nzg,457
|
|
1215
|
+
mindsdb/integrations/handlers/planetscale_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1216
|
+
mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py,sha256=mJIqeNmkUTDg54Vipz6piPH5p2YoP5A07Ns8ZhBtjQo,388
|
|
1217
|
+
mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py,sha256=i4yXTcit_hAOEcrnxL8nM8frP81zf4wXq4MbdVUCTiA,563
|
|
1218
|
+
mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg,sha256=RnNQHP7vD8_kKLf-AarfYRV9aWiCX6mTJvIFVLq5KU4,590
|
|
1219
|
+
mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py,sha256=cZWfB3hBCoNOhrZ--aYBczI8cYbrrybvTgNzGMX4hRo,3117
|
|
1220
|
+
mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt,sha256=vIzgVNcxRpbMMJtEjTxm_7TVHy7_v6atr3v-R4pw78k,7
|
|
1221
|
+
mindsdb/integrations/handlers/portkey_handler/__about__.py,sha256=9x2OD2B_XjPHEtU9WgknXRZEN79nAO70UKYvjEKAwPY,343
|
|
1222
|
+
mindsdb/integrations/handlers/portkey_handler/__init__.py,sha256=bjmefRkOAwE28pb6-0wqAYDsLHVdb9CigzzOYXhwNzg,581
|
|
1223
|
+
mindsdb/integrations/handlers/portkey_handler/icon.svg,sha256=CqWYmE-XNzkWUYUvDUMy92aF2Jy1dqlOKLI3ZbvYAWA,1511
|
|
1224
|
+
mindsdb/integrations/handlers/portkey_handler/portkey_handler.py,sha256=TrcJfF5yeJIpRhAycNRmJ_fi1Hd5RS_nbbz4OoQZq2U,2054
|
|
1225
|
+
mindsdb/integrations/handlers/portkey_handler/requirements.txt,sha256=wjzruG3CMIRu7Vn-lTmSRbI9Dn8Je9STtMzkdb00Ljk,18
|
|
1226
|
+
mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCaY3nupeuUxVKGSqwCkIZ8DdE_3DVUvs,346
|
|
1227
|
+
mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
|
|
1228
|
+
mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
|
|
1229
|
+
mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
|
|
1230
|
+
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=Ovs3lQADXBCP6M9hp-AZHVDbHGdUKQksHFzzahPfBCA,13613
|
|
1231
|
+
mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1232
|
+
mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=IwUYXO3aVCsIunHl5cPsf1nndZj3W-wkp5naH_vPb9Q,5825
|
|
1233
|
+
mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
|
|
1234
|
+
mindsdb/integrations/handlers/pycaret_handler/__init__.py,sha256=U93z3BWS-ntj4nhuHjnZunw3K3oEgqHh5l18hA_DyIo,564
|
|
1235
|
+
mindsdb/integrations/handlers/pycaret_handler/icon.png,sha256=zALpK46ynoWZAVadSu-vMrVA5jbpsGUY4-2ackLwOk4,10283
|
|
1236
|
+
mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py,sha256=Ys6yOFwzwsvvHmtiX41Yuj8rpigeCG599rYmakw274Q,4759
|
|
1237
|
+
mindsdb/integrations/handlers/pycaret_handler/requirements.txt,sha256=ZnLBh5o2axBoQIWcXNBvmZgYK-kJ0tMWa4IJ4dsMLYU,24
|
|
1238
|
+
mindsdb/integrations/handlers/pycaret_handler/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1239
|
+
mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py,sha256=QMvJyuogGQj9F-R01GMMwq41Xh2rDoKBuuC16Ow25l0,10200
|
|
1240
|
+
mindsdb/integrations/handlers/pypi_handler/__about__.py,sha256=xTe2n6gixZ4slLJyWtOARUJmcGuULs0yqp0wNtb1qtc,335
|
|
1241
|
+
mindsdb/integrations/handlers/pypi_handler/__init__.py,sha256=_pXSJ1rrKckzF5RGycJaEteGgYKdTEwEpv_ReC9D1iM,521
|
|
1242
|
+
mindsdb/integrations/handlers/pypi_handler/api.py,sha256=MC6x22Un5eitlAW3DkPrWXB7DVvEGeb68vqojRYwAGQ,4258
|
|
1243
|
+
mindsdb/integrations/handlers/pypi_handler/icon.svg,sha256=vcVIBzcU_lch8Piq77I5LUSUBMifxOvaUB9BL-6lqwg,18842
|
|
1244
|
+
mindsdb/integrations/handlers/pypi_handler/pypi_handler.py,sha256=-n9LmY8NFH4iFXsUAwkuPvVhc2T1e_vLZ2fIDCfDPow,1895
|
|
1245
|
+
mindsdb/integrations/handlers/pypi_handler/pypi_tables.py,sha256=O6TsBOGIn4gzE_t7oGiAZdWhZ-byaYhSTzDlU69dVaE,7043
|
|
1246
|
+
mindsdb/integrations/handlers/qdrant_handler/__about__.py,sha256=ra8llUW1Ep060NTT3k_ehmPscG-NcfLJHizIbkKHoTw,337
|
|
1247
|
+
mindsdb/integrations/handlers/qdrant_handler/__init__.py,sha256=Io7QujrrbM5nKY32fGlHuUyyldWx_BXZD1sGrNLGx1E,651
|
|
1248
|
+
mindsdb/integrations/handlers/qdrant_handler/connection_args.py,sha256=jMSZlxxaxGkq_5hLBaiwKQK78U1lxPOLeBvAszMGhDQ,2565
|
|
1249
|
+
mindsdb/integrations/handlers/qdrant_handler/icon.svg,sha256=zKCUfNT6B0HSkVOEAr8iD0UZ9nah47CHHEnjfuQ1hsM,1629
|
|
1250
|
+
mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py,sha256=in7wsPRf-de-_EVVpFLEk6iVViP9E7Ftk2FUOXx9Aq0,16129
|
|
1251
|
+
mindsdb/integrations/handlers/qdrant_handler/requirements.txt,sha256=5PoI_uItTqBIBzp9qoArrHMyOrCGaXu3X6bkOOm6Iuo,13
|
|
1252
|
+
mindsdb/integrations/handlers/questdb_handler/__about__.py,sha256=weXXIZ9HI8thG0RfEVQGIK7cEUGxfEh2wElImcJhAhc,339
|
|
1253
|
+
mindsdb/integrations/handlers/questdb_handler/__init__.py,sha256=JZAKIojr65atHm3V_hpDNtB7yT1qYnJLjt-ADeM6Rgs,485
|
|
1254
|
+
mindsdb/integrations/handlers/questdb_handler/icon.svg,sha256=t0dSnSPKN2mv0ciNWsKETBgPgGmboxEq7yHdDOAmFBA,2029
|
|
1255
|
+
mindsdb/integrations/handlers/questdb_handler/questdb_handler.py,sha256=gULLADPgP373CveDERNFhE83uZxvSuPm6aaaq7Kux-c,2202
|
|
1256
|
+
mindsdb/integrations/handlers/questdb_handler/requirements.txt,sha256=HGuEvKvrA6CsAGIzg_BbIUwsy_YWi87tzsCvqcX1ajs,8
|
|
1257
|
+
mindsdb/integrations/handlers/questdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1258
|
+
mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py,sha256=B5yR4RK0QtJzQVcVeTCF9L4yL5RxJlXMInMD4b3FkGU,1172
|
|
1259
|
+
mindsdb/integrations/handlers/quickbooks_handler/__about__.py,sha256=UeCTBvtHTGR0Xabsn4wkx0doUKJPRfaIH3WgHM_6rgY,348
|
|
1260
|
+
mindsdb/integrations/handlers/quickbooks_handler/__init__.py,sha256=gG215ZGlhdBM3UJkt9VmbENaefQCaIQL9AXWjqyaqeI,512
|
|
1261
|
+
mindsdb/integrations/handlers/quickbooks_handler/icon.svg,sha256=LwOkRzgobIrDcToWQo_ProJ2u1ai0OYgwjiF4Exli-w,1289
|
|
1262
|
+
mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py,sha256=yyOgOatvkEtM6CXZYQSBU4m-XMLhJBVZBye63dtLwJg,3383
|
|
1263
|
+
mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py,sha256=PA8ZjEklLLez0RSo_CgEHNsnskCXe4MGJJ9gChN2cvU,13384
|
|
1264
|
+
mindsdb/integrations/handlers/quickbooks_handler/requirements.txt,sha256=bkFLX7l8c7R9-fZFnxgKDON3rqNxV503j3PXW-BQ_og,6
|
|
1265
|
+
mindsdb/integrations/handlers/rag_handler/__about__.py,sha256=L6sE0_ZF9S4f5pmJjt5qa974dmekriF7876FZdXnvcU,369
|
|
1266
|
+
mindsdb/integrations/handlers/rag_handler/__init__.py,sha256=mfFU3tWa66-hWoih8YRdr6FrF7KNv2xUsHs6Z326Mko,517
|
|
1267
|
+
mindsdb/integrations/handlers/rag_handler/exceptions.py,sha256=uRHei8e_2oa7uBgMXQyEM9oTDjczBbyTODeu6R426v8,337
|
|
1268
|
+
mindsdb/integrations/handlers/rag_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
1269
|
+
mindsdb/integrations/handlers/rag_handler/ingest.py,sha256=E45U_5LnWcHJznxjAjPtgVBjk_02l4czBA-WqI8WJKE,5877
|
|
1270
|
+
mindsdb/integrations/handlers/rag_handler/rag.py,sha256=4PtyArS3tt4hzvjejR_9hq_W37MKop3h9XVkSFgqe2o,4764
|
|
1271
|
+
mindsdb/integrations/handlers/rag_handler/rag_handler.py,sha256=9VISfF6rRn6N3s_NMZTVo8So2aG49AH-A0-qZqAuE7E,5400
|
|
1272
|
+
mindsdb/integrations/handlers/rag_handler/requirements.txt,sha256=c2JTCp297CM2yfsCSoEwxB9mTmE70_2GhH_1F-ARdx8,200
|
|
1273
|
+
mindsdb/integrations/handlers/rag_handler/settings.py,sha256=5T4_oZt9dUD67AJXeZrzaftMnv4I4uL-XlzhO5kTYSY,15627
|
|
1274
|
+
mindsdb/integrations/handlers/ray_serve_handler/__about__.py,sha256=42oqKM1C-nIisvPvAL5fIxBDP-rxEduXnGrUUjrfLIU,345
|
|
1275
|
+
mindsdb/integrations/handlers/ray_serve_handler/__init__.py,sha256=MYDLydWeimQ74znwnrrgnh9S6YgtE7UnJcYBVlWv6r8,596
|
|
1276
|
+
mindsdb/integrations/handlers/ray_serve_handler/icon.svg,sha256=spxNMpiGLzxt46VM70-m-z4xButrIQ_dzLTarJKYSOA,1990
|
|
1277
|
+
mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=tgd1pfCfPP1JPZ2GhrRAZrXtMX2jOGGsFBvrCyKCwGk,2802
|
|
1278
|
+
mindsdb/integrations/handlers/reddit_handler/__about__.py,sha256=Xp4s3kJp-REycH83S1RLSaPZHpFqbn-MjRuQZ5BpBuQ,336
|
|
1279
|
+
mindsdb/integrations/handlers/reddit_handler/__init__.py,sha256=n3dhcPIHT_89hQxEXKQbHApOGBGQxtvWxp-fvFL083s,496
|
|
1280
|
+
mindsdb/integrations/handlers/reddit_handler/icon.svg,sha256=JAhHkvjiEfOz_BSbBVosQs8VXegNanxdnNUNz1bHyRM,3986
|
|
1281
|
+
mindsdb/integrations/handlers/reddit_handler/reddit_handler.py,sha256=KQoiWm7nw473cEwgQusMXbTRxoXOKbJdzTmgj40hZ3I,3265
|
|
1282
|
+
mindsdb/integrations/handlers/reddit_handler/reddit_tables.py,sha256=SBaOkm-Va7HF-u9MKHBlTEOS9PNI2S1iEvEpUD-18o0,6558
|
|
1283
|
+
mindsdb/integrations/handlers/reddit_handler/requirements.txt,sha256=fr-1_smtJ1skff4zL826Kumcy_XKQ_THIPJ1lwTPqIM,4
|
|
1284
|
+
mindsdb/integrations/handlers/redshift_handler/__about__.py,sha256=l9Ri3bz7eW3C5cp1UdSylSkLs8iWAoSH8H4foxb0Lb8,357
|
|
1285
|
+
mindsdb/integrations/handlers/redshift_handler/__init__.py,sha256=CwcbbRYbQLXROfpRN3KOjqle2oEfOVkB1y-4h2HUOTs,631
|
|
1286
|
+
mindsdb/integrations/handlers/redshift_handler/connection_args.py,sha256=je_PzZnNCR5goeNyZY1Tt_0mPQmGUiU_5lCw-lEBxwc,1676
|
|
1287
|
+
mindsdb/integrations/handlers/redshift_handler/icon.svg,sha256=iIsJ28OGHPtST21OT4_bNoGt48ORHDPdnNGRYmrDPtQ,765
|
|
1288
|
+
mindsdb/integrations/handlers/redshift_handler/redshift_handler.py,sha256=kX1HduXzHEU6GpZCPdDbEP_xJh2c-a8NHNYDElqLct8,2151
|
|
1289
|
+
mindsdb/integrations/handlers/redshift_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1290
|
+
mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py,sha256=dNQfm--1S8v-SPfAbS9VGuY7T8M97ELhwL9lxJ3zUNU,5523
|
|
1291
|
+
mindsdb/integrations/handlers/replicate_handler/__about__.py,sha256=2_18jFKOFO_515IYxchEJYQG77sR5MJTvOPUfZ_pjnU,349
|
|
1292
|
+
mindsdb/integrations/handlers/replicate_handler/__init__.py,sha256=zQ9LKlq8v86y64-gjITtCsVuYO2cmOKZ39f3RlK_EYs,551
|
|
1293
|
+
mindsdb/integrations/handlers/replicate_handler/icon.svg,sha256=56p1aqrvUXjoBcNd29dI5ZttA7IV7om95rDylErIzko,371
|
|
1294
|
+
mindsdb/integrations/handlers/replicate_handler/replicate_handler.py,sha256=TGmoZYFUagMWqKJEY3MKuE10ihyOslwUcPOUvsbYZUk,6893
|
|
1295
|
+
mindsdb/integrations/handlers/replicate_handler/requirements.txt,sha256=sjsGjIFCY5tCRuDpJJVIactIpN5fqbc5NaTEcjHOhKM,9
|
|
1296
|
+
mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png,sha256=crRGtMnf3xzPy7U1fh9-2gqc52QhzNs1DlQkMx6TRtg,355320
|
|
1297
|
+
mindsdb/integrations/handlers/replicate_handler/assets/groot.png,sha256=TxwVa0APOhGRQD8Ut36xnBgeFiReIxOKeqzjJrFKk9k,1314584
|
|
1298
|
+
mindsdb/integrations/handlers/replicate_handler/assets/warrior.png,sha256=Uvxky1c4NnIIUANiVdMROcxBDePApqnRcgEm4pA641g,1556534
|
|
1299
|
+
mindsdb/integrations/handlers/rocket_chat_handler/__about__.py,sha256=FdPpY1CH5gvEOchjt9RWss5Ehl8FbezSAMt6KpzGz-o,360
|
|
1300
|
+
mindsdb/integrations/handlers/rocket_chat_handler/__init__.py,sha256=Lfa_w0jgfGLpdlYbLf5YWS1DKJrEktvUF8JVvkydTe4,499
|
|
1301
|
+
mindsdb/integrations/handlers/rocket_chat_handler/icon.svg,sha256=PXczKYqazHgTvOI_jbWbd8b0SWirVt7OVS3OJzMn8Eg,2492
|
|
1302
|
+
mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt,sha256=iDoxDNf9uWvVT4X-a3kz4MLEqacKzCmd5mtV1eTmQ14,14
|
|
1303
|
+
mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py,sha256=sw0IiT4tgfmy05fu4LfD7WdrKGknPHGms_NUmGLabZI,5281
|
|
1304
|
+
mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py,sha256=doEN9RG95nAWOvi4U-9UqdxRQ6ZSZR5df7MZPrnJQNw,6298
|
|
1305
|
+
mindsdb/integrations/handlers/rockset_handler/__about__.py,sha256=HCXICDPS1kDFOFXzRgD7eHKcJOjQCrc-RVf1ArGMEQU,342
|
|
1306
|
+
mindsdb/integrations/handlers/rockset_handler/__init__.py,sha256=c3soxU78fuJzO0tQRZIwwOZIifTQXeiSq6Ez6zYZJ-k,601
|
|
1307
|
+
mindsdb/integrations/handlers/rockset_handler/connection_args.py,sha256=yd83qhfwK5xAvNYY7bW0PIsGE8NZCCwfn3MSswrhL4A,1073
|
|
1308
|
+
mindsdb/integrations/handlers/rockset_handler/icon.svg,sha256=duxHx1t4AN_ggwucppIBTdgmcRH6yO5Ru84xU-wioX4,539
|
|
1309
|
+
mindsdb/integrations/handlers/rockset_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1310
|
+
mindsdb/integrations/handlers/rockset_handler/rockset_handler.py,sha256=DbaGbWFhzHB1o0VNTUOyp9Hu79MqwuffzGZbcjdBnGA,314
|
|
1311
|
+
mindsdb/integrations/handlers/rockset_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1312
|
+
mindsdb/integrations/handlers/rockset_handler/tests/test.png,sha256=foksCl8DjyzOxikbkTP_AdFEk3VHai6UJgQIzPihvpY,194064
|
|
1313
|
+
mindsdb/integrations/handlers/rockset_handler/tests/test2.png,sha256=u4OFmvGERdC_7e91njNwQ44Yd46hNtaQ-yhpVIXSPOw,108141
|
|
1314
|
+
mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py,sha256=wZA0IUwoJHCaz4JZDSu2rOPLHYkNQNHPcfDAJXHJPQI,1062
|
|
1315
|
+
mindsdb/integrations/handlers/s3_handler/__about__.py,sha256=5_5F8HudwW0tS4NJfkodjzu0NmOfdLcw9eMPFj5aXP8,330
|
|
1316
|
+
mindsdb/integrations/handlers/s3_handler/__init__.py,sha256=_tcu60ouXkbhS42OVG9UUSTbujkPiA7fzzu5QS-4iKM,587
|
|
1317
|
+
mindsdb/integrations/handlers/s3_handler/connection_args.py,sha256=2zNyZx2ly5BZOfcoGRer-KvUyqN81BdQGy-v0UDfe2I,1531
|
|
1318
|
+
mindsdb/integrations/handlers/s3_handler/icon.svg,sha256=LjOAzAxK-rLX-e56Ln4-SuU0K4n6tsCnJTxLNqfYUq4,1930
|
|
1319
|
+
mindsdb/integrations/handlers/s3_handler/s3_handler.py,sha256=28ciJTHrTB0NJa_hh5Edjc7Y-RjNu9VRNAwYB-d0ewA,14835
|
|
1320
|
+
mindsdb/integrations/handlers/s3_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1321
|
+
mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py,sha256=WGH7BN3IsJMAA0YBSMWyghI2lnwfAN1Bwwc210eIb14,1249
|
|
1322
|
+
mindsdb/integrations/handlers/salesforce_handler/__about__.py,sha256=WLr4oUXEPsawa_y4oDxihsqN2iawkNDCbe4ttcF7WUQ,349
|
|
1323
|
+
mindsdb/integrations/handlers/salesforce_handler/__init__.py,sha256=nH_HnnS5cnDadXEy6ZiGuUPByT_JGu2Nrgx3Nzw0JCg,650
|
|
1324
|
+
mindsdb/integrations/handlers/salesforce_handler/connection_args.py,sha256=u6y9-xPN_BCAGobuKuJcYdeVKSZ9ilnEhhtrmwU1rIY,1189
|
|
1325
|
+
mindsdb/integrations/handlers/salesforce_handler/icon.svg,sha256=sL7XX_vF5Y7gLLklV1h17MXILGYz0f79VH915DQXyV0,8594
|
|
1326
|
+
mindsdb/integrations/handlers/salesforce_handler/requirements.txt,sha256=jPMerwJUBa5emh7WoOAwQkDxW88lk6wdLiDCCxIIbjk,14
|
|
1327
|
+
mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=iwb5gAwGpL8jtODH9SHDrCzvqklS5mqweph98SnARlE,6384
|
|
1328
|
+
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=VV80EeBk9AboUUAJYYtuYOByglUPbsocNdKYoFV4NJ8,5080
|
|
1329
|
+
mindsdb/integrations/handlers/sap_erp_handler/__about__.py,sha256=yXC_YavBeY0vTZvwkU4EN7DUijGMZ8m3jtQsftKwlhs,340
|
|
1330
|
+
mindsdb/integrations/handlers/sap_erp_handler/__init__.py,sha256=2rnUX-yeCkCgh4viBttHdG4o4HKJrVI3m82S8GJFCBU,531
|
|
1331
|
+
mindsdb/integrations/handlers/sap_erp_handler/api.py,sha256=tAIqeww34R0N0QyVKYhSE3NRzIDoBn8xepCZIG4tYbg,2168
|
|
1332
|
+
mindsdb/integrations/handlers/sap_erp_handler/icon.svg,sha256=4X7zHxktPBlMuz9gnN7fYyhFvWC2Z2o0MihWwToTpZI,2146
|
|
1333
|
+
mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py,sha256=n-0IEEvEu59EF_7r-Bz6fTzWBhuDoB09MygExLdN4fA,5395
|
|
1334
|
+
mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py,sha256=0gvDfn__h0SeIhiWDwSQhYA6JFnSn9G-OjxO1H46Oc0,59422
|
|
1335
|
+
mindsdb/integrations/handlers/sap_erp_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1336
|
+
mindsdb/integrations/handlers/scylla_handler/__about__.py,sha256=gq2kMl4iYtjxRGmc8N1qnGl1qleS9f3JvccFbgYYmo8,336
|
|
1337
|
+
mindsdb/integrations/handlers/scylla_handler/__init__.py,sha256=1Hn_nUReOm-KBULIMStjXb77n94BkT8WkEK5EUHbyZM,549
|
|
1338
|
+
mindsdb/integrations/handlers/scylla_handler/connection_args.py,sha256=s93jwcTAMKjANKcevJHM86nshheVIoHdTTNEIYfu-Ss,1332
|
|
1339
|
+
mindsdb/integrations/handlers/scylla_handler/icon.svg,sha256=yAOhsR8j8qQ_mwNGv22OwGQp553qg-IXqAXr3JOpeTE,9670
|
|
1340
|
+
mindsdb/integrations/handlers/scylla_handler/requirements.txt,sha256=oak5VzU4W2taxZgdL4URrh_MJaYaNozZS3Amyk9vbT0,13
|
|
1341
|
+
mindsdb/integrations/handlers/scylla_handler/scylla_handler.py,sha256=dQDU5DN9Cur3UMpUBKGHxf8DJDSLXRqF9NJeL_i3pZQ,7450
|
|
1342
|
+
mindsdb/integrations/handlers/scylla_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1343
|
+
mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py,sha256=GNCPWgfvKjik--BMF4tn4w0azPmNOTvHymKugnhML24,1290
|
|
1344
|
+
mindsdb/integrations/handlers/sendinblue_handler/__about__.py,sha256=mNrBV_1MfkupAJVeDMrCR6lBUfXpRwn6XXmBQ922hGU,355
|
|
1345
|
+
mindsdb/integrations/handlers/sendinblue_handler/__init__.py,sha256=9GNW50IOpUczJgBwFwUkIxAwHgcF_QnzvIm_M3vcPQU,523
|
|
1346
|
+
mindsdb/integrations/handlers/sendinblue_handler/icon.svg,sha256=dgYCEWBM6Yj67OQVYaBb-13EucoE2CtQikprO2GanPY,2730
|
|
1347
|
+
mindsdb/integrations/handlers/sendinblue_handler/requirements.txt,sha256=u6iN5asBaZDyg9vOw6OWq8dCvVV7w5fcli0dLedgilA,14
|
|
1348
|
+
mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py,sha256=Omr3eeZmo3q9h6YihqveK_Rz6XMtJauN-0f0Q5iFfVI,2589
|
|
1349
|
+
mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py,sha256=K2gBdyC3hKs46ntT2JsbgRCcFiJ0APc5_vl6_v7aLjY,10852
|
|
1350
|
+
mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py,sha256=gnGsZj1RtQnkRqj225n83FiyMhoifRg2t0-zUhZSz6M,394
|
|
1351
|
+
mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py,sha256=zIf8JUELB24Bc2t9CqTC3hL8o-cfQqg55nTj1H3aguE,605
|
|
1352
|
+
mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg,sha256=Di1nWIp9lQK9xqiyU4XttTIB9bQj44JNRPbUG05xOGE,2691
|
|
1353
|
+
mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt,sha256=YQ5L-FeZum2bJwIetXy8w0DVmriE3puvTJwsYIswXm8,61
|
|
1354
|
+
mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py,sha256=9Tw-saClJANaocCdvWyf6Za6BI13VE7xq65SLxEmQdM,2692
|
|
1355
|
+
mindsdb/integrations/handlers/sentence_transformers_handler/settings.py,sha256=q__kn6q-7Y3XZOy6kuyFc0PlLuNO7a4SGxQoaD8DXJo,276
|
|
1356
|
+
mindsdb/integrations/handlers/serpstack_handler/__about__.py,sha256=TQaJlvO6Zkjwww6U_U9JU7R9XZ6GWKfa37V71Sbe8Po,349
|
|
1357
|
+
mindsdb/integrations/handlers/serpstack_handler/__init__.py,sha256=8Un1Cs-hIL-Q5O_qnQkAMwebbPyK7YGPHKyK3Hlo63A,518
|
|
1358
|
+
mindsdb/integrations/handlers/serpstack_handler/icon.svg,sha256=No8P1KWsdqvMR5qJWur74gWFrSRfxK9cFUev3ytTsmE,5446
|
|
1359
|
+
mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py,sha256=jIB2yVyMUp42vucPKUy7HzYy6PR9i80adkC6IomwKLM,3961
|
|
1360
|
+
mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py,sha256=a2TXrpPXaLPu2xJZpVeOJate5WgxqEeCbUdUETBCeuE,8474
|
|
1361
|
+
mindsdb/integrations/handlers/sharepoint_handler/__about__.py,sha256=7heHAQUNzhzxwckrCV6QkOW3dLUTs4wnYMGDopT6XrM,349
|
|
1362
|
+
mindsdb/integrations/handlers/sharepoint_handler/__init__.py,sha256=m-KTgnuNEeIsAr7Y0dFZVly56nWG7PejFohah5l0hRU,533
|
|
1363
|
+
mindsdb/integrations/handlers/sharepoint_handler/icon.svg,sha256=U1cLcyqxlUgl0DZWUxuTntC6wCXY_b0-HBsxUPOzF4Q,4590
|
|
1364
|
+
mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py,sha256=HhsF-B2AKVxBhhpbJHTXrFuVe6rLLAyT2cY1xZ_OVIw,20805
|
|
1365
|
+
mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py,sha256=pnQorxn9BdYvg1M12v9t6yDA-Rjwj91ast_mDuauAzI,4163
|
|
1366
|
+
mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py,sha256=s1H91HqP1GbxzCN9G2VTD2z0PLu6cceBRRFAsF2c1vA,17973
|
|
1367
|
+
mindsdb/integrations/handlers/sharepoint_handler/utils.py,sha256=K4eHZ7URUJ517reHsgHEIJqx4GYLiMrKRTLzkbxrAQI,5229
|
|
1368
|
+
mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1369
|
+
mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py,sha256=xQ2ahguYDRXm_xuEiGVMa8uknJdgEyaBnocRxZ6t38o,1896
|
|
1370
|
+
mindsdb/integrations/handlers/sheets_handler/__about__.py,sha256=9Sayal4tNbITvTgskEmn01QRvmeucON1435o0IKzSSI,356
|
|
1371
|
+
mindsdb/integrations/handlers/sheets_handler/__init__.py,sha256=yTemBTQ6ptZ-WpFzaKL95MvHf5m1KoGk7M7lWJE_gUs,603
|
|
1372
|
+
mindsdb/integrations/handlers/sheets_handler/connection_args.py,sha256=xHPG6-djFcUN9ck2K0L9quQq0iuIzZf2E9BvOw8S3pE,529
|
|
1373
|
+
mindsdb/integrations/handlers/sheets_handler/icon.svg,sha256=Wz4CS_9u6_zaouNSS-ePCRUnwpUZUn9hJ2J04BEksvs,5628
|
|
1374
|
+
mindsdb/integrations/handlers/sheets_handler/sheets_handler.py,sha256=q_Md27HqvDQk9vZh9JT1E6NPuckaveEDVYfYQeb7O1U,5264
|
|
1375
|
+
mindsdb/integrations/handlers/sheets_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1376
|
+
mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py,sha256=o1yiNnMMpGb2HdznEHdCwR9w8g8XXdvNdgPvLpLTqUM,1059
|
|
1377
|
+
mindsdb/integrations/handlers/shopify_handler/__about__.py,sha256=w70w9xG4laoJ6fBvlDwacmDdMpPG6R-BhTV-1YB8ubA,346
|
|
1378
|
+
mindsdb/integrations/handlers/shopify_handler/__init__.py,sha256=VeIeMd6vofxyaAkLPX6X63Ye0of6s768mZ7gLvXrQ_8,511
|
|
1379
|
+
mindsdb/integrations/handlers/shopify_handler/icon.svg,sha256=-htxdS5C7rsXqiY3H0Y5LVhvHG_cb8Iw7MuJc8Ra2Qo,2452
|
|
1380
|
+
mindsdb/integrations/handlers/shopify_handler/requirements.txt,sha256=keRn5kMNcJHM3MBDc26Y-mYR747z5HdsJeURBQ3sygY,11
|
|
1381
|
+
mindsdb/integrations/handlers/shopify_handler/shopify_handler.py,sha256=SOd0EFwTEq_RjXyhYQ37R-58ExNVA1UqgvnTzcPqmTc,4942
|
|
1382
|
+
mindsdb/integrations/handlers/shopify_handler/shopify_tables.py,sha256=Jpj-wG3sMv29qpD7TNnKiOML1rzHwshtDRIzK74Agto,38613
|
|
1383
|
+
mindsdb/integrations/handlers/singlestore_handler/__about__.py,sha256=J-SeCseIh0969pPByjhSCMdpTHdvNgdM8w_n2APyd2A,350
|
|
1384
|
+
mindsdb/integrations/handlers/singlestore_handler/__init__.py,sha256=WqcldLndyx_OYY-dJAbQFEEKC554culcV8ZxhxLRNPU,515
|
|
1385
|
+
mindsdb/integrations/handlers/singlestore_handler/icon.svg,sha256=ZHU9Xd8NgO4VADPp3jl42HZ7eqcf8aTAvN7xUCTfMAc,2064
|
|
1386
|
+
mindsdb/integrations/handlers/singlestore_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1387
|
+
mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py,sha256=ZRrMpNhX-ELdqJLT-aHJixWmhtG5sC41E0JbVjmvQlk,434
|
|
1388
|
+
mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1389
|
+
mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py,sha256=o2nKep5ZoqFV9n77jE0qcYsfiFWJmQow55YXldhJMvo,1446
|
|
1390
|
+
mindsdb/integrations/handlers/slack_handler/__about__.py,sha256=ykbgm6frTOTB8b-PtZrQEv_jMijGD2e-GIziyygILZM,335
|
|
1391
|
+
mindsdb/integrations/handlers/slack_handler/__init__.py,sha256=1C8z9FrWQHIk2Dg5fBGA0c9E_EXw8eBXkG8gz-Yshm0,518
|
|
1392
|
+
mindsdb/integrations/handlers/slack_handler/connection_args.py,sha256=mzsx968FZZ3gVFXcTimbegcSucYcKzdRnj9FWj1SZ3s,637
|
|
1393
|
+
mindsdb/integrations/handlers/slack_handler/icon.svg,sha256=bPzub2wQkTiV8nFCoy8TCSAXxYjjg65S7jQT1_yGduM,2005
|
|
1394
|
+
mindsdb/integrations/handlers/slack_handler/requirements.txt,sha256=92G8Qt34iNKtS1FzKMKUHZp6r8CPz-3TZLn_dD9nY7M,18
|
|
1395
|
+
mindsdb/integrations/handlers/slack_handler/slack_handler.py,sha256=vX7nrVIkNFSvsviAySc8_sDEh-8GMf46SHnF7KFxcBY,12784
|
|
1396
|
+
mindsdb/integrations/handlers/slack_handler/slack_tables.py,sha256=K5ScKVmsFZgen4QSAr9hMqkcGaYXTPfCNXzpFGjpr54,28116
|
|
1397
|
+
mindsdb/integrations/handlers/slack_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1398
|
+
mindsdb/integrations/handlers/slack_handler/tests/test_slack.py,sha256=DRRHF-i5J711drntA15ZQY1KvI8GYRDXeKDFiH_alJk,883
|
|
1399
|
+
mindsdb/integrations/handlers/snowflake_handler/__about__.py,sha256=O2reZn6Jc5N14J2xVNjUI-DhRlBp3jDTYPBbzfIG88w,345
|
|
1400
|
+
mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DIgRy6XdrGgBjTf_H5G514XYH0fGFYsw,609
|
|
1401
|
+
mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
|
|
1402
|
+
mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
|
|
1403
|
+
mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=5r0GR-Pbs4w_Mxp6OmX83aVj7D_y7hagqozmHE_ijyE,63
|
|
1404
|
+
mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=0NpP-KVaxduKaAkb7yKA--WzdDTWhzyNrWW9BoxNF2o,11090
|
|
1405
|
+
mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1406
|
+
mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py,sha256=2_zTKNxqbvhzwVhU9JRmv5Chhh9rulGnMfj-GVIPA60,7369
|
|
1407
|
+
mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
|
|
1408
|
+
mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
|
|
1409
|
+
mindsdb/integrations/handlers/solace_handler/icon.svg,sha256=rzGNiCdLWu9OJ3j8ilXrOTwRupMp3n3RQrfm2D_Nx5A,152
|
|
1410
|
+
mindsdb/integrations/handlers/solace_handler/requirements.txt,sha256=kOMDzRkpyVSdYIRTL7WOyN0DjMIroD51pFwVd1B9_BY,18
|
|
1411
|
+
mindsdb/integrations/handlers/solace_handler/solace_handler.py,sha256=h82SqnLbGsgblVQgFrcMf2KejaqQPjjYv2bUWR5Tcrg,5635
|
|
1412
|
+
mindsdb/integrations/handlers/solr_handler/__about__.py,sha256=YGongZaOYWVBJtgIf8Kzj9Iz9W8V7yYlzedzWzqKoFM,332
|
|
1413
|
+
mindsdb/integrations/handlers/solr_handler/__init__.py,sha256=J3kSqn15RC6mruLlv2OQFtk7dgAb3qk1ss4oaDmgwYo,595
|
|
1414
|
+
mindsdb/integrations/handlers/solr_handler/connection_args.py,sha256=9vkyeKg5x5E1XedoJBVqpO4lPJ-IW_b49kGChh_EAFs,1457
|
|
1415
|
+
mindsdb/integrations/handlers/solr_handler/icon.svg,sha256=oMJbF8KYAXMLJFqq1X4UDjz0pToxKEDL8sCnD3SAGJU,1215
|
|
1416
|
+
mindsdb/integrations/handlers/solr_handler/requirements.txt,sha256=5BJdrNsaD-Sw4ZWEvrST-fPHbPAxVfTINMlOnRzMfe8,15
|
|
1417
|
+
mindsdb/integrations/handlers/solr_handler/solr_handler.py,sha256=UZ39at_WKZ7r8F2msJPsLfL1WeFUydmOENseQlnpvng,5481
|
|
1418
|
+
mindsdb/integrations/handlers/solr_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1419
|
+
mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py,sha256=lE_8IPogUOXQ9EvT5T50y-bfnD2JAXWFCLfkHbKP_nI,1215
|
|
1420
|
+
mindsdb/integrations/handlers/spacy_handler/__about__.py,sha256=jd6QQQ6sSZ5yoYvxSWPynn_Olt5n-ylQo5vGyZ3aqyc,345
|
|
1421
|
+
mindsdb/integrations/handlers/spacy_handler/__init__.py,sha256=zY48kMbG9iQmG2FyFKVCFw0JpdFDb-_1caLHh5pXdDo,488
|
|
1422
|
+
mindsdb/integrations/handlers/spacy_handler/icon.svg,sha256=wvPUPjGqsBiOaOg5gGQjnc2lw8yyF4qR8CcxhagwtkU,3544
|
|
1423
|
+
mindsdb/integrations/handlers/spacy_handler/requirements.txt,sha256=IWB7b6dde1A3Ov4gJnLyAQSNoWJxiFi6xFkE1twgzdo,5
|
|
1424
|
+
mindsdb/integrations/handlers/spacy_handler/spacy_handler.py,sha256=HJtjxWgTzC3MDH7dE0PPliJzG_vKWZeM1sfn9PUqTn0,5829
|
|
1425
|
+
mindsdb/integrations/handlers/sqlany_handler/__about__.py,sha256=9SQlo9xwIpRfUsbQQjKZTWXDTrHGbEyoZZJ_cIuZngw,359
|
|
1426
|
+
mindsdb/integrations/handlers/sqlany_handler/__init__.py,sha256=qJlQ_ZZ4Ni6kHtUicGhdUS0kL_ni6M08pgAQvd1q2kA,606
|
|
1427
|
+
mindsdb/integrations/handlers/sqlany_handler/connection_args.py,sha256=I50L0E4Zq8BeJvsgRTwvIxxmyBdljWi3p3zM6tiQZ24,1334
|
|
1428
|
+
mindsdb/integrations/handlers/sqlany_handler/icon.svg,sha256=Y2lmewh0cBgJP_8SyDgjcxrN6AG-U1_uBo-VF0xkgPg,2146
|
|
1429
|
+
mindsdb/integrations/handlers/sqlany_handler/requirements.txt,sha256=Y0gnZVmzYd3QEf6TvdXSasgY0FkOTo-RKRbTtq2zVaE,27
|
|
1430
|
+
mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py,sha256=dq7O8UsFel2_sLnlY8tJbR9pN4maNPVKtU-E4vdzs10,5699
|
|
1431
|
+
mindsdb/integrations/handlers/sqlite_handler/__about__.py,sha256=lWd9EgLYvUjLUUylfnVrPnBFF64v5WUJk0sKOaaSMT4,351
|
|
1432
|
+
mindsdb/integrations/handlers/sqlite_handler/__init__.py,sha256=x5LSxJLjgFy461oFuc7EkIICYFjwbkR3nxRjUXD39aw,616
|
|
1433
|
+
mindsdb/integrations/handlers/sqlite_handler/connection_args.py,sha256=fkHQz2pMUYYls0SH3QWyVRZC9EQpub8Tqogu0IMPN1w,459
|
|
1434
|
+
mindsdb/integrations/handlers/sqlite_handler/icon.svg,sha256=_vrqIxTfukZKHbwInyi8_NXkvY7gaXmmlhBpvkizBwc,3379
|
|
1435
|
+
mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py,sha256=R8jP0bznyNtAcdZriOjSPvc4bPZDXkPNw886WpK0D78,5794
|
|
1436
|
+
mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1437
|
+
mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py,sha256=uwdM4niujj3VPWvNZWMImOWgB0tppoYYPm7KW_V4-HM,1033
|
|
1438
|
+
mindsdb/integrations/handlers/sqreamdb_handler/__about__.py,sha256=n99f9F2MFzGvCa-nZJWgyDolrEd9wBd2Iir71bfcvpc,346
|
|
1439
|
+
mindsdb/integrations/handlers/sqreamdb_handler/__init__.py,sha256=CwLXvfxGQe24ArIUtDfSwKSvZdEr0XtC_AsA7wsFrJ8,604
|
|
1440
|
+
mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py,sha256=t3ZJsob7MNNLkvcIkgTO9KQrgDDQARG5DJt_JyLBsT4,1383
|
|
1441
|
+
mindsdb/integrations/handlers/sqreamdb_handler/icon.svg,sha256=ahjvGh5halSk2-D7dx4ZEYzdS9-8R2YN7bA6opumpik,19052
|
|
1442
|
+
mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt,sha256=J0WEmaOHnBO7pofu2y7pwtBEM8CajuqxW32Gx-clg5c,40
|
|
1443
|
+
mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py,sha256=96P-3E7uBl-FqapQ0zbr5rSJ-mwXwmRLL5Gb02q6zAE,4902
|
|
1444
|
+
mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1445
|
+
mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py,sha256=7mHIpSxyoDMtkpbmInVF60m2In-TiYKO1yas_qgNOJk,1434
|
|
1446
|
+
mindsdb/integrations/handlers/stabilityai_handler/__about__.py,sha256=oUkOwYjexl28Y0r0oeAKALZKrjU4hl_g5nCQBZ_o_DQ,355
|
|
1447
|
+
mindsdb/integrations/handlers/stabilityai_handler/__init__.py,sha256=I7ZPo3LOsBNDLq_Jw7X7Flsble-tr6X3xdeLU9VveT8,512
|
|
1448
|
+
mindsdb/integrations/handlers/stabilityai_handler/icon.svg,sha256=ZpGpqOrCHEnu6bEKUZeBBjZiOQmHdurWMs_knbfzF-Y,1284
|
|
1449
|
+
mindsdb/integrations/handlers/stabilityai_handler/requirements.txt,sha256=3rD2bEMgLiyhsQHPbojpz07ZWrUgIW4QENkN3kWnov8,21
|
|
1450
|
+
mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py,sha256=NZqNRDcaMaUGhuFGTUiXA5P2LtJ0BGJSKJ1LlNb5Ba4,6901
|
|
1451
|
+
mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py,sha256=7y6UsNqmpiUOYf8X17MPm_cLaT3LW2Nu_h9Abvvlf8Q,7274
|
|
1452
|
+
mindsdb/integrations/handlers/starrocks_handler/__about__.py,sha256=pkApZqHghl4GQWOJLFTmahOYn2xVR4vhBm4BWdnthw4,349
|
|
1453
|
+
mindsdb/integrations/handlers/starrocks_handler/__init__.py,sha256=SMee9IZM4-ADJKXB-GlOkf2laHNSiE3sZlSJ3Lj-piQ,493
|
|
1454
|
+
mindsdb/integrations/handlers/starrocks_handler/icon.svg,sha256=AlnqpxH93ohQSQcItJU5-t9xgoHBjzvZSBzyyP4ryfk,1945
|
|
1455
|
+
mindsdb/integrations/handlers/starrocks_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1456
|
+
mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py,sha256=VlNq-kuVvsbythqxAESoMqBDa0FYLMIx6A4jBliDT9c,1301
|
|
1457
|
+
mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1458
|
+
mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,sha256=sIYAE9rwD54CYDz0L7a2BSB1YivGz0BcSOMiuZlb7UQ,1746
|
|
1459
|
+
mindsdb/integrations/handlers/statsforecast_handler/__about__.py,sha256=1X1F2LyKSugvGa7VZco3R4fDZTM1ED3Ku-ys2evcczY,374
|
|
1460
|
+
mindsdb/integrations/handlers/statsforecast_handler/__init__.py,sha256=LYYrtDMAW5aFPLPyIp-rOxO2O6izWi7pNtQGAsRmmdY,516
|
|
1461
|
+
mindsdb/integrations/handlers/statsforecast_handler/icon.svg,sha256=dg5efvtY54Q70QS8a1FGc3-RbH9vbsWoOCmHtPjANRE,590
|
|
1462
|
+
mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=17INZW5OfTUqbRKt-gcljYlwFUCyW3PjTSkiNrm_VtQ,21
|
|
1463
|
+
mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=17INZW5OfTUqbRKt-gcljYlwFUCyW3PjTSkiNrm_VtQ,21
|
|
1464
|
+
mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=kTmm5bKnduvJYQ4dN8r_Zj5LJ-rsoHDwny6DG8LCzq4,8418
|
|
1465
|
+
mindsdb/integrations/handlers/strapi_handler/__about__.py,sha256=pCZCrsIQ2_9QSAfpIY8se9QDvIE2kP9_a5N0DnRMO6k,344
|
|
1466
|
+
mindsdb/integrations/handlers/strapi_handler/__init__.py,sha256=TnZspPGgLSMgWxJkY0oUd6EiPl16Xo7spn0Oswok8-o,529
|
|
1467
|
+
mindsdb/integrations/handlers/strapi_handler/icon.svg,sha256=-00G-8wAFYndz5z04zdKnskPASN8-O-8HtrPkoI4r9M,1073
|
|
1468
|
+
mindsdb/integrations/handlers/strapi_handler/strapi_handler.py,sha256=9_IyH4s2UXGCkIpAD9s9fhnqV-QaeFUXBEHU7DJp2I8,5429
|
|
1469
|
+
mindsdb/integrations/handlers/strapi_handler/strapi_tables.py,sha256=5Sg4sk_sB6_NvYV5xNz7C9LWe5FHqepY3jbNnXzJbU4,4803
|
|
1470
|
+
mindsdb/integrations/handlers/strapi_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1471
|
+
mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py,sha256=xECwEBfmYUQsByfoUNL2aPDkBUtz_ckZXLGZh2hTGKQ,1904
|
|
1472
|
+
mindsdb/integrations/handlers/strava_handler/__about__.py,sha256=zYeH3wGTPWdK2Kdr9c2hJXwZAZmxqtldingw5oZX1CM,344
|
|
1473
|
+
mindsdb/integrations/handlers/strava_handler/__init__.py,sha256=fpoXQgaNScX27rxkNbjyY-JDCG6q0rZHNKH9XpaeoRM,507
|
|
1474
|
+
mindsdb/integrations/handlers/strava_handler/icon.svg,sha256=WWcpMlFlIGRXqq3PUAsDzK5ShEr-UwteLWuQHzH0894,628
|
|
1475
|
+
mindsdb/integrations/handlers/strava_handler/requirements.txt,sha256=zmg1tZLIYt6P2O_IaXMghPa0eB-mvaltye2A7xuPN1A,10
|
|
1476
|
+
mindsdb/integrations/handlers/strava_handler/strava_handler.py,sha256=vt9aveT_iFgKRzGaby0AnPXdK1PUyzpIWJkAb0kOs_Q,3421
|
|
1477
|
+
mindsdb/integrations/handlers/strava_handler/strava_tables.py,sha256=1JZv4qX_gFwDhLvjIuhRuXbbBYiDWRikwapUpUw6vf0,8188
|
|
1478
|
+
mindsdb/integrations/handlers/stripe_handler/__about__.py,sha256=Uknc7T0dq-_3jvCTIHC2Fq6ds-RNewF-5m8vge-LeS0,343
|
|
1479
|
+
mindsdb/integrations/handlers/stripe_handler/__init__.py,sha256=uyLgbv2G8ZOkcQAq_PJfTceuUCIzIpszCRA-XCj_-ag,507
|
|
1480
|
+
mindsdb/integrations/handlers/stripe_handler/icon.svg,sha256=BdCx7kc4Np-P6ceICXzaBEH0TBOyxqLLL1zCqSZInJE,704
|
|
1481
|
+
mindsdb/integrations/handlers/stripe_handler/requirements.txt,sha256=K-0gMu09gwC3cU_3cQHmxDY3WXl3M3xpkZHdhEyGpy0,6
|
|
1482
|
+
mindsdb/integrations/handlers/stripe_handler/stripe_handler.py,sha256=r_0-IaY7xdaQUC1SjotfWKFFyfr8nzFK9EAQUFBddIg,2846
|
|
1483
|
+
mindsdb/integrations/handlers/stripe_handler/stripe_tables.py,sha256=6nEUwkDNG6HQlAoRU14j5gF4njpQNcyRfyV-2JUjXvk,16193
|
|
1484
|
+
mindsdb/integrations/handlers/supabase_handler/__about__.py,sha256=mvRq0yRA_Zt-0_dP5WEkuiM1k-2hcL9aBcDw30PcCE8,342
|
|
1485
|
+
mindsdb/integrations/handlers/supabase_handler/__init__.py,sha256=7m-tY9p52UrXA5WVWDAZgoiWS1p4s4-jthx4jyx4g0E,489
|
|
1486
|
+
mindsdb/integrations/handlers/supabase_handler/icon.svg,sha256=raGqT1S4xpEQLeHj3OEWU6W_8vVlql-R7flMBiOttnY,1174
|
|
1487
|
+
mindsdb/integrations/handlers/supabase_handler/supabase_handler.py,sha256=hi1Ndqskeb7dDhoL71Y3eHfvzHIWCyEFY2ZZB29S2bQ,326
|
|
1488
|
+
mindsdb/integrations/handlers/supabase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1489
|
+
mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py,sha256=xAfmn-PLeGX4iyAsOCNFJw19acakGK0iTds6Dl1UWzg,1408
|
|
1490
|
+
mindsdb/integrations/handlers/surrealdb_handler/__about__.py,sha256=HU-MfMC6d2oWZZANntvc2ZJRL9sdRctDgpa0IF_2-Fc,376
|
|
1491
|
+
mindsdb/integrations/handlers/surrealdb_handler/__init__.py,sha256=Y_DOxm1PderYV8_VidjJlPgB2QivfugI245a3SOSCTk,608
|
|
1492
|
+
mindsdb/integrations/handlers/surrealdb_handler/connection_args.py,sha256=nbBhHClh582l4KIR8u9e5Bo7gMPwU4qDvZrrj3W6HFE,1463
|
|
1493
|
+
mindsdb/integrations/handlers/surrealdb_handler/icon.svg,sha256=A6hrNrewVOKtHwAUherAF3mIPYijqRH4NofZYG_6f3Y,1449
|
|
1494
|
+
mindsdb/integrations/handlers/surrealdb_handler/requirements.txt,sha256=P1aJoTZNUH39vh-kIhW1ioAFBkerI9dUdbdtxHgFH-w,12
|
|
1495
|
+
mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py,sha256=QTga0igT4v4tiED2iOJf1YiTKlpSfaTG244ucNM3ZBU,6063
|
|
1496
|
+
mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1497
|
+
mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py,sha256=POOXBiNfNNaO0Ac0K5XlIZOVp47qN1bFofVixrFbnMM,1891
|
|
1498
|
+
mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1499
|
+
mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py,sha256=4q59NftcLbqBk9l_PULJYrPmWO0OQWL6pye8K9O5kDw,512
|
|
1500
|
+
mindsdb/integrations/handlers/symbl_handler/__about__.py,sha256=RNxWE-zIHF1fpu8gtpl9tYTkgKcID7ivG3EEgt42jbc,335
|
|
1501
|
+
mindsdb/integrations/handlers/symbl_handler/__init__.py,sha256=jyGSvbItxveUNfs6ERAeWjcMGvIHYq6nQb3s1sVvA-Y,625
|
|
1502
|
+
mindsdb/integrations/handlers/symbl_handler/connection_args.py,sha256=wZfQJHYVF3fW3tpwpcPK62bB332QJmOQb4OSN3i39Pc,571
|
|
1503
|
+
mindsdb/integrations/handlers/symbl_handler/icon.svg,sha256=XyKnK8lT7QuhikmnWIlMnyDaGbO7Mg2nCvzVvrnbM4c,289
|
|
1504
|
+
mindsdb/integrations/handlers/symbl_handler/requirements.txt,sha256=JaJf0SYW1sxQ8usFn1KUtLE9xCe07dzDEWS9N6mEtr8,5
|
|
1505
|
+
mindsdb/integrations/handlers/symbl_handler/symbl_handler.py,sha256=3Y8k1bh4sYnGiEVvNrd8Pgq9BtNpHZqb9D0B5niyHyU,3027
|
|
1506
|
+
mindsdb/integrations/handlers/symbl_handler/symbl_tables.py,sha256=0Ky9oi4Lg7tbbqfXvMRsR3-jRUxrMqRWH1Ytbc_SmJw,18160
|
|
1507
|
+
mindsdb/integrations/handlers/tdengine_handler/__about__.py,sha256=60i37mjb4HY6jXVcB4e71Bu-8KLCZoUcLa31i8puWf0,346
|
|
1508
|
+
mindsdb/integrations/handlers/tdengine_handler/__init__.py,sha256=xPvtQ7Rw7wbVJXehkMPiMLnsxp79AlVsSN5yifVyQQk,604
|
|
1509
|
+
mindsdb/integrations/handlers/tdengine_handler/connection_args.py,sha256=OPH5NEDSPxZ6iPIDBor7gHb5aDs2JhskEf7zF0S8RiQ,982
|
|
1510
|
+
mindsdb/integrations/handlers/tdengine_handler/icon.svg,sha256=n9TFbxQXmgulHJ9xe-jv07hXVVzUVs8WUoW9i6r3vsk,4903
|
|
1511
|
+
mindsdb/integrations/handlers/tdengine_handler/requirements.txt,sha256=Hd60uoHTQmZiGt55R7KWc-WRt0pun0sx8XJiTtC9rn4,6
|
|
1512
|
+
mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py,sha256=LrzjraaSzO4V0a_u9N_nqlnk2qr_UZkRL64VWVDOaTY,4424
|
|
1513
|
+
mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1514
|
+
mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py,sha256=6pCI0vBOjF0FWZjQOXEAjsoibE9aTAq2w_-TcPoj9f0,1564
|
|
1515
|
+
mindsdb/integrations/handlers/teradata_handler/__about__.py,sha256=IDbZpk---hxwg_GaxnMmesQJUaDXnNkigrNDFpoVQUE,345
|
|
1516
|
+
mindsdb/integrations/handlers/teradata_handler/__init__.py,sha256=g2iNycfebnlIMvxLpfkgAP69q58LMmTjAdUBGxN8cXc,604
|
|
1517
|
+
mindsdb/integrations/handlers/teradata_handler/connection_args.py,sha256=0XFNxt7yZxyi2nj2H93qCG0D46MKBnGH376CQroiLEA,1040
|
|
1518
|
+
mindsdb/integrations/handlers/teradata_handler/icon.svg,sha256=hQ3DvX3qe3sGrF1sQUm9sSslZ-zWJ43M6TK7rYTfcaI,465
|
|
1519
|
+
mindsdb/integrations/handlers/teradata_handler/requirements.txt,sha256=_04Um7LPmnZ--m1Tb33WFv1eGRQb2mI6w7GRiJzXOu4,31
|
|
1520
|
+
mindsdb/integrations/handlers/teradata_handler/teradata_handler.py,sha256=avSB7neq0j8cfYisOcavyMJoynEPmkwUJKKeZLiU7Ho,8793
|
|
1521
|
+
mindsdb/integrations/handlers/tidb_handler/__about__.py,sha256=20bWkrh1aKz8qv14Y3VcpsWqpwmot_LJSI-Z0KbG4y4,329
|
|
1522
|
+
mindsdb/integrations/handlers/tidb_handler/__init__.py,sha256=qSSXx9piZmL66jSSuEeg10YlQUdrP-KTMQhkmqux9h0,589
|
|
1523
|
+
mindsdb/integrations/handlers/tidb_handler/connection_args.py,sha256=gii6lGMHIHeuWLx-NdDoheN-W17LgCcfzDibBkzCPZ4,1058
|
|
1524
|
+
mindsdb/integrations/handlers/tidb_handler/icon.svg,sha256=AYauw0wMLbfLYyXBYUw5doMO0zQ3EAjuP-_SeETjm8s,470
|
|
1525
|
+
mindsdb/integrations/handlers/tidb_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1526
|
+
mindsdb/integrations/handlers/tidb_handler/tidb_handler.py,sha256=WLmvnEFpXGhf7VXg2Vhmw7b3SK2CKtGqEQdh1AxCX4w,305
|
|
1527
|
+
mindsdb/integrations/handlers/tidb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1528
|
+
mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py,sha256=2jW1qDpWVK2N6inTvgPqhPfbVVH9BzFuVgbq2wN9pjI,1334
|
|
1529
|
+
mindsdb/integrations/handlers/timegpt_handler/__about__.py,sha256=wBHyAM5O7yWVgUKBGJwRM6gpy8FUWzcBxL048e4yjhA,390
|
|
1530
|
+
mindsdb/integrations/handlers/timegpt_handler/__init__.py,sha256=lMvw91ghkXJj2RuXSi1om4KYc8xbNik3YwXcYA-Hld8,491
|
|
1531
|
+
mindsdb/integrations/handlers/timegpt_handler/icon.svg,sha256=CfkLqkeZTKSjsQMKTx_KqkCqXvnHRyAAa1DVs-R1qiA,590
|
|
1532
|
+
mindsdb/integrations/handlers/timegpt_handler/requirements.txt,sha256=vvCmrZlyKlVJH4KzFoegYd5NFsP6hjYaMTZo8MEQGlY,14
|
|
1533
|
+
mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py,sha256=rdAQhmGP_hqguShfHPNj5r5pBXZEla8A-4ErTQ0_LbY,9868
|
|
1534
|
+
mindsdb/integrations/handlers/timescaledb_handler/__about__.py,sha256=joUHMPBAiylB7Uc7sipeFVWlWDZ_wqVqyyy_MivkNFI,355
|
|
1535
|
+
mindsdb/integrations/handlers/timescaledb_handler/__init__.py,sha256=ynMpLqCRlYomZEFEinXmtYYGr0DPIMQZ9HtsytOpe6c,497
|
|
1536
|
+
mindsdb/integrations/handlers/timescaledb_handler/icon.svg,sha256=sZHwvwAJ5SiTLSHhjdm_2YazVz0KEDQj-5KYR7cBTxo,6197
|
|
1537
|
+
mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py,sha256=9YZcL3JEajoehFLv96YjyRwB8IH6Y3Q4QHdcWE2RS5w,1242
|
|
1538
|
+
mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1539
|
+
mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py,sha256=6X6w-jusR76pKk0XvBwV5xZxjq8SP0tWPAw0pa10rB0,1552
|
|
1540
|
+
mindsdb/integrations/handlers/tpot_handler/__about__.py,sha256=UnKylDgzptBz8GP0Az_AnwEtYN7tGTzSkrk8OByt9hg,335
|
|
1541
|
+
mindsdb/integrations/handlers/tpot_handler/__init__.py,sha256=In_YSefcrQXPbgqBoTR77fx9sIRpBTBpWaIlhaaHHhA,526
|
|
1542
|
+
mindsdb/integrations/handlers/tpot_handler/icon.png,sha256=j1DfF2jF1kWD3dhCET51X26QnSW9rNuLXXG7Tav3M2M,114250
|
|
1543
|
+
mindsdb/integrations/handlers/tpot_handler/requirements.txt,sha256=8F0hdotOm6E8Y2Fp7aKkDq1laiAX8CDem43CVybzdm4,32
|
|
1544
|
+
mindsdb/integrations/handlers/tpot_handler/tpot_handler.py,sha256=SLKdLIxTRF2fTjziNOXXN0idArLMsRSuMaDUlsJdHKs,3335
|
|
1545
|
+
mindsdb/integrations/handlers/trino_handler/__about__.py,sha256=O-XM6_t3ajkzjNhyI8J5BaVVmwwUCkQARNlJusNoYDk,333
|
|
1546
|
+
mindsdb/integrations/handlers/trino_handler/__init__.py,sha256=aj-pP90O6WWCyWBgry5D9URUaUCM5ALoAOQYHbU6gt8,457
|
|
1547
|
+
mindsdb/integrations/handlers/trino_handler/icon.svg,sha256=2zBJqtv37OVRHmR4HnL-Y3vPbxWf3sMvpVXGi8XkZzw,9363
|
|
1548
|
+
mindsdb/integrations/handlers/trino_handler/requirements.txt,sha256=yd3vzlgASeU_7on8yH3NZznzB5CkHf5mZ4FQK_LQw38,22
|
|
1549
|
+
mindsdb/integrations/handlers/trino_handler/trino_config_provider.py,sha256=FZ0xbSJTUDWR9Dj5n7qIv-KVgx49fMzGw-WcDe-aqcE,359
|
|
1550
|
+
mindsdb/integrations/handlers/trino_handler/trino_handler.py,sha256=54Oi9lLzryZ9xO4tUDpq9mR4l6Ba4gymLuE12Wi__Ng,6826
|
|
1551
|
+
mindsdb/integrations/handlers/trino_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1552
|
+
mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py,sha256=raI6x2ZTxd1_37CA22o4fPJLyBpQtkUGl1jaCkpR8U0,1630
|
|
1553
|
+
mindsdb/integrations/handlers/tripadvisor_handler/__about__.py,sha256=I3b_Vfuym1IL8kq5MzUpKhQauM6Eh_YxPf0-jRJe7xQ,363
|
|
1554
|
+
mindsdb/integrations/handlers/tripadvisor_handler/__init__.py,sha256=-On4pRJHvGxVrXwfgsWuWe1BvNJuGa4i_mjeyVvX-Hw,527
|
|
1555
|
+
mindsdb/integrations/handlers/tripadvisor_handler/icon.svg,sha256=d2UiMH83DKINrblopdIbrkn3ojI1UDuMj9lsJW2rCP4,1769
|
|
1556
|
+
mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py,sha256=s-Yd6f_AdU9TkdS-o709bp6y1LCdULopNIbjtXbgrnU,9888
|
|
1557
|
+
mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py,sha256=oj3ql9OeO-BI82guJE_knyjSLkaXV8I2hg2JlXO2Dx0,10822
|
|
1558
|
+
mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py,sha256=Ac1ScJGKuaSfbcpddVAwVsaXqXYjcyzyYfoEEQrj15Y,14054
|
|
1559
|
+
mindsdb/integrations/handlers/twelve_labs_handler/__about__.py,sha256=Drf81bwDVoj3tXxH2TouXlXwixmVHxHcC9KmotEfNSI,352
|
|
1560
|
+
mindsdb/integrations/handlers/twelve_labs_handler/__init__.py,sha256=mNwQ9x3VP9w1YPhECFZSfU20sAnEQjaV4zP3IH04T7M,560
|
|
1561
|
+
mindsdb/integrations/handlers/twelve_labs_handler/icon.svg,sha256=fbgzHOvh6VsnU6oo_v5wxYAnExWN8EIy-TSLl0MMoDg,2110
|
|
1562
|
+
mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt,sha256=PqX2eTpaQl-wYOIfxHHfuMOhjVR-7dPWuV6OGwH84mM,44
|
|
1563
|
+
mindsdb/integrations/handlers/twelve_labs_handler/settings.py,sha256=X3qJorzAavCJTEl3vaFWU3EVn6QjQ_TeSiTXbUl4DmA,9384
|
|
1564
|
+
mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py,sha256=SBfaMk7eRbQ1N4LZbGmvpwG0Gp-RJUueuj6MWZoRnTw,16818
|
|
1565
|
+
mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py,sha256=FSb1lvgOodW-9tcM06A7c2cLqrrafnpulg20Jm8OL9o,10747
|
|
1566
|
+
mindsdb/integrations/handlers/twilio_handler/__about__.py,sha256=bFII_Ybfl-TwNl3yBV8ugYOMYmUIkKu7DpfyE-vnmKk,338
|
|
1567
|
+
mindsdb/integrations/handlers/twilio_handler/__init__.py,sha256=y375da8dQNezlcdBf4nqPVIr-sgjemfQccGLdok-BXw,496
|
|
1568
|
+
mindsdb/integrations/handlers/twilio_handler/icon.svg,sha256=Zk7J5KWq8HkTdWq4XdWBWUjmJevXooZUbylwItib2rY,1547
|
|
1569
|
+
mindsdb/integrations/handlers/twilio_handler/requirements.txt,sha256=idAcm6c8tcT72EnGmYdd27H9MCytrxzuRVLpLnNnaDU,6
|
|
1570
|
+
mindsdb/integrations/handlers/twilio_handler/twilio_handler.py,sha256=AAlhNrfS_yroQVHW98yZhpFwa-6aPs9vvlcyPlFm8iU,13129
|
|
1571
|
+
mindsdb/integrations/handlers/twitter_handler/__about__.py,sha256=7BS3uP0wt9AweplRBF2rudjrqAF3A1gkw-BY3HWBsV8,339
|
|
1572
|
+
mindsdb/integrations/handlers/twitter_handler/__init__.py,sha256=iD7po6ZUKvkmhiq7qLgHMNc4m0hR43ks1u9p6qx0Zdw,500
|
|
1573
|
+
mindsdb/integrations/handlers/twitter_handler/icon.svg,sha256=2lLcQ9w8XO6H5M_Kl_TitCOUjkfKMOdUL2_1rLrN32s,471
|
|
1574
|
+
mindsdb/integrations/handlers/twitter_handler/requirements.txt,sha256=ZJDRss3q7Ym5B2ECTFXYw-4yz1iu9odZpRI03-eD2xc,7
|
|
1575
|
+
mindsdb/integrations/handlers/twitter_handler/twitter_handler.py,sha256=7JBsc5iv7__FLWhI3JxQ_15rMsEbTBxBbi6Z-3cbxVM,16111
|
|
1576
|
+
mindsdb/integrations/handlers/unify_handler/__about__.py,sha256=nHZmpAWcHrN8R4R2QzTX2z4ZyMOJTvh80zGhvth57sg,357
|
|
1577
|
+
mindsdb/integrations/handlers/unify_handler/__init__.py,sha256=gGgCjnQRlM6GnhVeGHHNxda-294CXHLh8eGHDYVp0Ig,617
|
|
1578
|
+
mindsdb/integrations/handlers/unify_handler/creation_args.py,sha256=V2eVKJzWeTQg_Kr3zjJauGHrF760RlUssfUgDsStclI,339
|
|
1579
|
+
mindsdb/integrations/handlers/unify_handler/icon.svg,sha256=AfxEQzqUj_C__zWFdMUFDnAwurZHRQNQ7DvFHHZ8Tqs,10460
|
|
1580
|
+
mindsdb/integrations/handlers/unify_handler/model_using_args.py,sha256=LgYS_busKCzzDKIcqeO2i9mv_viWuAJcTkrnpWy-_Ss,75
|
|
1581
|
+
mindsdb/integrations/handlers/unify_handler/requirements.txt,sha256=HFlgdvYk-Z0_oTUGpvPXRzDSYiKj7AgifVW2XRhOpTk,14
|
|
1582
|
+
mindsdb/integrations/handlers/unify_handler/unify_handler.py,sha256=7bScQZZTAZ7CHkuCBwHapLiIos5FpU_Fq9I6IM8SIic,2458
|
|
1583
|
+
mindsdb/integrations/handlers/unify_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1584
|
+
mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py,sha256=QVAIIHkG8XhmcNtseqFlym58K-ufpKr8Db4pJBXxYbI,1622
|
|
1585
|
+
mindsdb/integrations/handlers/vertex_handler/__about__.py,sha256=SCffhHdeD6ZuszymGrBBPfoo-k2Yj8-Yx4PzjW855XQ,350
|
|
1586
|
+
mindsdb/integrations/handlers/vertex_handler/__init__.py,sha256=LJCNEoHxKyxi4FzyqwIxPXZXfuBX7-FEGlROGEtEbnI,498
|
|
1587
|
+
mindsdb/integrations/handlers/vertex_handler/icon.png,sha256=EWxLkZkclLeq83BfYAy8OV8ijKPPXmAKWJ3ltMpbLRs,23708
|
|
1588
|
+
mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=40crm7gp9aqkiWzROcakrCUuaz9ELam50bgMXJmLzSk,32
|
|
1589
|
+
mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=5a1H4QzhnCnBsPdiHdR-zN-B4Gjkt6BzXdHzZKbibwU,3903
|
|
1590
|
+
mindsdb/integrations/handlers/vertex_handler/vertex_handler.py,sha256=9MmbCzJrXtMlSis9LpjlNsamuSWQ9PhTTl5D0WhHTXk,3924
|
|
1591
|
+
mindsdb/integrations/handlers/vertica_handler/__about__.py,sha256=11Aa7YF_-bkqrVZ4D2tNwZpfa-kEt5QpaLKKVnS_WYA,343
|
|
1592
|
+
mindsdb/integrations/handlers/vertica_handler/__init__.py,sha256=AHg3kPYNZ5BV8-t_AHyfP5pRw7ker1-JCAnaImmIyyc,600
|
|
1593
|
+
mindsdb/integrations/handlers/vertica_handler/connection_args.py,sha256=1Gf9hLDrMkVGuoliiTx5JrxGHOpZKsb54KXiDC-adWg,1268
|
|
1594
|
+
mindsdb/integrations/handlers/vertica_handler/icon.svg,sha256=T9aDBMWile8EWwMaQjXcWzjRAnN18PtG0Z4xT8rRtPU,1482
|
|
1595
|
+
mindsdb/integrations/handlers/vertica_handler/requirements.txt,sha256=Gt_4VkgNTpeUohDXQP_kbLXcVw_uLf91hC8NrKPtMTw,40
|
|
1596
|
+
mindsdb/integrations/handlers/vertica_handler/vertica_handler.py,sha256=I2F6_iOMsQquBsdV-_0lJqlchY-6IVE5UbpqPgm2PKQ,4807
|
|
1597
|
+
mindsdb/integrations/handlers/vertica_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1598
|
+
mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py,sha256=dPMvzZ6L9LYkQznusBErpuTJZm0pUwEP6uty25hDyis,1663
|
|
1599
|
+
mindsdb/integrations/handlers/vitess_handler/__about__.py,sha256=gu0GmNcKVxMVHYbe9GhBNJ8X_s_9-DrImVUQxll-rU4,340
|
|
1600
|
+
mindsdb/integrations/handlers/vitess_handler/__init__.py,sha256=D2IoTFIK2_28Y0EW4LZmE9hVn58Gt9iISxA-nOpMN1c,481
|
|
1601
|
+
mindsdb/integrations/handlers/vitess_handler/icon.svg,sha256=Ru4YAcun-wgPpfILPcqGw7QwRFXZhEntYslkzkz6jQY,2834
|
|
1602
|
+
mindsdb/integrations/handlers/vitess_handler/requirements.txt,sha256=trOMz6qmlIg25yc-yN1Kbo2Jv1D9Nm7SgdK2t-eEUpo,64
|
|
1603
|
+
mindsdb/integrations/handlers/vitess_handler/vitess_handler.py,sha256=xj_50v21j25dkiGEcAn69GKis33LviIBq8V11bME-ME,1277
|
|
1604
|
+
mindsdb/integrations/handlers/vitess_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1605
|
+
mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py,sha256=0fhrT7PYij47bR9B4tTOVjgPeVmr5NTTVNZlASLLlag,1727
|
|
1606
|
+
mindsdb/integrations/handlers/weaviate_handler/__about__.py,sha256=KVr6a_8bmKvHgs_lDmhxstO5HWChFGd-mxlw3jEE5Fc,343
|
|
1607
|
+
mindsdb/integrations/handlers/weaviate_handler/__init__.py,sha256=57wDF-H1g4I09beDPFqUEPycLcdarstPXr2dEJe-fhk,661
|
|
1608
|
+
mindsdb/integrations/handlers/weaviate_handler/connection_args.py,sha256=R9iG_4m5HUxZDVHKtR4XTSsOF5q5ABEszpG2uMTXHDA,755
|
|
1609
|
+
mindsdb/integrations/handlers/weaviate_handler/icon.svg,sha256=a5Bz3AjerHPEhsYVLNmPlwaNOAW6sk0zR-Eiz-6XwiM,115913
|
|
1610
|
+
mindsdb/integrations/handlers/weaviate_handler/requirements.txt,sha256=zki1mIENoii2lAHfkOhZ0XTZPQ_t9GEFe1BGrUWnvXk,23
|
|
1611
|
+
mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py,sha256=OG5Rh1tCzLdiHQob5PxYS37bu9lFmu0MxJwoneNhjl4,24252
|
|
1612
|
+
mindsdb/integrations/handlers/web_handler/__about__.py,sha256=CxQc3_pLSKuz1AnBj6sWq3rEdVwcaO_WsfpeAVSKjOY,349
|
|
1613
|
+
mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE3B900gkZLuQ8QWQEvYFbTUkE,504
|
|
1614
|
+
mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
|
|
1615
|
+
mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=AduQXA-pttagj8PyqEVLSzzO-YxXZpNbzym4vdRvXHQ,21
|
|
1616
|
+
mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=4dAVqvoLDaxQsg3zZyyaGE2XPABjxGTV8GIuDq3KPPY,11275
|
|
1617
|
+
mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=AB-wNODo6WKlWkF8Iw1NEKgKVErPR5utkvXIihFtXn0,3320
|
|
1618
|
+
mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
|
|
1619
|
+
mindsdb/integrations/handlers/webz_handler/__init__.py,sha256=06qa6pqDB-83d_TkU82CNRQYpq54-mP3r6fILAMVjRw,521
|
|
1620
|
+
mindsdb/integrations/handlers/webz_handler/icon.svg,sha256=Mvt32fMxE_p294_hTqGVY3vnRkbZOJ2a0n9M72aZjTk,1042
|
|
1621
|
+
mindsdb/integrations/handlers/webz_handler/requirements.txt,sha256=OFXmQCjEWHwfHuAwVw8_IE4T0-mdXxqkRxqNtYvEoio,84
|
|
1622
|
+
mindsdb/integrations/handlers/webz_handler/webz_handler.py,sha256=Oxtx_V-EFL9u7mr5qv1WaPP6TrddSoHlk_lbVNDDwWE,5765
|
|
1623
|
+
mindsdb/integrations/handlers/webz_handler/webz_tables.py,sha256=w5PKcG62_HQA_8m1W4xIiQJ6eJKTXq-GjQ8_deUdAwU,6219
|
|
1624
|
+
mindsdb/integrations/handlers/whatsapp_handler/__about__.py,sha256=TVjX_hyWXjHSGd_VgGztlHFCCJMD5a1XSMpROpTIxj4,344
|
|
1625
|
+
mindsdb/integrations/handlers/whatsapp_handler/__init__.py,sha256=Cp0i-Cfox-j7HjzBSqHCU59tnf_83C4W763WMAZhqi4,533
|
|
1626
|
+
mindsdb/integrations/handlers/whatsapp_handler/icon.svg,sha256=0eWNgJq2Oru3XokxTDokZUFzgx-phehzXn5XeWokXKM,3521
|
|
1627
|
+
mindsdb/integrations/handlers/whatsapp_handler/requirements.txt,sha256=idAcm6c8tcT72EnGmYdd27H9MCytrxzuRVLpLnNnaDU,6
|
|
1628
|
+
mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py,sha256=2TLKbQv9h2LnBBoLUQxi0Wb01raXiJkrbh-it_nTo6g,14477
|
|
1629
|
+
mindsdb/integrations/handlers/writer_handler/__about__.py,sha256=fi8lkAE-e3p6dDhPmBtGI3nWaScrgeJ96YFEzpyyx0Y,336
|
|
1630
|
+
mindsdb/integrations/handlers/writer_handler/__init__.py,sha256=4g7e_HuLGt2pHD0KPTU9zSQdfR9ANEdJEBOkXYurIgA,545
|
|
1631
|
+
mindsdb/integrations/handlers/writer_handler/evaluate.py,sha256=NWXfHO6YutIJ4tuMCbAic1QS1-W3VEq72foLLRlr_B0,12498
|
|
1632
|
+
mindsdb/integrations/handlers/writer_handler/icon.svg,sha256=nx6KAU1Genn-XnAPvrucTZqU2MQC4WOBTaiImAP04Vg,1814
|
|
1633
|
+
mindsdb/integrations/handlers/writer_handler/ingest.py,sha256=4N783Eg2nqKwmt0Hf7Mgp_ieycw9mYuwMN_V52gJC18,338
|
|
1634
|
+
mindsdb/integrations/handlers/writer_handler/rag.py,sha256=KSkMYPZ9gRRGP4C47yhhRTsDJ7bqJ_FPUm9tI0-5WAY,415
|
|
1635
|
+
mindsdb/integrations/handlers/writer_handler/requirements.txt,sha256=0eYhsiLDNUthXqJXXz9vkVIU4jfYx-iHSz9tm2W_4ro,99
|
|
1636
|
+
mindsdb/integrations/handlers/writer_handler/settings.py,sha256=dwihPL0hGY3AEcA_THVyG6mM3s99PYcID_JRV114iLU,2835
|
|
1637
|
+
mindsdb/integrations/handlers/writer_handler/writer_handler.py,sha256=cnwoyq1XIcvIaX5Zgm1SrWFJCIz0h6qiw1HJzix0wbI,6885
|
|
1638
|
+
mindsdb/integrations/handlers/xata_handler/__about__.py,sha256=g-EqC8OMmbjncIYQnLG-kaiLahhKCJZmBJCzLfUKLbY,331
|
|
1639
|
+
mindsdb/integrations/handlers/xata_handler/__init__.py,sha256=73nSEn5d_gRnjI3U92XLfjfKiik7EuSvtpOZ7L2LOYg,643
|
|
1640
|
+
mindsdb/integrations/handlers/xata_handler/connection_args.py,sha256=V1fIbrnoNo1AQ_KjX1wN-Ve5NYplDIBqa5QtbtjZ7Fo,1010
|
|
1641
|
+
mindsdb/integrations/handlers/xata_handler/icon.svg,sha256=wmJskExBROKP4Q6xGSeFinZvUICo7pIfR3T9x3RANtE,2726
|
|
1642
|
+
mindsdb/integrations/handlers/xata_handler/requirements.txt,sha256=D52V_FWSK6cpT_7l5eJHN7bFqhuf4WKh3fmElX2Dd4g,5
|
|
1643
|
+
mindsdb/integrations/handlers/xata_handler/xata_handler.py,sha256=UpHEKmbJamoNEM0G7gR3UeJhgyZ1WIRcY9Jlf6JKPTk,13207
|
|
1644
|
+
mindsdb/integrations/handlers/xata_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1645
|
+
mindsdb/integrations/handlers/youtube_handler/__about__.py,sha256=mhUWf5rM8hmHZsKyxyhGmjOMneU81yWltgLh4pMHI-g,347
|
|
1646
|
+
mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=lxwfOkcSnEl3dmshrxMp91J73g7Hs20Kn4PFieTbf08,511
|
|
1647
|
+
mindsdb/integrations/handlers/youtube_handler/icon.svg,sha256=uvNffuRPGVzPxWkbZzkSrw2SHm8M8c4GbeypiHPWDss,954
|
|
1648
|
+
mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=Hx27M_gHLgyZBIsNQZAcXYcnFtRgqlHvEgPnWhdisns,48
|
|
1649
|
+
mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=9ffQIU76A1SwyFrHrQt585NTiiAnMXdy785BHS0z3fg,5282
|
|
1650
|
+
mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=-PiJbjpqoWjh-sdf-EiJ9nyan7DfmkNmPvROzHYgZjA,16797
|
|
1651
|
+
mindsdb/integrations/handlers/yugabyte_handler/__about__.py,sha256=tVimKqXLHCbBZFeVs2_LfbwaXt3oOBx2k_fTbiu4uwU,350
|
|
1652
|
+
mindsdb/integrations/handlers/yugabyte_handler/__init__.py,sha256=ZaXZKRnnzUOGLvydpoeSjOxlLx8L_ymcXdEydokAh28,490
|
|
1653
|
+
mindsdb/integrations/handlers/yugabyte_handler/icon.svg,sha256=9EWkdK9d1nWu45_dFleLLh3qWPf7eZLj2cwB2kwhIH4,3292
|
|
1654
|
+
mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py,sha256=wNEVAgPzxKXkTffTAyspORJ1iEanm3bEfeQKjiRpJM4,1982
|
|
1655
|
+
mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1656
|
+
mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py,sha256=LluD-CZBKm24pKje-mFOcFvkuD8-o7ycG7AnFXeuUws,1612
|
|
1657
|
+
mindsdb/integrations/handlers/zendesk_handler/__about__.py,sha256=-gcxH59ewAdZcRHOVNOKdOoU2pkWS2fc7w3liM0rPnE,341
|
|
1658
|
+
mindsdb/integrations/handlers/zendesk_handler/__init__.py,sha256=Kaq_K9rpEuBJOMhlijWzkk6NRxk86G7Kpx0RbjAAsNk,633
|
|
1659
|
+
mindsdb/integrations/handlers/zendesk_handler/connection_args.py,sha256=xlvJDA5gpIKrf7gciQ_RR57Z4sxG82QSU5p2x3KLymI,735
|
|
1660
|
+
mindsdb/integrations/handlers/zendesk_handler/icon.svg,sha256=s1A5JS37n5wvlrPLTiE5ssExWahxgi0CbrpwiHhPpb8,1702
|
|
1661
|
+
mindsdb/integrations/handlers/zendesk_handler/requirements.txt,sha256=isC2d0ECxc6bKij6WwDLroQYdLo9TLZhv-ukCJ_QBL4,5
|
|
1662
|
+
mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py,sha256=CpAhZ2GCVFO-I5jkbUiBl1M8p9bao5xJDWUm_eYKzJg,2574
|
|
1663
|
+
mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py,sha256=umykoN-bl1NeGXbixwh0WHyBRtBZ5vq84NIYq0o64gs,14307
|
|
1664
|
+
mindsdb/integrations/handlers/zipcodebase_handler/__about__.py,sha256=2ehsqaOMsHLhHnKMm_V0tw_7gJ9BBke8z_DyC-2RFHw,349
|
|
1665
|
+
mindsdb/integrations/handlers/zipcodebase_handler/__init__.py,sha256=o0ehXXkJuWbAFTlb9gPqM3h6cti818PkfzFatr426hE,649
|
|
1666
|
+
mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py,sha256=4Ut8wlfgIuijAHM9zDZTKKLXrXbTXq6GJ3SCqt9NTh4,413
|
|
1667
|
+
mindsdb/integrations/handlers/zipcodebase_handler/icon.svg,sha256=bD9He7h0aVe2PVZwfe1Lc58HLLRUXwHaBoH_dTKyiho,1113
|
|
1668
|
+
mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py,sha256=ERxOF9U9AdPyQdOT-Szu345qQJYX42I0OypV-GnyKz0,2043
|
|
1669
|
+
mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py,sha256=ryksqFiApfkSLXsloTPLJ0EK2eIRhexRIznCfPV5HrA,3551
|
|
1670
|
+
mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py,sha256=_jisBhsdZkMjgPSQ199DQeD7JptQWr9DvRQv-t00mfs,15080
|
|
1671
|
+
mindsdb/integrations/handlers/zipcodebase_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1672
|
+
mindsdb/integrations/handlers/zotero_handler/__about__.py,sha256=lZqh7DtdUwl516wCoYVJgQP_80rdbD1THuIiYvACbc4,342
|
|
1673
|
+
mindsdb/integrations/handlers/zotero_handler/__init__.py,sha256=5-JrYN72oetd7qMkd9ZzNfO7RUa8hYk0dyjBeMGIdc4,496
|
|
1674
|
+
mindsdb/integrations/handlers/zotero_handler/icon.svg,sha256=kIWmaZI0Fk8Pu5xEtQeiPnqJPJEi0drLK_GV3F9DC9Y,200039
|
|
1675
|
+
mindsdb/integrations/handlers/zotero_handler/requirements.txt,sha256=uRY96N9ioKvXlbEGhzxxOAJnU8dm7KPE-156WiWf9R8,9
|
|
1676
|
+
mindsdb/integrations/handlers/zotero_handler/zotero_handler.py,sha256=CVmTS9Cqj85xWt1RWR8BKJDh9h-dUYLXWIkYHI5ncfk,3575
|
|
1677
|
+
mindsdb/integrations/handlers/zotero_handler/zotero_tables.py,sha256=5uTXP3fYAQ6rKgWKKVRc2x0Pn1u4rNMZUHm01ewC9RA,4861
|
|
1678
|
+
mindsdb/integrations/libs/__init__.py,sha256=uEz-XQLAwY2nMXc5ilEPP6cWWfo5HpO8o8UfV8JELS0,99
|
|
1679
|
+
mindsdb/integrations/libs/api_handler.py,sha256=ge1S3LHsy5lpGo50KlOi5elYnQElahGPg7-FQHgcpNs,13233
|
|
1680
|
+
mindsdb/integrations/libs/api_handler_exceptions.py,sha256=mw83eTmo9knpVHP1ISnudonZcBMI_Xzr77b1wXN-eu8,236
|
|
1681
|
+
mindsdb/integrations/libs/base.py,sha256=fVs3nf98jfA9aH5O18ZlrGjhZuasYHwD9TrgF9fJ8Eo,12851
|
|
1682
|
+
mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4SexxR8c,407
|
|
1683
|
+
mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
|
|
1684
|
+
mindsdb/integrations/libs/process_cache.py,sha256=Ad63SQKKVJiZemISb2RnWdjTsyKVeN0DV1suwyZ4XGM,16052
|
|
1685
|
+
mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
|
|
1686
|
+
mindsdb/integrations/libs/response.py,sha256=iyadSLc5e7gY-rviaaoFNIrgIhDBJ-DZux062PxRRz8,3119
|
|
1687
|
+
mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
|
|
1688
|
+
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=E5gYqD3e9rqspCNecxfYWwtM-itfX3kdkP7cUwUtrag,17448
|
|
1689
|
+
mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1690
|
+
mindsdb/integrations/libs/llm/config.py,sha256=M14flGRcngP8n37sT8XLuJj5w-145B4IAyx3vLllogM,3548
|
|
1691
|
+
mindsdb/integrations/libs/llm/utils.py,sha256=vCiWWqCfmKElyyuka4Asd1UBhEZiH7YWn_xRAk3xies,24362
|
|
1692
|
+
mindsdb/integrations/libs/ml_handler_process/__init__.py,sha256=TW1DslwZTaD8oeGaxPx99uYkPAeDIeHWAturBcnDBFU,756
|
|
1693
|
+
mindsdb/integrations/libs/ml_handler_process/create_engine_process.py,sha256=YHbk1x7GEIZXcM0IazB2z2tvu5Yd24Fb4aJPpUg321A,788
|
|
1694
|
+
mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256=-69NRhBGnNG0hgNi9O_W5LffIxPBUmuxy4bbQY2Z-_8,444
|
|
1695
|
+
mindsdb/integrations/libs/ml_handler_process/describe_process.py,sha256=D1FEY2C5Ht1KjiycMuplLgHhfRaw-OJylVgst6pOzpQ,4205
|
|
1696
|
+
mindsdb/integrations/libs/ml_handler_process/func_call_process.py,sha256=W29lPhV6K8g2prNR57CmyJ_t5DNG_EVnf4fhnHpGFPI,728
|
|
1697
|
+
mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py,sha256=Lult730J8sPGabO4cVqXWtc9gqt_iFvTFlY7GAym1RM,771
|
|
1698
|
+
mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=Hm2DBUGMUB0TXjcYGRb2SPsHaMv9bykBDV7RMuYORCw,7090
|
|
1699
|
+
mindsdb/integrations/libs/ml_handler_process/predict_process.py,sha256=QmThCaCy-LBVCcpzHWEecl6eWW48QJsf2HxxnwNWN0o,1346
|
|
1700
|
+
mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=cczOfdAPbriukLa5lamDT4VRONjFZ9QGdlXxzOad4K8,788
|
|
1701
|
+
mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
|
|
1702
|
+
mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1703
|
+
mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
|
|
1704
|
+
mindsdb/integrations/utilities/handler_utils.py,sha256=UEgEckWFDZXLcu5AbBFrqPJuFFXgejDmDRkr6622CPc,2272
|
|
1705
|
+
mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
|
|
1706
|
+
mindsdb/integrations/utilities/query_traversal.py,sha256=oUSsBCwDcMBr-vaUYH5I8koMPDpJDXe0ByxPD0EIG0g,9292
|
|
1707
|
+
mindsdb/integrations/utilities/sql_utils.py,sha256=q23sNcpmEDXcUGE1ZzNMjFJ-DX_kdken6HuLEfxVoTw,6675
|
|
1708
|
+
mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
|
|
1709
|
+
mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
|
|
1710
|
+
mindsdb/integrations/utilities/utils.py,sha256=TuIgAbuZVkCRUSgLmqJ2STZ1CxVgBGrEnajW68SsKg0,972
|
|
1711
|
+
mindsdb/integrations/utilities/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1712
|
+
mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-8BNfeUJshGz4_MFrIDYBQ,1665
|
|
1713
|
+
mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
|
|
1714
|
+
mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
|
|
1715
|
+
mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1716
|
+
mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=zkvVb54zxtn4_NSwqCD-SVQG_5JI9EYRygb6EABQu7g,43
|
|
1717
|
+
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
|
|
1718
|
+
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=nzJtuvxpwochJIsni2Z79kmK546KD_dNEGpxvH-jxIs,5255
|
|
1719
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=lyJdlw4_MFt3w3Iue7npRGwjNPIHzZZGox4dNEXvVaE,139
|
|
1720
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
|
|
1721
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
|
|
1722
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py,sha256=Nuug_6Zggj5Q4D01sRLpyHrGLvyLL1ONg3SiZH8i4W4,2400
|
|
1723
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=6JRit6NCWhzThecl0BM5bFGsmST6CD4vSAOm-nAqBqE,4223
|
|
1724
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py,sha256=_hlwBPWRZu1cW8dLQnrmJUr39tokoT2SkodHzJ8PzGM,78
|
|
1725
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=LnNooFkevFgbtWnfOxc4JC8c3fRJNhqGpu8cgvo3dZc,5211
|
|
1726
|
+
mindsdb/integrations/utilities/handlers/query_utilities/__init__.py,sha256=Gy3epzeBeKSi5xFMs9Zq2ggAupWJTDWc_3C7X8rnSEU,279
|
|
1727
|
+
mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py,sha256=XFmXkaDd1y2YwWDpVG6EptdWpT1QnW8cPmC9QEDyorw,1483
|
|
1728
|
+
mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py,sha256=tylfQrK9kNAOdCpAKgTyACka1L4AGj-CT1JYpnjyRFc,1543
|
|
1729
|
+
mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py,sha256=QLQpYVwrISVYGstZAOjDjJ6n5N6HgsCf8NfS2mtFN3k,433
|
|
1730
|
+
mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py,sha256=te3vO92phCKEOKaQi_AiDEc-zohRnujoae7xqyp0xIg,3111
|
|
1731
|
+
mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py,sha256=U1t2aehyZ8jysIGVmetTxPQIk9OCATcNvkGAa_SiMBg,4205
|
|
1732
|
+
mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py,sha256=aebyCpu_9v1FipdNXwu7gu_mfiWzOdzf_l5tJ5q5Rg4,2531
|
|
1733
|
+
mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py,sha256=EuDU24j8NDOJFlUh5PH23-2Am_ph2wojq6Wz2VSnWC8,72
|
|
1734
|
+
mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py,sha256=AWGzBulx0tlN8d5uVD2yGvujJHoT4ZVKybA_5y3JzTU,681
|
|
1735
|
+
mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1736
|
+
mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
|
|
1737
|
+
mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=d3sDRv2pGTlMmVhGFOADUCIgtMh2xsPu378VSPLKLck,3050
|
|
1738
|
+
mindsdb/integrations/utilities/rag/settings.py,sha256=Yi12nERyVJTVTf-sPegzCG-Qo-TOOs5TcbEH_l_EMPE,18035
|
|
1739
|
+
mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
|
|
1740
|
+
mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
|
|
1741
|
+
mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1742
|
+
mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py,sha256=CtQbiwUaBqIzlB20oqTarfM_Cqi2tfNd9D8CMJYffMs,10350
|
|
1743
|
+
mindsdb/integrations/utilities/rag/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1744
|
+
mindsdb/integrations/utilities/rag/loaders/file_loader.py,sha256=CZWcr1F2LHmiKxrQwqPModAlHCgJ4F9OLuVpaf14DR8,1868
|
|
1745
|
+
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py,sha256=TgLU4hFPc-eKJPuN8Gn9UnwqXWF_EhCUGTZNMEP-_vQ,1476
|
|
1746
|
+
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1747
|
+
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py,sha256=d3ZN0aTOm7HYzZZLtnHmnKyiwY2tS2p_qPIa_m5KoGU,2455
|
|
1748
|
+
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py,sha256=Da8UVQeOthtzjAr6Zfem1_KoCPKfqOqj0FtdBY08CRU,2120
|
|
1749
|
+
mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1750
|
+
mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=ogOkXzQYOKVYRFY9AbHFzMym9_6zy5Gay9OcyKru48g,11694
|
|
1751
|
+
mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1752
|
+
mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=WS5rEpochjp5esGCnScm0lI2Oawu-ZKDEiDFJvM1D8M,6430
|
|
1753
|
+
mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1754
|
+
mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
|
|
1755
|
+
mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoTWz6OlhRG-GzqdPPoAR6XyPtk,264
|
|
1756
|
+
mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py,sha256=D9QzIRZWQ6LrT892twdgJj287_BlVEmXRQLYQegQuVA,4383
|
|
1757
|
+
mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=249LxKXaLBMqoIIO3KAIBi646CiiL7kOtb2cJS-S7Sc,6464
|
|
1758
|
+
mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1759
|
+
mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
|
|
1760
|
+
mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1761
|
+
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1762
|
+
mindsdb/interfaces/agents/agents_controller.py,sha256=nzpJJgn31updzPFI0G-w4wquSdL1Ae9j7ZM9uJqz44Y,17594
|
|
1763
|
+
mindsdb/interfaces/agents/callback_handlers.py,sha256=90mGvx6ZIXRA_PAoV6vf8OHjJN65GHgoM3ip_ULOVN8,4711
|
|
1764
|
+
mindsdb/interfaces/agents/constants.py,sha256=iPxsSPrf9cEiYmOJSJSHvF3VG-UTIJoYt6j5gmR4Byc,4433
|
|
1765
|
+
mindsdb/interfaces/agents/langchain_agent.py,sha256=g67SIm1FZVmTfDeqERgheXj9mx3MZtaWFXebPbVMZVc,27622
|
|
1766
|
+
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=sC2LpNcHS7Cn2p1WwPz7KNC90R9Wsfr85n8IbeWcctA,6222
|
|
1767
|
+
mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=9e_LxCKrCSOZWqURHWavw-FQUK9PLJ5O18IGYSHD9us,6051
|
|
1768
|
+
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=QtfuII9dgwaqfhKOh07RolmSe8QajTUbvyFhtjPUX4E,1877
|
|
1769
|
+
mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
|
|
1770
|
+
mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1771
|
+
mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=CXePHuazZgEoKDcYGfxVM3lnGVrlZ-t64_WivMnhGmM,14202
|
|
1772
|
+
mindsdb/interfaces/chatbot/chatbot_executor.py,sha256=3qU98MHBmUcsIWYqaNNJhoudUQWLPWlCB_di6iFaP1g,7742
|
|
1773
|
+
mindsdb/interfaces/chatbot/chatbot_task.py,sha256=zIGP9ZmJWIJ5mp1Jnkhsr0eOb2Eb-WNpjk8yPGGHIYM,6329
|
|
1774
|
+
mindsdb/interfaces/chatbot/memory.py,sha256=dRom_Dw5jbPhqQiJn4SzUQmXA3xisyY5A5V4NvyWYow,6703
|
|
1775
|
+
mindsdb/interfaces/chatbot/model_executor.py,sha256=qv8DRysWLbJwbv4TkQ-bsLmJOnDaDlMBw7jZ3s6-dzk,3598
|
|
1776
|
+
mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augjRHxscn48,8109
|
|
1777
|
+
mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
|
|
1778
|
+
mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1779
|
+
mindsdb/interfaces/database/database.py,sha256=Uq02qqkkAhGTZTf_BiyyvAg8X5QhakjpDWMRn-kZOgU,4284
|
|
1780
|
+
mindsdb/interfaces/database/integrations.py,sha256=-OzOnU1PIOgSD0Tgq-tdSpMb6V1qtXPgbdvAaYm__9s,36445
|
|
1781
|
+
mindsdb/interfaces/database/log.py,sha256=tewoKWc-xvfbFC9RVaUUAjQGuRY__Lex8fbR_pwNMwc,11074
|
|
1782
|
+
mindsdb/interfaces/database/projects.py,sha256=SL0dx-bkA7Qiyljl8DJj-Me4ybGZRky7hUwz7gr4bek,13506
|
|
1783
|
+
mindsdb/interfaces/database/views.py,sha256=thV9OGVE-MLbg-VPZYe140CWRWGpOCFlTKZTOway01I,4771
|
|
1784
|
+
mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1785
|
+
mindsdb/interfaces/file/file_controller.py,sha256=-CS3ocAJV_K2Bwb2p_RezEj2Bjnk8WKtCVmkqFYmxX4,4612
|
|
1786
|
+
mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1787
|
+
mindsdb/interfaces/functions/controller.py,sha256=8kyWA8TnMsRDyIl2s3JcvdGYeww4_Qmf-jYq_wwOYH4,6057
|
|
1788
|
+
mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1789
|
+
mindsdb/interfaces/jobs/jobs_controller.py,sha256=xBleXIpGLZ_Sg3j5e7BeTRV-Hp6ELMuFuQwtVZyQ72s,18247
|
|
1790
|
+
mindsdb/interfaces/jobs/scheduler.py,sha256=m_C-QiTExljq0ilpe4vQiQv56AIWsrtfcdo0krMYQes,3664
|
|
1791
|
+
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1792
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=wjw_ivS_0qzsrSjE0Iyl-Ip9OGUYz-wv9QmL2sTZUd8,34091
|
|
1793
|
+
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1794
|
+
mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=0sLB2GOQhh3d46WNcVPF0iTmJc01CIXJoPT99XktuMo,295
|
|
1795
|
+
mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=Ry0KG8F6kNPAnaoKRqsGX1Oq_ukt6ZmI8fYgj_0RnvU,6342
|
|
1796
|
+
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=RdASLNgDdvfjwLawIqsSQeQKX2qf411e5N7bjQuCNmQ,14604
|
|
1797
|
+
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
|
|
1798
|
+
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1799
|
+
mindsdb/interfaces/model/functions.py,sha256=r3JXJjOFblOmb1iqwQNA656Tia64xsevFe2Xf_eLsuA,4590
|
|
1800
|
+
mindsdb/interfaces/model/model_controller.py,sha256=DMOLTd-Eja3J8sY7jvw47lyrnoAqQ7ghq4NMEyMTaKw,20355
|
|
1801
|
+
mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1802
|
+
mindsdb/interfaces/query_context/context_controller.py,sha256=YAmdcSFEzd3aOr4nRF7TX6UfAXH9kMK1qk7bpVtvhpY,9486
|
|
1803
|
+
mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
|
|
1804
|
+
mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1805
|
+
mindsdb/interfaces/skills/retrieval_tool.py,sha256=yxGYdLDxGgGdkJuyca3dRZuAre2PHffWeTYlOWpeuiY,4134
|
|
1806
|
+
mindsdb/interfaces/skills/skill_tool.py,sha256=8nnemMDUuq93UxJFR9gT3RPHcp2gsx98NvxQ23fx0k0,10092
|
|
1807
|
+
mindsdb/interfaces/skills/skills_controller.py,sha256=6UagDyYf-xDjnanIJzoOcPAIuBi7g9O6DKE0YaKW61g,5783
|
|
1808
|
+
mindsdb/interfaces/skills/sql_agent.py,sha256=lP433_P6YrlwDdKeX8ACeRzA20KfcdT47oIGxHDg-rQ,9901
|
|
1809
|
+
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1810
|
+
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1811
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=CDi2v2Ym3u-0nr8jq7wyf8CymWRFy_wziCov4Y9b3Iw,1253
|
|
1812
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=H04cXtTmJsgvk5xrHhtAKXn0y2JR1dwNC8y84UuQAik,5687
|
|
1813
|
+
mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1814
|
+
mindsdb/interfaces/storage/db.py,sha256=NOVpYVEbSJtjEWKoaKS7Zu-Ji-Z8dh5rnMjK5Kf1__E,19340
|
|
1815
|
+
mindsdb/interfaces/storage/fs.py,sha256=9wEboV1_M13qd6bpMhnQlQTt9snJNx1kFHfE--OX8Wc,20364
|
|
1816
|
+
mindsdb/interfaces/storage/json.py,sha256=KdrmXfqVCNZ_anNpfyygcFQeywbdJMCMbaI3HFJic-U,2925
|
|
1817
|
+
mindsdb/interfaces/storage/model_fs.py,sha256=LQHyIs3wlOEpFHceAjziA7zuQKY3N-8gt9EuSYHO8zI,8267
|
|
1818
|
+
mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1819
|
+
mindsdb/interfaces/tabs/tabs_controller.py,sha256=TZltOnr0DAjhrW2u-bzIVfjPHgh4bxdkitExr9sCNYE,8761
|
|
1820
|
+
mindsdb/interfaces/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1821
|
+
mindsdb/interfaces/tasks/task.py,sha256=KQZ9rtD7mE6qeCtA14arMIP-gEnPzMBvIUvmGSzqTH8,401
|
|
1822
|
+
mindsdb/interfaces/tasks/task_monitor.py,sha256=OD_XRuPDcXEkt0KYg4mqyJW5wwIZ4FZhfW__k3sB49s,3863
|
|
1823
|
+
mindsdb/interfaces/tasks/task_thread.py,sha256=G2Ouh75uacCdOnGuMBKmHjFGWdCIbilRkCAUKz7Py6M,1666
|
|
1824
|
+
mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1825
|
+
mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
|
|
1826
|
+
mindsdb/interfaces/triggers/triggers_controller.py,sha256=J3MY-PgoODO-5opckFXNr--VLCK5yo6igb99FBOen6g,5459
|
|
1827
|
+
mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1828
|
+
mindsdb/metrics/metrics.py,sha256=6pV5DO85OF_iIBTma0TXRUrfNHU9a0Ds2RS2u1-XYrU,1956
|
|
1829
|
+
mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
|
|
1830
|
+
mindsdb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1831
|
+
mindsdb/migrations/alembic.ini,sha256=NdEIqmmxo5mIPQYbimTMVJ3VRay5BBs0PM1XsaAr1Gw,2193
|
|
1832
|
+
mindsdb/migrations/env.py,sha256=Nb4LF9rwlONJSoJOm8A3oMCblLuoQ7bszubgBUYj9f8,2219
|
|
1833
|
+
mindsdb/migrations/migrate.py,sha256=SWVZAFdzJUyBDM56rWG49plGliTpqIsQbVfBhkwqgMA,1769
|
|
1834
|
+
mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py,sha256=SdJFsF-awdH0vvyJ_cku-QggiSZAn0x1PHNF_3YgMFk,5871
|
|
1835
|
+
mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py,sha256=VKgouePcADnmsp-AyxILjOhPVTvIZccorsH_UJN0V7E,1050
|
|
1836
|
+
mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py,sha256=ZBqlmRK3mqvLtzFaA1AqF-rlXCPyc45wG3l1S1COs5A,10817
|
|
1837
|
+
mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py,sha256=oIVZWDLA9-ifxLGjtvQXoEBB6mrpCO00LC34wkO8DY4,6163
|
|
1838
|
+
mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py,sha256=8qgkBmrAArGlffw5kSNFgGdUvyonPxJeoknudpu0eC8,2788
|
|
1839
|
+
mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py,sha256=g_dO0p5DkGrdkeZLYEIlpIojtIc9-lns3_7Jt99-Uzc,849
|
|
1840
|
+
mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py,sha256=jQ6pTgdhZaw3koUYH2ocby91jKB24l0kSLNNeLQdTqE,998
|
|
1841
|
+
mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py,sha256=HHrrxkWZawjY5To4uhRVkbTQdAnIubcmCe6WvvILQpM,1000
|
|
1842
|
+
mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py,sha256=B2RpIvwmOE0y7v6sb-qgR4ug3a9zW9VgU1TQcZ4Sqpw,1045
|
|
1843
|
+
mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py,sha256=2iN2c4-JWIcaARaBeRBIyTQHEIyOxU6PvnN5MFxpayA,2330
|
|
1844
|
+
mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py,sha256=SKaqm6jE1-GakGUrrvWRNQEmrC46ujvNu0CQUPEnf8w,2146
|
|
1845
|
+
mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py,sha256=vCD-CP85Lu6nWNSNYbV-xQVjyAw4942K6AIQYi_wtbU,1957
|
|
1846
|
+
mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py,sha256=_vrNCc5cL401Bdx2yTQAYInXbT4DTpLMv2XViCOpAns,1789
|
|
1847
|
+
mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py,sha256=oaa8dFBNBDUnRWmWKX-lowCu5pslF1bw0ndLzMLDwHQ,2384
|
|
1848
|
+
mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py,sha256=yPAAWkB5YPCdiZt-8HC6bRTJJQdhSaUiMTEkxd6aKiM,3486
|
|
1849
|
+
mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py,sha256=qbZJ0SAYJD4L5drKjVgJS5xfXOkjJ2k6H2oNP-ItNeM,1802
|
|
1850
|
+
mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py,sha256=Fuf5qBCtt_LPYPQMnhcOXRVxad5hOVg4BMPnGL8sj2k,3487
|
|
1851
|
+
mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py,sha256=iNEPTABbGKvWEKEqYmPz1zn7GMG3iMzvP7REsmUrn1I,799
|
|
1852
|
+
mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py,sha256=NmIHrhcT-EGbidV2VIp5OTdYQXMkO3x83NIWZREMlKM,2035
|
|
1853
|
+
mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py,sha256=dNP8g7hMSWctlJsUEU-dtehvHqBqqM7Luu56v9s_Bbw,1008
|
|
1854
|
+
mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py,sha256=1nfu1-syJYlo_cGEAPEOqvj_KswLLSoaoRqpzm4UXMA,1115
|
|
1855
|
+
mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py,sha256=BVAViTBiOH_G3l-74aHs0Ma0kfhz4d41YhKDdAzSyUQ,836
|
|
1856
|
+
mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py,sha256=CNW91PMjmiwJJtAjc1UX4uPNnswUNLzanASX0G8mnCM,930
|
|
1857
|
+
mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py,sha256=Vmi2p-FDxZLD-hAC7Ni6k4-4ph7jhwv4FlPYdKIwKUI,1567
|
|
1858
|
+
mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py,sha256=ErgP9VOWozdu_vVK_NwXoyY5Y6lHVTXU_4KgUu2zqeg,1180
|
|
1859
|
+
mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py,sha256=X_s7Xsg2G4rM-YJU5jyy6MSkDkkJTYFV6-gPtvIvEcw,730
|
|
1860
|
+
mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py,sha256=o-e37zDpfoKHoF-Vn1hK1h1QZ5KuIY980L_cgcKHKmg,856
|
|
1861
|
+
mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py,sha256=e-COZspC-sZrT2gpez-5evn-FAzvtGib8T7eH-ER8jg,1138
|
|
1862
|
+
mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py,sha256=QYjKKJM2xOU1phE0CIrFj9a9ZKp88vvKaPijrsUjh_A,1940
|
|
1863
|
+
mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py,sha256=eCKC_iZxF-uMzd7E5NKdVtTKWOLKAt52B4TxwbcII6s,1222
|
|
1864
|
+
mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py,sha256=4704VWn-IAkakkF92APi6jrNKROutSO__Bmdoh8Re9s,596
|
|
1865
|
+
mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py,sha256=BudG5UXGIL60rovVLBeBx49E08DWY3Tg92Yyca9mxss,732
|
|
1866
|
+
mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py,sha256=nnEfgOI60cqp7-LGCj2Q7qScZpjIbyC57p88v2JSzsg,983
|
|
1867
|
+
mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py,sha256=KfNNmQ8bl5QQU0mJggVQRraaNcKc5W2CMV_wCgcJFpE,605
|
|
1868
|
+
mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py,sha256=lqbg2a0Lb-fD4nSCPRrzfl2t9BI0sPWhXUKPZtl20_A,2519
|
|
1869
|
+
mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py,sha256=2GP1XHhh66NpzLWSicg6XHwE0Ap4yvDnTuYx6LPzZec,701
|
|
1870
|
+
mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py,sha256=BCbScDHjmJ8e2MZTRJoehu8zuB-sNEhd0IQLh14orUs,1735
|
|
1871
|
+
mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py,sha256=t2nY29j4J9s6wNv89l2IUgy0dVnYYSG-BFeLDYqhOS4,1023
|
|
1872
|
+
mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py,sha256=XCKgt4NiS6wsu7T_Er02nsfhwhfieU-fxsj5qcTvT1Q,824
|
|
1873
|
+
mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py,sha256=si0IZUwXyw4ooZCJK1uvzvZzrOHVn1xKMs_ezWaAKDA,1323
|
|
1874
|
+
mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py,sha256=yt8d2TDa6keOcUtbt4ejtgm_iwLFjrHf9ngtASbce2Y,837
|
|
1875
|
+
mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py,sha256=CkGIaGL24QNPRxBoH6DaowsXzWOZ1xwvTD_HyeIGDDA,1419
|
|
1876
|
+
mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py,sha256=4SCB3SNfjHmXK7ox5yw4muNYER2r-PXXoe4J5I_Gr_g,994
|
|
1877
|
+
mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py,sha256=z_W3K-kJcbY-bvmA0b9TyvhblK4gWvk7wV0wkvIpkCw,904
|
|
1878
|
+
mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py,sha256=OMZ3UGBlyvaF2gNWpx5EkFx0VXz35X1HICykMsTBJog,1257
|
|
1879
|
+
mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py,sha256=1p2BnEzGOGPy0QDCH8atbQoaTGEYwrI4E2uX01KyaXU,1613
|
|
1880
|
+
mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py,sha256=qGe57S6SPQuUP5d18Ay2wgFRk7krf1qmZdjeEFY4rys,1355
|
|
1881
|
+
mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py,sha256=F1HJoNit1SwVW3cbEmHcIHt6HI3Q3E_X7CJn1YYpt9Y,666
|
|
1882
|
+
mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py,sha256=6FfwA2e9fwDDghPPMHw5CpUFWu5xBkLS_UAte5-zRoM,1470
|
|
1883
|
+
mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py,sha256=SdZwpPKODEaC9fc6mFc-kw65Y9GzLiV9WsPYquICUI0,701
|
|
1884
|
+
mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py,sha256=1qQl720lynCbtcGqKIbFM0HCo81xIXqz0Hj3dWkH6UI,3174
|
|
1885
|
+
mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py,sha256=nCnp-M3ljIEAO9XTc5mSURp2SX5Q8gE6kyJHp5J5vmo,1322
|
|
1886
|
+
mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1887
|
+
mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1888
|
+
mindsdb/utilities/auth.py,sha256=6ycLJgXySghgFdzK6emxdStElzt5aOPafjDCRR_g_q0,2336
|
|
1889
|
+
mindsdb/utilities/cache.py,sha256=8y5BOcIiVbxkokbMNlj7CCNCszdQhZ5WDtdeUvl3v_w,7333
|
|
1890
|
+
mindsdb/utilities/config.py,sha256=ezGcUAy2D9NiRd1mpLbZ2JyN5JSwAp7HR9Gm9MyZJ6I,20688
|
|
1891
|
+
mindsdb/utilities/context.py,sha256=B7m80Hcr9-6vVS3fIMPrjyIAHC188FCNe0ZwZ5LK43Q,1509
|
|
1892
|
+
mindsdb/utilities/context_executor.py,sha256=6ByyeulMePEfRrGxR9vlKYF87R8z1wHFwc1GdfhlGCk,1946
|
|
1893
|
+
mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
|
|
1894
|
+
mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
|
|
1895
|
+
mindsdb/utilities/functions.py,sha256=CQ87uYz7elOeklHbl7vQdK6QPKpTLGWHAOEKW-lKq5Q,6398
|
|
1896
|
+
mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
|
|
1897
|
+
mindsdb/utilities/log.py,sha256=7aMDgzN64WCdtTAxtySiqtxrc1kOp28pQLL8lw0kxBY,3341
|
|
1898
|
+
mindsdb/utilities/log_controller.py,sha256=B70FF1P1-kkpujpSAkxhu9FCZARKXfvov-SBl3oiobA,1039
|
|
1899
|
+
mindsdb/utilities/otel.py,sha256=0ybLBt8kFqWj_4TXEsHumywlQ2zYUcRX3jb8OIsOanY,3140
|
|
1900
|
+
mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
|
|
1901
|
+
mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
|
|
1902
|
+
mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
|
|
1903
|
+
mindsdb/utilities/telemetry.py,sha256=E1RAdG3g4BwUuD5rx6MpFVP1J1gEd6O4AzHTND6ql1A,1377
|
|
1904
|
+
mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
|
|
1905
|
+
mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
|
|
1906
|
+
mindsdb/utilities/hooks/profiling.py,sha256=rku6YqVRv1cL0V62aZEw3dzrv5WQcFkoOut_93YHr2Q,2262
|
|
1907
|
+
mindsdb/utilities/ml_task_queue/__init__.py,sha256=fwDJ5M5cmXQNjNLBUq-sChjahZ9mjYVL4gAU6VoKQA0,2810
|
|
1908
|
+
mindsdb/utilities/ml_task_queue/base.py,sha256=eHOUIi9R9GnAt9Xjuip2VMxiroMFgFshhs7cW9hoS2U,453
|
|
1909
|
+
mindsdb/utilities/ml_task_queue/const.py,sha256=o-WWuREP7sXsjTo5Ok1awEtrE6KTB51ZzGfSMuDZUV4,607
|
|
1910
|
+
mindsdb/utilities/ml_task_queue/consumer.py,sha256=cRRlgqOEFSQBKFEowLti2NbgX3ctiRQGZXoXMi0ZO4E,9475
|
|
1911
|
+
mindsdb/utilities/ml_task_queue/producer.py,sha256=x0s1_xcqtUaT5Og0TdErgWmN1Jp236byzvd2N2HMO34,2764
|
|
1912
|
+
mindsdb/utilities/ml_task_queue/task.py,sha256=h6PimSa_AXFo_xvEJGvhDhxiCI54VN2VebVQn0QpAsQ,3166
|
|
1913
|
+
mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
|
|
1914
|
+
mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
|
|
1915
|
+
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1916
|
+
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1917
|
+
mindsdb/utilities/render/sqlalchemy_render.py,sha256=ot4I-2OV81f7P5XohbFjIb7PluQ5uHPREY7ci8TjBoI,28072
|
|
1918
|
+
MindsDB-24.12.4.0.dist-info/LICENSE,sha256=PU9CogXrOvvPxqmSf0Szfk2kPWX38tS76WkfS322O6E,31276
|
|
1919
|
+
MindsDB-24.12.4.0.dist-info/METADATA,sha256=5xXQo5rSlVvhgjeUji7OewbrM_EuyIEmb4lsrECW1CA,43393
|
|
1920
|
+
MindsDB-24.12.4.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
1921
|
+
MindsDB-24.12.4.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1922
|
+
MindsDB-24.12.4.0.dist-info/RECORD,,
|