MindsDB 25.3.2.0__py3-none-any.whl → 25.3.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of MindsDB might be problematic. Click here for more details.
- mindsdb/__about__.py +1 -1
- mindsdb/__main__.py +0 -1
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +2 -6
- mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +1 -1
- mindsdb/api/http/namespaces/agents.py +9 -5
- mindsdb/api/http/namespaces/chatbots.py +6 -5
- mindsdb/api/http/namespaces/databases.py +5 -6
- mindsdb/api/http/namespaces/skills.py +5 -4
- mindsdb/api/http/namespaces/views.py +6 -7
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +23 -2
- mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +16 -6
- mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +64 -83
- mindsdb/integrations/handlers/github_handler/generate_api.py +228 -0
- mindsdb/integrations/handlers/github_handler/github_handler.py +15 -8
- mindsdb/integrations/handlers/github_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt +5 -4
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +5 -5
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +1 -1
- mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py +278 -0
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +114 -70
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +431 -0
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +18 -4
- mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +1 -0
- mindsdb/integrations/handlers/salesforce_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +20 -25
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +2 -2
- mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +11 -6
- mindsdb/integrations/libs/ml_handler_process/learn_process.py +9 -3
- mindsdb/integrations/libs/vectordatabase_handler.py +2 -2
- mindsdb/integrations/utilities/files/file_reader.py +3 -3
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +36 -2
- mindsdb/integrations/utilities/rag/settings.py +1 -0
- mindsdb/interfaces/chatbot/chatbot_controller.py +6 -4
- mindsdb/interfaces/jobs/jobs_controller.py +1 -4
- mindsdb/interfaces/knowledge_base/controller.py +9 -28
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +1 -1
- mindsdb/interfaces/skills/skills_controller.py +8 -7
- mindsdb/utilities/render/sqlalchemy_render.py +11 -5
- {mindsdb-25.3.2.0.dist-info → mindsdb-25.3.4.0.dist-info}/METADATA +236 -233
- {mindsdb-25.3.2.0.dist-info → mindsdb-25.3.4.0.dist-info}/RECORD +43 -42
- {mindsdb-25.3.2.0.dist-info → mindsdb-25.3.4.0.dist-info}/WHEEL +1 -1
- mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +0 -47
- {mindsdb-25.3.2.0.dist-info → mindsdb-25.3.4.0.dist-info/licenses}/LICENSE +0 -0
- {mindsdb-25.3.2.0.dist-info → mindsdb-25.3.4.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=KDAUlEqTCp4SygC6bc5b6fWX-DTb3hW97g_rmiRv69s,444
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
|
-
mindsdb/__main__.py,sha256=
|
|
3
|
+
mindsdb/__main__.py,sha256=OOvGVNYi17UNn66OFjRNGcgxR9JefTxLZzL3vHq3AEg,21826
|
|
4
4
|
mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
|
|
@@ -17,9 +17,9 @@ mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
17
17
|
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=wT3TzoK3dFNiRc92rh_Hgo1uqaznFldtXBUGCzKNOlg,1934
|
|
18
18
|
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
19
19
|
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=IuWnQvT6SVMoMOELuLoMCAUxZpItGn0Nr0ct44fspr0,373
|
|
20
|
-
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=
|
|
20
|
+
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=PTSwy1PFfFWc0tt-Xb4nOU8gaqpq8Y9FVIFZ1SNgjqU,6323
|
|
21
21
|
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=HowB1lnbs__qiVOE63uAuOqhDEj-2IcuiPh5bb3RgPg,9797
|
|
22
|
-
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=
|
|
22
|
+
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=xWWe25ZaOhc-c_gjT6n1w4A_g-z7h8W4JUb9sW5Hglo,12567
|
|
23
23
|
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=KAYGMEDY4hVf7hZtyB26ehEwu1SCooql3mtoaN0itHs,6336
|
|
24
24
|
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=PCmcxj_Jbhd5JuGpekfb8nQJBTJCfptibJuy0Wrz10I,14218
|
|
25
25
|
mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
|
|
@@ -61,12 +61,12 @@ mindsdb/api/http/initialize.py,sha256=pWQCv7YicvU7rmqh0w5r-12iWHOtdNChKWID-bxzvX
|
|
|
61
61
|
mindsdb/api/http/start.py,sha256=3F2iob1EHNh9cCeuxD1RjlVp0wnRw-ybh7lU5KaYGK8,2350
|
|
62
62
|
mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
|
|
63
63
|
mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
mindsdb/api/http/namespaces/agents.py,sha256=
|
|
64
|
+
mindsdb/api/http/namespaces/agents.py,sha256=H3C4MmNCsrk3Dv8Cw1kx0j7EvNOia5PfyfQYuElgczE,18984
|
|
65
65
|
mindsdb/api/http/namespaces/analysis.py,sha256=Dp3izdLkG35cSAKNUPJfuGoFSRe34CzFPKk2CEVjDoI,3821
|
|
66
66
|
mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
|
|
67
|
-
mindsdb/api/http/namespaces/chatbots.py,sha256=
|
|
67
|
+
mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
|
|
68
68
|
mindsdb/api/http/namespaces/config.py,sha256=-OZaCf32lHIi1hZ3gt6nuR0XF1gxkh3zv-oU28Z9Tfs,8382
|
|
69
|
-
mindsdb/api/http/namespaces/databases.py,sha256=
|
|
69
|
+
mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
|
|
70
70
|
mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
|
|
71
71
|
mindsdb/api/http/namespaces/file.py,sha256=u6xYa_moAMb0UXWGkNtErGw9nk-FbloRuLHrLCANjoU,6644
|
|
72
72
|
mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
|
|
@@ -74,12 +74,12 @@ mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednW
|
|
|
74
74
|
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=ZwzSXn_6DNn3awCnMlvCbZfCOTPM3VcsQNotMM05v3U,16653
|
|
75
75
|
mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
|
|
76
76
|
mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
|
|
77
|
-
mindsdb/api/http/namespaces/skills.py,sha256
|
|
77
|
+
mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
|
|
78
78
|
mindsdb/api/http/namespaces/sql.py,sha256=-uLWZPsd8q2vUjJeZE3c4qjBbatnrWgPhlHROSaFVnc,5964
|
|
79
79
|
mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
|
|
80
80
|
mindsdb/api/http/namespaces/tree.py,sha256=8I_X7Uhn6OAEsgWOfneF1UBif0T0YFmj-SG_iT20C3E,3807
|
|
81
81
|
mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
|
|
82
|
-
mindsdb/api/http/namespaces/views.py,sha256=
|
|
82
|
+
mindsdb/api/http/namespaces/views.py,sha256=bSoCOJQq-xyWdOpNRA1YyOSlYHTHHYIZgd8m4E_rvy0,6226
|
|
83
83
|
mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
|
|
84
84
|
mindsdb/api/http/namespaces/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
85
|
mindsdb/api/http/namespaces/configs/agents.py,sha256=9LKToZNLtQGBhj1nRwIjaTNDeI5PA-TbVVW1qwFdqzc,124
|
|
@@ -348,7 +348,7 @@ mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py,sha256=47DEQpj
|
|
|
348
348
|
mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py,sha256=9MibR3PQlvZzt7Q0rCU6R8dICvqhPA_kxoUp4JiVEVE,1353
|
|
349
349
|
mindsdb/integrations/handlers/chromadb_handler/__about__.py,sha256=28MPMq-Rjb1tR4SawSItNeGvVRupERgeHUDW7KRiyr4,345
|
|
350
350
|
mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2JpJT_nUryqEZrRR3TtpAmynMFOfHr4,659
|
|
351
|
-
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=
|
|
351
|
+
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=JjIKaFvCGDjW8FpL1ROtCVoGoGh8Td8fg6QHYI_l3Uk,18005
|
|
352
352
|
mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
|
|
353
353
|
mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
|
|
354
354
|
mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=xDi58Geqkth3WtJFFFD20zyutNzmtrKu9cQOSNNzx9A,16
|
|
@@ -545,7 +545,7 @@ mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py,sha256=47DEQpj8HB
|
|
|
545
545
|
mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py,sha256=jkGvXoQEoQnzcj3zuORu7upfcoaGcDmVOe83IqzPQbQ,1479
|
|
546
546
|
mindsdb/integrations/handlers/dummy_data_handler/__about__.py,sha256=PSYHn55hrQRpnqoXiTNmXNdhCSmWmEhLL7Nb4eKdhkw,228
|
|
547
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
|
|
548
|
+
mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py,sha256=XQR7WhU_4o0JSqQZsI7BZVbnBOpongUetmf8_AMt8ZQ,3379
|
|
549
549
|
mindsdb/integrations/handlers/dummy_data_handler/icon.svg,sha256=K9XlyM95whoniFSqPOz8tm2hxKJxanwZWoYD0IzDzrg,152
|
|
550
550
|
mindsdb/integrations/handlers/dynamodb_handler/__about__.py,sha256=C-WnvzjgGPutV61FH6eTAkpnc3Y3DRdoKwaNUXLhWkg,357
|
|
551
551
|
mindsdb/integrations/handlers/dynamodb_handler/__init__.py,sha256=yTEVxzxm3SCeATwL0lPyASgiowEVH00C7Nciy_31lyU,631
|
|
@@ -611,7 +611,7 @@ mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=atOboSG8pcMwnH
|
|
|
611
611
|
mindsdb/integrations/handlers/file_handler/icon.svg,sha256=hsXEvUzrO7WQMOPC83LYQt-FW0wey9TCj5EwiIJwKwk,565
|
|
612
612
|
mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
613
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=
|
|
614
|
+
mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py,sha256=kFJaLeOjpIgCjWsBQL7A4Q4nN5Z1APafxX9zyT_rU1g,11078
|
|
615
615
|
mindsdb/integrations/handlers/file_handler/tests/data/test.txt,sha256=SUG2Uw_Hmth51gyaCJyeyfAbFssHfsB3qWFcxBX_W1g,570
|
|
616
616
|
mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py,sha256=Dz6gPZVoxWJqMgte07pkMKtQq42u7qYtCiaxdHVgANw,392
|
|
617
617
|
mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py,sha256=AncBNXt6EECSYDNTlnkxkQ3_dfgEITMKaUUWjV-KSMY,537
|
|
@@ -648,10 +648,11 @@ mindsdb/integrations/handlers/gcs_handler/requirements.txt,sha256=zLZXjAKF7BzZXl
|
|
|
648
648
|
mindsdb/integrations/handlers/github_handler/__about__.py,sha256=bDVOGS37C6HVRgSOekhxUcvW2Eg0Z5k2bq558mUM07M,339
|
|
649
649
|
mindsdb/integrations/handlers/github_handler/__init__.py,sha256=ov-CvC4-1IbwvuKykY7i3wJxHnYenbU8KtNZUSRzB-0,629
|
|
650
650
|
mindsdb/integrations/handlers/github_handler/connection_args.py,sha256=jnJKzK-5UI5-GZVh57iWaYXkAlhnc8p_4vUn357wXow,911
|
|
651
|
-
mindsdb/integrations/handlers/github_handler/
|
|
651
|
+
mindsdb/integrations/handlers/github_handler/generate_api.py,sha256=GRIhxpUKQ_zazZDWqiUWu_fdXOztKF6c4ne1AgjE3qg,7089
|
|
652
|
+
mindsdb/integrations/handlers/github_handler/github_handler.py,sha256=6Xk5piMuafTvfPGvJ5U0WabE4W_Je75nZVUlfzMeRvE,3795
|
|
652
653
|
mindsdb/integrations/handlers/github_handler/github_tables.py,sha256=ICt2HmrE0TSI_dEFgVMA00INoL5z5jhA8aKH9C_EiiA,30970
|
|
653
654
|
mindsdb/integrations/handlers/github_handler/icon.svg,sha256=c1j3IrEwYsGXPwW-hjZDpOceLhVCW_0tT8Aba5PdF5c,1198
|
|
654
|
-
mindsdb/integrations/handlers/github_handler/requirements.txt,sha256=
|
|
655
|
+
mindsdb/integrations/handlers/github_handler/requirements.txt,sha256=BJz2OYblSD2RZAV7csj2UIyRfuSQmstGWB3flUgFOk4,16
|
|
655
656
|
mindsdb/integrations/handlers/gitlab_handler/__about__.py,sha256=2uH49-_UriKLYrfBa8yIU6j1L9Bxpyp5Gqm7zsTT7eA,341
|
|
656
657
|
mindsdb/integrations/handlers/gitlab_handler/__init__.py,sha256=MleI0P8FKMYzbzd_XPkTbCjT1_Ub21hreu56QhXQuy8,481
|
|
657
658
|
mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py,sha256=fSj7r7irmC2WEOWGKM9An3V-gs-U1Ub5HommbwPdBDs,2575
|
|
@@ -775,8 +776,8 @@ mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=f-LxhPOlZsX
|
|
|
775
776
|
mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=gDf5yC-ot2IZdONMIcQ5bEvKMtk-nci5OcSYmvmEGQg,8085
|
|
776
777
|
mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=2wSfHCnAFbiHco37Eq_1f71vwSfoZ_ntz9f-d7pmlvI,13620
|
|
777
778
|
mindsdb/integrations/handlers/huggingface_handler/icon.svg,sha256=yU820GpXed8h9CloppHH0D1-EJjrorSLlbjciV91b9k,9064
|
|
778
|
-
mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=
|
|
779
|
-
mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=
|
|
779
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=BRdNg-JVvnwtNNk-b633J-GJRivCCi_CtStF2SjH3Qg,159
|
|
780
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=xJEc47qOOZ97_ctibvXlOynB0llxN_zzKCb9yDyhuSs,199
|
|
780
781
|
mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1dAcKyjEcuK1LSktqK_5tPLJzQGCNTs0GR9CMe8qTvk,984
|
|
781
782
|
mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
|
|
782
783
|
mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
|
|
@@ -1028,13 +1029,15 @@ mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt,sha256=T_nkUv
|
|
|
1028
1029
|
mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py,sha256=rUQ0p9bqHSjpEgXe9T-Hq-bfGrMHIU5Rmiwt-orDOCk,369
|
|
1029
1030
|
mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py,sha256=vraI6WlfpNk0C_D0wQH7Wxxy7zpI57rOp2t2XPgHuSk,533
|
|
1030
1031
|
mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z2hQUMEyyP8DUmhgUtjvsfN3HU2EBes,2430
|
|
1031
|
-
mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=
|
|
1032
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=wncgJ7BXsFNRMn3aJLhtwZIaDCeoeHdBpCmg_dzm_Vg,3516
|
|
1032
1033
|
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8Xi8rKFWpEsDw5mzqgR7IW4wEbk-TBNqNqOj4350gL4,9333
|
|
1033
1034
|
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=rBD6sEli8XP-cxTogFu2J7ScO_WTw1gM-6gZm2P8lsc,2802
|
|
1034
1035
|
mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
|
|
1035
1036
|
mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
|
|
1036
1037
|
mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
|
|
1037
|
-
mindsdb/integrations/handlers/ms_teams_handler/
|
|
1038
|
+
mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=JgyMCeLgtiC2SS-lzN5k8JGnpHyqujDdzWbRPgdlD5w,9083
|
|
1039
|
+
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=1FyxdMZTGnTM3t5D5_oRkz2shC-Le6ckw5Y1a9gCZYk,8546
|
|
1040
|
+
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py,sha256=-8jH0fB98GU9m_o4_HLyVp1LC-UAYxu1OfRRkHT8kYQ,13753
|
|
1038
1041
|
mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=On99gSLUaYbgUGenm0cRwUf-C-pPune9zbcHkRtdoLU,40
|
|
1039
1042
|
mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWRxOrMuktBneTm9JRLeGkZiSSH-EQ,363
|
|
1040
1043
|
mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
|
|
@@ -1168,7 +1171,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
|
|
|
1168
1171
|
mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
|
|
1169
1172
|
mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
|
|
1170
1173
|
mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
|
|
1171
|
-
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=
|
|
1174
|
+
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=GwooXGEbhICnaxZCFDj8aCF1Q9MtxfBp8mHVCVnG1xI,19776
|
|
1172
1175
|
mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1173
1176
|
mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
|
|
1174
1177
|
mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=dguuDcpGTUdL7KHbLPv3OLY9fmvJrQj5I_CsfmuQdKk,606
|
|
@@ -1283,7 +1286,7 @@ mindsdb/integrations/handlers/redshift_handler/__about__.py,sha256=l9Ri3bz7eW3C5
|
|
|
1283
1286
|
mindsdb/integrations/handlers/redshift_handler/__init__.py,sha256=CwcbbRYbQLXROfpRN3KOjqle2oEfOVkB1y-4h2HUOTs,631
|
|
1284
1287
|
mindsdb/integrations/handlers/redshift_handler/connection_args.py,sha256=je_PzZnNCR5goeNyZY1Tt_0mPQmGUiU_5lCw-lEBxwc,1676
|
|
1285
1288
|
mindsdb/integrations/handlers/redshift_handler/icon.svg,sha256=iIsJ28OGHPtST21OT4_bNoGt48ORHDPdnNGRYmrDPtQ,765
|
|
1286
|
-
mindsdb/integrations/handlers/redshift_handler/redshift_handler.py,sha256=
|
|
1289
|
+
mindsdb/integrations/handlers/redshift_handler/redshift_handler.py,sha256=AgwJbVaUjPgzHIqt0ZzsMW5vmH7mKrbRxLqIYoi_tHo,2190
|
|
1287
1290
|
mindsdb/integrations/handlers/redshift_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1288
1291
|
mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py,sha256=dNQfm--1S8v-SPfAbS9VGuY7T8M97ELhwL9lxJ3zUNU,5523
|
|
1289
1292
|
mindsdb/integrations/handlers/replicate_handler/__about__.py,sha256=2_18jFKOFO_515IYxchEJYQG77sR5MJTvOPUfZ_pjnU,349
|
|
@@ -1321,9 +1324,9 @@ mindsdb/integrations/handlers/salesforce_handler/__about__.py,sha256=WLr4oUXEPsa
|
|
|
1321
1324
|
mindsdb/integrations/handlers/salesforce_handler/__init__.py,sha256=nH_HnnS5cnDadXEy6ZiGuUPByT_JGu2Nrgx3Nzw0JCg,650
|
|
1322
1325
|
mindsdb/integrations/handlers/salesforce_handler/connection_args.py,sha256=XF20-m222AxVvK751lWKV2tb3I1WkRrmR5AJ7qV9PtI,1498
|
|
1323
1326
|
mindsdb/integrations/handlers/salesforce_handler/icon.svg,sha256=sL7XX_vF5Y7gLLklV1h17MXILGYz0f79VH915DQXyV0,8594
|
|
1324
|
-
mindsdb/integrations/handlers/salesforce_handler/requirements.txt,sha256=
|
|
1325
|
-
mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=
|
|
1326
|
-
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=
|
|
1327
|
+
mindsdb/integrations/handlers/salesforce_handler/requirements.txt,sha256=JbByk_8_aqTrg45rT_tUbyDgUoDSTK7VVpgUaMen3wU,22
|
|
1328
|
+
mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=vJRjGTLBE3IYWcU_TG5JV7nreSqIDxV0gNxokAMWO_g,6448
|
|
1329
|
+
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=6h7BhO8U6J0Zqil3ja3Snv98t2jeylSTrD-xWm2pkTw,5065
|
|
1327
1330
|
mindsdb/integrations/handlers/sap_erp_handler/__about__.py,sha256=yXC_YavBeY0vTZvwkU4EN7DUijGMZ8m3jtQsftKwlhs,340
|
|
1328
1331
|
mindsdb/integrations/handlers/sap_erp_handler/__init__.py,sha256=2rnUX-yeCkCgh4viBttHdG4o4HKJrVI3m82S8GJFCBU,531
|
|
1329
1332
|
mindsdb/integrations/handlers/sap_erp_handler/api.py,sha256=tAIqeww34R0N0QyVKYhSE3NRzIDoBn8xepCZIG4tYbg,2168
|
|
@@ -1532,9 +1535,7 @@ mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py,sha256=rdAQhmGP
|
|
|
1532
1535
|
mindsdb/integrations/handlers/timescaledb_handler/__about__.py,sha256=joUHMPBAiylB7Uc7sipeFVWlWDZ_wqVqyyy_MivkNFI,355
|
|
1533
1536
|
mindsdb/integrations/handlers/timescaledb_handler/__init__.py,sha256=ynMpLqCRlYomZEFEinXmtYYGr0DPIMQZ9HtsytOpe6c,497
|
|
1534
1537
|
mindsdb/integrations/handlers/timescaledb_handler/icon.svg,sha256=sZHwvwAJ5SiTLSHhjdm_2YazVz0KEDQj-5KYR7cBTxo,6197
|
|
1535
|
-
mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py,sha256=
|
|
1536
|
-
mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1537
|
-
mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py,sha256=6X6w-jusR76pKk0XvBwV5xZxjq8SP0tWPAw0pa10rB0,1552
|
|
1538
|
+
mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py,sha256=24xdH6WK-EDXmRK_51J-uvsizQcveeRopEtohfgUfqU,1439
|
|
1538
1539
|
mindsdb/integrations/handlers/tpot_handler/__about__.py,sha256=UnKylDgzptBz8GP0Az_AnwEtYN7tGTzSkrk8OByt9hg,335
|
|
1539
1540
|
mindsdb/integrations/handlers/tpot_handler/__init__.py,sha256=In_YSefcrQXPbgqBoTR77fx9sIRpBTBpWaIlhaaHHhA,526
|
|
1540
1541
|
mindsdb/integrations/handlers/tpot_handler/icon.png,sha256=j1DfF2jF1kWD3dhCET51X26QnSW9rNuLXXG7Tav3M2M,114250
|
|
@@ -1685,7 +1686,7 @@ mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmoz
|
|
|
1685
1686
|
mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
|
|
1686
1687
|
mindsdb/integrations/libs/response.py,sha256=iyadSLc5e7gY-rviaaoFNIrgIhDBJ-DZux062PxRRz8,3119
|
|
1687
1688
|
mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
|
|
1688
|
-
mindsdb/integrations/libs/vectordatabase_handler.py,sha256
|
|
1689
|
+
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=mVItuuV-ya5CMGmrfWOoRDUqFeHozd4XeNpQi6k3Kt4,17521
|
|
1689
1690
|
mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1690
1691
|
mindsdb/integrations/libs/llm/config.py,sha256=M14flGRcngP8n37sT8XLuJj5w-145B4IAyx3vLllogM,3548
|
|
1691
1692
|
mindsdb/integrations/libs/llm/utils.py,sha256=20KrNT9PdvVL0DTPLrOT1uPUw2bMtRhnEZ_7fxBYnRQ,24648
|
|
@@ -1695,7 +1696,7 @@ mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256
|
|
|
1695
1696
|
mindsdb/integrations/libs/ml_handler_process/describe_process.py,sha256=D1FEY2C5Ht1KjiycMuplLgHhfRaw-OJylVgst6pOzpQ,4205
|
|
1696
1697
|
mindsdb/integrations/libs/ml_handler_process/func_call_process.py,sha256=W29lPhV6K8g2prNR57CmyJ_t5DNG_EVnf4fhnHpGFPI,728
|
|
1697
1698
|
mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py,sha256=Lult730J8sPGabO4cVqXWtc9gqt_iFvTFlY7GAym1RM,771
|
|
1698
|
-
mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=
|
|
1699
|
+
mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=67Pn-0Y1H-q8sDnpCtCCpaw4dynCtskalO3MbLeVyhI,7521
|
|
1699
1700
|
mindsdb/integrations/libs/ml_handler_process/predict_process.py,sha256=QmThCaCy-LBVCcpzHWEecl6eWW48QJsf2HxxnwNWN0o,1346
|
|
1700
1701
|
mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=cczOfdAPbriukLa5lamDT4VRONjFZ9QGdlXxzOad4K8,788
|
|
1701
1702
|
mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
|
|
@@ -1714,11 +1715,11 @@ mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-
|
|
|
1714
1715
|
mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
|
|
1715
1716
|
mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
|
|
1716
1717
|
mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1717
|
-
mindsdb/integrations/utilities/files/file_reader.py,sha256=
|
|
1718
|
+
mindsdb/integrations/utilities/files/file_reader.py,sha256=r9Eb86eRSF-vi5sU0E9FNJIKJdlMEl2n0yRDt0ykNvk,11298
|
|
1718
1719
|
mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1719
1720
|
mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=zkvVb54zxtn4_NSwqCD-SVQG_5JI9EYRygb6EABQu7g,43
|
|
1720
1721
|
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
|
|
1721
|
-
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=
|
|
1722
|
+
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=JikiOFYkji_7l1ckXn3I8NjrruTjcI7TdpqHxLU-mIE,6292
|
|
1722
1723
|
mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=lyJdlw4_MFt3w3Iue7npRGwjNPIHzZZGox4dNEXvVaE,139
|
|
1723
1724
|
mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
|
|
1724
1725
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
|
|
@@ -1738,7 +1739,7 @@ mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validatio
|
|
|
1738
1739
|
mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1739
1740
|
mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
|
|
1740
1741
|
mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=0RhyafFoQPl1aniRYcOu57aljfqKqj_p0cNb_bfOrc8,3742
|
|
1741
|
-
mindsdb/integrations/utilities/rag/settings.py,sha256=
|
|
1742
|
+
mindsdb/integrations/utilities/rag/settings.py,sha256=wJ4aA6lciKmKN3kz8dad6dxmvqhHo2rzj97xgVlcB_c,33497
|
|
1742
1743
|
mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
|
|
1743
1744
|
mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
|
|
1744
1745
|
mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1775,7 +1776,7 @@ mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2e
|
|
|
1775
1776
|
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=lk7UyE7tK807GXLBDr4-b2VVFUUzDtpMx2GjVtywv3o,2459
|
|
1776
1777
|
mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
|
|
1777
1778
|
mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1778
|
-
mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=
|
|
1779
|
+
mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=nmJs8zotT88aab99FdPQLqaOSsqbqmHNpo9oK6nlBG0,14494
|
|
1779
1780
|
mindsdb/interfaces/chatbot/chatbot_executor.py,sha256=3qU98MHBmUcsIWYqaNNJhoudUQWLPWlCB_di6iFaP1g,7742
|
|
1780
1781
|
mindsdb/interfaces/chatbot/chatbot_task.py,sha256=eKU-7FSygAzFq9lkHKLl5zlkiiQDGjzOX7oUb-rJNQo,7001
|
|
1781
1782
|
mindsdb/interfaces/chatbot/memory.py,sha256=tkqBiA5mMvkuGITCjUC_r0JuyUS2DbeARxJ_GryOZJQ,8346
|
|
@@ -1793,14 +1794,14 @@ mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2
|
|
|
1793
1794
|
mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1794
1795
|
mindsdb/interfaces/functions/controller.py,sha256=8kyWA8TnMsRDyIl2s3JcvdGYeww4_Qmf-jYq_wwOYH4,6057
|
|
1795
1796
|
mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1796
|
-
mindsdb/interfaces/jobs/jobs_controller.py,sha256=
|
|
1797
|
+
mindsdb/interfaces/jobs/jobs_controller.py,sha256=yuDN2JVIrgbQlHkxwLbhyX9CwL8oENIRjYnAR5h0ufE,18280
|
|
1797
1798
|
mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
|
|
1798
1799
|
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1799
|
-
mindsdb/interfaces/knowledge_base/controller.py,sha256=
|
|
1800
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=jSVxCvvEa8mTVPfeJ8MhgyGPerBRGLxddh_doyuV8x0,35311
|
|
1800
1801
|
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1801
1802
|
mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
|
|
1802
1803
|
mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
|
|
1803
|
-
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=
|
|
1804
|
+
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=Ew8pB-4aFXbYF_v4KYT0YRqFELMBJkLD3YiCnLRK1ok,14546
|
|
1804
1805
|
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
|
|
1805
1806
|
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1806
1807
|
mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
|
|
@@ -1811,7 +1812,7 @@ mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCb
|
|
|
1811
1812
|
mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1812
1813
|
mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
|
|
1813
1814
|
mindsdb/interfaces/skills/skill_tool.py,sha256=lUfQXxcLlEgjVe30knPjE2klWDlChHgCcBYlEJYy9Hw,12992
|
|
1814
|
-
mindsdb/interfaces/skills/skills_controller.py,sha256=
|
|
1815
|
+
mindsdb/interfaces/skills/skills_controller.py,sha256=cNblNQNOJXQkuXq0q2g7-OmAFG-QoBbRign6gHt6NLg,6319
|
|
1815
1816
|
mindsdb/interfaces/skills/sql_agent.py,sha256=ResOUpthG2o7C6w5qNyvQeCoT7fuaExQsRQA9TzKXVE,14619
|
|
1816
1817
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1817
1818
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1932,9 +1933,9 @@ mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=3jGsLt5KkdhqaAUUw8ALxE
|
|
|
1932
1933
|
mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
|
|
1933
1934
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1934
1935
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1935
|
-
mindsdb/utilities/render/sqlalchemy_render.py,sha256=
|
|
1936
|
-
mindsdb-25.3.
|
|
1937
|
-
mindsdb-25.3.
|
|
1938
|
-
mindsdb-25.3.
|
|
1939
|
-
mindsdb-25.3.
|
|
1940
|
-
mindsdb-25.3.
|
|
1936
|
+
mindsdb/utilities/render/sqlalchemy_render.py,sha256=E6_sJv9kfwOwUMurDklFOKpwplASwUBFhfknUqwbUCw,30627
|
|
1937
|
+
mindsdb-25.3.4.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1938
|
+
mindsdb-25.3.4.0.dist-info/METADATA,sha256=U-X4Jph1LJmm3DFO7HIBCnTRUlRjG6h-X_g2un2Be7Q,41896
|
|
1939
|
+
mindsdb-25.3.4.0.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
1940
|
+
mindsdb-25.3.4.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1941
|
+
mindsdb-25.3.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import unittest
|
|
2
|
-
from mindsdb.integrations.handlers.timescaledb_handler.timescaledb_handler import TimeScaleDBHandler
|
|
3
|
-
from mindsdb.api.executor.data_types.response_type import RESPONSE_TYPE
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class TimeScaleDBHandlerTest(unittest.TestCase):
|
|
7
|
-
@classmethod
|
|
8
|
-
def setUpClass(cls):
|
|
9
|
-
cls.kwargs = {
|
|
10
|
-
"host": "localhost",
|
|
11
|
-
"port": 36806,
|
|
12
|
-
"user": "USERNAME",
|
|
13
|
-
"password": "P455W0rd",
|
|
14
|
-
"database": "tsdb"
|
|
15
|
-
}
|
|
16
|
-
cls.handler = TimeScaleDBHandler('test_timescaledb_handler', connection_data=cls.kwargs)
|
|
17
|
-
|
|
18
|
-
def test_0_connect(self):
|
|
19
|
-
self.handler.connect()
|
|
20
|
-
|
|
21
|
-
def test_1_drop_table(self):
|
|
22
|
-
res = self.handler.query("DROP TABLE IF EXISTS LOVE;")
|
|
23
|
-
assert res.type is not RESPONSE_TYPE.ERROR
|
|
24
|
-
|
|
25
|
-
def test_2_create_table(self):
|
|
26
|
-
res = self.handler.query("CREATE TABLE IF NOT EXISTS LOVE (LOVER varchar(20));")
|
|
27
|
-
assert res.type is not RESPONSE_TYPE.ERROR
|
|
28
|
-
|
|
29
|
-
def test_3_insert(self):
|
|
30
|
-
res = self.handler.query("INSERT INTO LOVE VALUES('Hari');")
|
|
31
|
-
assert res.type is not RESPONSE_TYPE.ERROR
|
|
32
|
-
|
|
33
|
-
def test_4_get_tables(self):
|
|
34
|
-
tables = self.handler.get_tables()
|
|
35
|
-
assert tables.type is RESPONSE_TYPE.TABLE
|
|
36
|
-
|
|
37
|
-
def test_5_select_query(self):
|
|
38
|
-
query = "SELECT * FROM LOVE;"
|
|
39
|
-
result = self.handler.native_query(query)
|
|
40
|
-
assert result.type is RESPONSE_TYPE.TABLE
|
|
41
|
-
|
|
42
|
-
def test_5_check_connection(self):
|
|
43
|
-
self.handler.check_connection()
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
if __name__ == '__main__':
|
|
47
|
-
unittest.main()
|
|
File without changes
|
|
File without changes
|