MindsDB 25.4.5.0__py3-none-any.whl → 25.5.3.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 +107 -125
- mindsdb/api/executor/command_executor.py +2 -1
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +8 -0
- mindsdb/api/executor/datahub/datanodes/system_tables.py +10 -13
- mindsdb/api/executor/planner/query_planner.py +4 -1
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +2 -1
- mindsdb/api/http/initialize.py +20 -3
- mindsdb/api/http/namespaces/analysis.py +14 -1
- mindsdb/api/http/namespaces/tree.py +1 -1
- mindsdb/api/http/start.py +7 -2
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +4 -8
- mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -4
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +2 -2
- mindsdb/integrations/handlers/bigquery_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/gmail_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -1
- mindsdb/integrations/handlers/google_books_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/google_fit_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_search_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py +75 -0
- mindsdb/integrations/handlers/jira_handler/jira_handler.py +113 -38
- mindsdb/integrations/handlers/jira_handler/jira_tables.py +229 -0
- mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +0 -2
- mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -4
- mindsdb/integrations/handlers/lindorm_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +3 -1
- mindsdb/integrations/handlers/openai_handler/openai_handler.py +5 -4
- mindsdb/integrations/handlers/snowflake_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/youtube_handler/requirements.txt +1 -0
- mindsdb/integrations/utilities/files/file_reader.py +5 -2
- mindsdb/interfaces/agents/constants.py +14 -2
- mindsdb/interfaces/agents/langchain_agent.py +2 -4
- mindsdb/interfaces/database/projects.py +1 -7
- mindsdb/interfaces/functions/controller.py +11 -14
- mindsdb/interfaces/functions/to_markdown.py +9 -124
- mindsdb/interfaces/knowledge_base/controller.py +22 -19
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +28 -5
- mindsdb/interfaces/knowledge_base/utils.py +10 -15
- mindsdb/interfaces/model/model_controller.py +0 -2
- mindsdb/interfaces/skills/sql_agent.py +33 -11
- mindsdb/migrations/migrate.py +0 -2
- mindsdb/utilities/config.py +3 -2
- mindsdb/utilities/context.py +1 -1
- mindsdb/utilities/functions.py +0 -36
- mindsdb/utilities/langfuse.py +19 -10
- mindsdb/utilities/otel/__init__.py +9 -193
- mindsdb/utilities/otel/metric_handlers/__init__.py +5 -1
- mindsdb/utilities/otel/prepare.py +198 -0
- mindsdb/utilities/sql.py +83 -0
- {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.3.0.dist-info}/METADATA +663 -596
- {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.3.0.dist-info}/RECORD +62 -57
- {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.3.0.dist-info}/WHEEL +1 -1
- mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +0 -151
- {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.3.0.dist-info}/licenses/LICENSE +0 -0
- {mindsdb-25.4.5.0.dist-info → mindsdb-25.5.3.0.dist-info}/top_level.txt +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=fgszsf1fQ3wdqen-zsbCIiCvv-94qebnHJUI9h-Q1Jw,456
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
|
-
mindsdb/__main__.py,sha256=
|
|
3
|
+
mindsdb/__main__.py,sha256=4sBR3Md22Ry4iLKcqiN5BtfdgDE15BRFnz48wM4fCjE,22859
|
|
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
|
|
7
7
|
mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
8
|
-
mindsdb/api/executor/command_executor.py,sha256=
|
|
8
|
+
mindsdb/api/executor/command_executor.py,sha256=f_mrZH_CzlBbNQqOjlHsAcwnYwTrCFlqS6LM944LTAc,79867
|
|
9
9
|
mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
|
|
10
10
|
mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
|
|
11
11
|
mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
|
|
@@ -18,17 +18,17 @@ mindsdb/api/executor/datahub/classes/response.py,sha256=sCGFeOscRWi7f0SPvS1P3IzK
|
|
|
18
18
|
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
|
|
19
19
|
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
20
20
|
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qfgrebm2pwJYOy3zgZi4mQI,594
|
|
21
|
-
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=
|
|
21
|
+
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=q6Mu80zwL7yoA1HstiVHm7jQMrspQQdVnjiPSW8KTek,8472
|
|
22
22
|
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=pTPPjSaAI4IuSNdz4xpbguZoxRt7WBNMhvsffalowvw,11907
|
|
23
23
|
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=inOQtLa-nP0sbyDtwvFGuxZsvWClQDhhNrA-bjFmWP4,14120
|
|
24
24
|
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=j2dJHT09FJOq76ORSkgGMtZxtE8kSB4VY6UrRce-KBc,8080
|
|
25
|
-
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=
|
|
25
|
+
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=_lIL6h8rTXYBzpLQBi_-IjR2BmCoNERafhdI4AYGoFY,16750
|
|
26
26
|
mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
|
|
27
27
|
mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
|
|
28
28
|
mindsdb/api/executor/planner/plan_join.py,sha256=QuwrM2Ck8jQmHMzo3eU768v1QqNtaLCZQ4cKfj2IkwA,22549
|
|
29
29
|
mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
|
|
30
30
|
mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
|
|
31
|
-
mindsdb/api/executor/planner/query_planner.py,sha256=
|
|
31
|
+
mindsdb/api/executor/planner/query_planner.py,sha256=Y6eHxlw1bP9FY7ktECDFGYv2Qz6Lc8s1I31rwKKI1Wc,34788
|
|
32
32
|
mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
|
|
33
33
|
mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
|
|
34
34
|
mindsdb/api/executor/planner/steps.py,sha256=8BV3dGf5Yi3jbq_2XPapr5nPyL0KqgPFtWxqX95Mcyw,9352
|
|
@@ -38,7 +38,7 @@ mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5
|
|
|
38
38
|
mindsdb/api/executor/sql_query/result_set.py,sha256=cX5Mp5BRYzsZ7avbIALVcrZgAs4w-c8O08JOQoQH-nM,9789
|
|
39
39
|
mindsdb/api/executor/sql_query/sql_query.py,sha256=NEDZmaASFZFuUHWc7BUqWW4jzY1yMUnzyJD1mDwaz1o,11341
|
|
40
40
|
mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0UxS35mfpeYSL4D_fzqo,795
|
|
41
|
-
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=
|
|
41
|
+
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=OLDgmacimWQAVup3AwBbWu4BYiL65Bk3JkwekTAMWBo,17233
|
|
42
42
|
mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
|
|
43
43
|
mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
|
|
44
44
|
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=-1CE0KIEY3IZjMfSoVCNUpe_yASU7rBnpVvEmpU13AQ,3941
|
|
@@ -59,12 +59,12 @@ mindsdb/api/executor/utilities/sql.py,sha256=vULbEMKN3ZB5RULqC_VPRhuROQ0_CotHYqA
|
|
|
59
59
|
mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
60
|
mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
|
|
61
61
|
mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
|
|
62
|
-
mindsdb/api/http/initialize.py,sha256=
|
|
63
|
-
mindsdb/api/http/start.py,sha256=
|
|
62
|
+
mindsdb/api/http/initialize.py,sha256=DSj6m1mgNay3JNYwWsmvQ1-CKy0xfc8e8TkYMU-Wzlw,16605
|
|
63
|
+
mindsdb/api/http/start.py,sha256=tD_ImE2kbGAJk3wFX6s5ezCavd2LRJ2qU9U2tOVSQLo,2389
|
|
64
64
|
mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
|
|
65
65
|
mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
66
|
mindsdb/api/http/namespaces/agents.py,sha256=H3C4MmNCsrk3Dv8Cw1kx0j7EvNOia5PfyfQYuElgczE,18984
|
|
67
|
-
mindsdb/api/http/namespaces/analysis.py,sha256=
|
|
67
|
+
mindsdb/api/http/namespaces/analysis.py,sha256=5MyWZ40VCVoeHNF46DhIu-gQ2TDU_EJiqSEtc9n1oX0,4290
|
|
68
68
|
mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
|
|
69
69
|
mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
|
|
70
70
|
mindsdb/api/http/namespaces/config.py,sha256=tC7MItEt_hjpG1O8-y85sEqPtwX_iPj7mNdTQ6zSg-0,8785
|
|
@@ -79,7 +79,7 @@ mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-
|
|
|
79
79
|
mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
|
|
80
80
|
mindsdb/api/http/namespaces/sql.py,sha256=oLBc1DHQS9aTb5jy4jxg5WYQQe40aqohr6Yr_1St5vY,6073
|
|
81
81
|
mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
|
|
82
|
-
mindsdb/api/http/namespaces/tree.py,sha256=
|
|
82
|
+
mindsdb/api/http/namespaces/tree.py,sha256=_lWGp4wrX19GnqVD36U-ZmZiHfMIwlSAf9fIUYc9LYg,3812
|
|
83
83
|
mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
|
|
84
84
|
mindsdb/api/http/namespaces/views.py,sha256=bSoCOJQq-xyWdOpNRA1YyOSlYHTHHYIZgd8m4E_rvy0,6226
|
|
85
85
|
mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
|
|
@@ -154,11 +154,10 @@ mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaD
|
|
|
154
154
|
mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
155
|
mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
|
|
156
156
|
mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
-
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=
|
|
157
|
+
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=Onj9IlD_lZgm6Wc5IE2aW9YXzTIOQrkk7odT-mSKU_k,35694
|
|
158
158
|
mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
159
|
mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
|
|
160
160
|
mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
|
|
161
|
-
mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py,sha256=EPdgPoazneHngvbeBcAHzK3kLmUOOeZoGyJepYDO_P4,4436
|
|
162
161
|
mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py,sha256=TxhoWBkpVJShG-tPLDd4_7xhz-CtjoWBtq83k5U4oEc,75
|
|
163
162
|
mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=uUOaAJfmSIcZYLT4dppnbRun7Uawd5x_09bJfIN2EUs,1003
|
|
164
163
|
mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -188,7 +187,7 @@ mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzp
|
|
|
188
187
|
mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
189
188
|
mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=eCDaSXJJIZ45V24OUk9tlnXVUmlNtRyECraddhFXRiQ,42062
|
|
190
189
|
mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
|
|
191
|
-
mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=
|
|
190
|
+
mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=C4DQ9yB8KUeQM-OsHcSTfHpyNufV5qnyoStKc6nR7wE,334
|
|
192
191
|
mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
|
|
193
192
|
mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
193
|
mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
|
|
@@ -200,7 +199,7 @@ mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8
|
|
|
200
199
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
|
|
201
200
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
|
|
202
201
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py,sha256=YzwqqOdkSqdWp_E_IY-UIkPpv0SakABZ7EsUdYtKFKo,1093
|
|
203
|
-
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256
|
|
202
|
+
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py,sha256=LB1zEgsI0U_9rLdwVED0VQRz7AWR1EuCLDsR-WF1CTw,40739
|
|
204
203
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py,sha256=3qpSK3UWHW-Uo1qjgnz51aGPDCcVDfvQBcsmE932A8Y,626
|
|
205
204
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py,sha256=VDdUFydhXPrDyFD4iy_BHF4e9COXElcqmTBRqwYofKU,8422
|
|
206
205
|
mindsdb/api/postgres/postgres_proxy/utilities/__init__.py,sha256=3RdLBT2FuJ1jzjysirDmfzQ0ocRcrhKONrJw2XQB2PQ,259
|
|
@@ -322,7 +321,7 @@ mindsdb/integrations/handlers/bigquery_handler/__init__.py,sha256=N-BxcX5Q_JCNic
|
|
|
322
321
|
mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py,sha256=TaRObxvb1tlcCWVvMpA8n5axAhHKX6U9_OrGCBY00fs,6896
|
|
323
322
|
mindsdb/integrations/handlers/bigquery_handler/connection_args.py,sha256=KoiLPxD5OAJ94ylnUzt7I2aFayXIGyOkvJE9czfy6KI,821
|
|
324
323
|
mindsdb/integrations/handlers/bigquery_handler/icon.svg,sha256=GaVq64_j0x2g0qfJo56_0m2ldHZZgfKP3KrTfqiGpfg,2303
|
|
325
|
-
mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=
|
|
324
|
+
mindsdb/integrations/handlers/bigquery_handler/requirements.txt,sha256=l8BgEzlWWL_88GeLfV3Dp40Am3DUNuDlVkgnH9jJccM,131
|
|
326
325
|
mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
326
|
mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py,sha256=NIKmL53wA4AjWxd3BgR7GYAfoYYvVjPGa6Owvpy0WuA,7489
|
|
328
327
|
mindsdb/integrations/handlers/binance_handler/__about__.py,sha256=sRDhFENBpGgEy14erGnc-_KecQcR6O7yAGSUIY_ZWfQ,348
|
|
@@ -357,7 +356,7 @@ mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2J
|
|
|
357
356
|
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=zBQ-Nl1aQqZFJbVo1W8-cxuLsPkqP6W01edZ1IXUByo,18704
|
|
358
357
|
mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
|
|
359
358
|
mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
|
|
360
|
-
mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=
|
|
359
|
+
mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=74shT4HXgWhY9USh902gDPUo7SvgHZZ2u9V13jkdC_E,99
|
|
361
360
|
mindsdb/integrations/handlers/chromadb_handler/settings.py,sha256=X2InXMtGB5rwTgPIhKCw7h83dzH2n89P0QjsoZv8p0Q,1994
|
|
362
361
|
mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
362
|
mindsdb/integrations/handlers/ckan_handler/__about__.py,sha256=asp1VEDXJCLipP3uoPK7Q_qXIODhH89pJqQyjv6P3WE,337
|
|
@@ -670,7 +669,7 @@ mindsdb/integrations/handlers/gmail_handler/__init__.py,sha256=2Ed7Pfbdz56spFnl9
|
|
|
670
669
|
mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=ICSjOPrCxpOQEpXLkyjm-osa-9fhm_tf77iekhqAsTo,780
|
|
671
670
|
mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=IEsMHrzgyWEiiLYN1oJGOg4uEtvqw_1TdwoaJE98JuM,18088
|
|
672
671
|
mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHrma_Ho8dyXNTAgXnQK25hYD4,862
|
|
673
|
-
mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=
|
|
672
|
+
mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
|
|
674
673
|
mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
675
674
|
mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py,sha256=wjJHWn2jBFHm4gBtuVSoc4MdFoIy54jkfnCbPz77KHc,1479
|
|
676
675
|
mindsdb/integrations/handlers/google_analytics_handler/__about__.py,sha256=68QyRQWAMw0MGDM64tuGkSrjepQmQKQea5zvfw0r0Aw,369
|
|
@@ -678,7 +677,7 @@ mindsdb/integrations/handlers/google_analytics_handler/__init__.py,sha256=ynl-z1
|
|
|
678
677
|
mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py,sha256=-u--wXJwBMBfToVa0Vtx_tPPty9q8X4hkCCy_LCV3j4,4706
|
|
679
678
|
mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py,sha256=ya4ZEvj4piomTQhICWLG-GIMUzZwiXvmsdT7ZTNaylU,10186
|
|
680
679
|
mindsdb/integrations/handlers/google_analytics_handler/icon.svg,sha256=wDK8PISrdQpdaPBZZpzkC-tXNlxKccBtYRUy99mvDvY,1066
|
|
681
|
-
mindsdb/integrations/handlers/google_analytics_handler/requirements.txt,sha256=
|
|
680
|
+
mindsdb/integrations/handlers/google_analytics_handler/requirements.txt,sha256=8-uBXk0JSITMEupHUDVG4iyYu7o3G_Krfepp-uleXpQ,59
|
|
682
681
|
mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
683
682
|
mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py,sha256=cHXwGAuWmuroN-x_b0YKWgGD4ax0Vad3V4xzgHDgqSU,1815
|
|
684
683
|
mindsdb/integrations/handlers/google_books_handler/__about__.py,sha256=O5UgmDgG_LDRCZi_Jyc4wZLcYsWzPL6BJIkRFxjm2Do,379
|
|
@@ -686,7 +685,7 @@ mindsdb/integrations/handlers/google_books_handler/__init__.py,sha256=6qKoU8qvFL
|
|
|
686
685
|
mindsdb/integrations/handlers/google_books_handler/google_books_handler.py,sha256=_GGQMKamWOaTpKn0NS-A27RNjfYVKvRoefm74Y-xZdY,6901
|
|
687
686
|
mindsdb/integrations/handlers/google_books_handler/google_books_tables.py,sha256=knoFrJ1fo6lvDCywk5QbM21ohrgcEHZFd2BwTAE5eDU,6268
|
|
688
687
|
mindsdb/integrations/handlers/google_books_handler/icon.svg,sha256=PNUyfFJEaEAgCxmomXG_1SYW9VaSF5zilZi6X9Xuhls,962
|
|
689
|
-
mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=
|
|
688
|
+
mindsdb/integrations/handlers/google_books_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
|
|
690
689
|
mindsdb/integrations/handlers/google_books_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
691
690
|
mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py,sha256=tuww8tSsOPizyjPEcHcu7E73q08ErErQbXBSKxw9fWY,1487
|
|
692
691
|
mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZz9sTlrSoW5FIUbFZqmW4WD1BNe-66IC1hj6Vs,388
|
|
@@ -695,7 +694,7 @@ mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=
|
|
|
695
694
|
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=o-iXM8SNuRmoFxJJt8RlRVMqhbjqSYlT3xALifsZLfw,10851
|
|
696
695
|
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=SWioh20npLHBTJu8XsYIImdWZ2mgs34pcvPrudCmOjs,8111
|
|
697
696
|
mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
|
|
698
|
-
mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=
|
|
697
|
+
mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=sGapIrHWuar-fikT8mebJCAXB8BCDcEoPWmyF9MVxz8,106
|
|
699
698
|
mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
700
699
|
mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py,sha256=Tv1O__exOy2k58VNAG3LQgOUKICIUt_-RpqAzuGiiRA,2215
|
|
701
700
|
mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py,sha256=kUidXzaoLPxNOiywhLPrUFjG4JZl8krOHzS0QMWl7Tg,424
|
|
@@ -704,7 +703,7 @@ mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py
|
|
|
704
703
|
mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py,sha256=iRAdruNYOo7Qo7_RxccRD9sO35hZp1RUUgYneLoLAkM,15706
|
|
705
704
|
mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py,sha256=KnTbG2iq2IzTKu0LWBZXCKw5xRRBqG9VawKwy1csFKc,14279
|
|
706
705
|
mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg,sha256=q8FcSns7BbYLiMtErVngNMkLGXbjxeeP8IuKIGhKKJA,2651
|
|
707
|
-
mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt,sha256=
|
|
706
|
+
mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
|
|
708
707
|
mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
709
708
|
mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py,sha256=0yOsRSpKCGiHAKpe9m7g7HENYY2vcCPVk6sP1k5wLsI,2436
|
|
710
709
|
mindsdb/integrations/handlers/google_fit_handler/__about__.py,sha256=f6IFxoETFim29W0z7BPQG57SWBNyy838DTuBY_68I6k,358
|
|
@@ -712,7 +711,7 @@ mindsdb/integrations/handlers/google_fit_handler/__init__.py,sha256=ZzcJSVhfMTx5
|
|
|
712
711
|
mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py,sha256=w2tKHb9SR6bvH_4-Xys-Xzpep7vWgxVKnHt-8sZI6vA,6619
|
|
713
712
|
mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py,sha256=H9_iidTDuqh5vonMbxaNSqUZ3xnRZcdjKRzN1gm9bjU,2496
|
|
714
713
|
mindsdb/integrations/handlers/google_fit_handler/icon.svg,sha256=3ZgBVbln5KXnYpVLDTbYDGfQp_hUGW3W0GJGVJUjQ98,1511
|
|
715
|
-
mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=
|
|
714
|
+
mindsdb/integrations/handlers/google_fit_handler/requirements.txt,sha256=XAgJL2biwLXpTpn7NBWXVYxtpUTh0zKHFm2bgjhXAWU,80
|
|
716
715
|
mindsdb/integrations/handlers/google_gemini_handler/__about__.py,sha256=6wu9JKGI5scaFTcO59kcrQ1F6ooVaaPeS3-sYxOYojI,374
|
|
717
716
|
mindsdb/integrations/handlers/google_gemini_handler/__init__.py,sha256=EUCAGAXFNB-VuxjGG-knqIVPIAZ_ujj57rd_1yxr0Gk,617
|
|
718
717
|
mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py,sha256=9wsvVDBdcB39_vpYxZNzqY5C2cC3iNv1KORV9abBK1A,14235
|
|
@@ -724,7 +723,7 @@ mindsdb/integrations/handlers/google_search_handler/connection_args.py,sha256=HS
|
|
|
724
723
|
mindsdb/integrations/handlers/google_search_handler/google_search_handler.py,sha256=IYGAuZUcOKriVkRFCyXPtIgT87rteXnxTYB_qVlpDkk,7682
|
|
725
724
|
mindsdb/integrations/handlers/google_search_handler/google_search_tables.py,sha256=faXQl06-MdO3EzzyQh4PQjag6g30VyFvbGGd6699Cio,7375
|
|
726
725
|
mindsdb/integrations/handlers/google_search_handler/icon.svg,sha256=Dsio_gu-jTENejm6qPAAfAvarnRDUocgqmMtjCuyw6U,3303
|
|
727
|
-
mindsdb/integrations/handlers/google_search_handler/requirements.txt,sha256=
|
|
726
|
+
mindsdb/integrations/handlers/google_search_handler/requirements.txt,sha256=ycVjx_AXPug2REKnXTE39Dg4VzpcWF1yHf2_xtaYbn4,36
|
|
728
727
|
mindsdb/integrations/handlers/google_search_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
729
728
|
mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py,sha256=V-jX_GbRwpu7lq8l-4Kf5x-PTxyXL5TaWsnX5nfIkUM,2178
|
|
730
729
|
mindsdb/integrations/handlers/greptimedb_handler/__about__.py,sha256=dqfX5vPUkk2ilQY9jy3BO0WN3pwcqTRa8mCNnQKg6CA,345
|
|
@@ -843,7 +842,10 @@ mindsdb/integrations/handlers/intercom_handler/intercom_tables.py,sha256=GKEJEhu
|
|
|
843
842
|
mindsdb/integrations/handlers/jira_handler/__about__.py,sha256=qP5rGBzzyFBTJnGNCeyOjiBlzfYjt26PU6bw_8MJQOQ,337
|
|
844
843
|
mindsdb/integrations/handlers/jira_handler/__init__.py,sha256=-WxcLvQvLWii6lNY6-nlNwwkMBSMg8n97pleTAflrQY,509
|
|
845
844
|
mindsdb/integrations/handlers/jira_handler/icon.svg,sha256=mv8Ee-sh3YbNrGHgdQdgazMICVjU1StIu1Y41H9SjRc,1246
|
|
846
|
-
mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=UXlwCX728lR_YZg4ipb7hkCyUcH710nIpPirR7s_xdA,2266
|
|
845
|
+
mindsdb/integrations/handlers/jira_handler/jira_handler.archived.py,sha256=UXlwCX728lR_YZg4ipb7hkCyUcH710nIpPirR7s_xdA,2266
|
|
846
|
+
mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=9ruKV-RRjQWTfrx8bRCg64_cvYifwytmfjihNGy0p8g,5365
|
|
847
|
+
mindsdb/integrations/handlers/jira_handler/jira_tables.py,sha256=_9ZfQwQkH4z5ZIW0oJ3KX_90FIVsTr72xK7bQXw4-pw,7419
|
|
848
|
+
mindsdb/integrations/handlers/jira_handler/requirements.txt,sha256=vVWJtxeUJEMAttQBlw2Sd7la-QjEo7Vb1yfIKWighOs,20
|
|
847
849
|
mindsdb/integrations/handlers/kinetica_handler/__about__.py,sha256=t4T3AR68hK91GASSzoP8aWSbbtmszFC0-i7Nb8UVIgs,344
|
|
848
850
|
mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=xGpX3Z4sE32AqOPHJ09Vhh-9tvjusZACBCAUwTv8hDI,683
|
|
849
851
|
mindsdb/integrations/handlers/kinetica_handler/connection_args.py,sha256=3AaekEw24nX7mmRsqrYfs0M4jCVQ4VvdRHQDFRBosxs,1682
|
|
@@ -895,14 +897,14 @@ mindsdb/integrations/handlers/lightfm_handler/__init__.py,sha256=f-fMTNsGErwLMvj
|
|
|
895
897
|
mindsdb/integrations/handlers/lightfm_handler/helpers.py,sha256=N7hYwxcyjPxlVf2G4c2KTtlxQaBet1lbHiR5kNwFG8M,5263
|
|
896
898
|
mindsdb/integrations/handlers/lightfm_handler/icon.svg,sha256=_KcxXXP005uyyLsAIHfRahtW82RkNnfw2L1ywQIuV3A,1678
|
|
897
899
|
mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py,sha256=CECVhsWFGAyXQjsKGPPOwQQjjnB0KSOQSLbG9WjRLCc,6794
|
|
898
|
-
mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=
|
|
900
|
+
mindsdb/integrations/handlers/lightfm_handler/requirements.txt,sha256=byOltfkHeBtVGbjzPwloIwDTQoIBDjSrCychMh8GUJo,36
|
|
899
901
|
mindsdb/integrations/handlers/lightfm_handler/settings.py,sha256=0iwjsbfzYwBsCizVymXn-vwhOYrES7Hm0MEmiviGP4I,143
|
|
900
902
|
mindsdb/integrations/handlers/lightwood_handler/__about__.py,sha256=9SiT20BQuKEgzGSxhDunieyX33S5XS0cst9MxDfw-1o,345
|
|
901
903
|
mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfef9lCHd7293J6GEEZRXLP5Jp07KkvOc,504
|
|
902
904
|
mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=WkeI0J19WPh_36wZvezpnV2SW6wc9tEkumKil3qTB-4,9139
|
|
903
905
|
mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
|
|
904
|
-
mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=
|
|
905
|
-
mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=
|
|
906
|
+
mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=hCqycB1NzQi33gXvpigy4Q1IYy-z2sCq6Eq4UiMXOro,23607
|
|
907
|
+
mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=jEN0TN09G2-yFrr5FSEMjEVZFnkoS7nu2lJrJdjVBLI,91
|
|
906
908
|
mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
|
|
907
909
|
mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
908
910
|
mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=kQlcLZqpZEgn03-SMGOxHS5Z-2ayOO-wyaU_r4d-754,10985
|
|
@@ -910,7 +912,7 @@ mindsdb/integrations/handlers/lindorm_handler/__about__.py,sha256=2V9KbVFWmQ2v98
|
|
|
910
912
|
mindsdb/integrations/handlers/lindorm_handler/__init__.py,sha256=jZNxAhQpnXT6u7E72ZFPugYsbH5Fw-TH_JbHWRDWEY4,534
|
|
911
913
|
mindsdb/integrations/handlers/lindorm_handler/icon.svg,sha256=Zj6gBi36Sf8YPQP0mYWr0YMznOeHdMNECasW_-C4o7g,1293
|
|
912
914
|
mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py,sha256=OWKgOVxsVHA6TyhCXfKTh5Q1fLh4-GCkwrDuw507_Eg,6707
|
|
913
|
-
mindsdb/integrations/handlers/lindorm_handler/requirements.txt,sha256=
|
|
915
|
+
mindsdb/integrations/handlers/lindorm_handler/requirements.txt,sha256=gnFyFuCLPdeDlN9PlotCbHNKyeVb9xR2ptVKxezuWa8,36
|
|
914
916
|
mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
915
917
|
mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha256=odnriKTV2M0T-dExrDM2iZFmDyVXXnfqznHWFAQOMco,1037
|
|
916
918
|
mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
|
|
@@ -1038,13 +1040,14 @@ mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z
|
|
|
1038
1040
|
mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=wncgJ7BXsFNRMn3aJLhtwZIaDCeoeHdBpCmg_dzm_Vg,3516
|
|
1039
1041
|
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8Xi8rKFWpEsDw5mzqgR7IW4wEbk-TBNqNqOj4350gL4,9333
|
|
1040
1042
|
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=rBD6sEli8XP-cxTogFu2J7ScO_WTw1gM-6gZm2P8lsc,2802
|
|
1043
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/requirements.txt,sha256=8R8PuNfdoud8HqxiFGWQGPxloaJqw_qmF0a8blYJPIs,89
|
|
1041
1044
|
mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
|
|
1042
1045
|
mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
|
|
1043
1046
|
mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
|
|
1044
1047
|
mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=QBB_0aQKbjTq0Y9nHX9Xk3QTRF4Bp-owHrkpxHj4SAg,15855
|
|
1045
1048
|
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=yljq2o0ajFCP_Nnxhe6iG033l_L8VRXKPl_iQIlquLI,9827
|
|
1046
1049
|
mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py,sha256=zsrQCrqSKt5JedR2T1q89NvCoZUvD46-3bzWAeXaVs4,13072
|
|
1047
|
-
mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=
|
|
1050
|
+
mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=6jx_GtaB_5uRpqmcNBJwBgPzPMMe9ygj4bRLE2zkwCw,130
|
|
1048
1051
|
mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWRxOrMuktBneTm9JRLeGkZiSSH-EQ,363
|
|
1049
1052
|
mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
|
|
1050
1053
|
mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
|
|
@@ -1122,7 +1125,7 @@ mindsdb/integrations/handlers/openai_handler/creation_args.py,sha256=v1NHiz-tLvA
|
|
|
1122
1125
|
mindsdb/integrations/handlers/openai_handler/helpers.py,sha256=xEezAE-Pmxxsa878vAtO05AxBhLQkT89ShPjBwyZoEs,6843
|
|
1123
1126
|
mindsdb/integrations/handlers/openai_handler/icon.svg,sha256=r5vCiNm9_nL1ZbM1e6PYcTzw9KrgC0hqWT8IAi2pFbE,2625
|
|
1124
1127
|
mindsdb/integrations/handlers/openai_handler/model_using_args.py,sha256=c5NBe6RGkRGVOLhc7Ksq3M3w96Kd9KECO6T01j7VS90,76
|
|
1125
|
-
mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=
|
|
1128
|
+
mindsdb/integrations/handlers/openai_handler/openai_handler.py,sha256=NjHJQzCFgTd3QZpdtvr7CMMxtyUbcnvavBcQ5RvzX5s,49206
|
|
1126
1129
|
mindsdb/integrations/handlers/openai_handler/requirements.txt,sha256=u06ahGd1EskIW_Yy-5Y_jNLNbN1CtF9N3ylGPPOPBLA,9
|
|
1127
1130
|
mindsdb/integrations/handlers/openai_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1128
1131
|
mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py,sha256=W3b39JCQfCF_IXUS98j7KqTqIzeYne9RDba33AxM774,18651
|
|
@@ -1407,7 +1410,7 @@ mindsdb/integrations/handlers/snowflake_handler/__about__.py,sha256=O2reZn6Jc5N1
|
|
|
1407
1410
|
mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DIgRy6XdrGgBjTf_H5G514XYH0fGFYsw,609
|
|
1408
1411
|
mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
|
|
1409
1412
|
mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
|
|
1410
|
-
mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=
|
|
1413
|
+
mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=jPONiX7mUekXJMK0Tv1A5fhSAR2Vkc-_4E_pCDJo068,71
|
|
1411
1414
|
mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=B_QRuLXo-5YBg2294bifAd3asN_sHt8EdXVfYYsud1E,14715
|
|
1412
1415
|
mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
|
|
1413
1416
|
mindsdb/integrations/handlers/solace_handler/__init__.py,sha256=hotuL8W79n-H943a40Q94jm2S1he08VM68nTbVFIKPY,480
|
|
@@ -1596,7 +1599,7 @@ mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py,sha256=Q
|
|
|
1596
1599
|
mindsdb/integrations/handlers/vertex_handler/__about__.py,sha256=SCffhHdeD6ZuszymGrBBPfoo-k2Yj8-Yx4PzjW855XQ,350
|
|
1597
1600
|
mindsdb/integrations/handlers/vertex_handler/__init__.py,sha256=LJCNEoHxKyxi4FzyqwIxPXZXfuBX7-FEGlROGEtEbnI,498
|
|
1598
1601
|
mindsdb/integrations/handlers/vertex_handler/icon.png,sha256=EWxLkZkclLeq83BfYAy8OV8ijKPPXmAKWJ3ltMpbLRs,23708
|
|
1599
|
-
mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=
|
|
1602
|
+
mindsdb/integrations/handlers/vertex_handler/requirements.txt,sha256=iTc66wzuOVy_ugDXcckpDrPiey9CY5UVWB8e4Wte01Q,113
|
|
1600
1603
|
mindsdb/integrations/handlers/vertex_handler/vertex_client.py,sha256=5a1H4QzhnCnBsPdiHdR-zN-B4Gjkt6BzXdHzZKbibwU,3903
|
|
1601
1604
|
mindsdb/integrations/handlers/vertex_handler/vertex_handler.py,sha256=9MmbCzJrXtMlSis9LpjlNsamuSWQ9PhTTl5D0WhHTXk,3924
|
|
1602
1605
|
mindsdb/integrations/handlers/vertica_handler/__about__.py,sha256=11Aa7YF_-bkqrVZ4D2tNwZpfa-kEt5QpaLKKVnS_WYA,343
|
|
@@ -1657,7 +1660,7 @@ mindsdb/integrations/handlers/youtube_handler/__about__.py,sha256=mhUWf5rM8hmHZs
|
|
|
1657
1660
|
mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=wz69UgXa3njxAci8Srh7FaIW2eLNuz45LR0sNiCux3I,583
|
|
1658
1661
|
mindsdb/integrations/handlers/youtube_handler/connection_args.py,sha256=08xO6KHfAlFvgSq9QU6PxWDk9AmmPgXdx41ayKxHGAI,923
|
|
1659
1662
|
mindsdb/integrations/handlers/youtube_handler/icon.svg,sha256=uvNffuRPGVzPxWkbZzkSrw2SHm8M8c4GbeypiHPWDss,954
|
|
1660
|
-
mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=
|
|
1663
|
+
mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=1TSFkd3bOkjfohLD9ZRIynuQGqAyyL-qZjZC_BWapJU,129
|
|
1661
1664
|
mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=FewpJAHZyYJItt2qKaHjXpZwajpxMAWAD6DibVWic5Y,4217
|
|
1662
1665
|
mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=-PiJbjpqoWjh-sdf-EiJ9nyan7DfmkNmPvROzHYgZjA,16797
|
|
1663
1666
|
mindsdb/integrations/handlers/yugabyte_handler/__about__.py,sha256=tVimKqXLHCbBZFeVs2_LfbwaXt3oOBx2k_fTbiu4uwU,350
|
|
@@ -1727,7 +1730,7 @@ mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-
|
|
|
1727
1730
|
mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
|
|
1728
1731
|
mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
|
|
1729
1732
|
mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1730
|
-
mindsdb/integrations/utilities/files/file_reader.py,sha256=
|
|
1733
|
+
mindsdb/integrations/utilities/files/file_reader.py,sha256=rqL4XgeLRaBE3B0rFfMm6zNctMJs-IHV5_tTqnqqpww,11508
|
|
1731
1734
|
mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1732
1735
|
mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=zkvVb54zxtn4_NSwqCD-SVQG_5JI9EYRygb6EABQu7g,43
|
|
1733
1736
|
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
|
|
@@ -1781,9 +1784,9 @@ mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVG
|
|
|
1781
1784
|
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1782
1785
|
mindsdb/interfaces/agents/agents_controller.py,sha256=NwqgRlZ1XyZggxLI98x0xVt2vyqrefqrzN6ZvXoU6kU,18318
|
|
1783
1786
|
mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
|
|
1784
|
-
mindsdb/interfaces/agents/constants.py,sha256=
|
|
1787
|
+
mindsdb/interfaces/agents/constants.py,sha256=2UD4YaxhkDkwqAqCbIRGQH53vuOWq8Khjb_Y99Ijtn8,5022
|
|
1785
1788
|
mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
|
|
1786
|
-
mindsdb/interfaces/agents/langchain_agent.py,sha256=
|
|
1789
|
+
mindsdb/interfaces/agents/langchain_agent.py,sha256=1yWg_vTSG-kQkBV5wV7stySVgBBLqY2Zq3ByW1UhsRs,27682
|
|
1787
1790
|
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
|
|
1788
1791
|
mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
|
|
1789
1792
|
mindsdb/interfaces/agents/mcp_client_agent.py,sha256=9oki-GDsN1H6fYsNLBQWTMYSHGpWliYF9I5AZSuXS8U,9814
|
|
@@ -1803,27 +1806,27 @@ mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
1803
1806
|
mindsdb/interfaces/database/database.py,sha256=ax8GlviJpdTyufQvBfy0ft4H8pxH7w4hp_ejNY_aYHM,4356
|
|
1804
1807
|
mindsdb/interfaces/database/integrations.py,sha256=B4dfcOCsUMKgX5teNEGrXwUBnrX5L2sUP34XvbUaSdk,36825
|
|
1805
1808
|
mindsdb/interfaces/database/log.py,sha256=lRfYgAAeKXT6f8S-b_-sjqn99lZOgSCDAazLeJgXdF4,11076
|
|
1806
|
-
mindsdb/interfaces/database/projects.py,sha256=
|
|
1809
|
+
mindsdb/interfaces/database/projects.py,sha256=Kgi2PJmKQ9AVqnjpNhomSJCcmucSAXj9qE7XMIydtOk,16463
|
|
1807
1810
|
mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
|
|
1808
1811
|
mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1809
1812
|
mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2uARKGp_NWBkKY,8626
|
|
1810
1813
|
mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1811
|
-
mindsdb/interfaces/functions/controller.py,sha256=
|
|
1812
|
-
mindsdb/interfaces/functions/to_markdown.py,sha256=
|
|
1814
|
+
mindsdb/interfaces/functions/controller.py,sha256=jFzu8Glz8CyeOFYiLMAEqetW6feV9XCENUW66lBBGQI,7400
|
|
1815
|
+
mindsdb/interfaces/functions/to_markdown.py,sha256=labr_DTrl8dDKNgusZM0Nf6ISXkemeSAlSR04ddI_rU,2847
|
|
1813
1816
|
mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1814
1817
|
mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
|
|
1815
1818
|
mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
|
|
1816
1819
|
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1817
|
-
mindsdb/interfaces/knowledge_base/controller.py,sha256=
|
|
1818
|
-
mindsdb/interfaces/knowledge_base/utils.py,sha256=
|
|
1820
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=0Eiq2vig_05azth4zI4UO7ygqYAkx3u-2ab7rxckPCw,45496
|
|
1821
|
+
mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
|
|
1819
1822
|
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1820
1823
|
mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
|
|
1821
1824
|
mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
|
|
1822
|
-
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=
|
|
1825
|
+
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=dWcsNNMHntcVcbUKnbFhtjDGLxZwVVjGO5Ao-q7TsWQ,14477
|
|
1823
1826
|
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
|
|
1824
1827
|
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1825
1828
|
mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
|
|
1826
|
-
mindsdb/interfaces/model/model_controller.py,sha256=
|
|
1829
|
+
mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
|
|
1827
1830
|
mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1828
1831
|
mindsdb/interfaces/query_context/context_controller.py,sha256=PlC4skYCQpEbNKkbcNgcPhSmf4uT03We58FYbGtUMvE,17564
|
|
1829
1832
|
mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
|
|
@@ -1832,7 +1835,7 @@ mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-
|
|
|
1832
1835
|
mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
|
|
1833
1836
|
mindsdb/interfaces/skills/skill_tool.py,sha256=jRZmgGiPMS5R7sanW_XtfT-hS_Y_7kJt67-VeGvpnds,13305
|
|
1834
1837
|
mindsdb/interfaces/skills/skills_controller.py,sha256=cNblNQNOJXQkuXq0q2g7-OmAFG-QoBbRign6gHt6NLg,6319
|
|
1835
|
-
mindsdb/interfaces/skills/sql_agent.py,sha256=
|
|
1838
|
+
mindsdb/interfaces/skills/sql_agent.py,sha256=60Kqic-6Hj5YxLCqAqD7LPUPgNqcLnUC8DVeMpiRQcQ,16042
|
|
1836
1839
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1837
1840
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1838
1841
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
|
|
@@ -1857,7 +1860,7 @@ mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
|
|
|
1857
1860
|
mindsdb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1858
1861
|
mindsdb/migrations/alembic.ini,sha256=NdEIqmmxo5mIPQYbimTMVJ3VRay5BBs0PM1XsaAr1Gw,2193
|
|
1859
1862
|
mindsdb/migrations/env.py,sha256=Nb4LF9rwlONJSoJOm8A3oMCblLuoQ7bszubgBUYj9f8,2219
|
|
1860
|
-
mindsdb/migrations/migrate.py,sha256=
|
|
1863
|
+
mindsdb/migrations/migrate.py,sha256=8Hfgjd7swAEAdqOIioNTxOzxQBLTcQMd3vE2JeRwMzg,1692
|
|
1861
1864
|
mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py,sha256=SdJFsF-awdH0vvyJ_cku-QggiSZAn0x1PHNF_3YgMFk,5871
|
|
1862
1865
|
mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py,sha256=VKgouePcADnmsp-AyxILjOhPVTvIZccorsH_UJN0V7E,1050
|
|
1863
1866
|
mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py,sha256=ZBqlmRK3mqvLtzFaA1AqF-rlXCPyc45wG3l1S1COs5A,10817
|
|
@@ -1921,19 +1924,20 @@ mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
1921
1924
|
mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1922
1925
|
mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
|
|
1923
1926
|
mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
|
|
1924
|
-
mindsdb/utilities/config.py,sha256=
|
|
1925
|
-
mindsdb/utilities/context.py,sha256=
|
|
1927
|
+
mindsdb/utilities/config.py,sha256=mboQUo8eFQvYVF4v4h3A394D0fiyL1I7dwFy41TEVQM,22240
|
|
1928
|
+
mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
|
|
1926
1929
|
mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
|
|
1927
1930
|
mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
|
|
1928
1931
|
mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
|
|
1929
|
-
mindsdb/utilities/functions.py,sha256=
|
|
1932
|
+
mindsdb/utilities/functions.py,sha256=xAlSAmgWMosCYoBI2mZyEyIrz0RAJaPTiFDq2sQVIeI,5279
|
|
1930
1933
|
mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
|
|
1931
|
-
mindsdb/utilities/langfuse.py,sha256=
|
|
1934
|
+
mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY,9528
|
|
1932
1935
|
mindsdb/utilities/log.py,sha256=krqJoAsKrrg9bk8X0QfCbbk7CN_f7BS6wm-0aVjkrGc,4401
|
|
1933
1936
|
mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
|
|
1934
1937
|
mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
|
|
1935
1938
|
mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
|
|
1936
1939
|
mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
|
|
1940
|
+
mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
|
|
1937
1941
|
mindsdb/utilities/starters.py,sha256=S9GXhgGCAgqyvxxP-Fqj_LCTRqAK5FdNyVi8Ele6ywE,1104
|
|
1938
1942
|
mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
|
|
1939
1943
|
mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
|
|
@@ -1946,17 +1950,18 @@ mindsdb/utilities/ml_task_queue/consumer.py,sha256=jYORLKMdWKYGUgIIRcnY-RSI3JSA2
|
|
|
1946
1950
|
mindsdb/utilities/ml_task_queue/producer.py,sha256=x0s1_xcqtUaT5Og0TdErgWmN1Jp236byzvd2N2HMO34,2764
|
|
1947
1951
|
mindsdb/utilities/ml_task_queue/task.py,sha256=h6PimSa_AXFo_xvEJGvhDhxiCI54VN2VebVQn0QpAsQ,3166
|
|
1948
1952
|
mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
|
|
1949
|
-
mindsdb/utilities/otel/__init__.py,sha256=
|
|
1953
|
+
mindsdb/utilities/otel/__init__.py,sha256=XjZOMBZxyU6mK-NSb8fdrJcxlByVI8Qf6WZuqGy3Lm8,838
|
|
1950
1954
|
mindsdb/utilities/otel/logger.py,sha256=o-bWPUinZS0yz2G89oxVD4qXgi0oo5gXHJI4aT7sejY,892
|
|
1951
1955
|
mindsdb/utilities/otel/meter.py,sha256=oJDoBaU76kF6nenJxZIS08IIz-7GFM3enSKQoeJ6oqI,597
|
|
1956
|
+
mindsdb/utilities/otel/prepare.py,sha256=CK4ra8SV9VOOa70w2CqVvcxoA-EbvmX-LBDLjc6kldM,7145
|
|
1952
1957
|
mindsdb/utilities/otel/tracer.py,sha256=BBdVTwxpF0gP6uDbwJSj49OjIJOF-giyVRd0yR9p8Tc,679
|
|
1953
|
-
mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=
|
|
1958
|
+
mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=4YH6YwclsYLjBPBM-e9OAfzFDIxzV8WfqJTueV-TRj8,885
|
|
1954
1959
|
mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
|
|
1955
1960
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1956
1961
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1957
1962
|
mindsdb/utilities/render/sqlalchemy_render.py,sha256=6NqOcfz19dhd0PEyNfOtNHsBt1fGjq2E3nFNUad5HOk,31444
|
|
1958
|
-
mindsdb-25.
|
|
1959
|
-
mindsdb-25.
|
|
1960
|
-
mindsdb-25.
|
|
1961
|
-
mindsdb-25.
|
|
1962
|
-
mindsdb-25.
|
|
1963
|
+
mindsdb-25.5.3.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1964
|
+
mindsdb-25.5.3.0.dist-info/METADATA,sha256=k9FCIeu9ylUemIY1bKvDVGLkniG5esFGQHdhIUkSoBc,46306
|
|
1965
|
+
mindsdb-25.5.3.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
1966
|
+
mindsdb-25.5.3.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1967
|
+
mindsdb-25.5.3.0.dist-info/RECORD,,
|
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
import re
|
|
2
|
-
|
|
3
|
-
from pyparsing import (
|
|
4
|
-
CaselessKeyword,
|
|
5
|
-
originalTextFor,
|
|
6
|
-
ParseException,
|
|
7
|
-
ParserElement,
|
|
8
|
-
QuotedString,
|
|
9
|
-
ZeroOrMore,
|
|
10
|
-
nestedExpr,
|
|
11
|
-
restOfLine,
|
|
12
|
-
StringEnd,
|
|
13
|
-
Literal,
|
|
14
|
-
SkipTo
|
|
15
|
-
)
|
|
16
|
-
from mindsdb.api.mysql.mysql_proxy.utilities import exceptions as exc
|
|
17
|
-
|
|
18
|
-
RE_INT = re.compile(r'^[-+]?([1-9]\d*|0)$')
|
|
19
|
-
RE_FLOAT = re.compile(r'^[-+]?([1-9]\d*\.\d*|0\.|0\.\d*)$')
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
class SqlStatementParser():
|
|
23
|
-
def __init__(self, text):
|
|
24
|
-
self._original_sql = text
|
|
25
|
-
self._sql = SqlStatementParser.clear_sql(text)
|
|
26
|
-
self._keyword = SqlStatementParser.get_keyword(self._sql)
|
|
27
|
-
self._struct = None
|
|
28
|
-
|
|
29
|
-
@property
|
|
30
|
-
def keyword(self):
|
|
31
|
-
return self._keyword
|
|
32
|
-
|
|
33
|
-
@property
|
|
34
|
-
def sql(self):
|
|
35
|
-
return self._sql
|
|
36
|
-
|
|
37
|
-
@property
|
|
38
|
-
def struct(self):
|
|
39
|
-
return self._struct
|
|
40
|
-
|
|
41
|
-
@staticmethod
|
|
42
|
-
def clear_sql(sql: str) -> str:
|
|
43
|
-
''' remove comments from sql
|
|
44
|
-
TODO current implementation is not remove /**/ from mid of string:
|
|
45
|
-
select a, /*comment*/ from b
|
|
46
|
-
'''
|
|
47
|
-
# remove /*comment*/
|
|
48
|
-
ParserElement.defaultWhitespaceChars = (" \t")
|
|
49
|
-
comment = nestedExpr('/*', '*/').suppress()
|
|
50
|
-
starting = ZeroOrMore(comment.suppress())
|
|
51
|
-
ending = ZeroOrMore(comment | ';').suppress() + StringEnd()
|
|
52
|
-
expr = starting + SkipTo(ending) + ending
|
|
53
|
-
sql = expr.transformString(sql)
|
|
54
|
-
|
|
55
|
-
# remove -- and # comments
|
|
56
|
-
oracleSqlComment = Literal("--") + restOfLine
|
|
57
|
-
mySqlComment = Literal("#") + restOfLine
|
|
58
|
-
|
|
59
|
-
expr = (
|
|
60
|
-
originalTextFor(QuotedString("'"))
|
|
61
|
-
| originalTextFor(QuotedString('"'))
|
|
62
|
-
| originalTextFor(QuotedString('`'))
|
|
63
|
-
| (oracleSqlComment | mySqlComment).suppress()
|
|
64
|
-
)
|
|
65
|
-
|
|
66
|
-
sql = expr.transformString(sql)
|
|
67
|
-
sql = sql.strip(' \n\t')
|
|
68
|
-
|
|
69
|
-
return sql
|
|
70
|
-
|
|
71
|
-
@staticmethod
|
|
72
|
-
def get_keyword(sql):
|
|
73
|
-
''' Return keyword of sql statement. Should be one of:
|
|
74
|
-
|
|
75
|
-
start (transaction)
|
|
76
|
-
set (autocommit, names etc)
|
|
77
|
-
use
|
|
78
|
-
show
|
|
79
|
-
delete
|
|
80
|
-
insert
|
|
81
|
-
update
|
|
82
|
-
alter
|
|
83
|
-
select
|
|
84
|
-
rollback
|
|
85
|
-
commit
|
|
86
|
-
explain
|
|
87
|
-
drop
|
|
88
|
-
retrain
|
|
89
|
-
describe
|
|
90
|
-
begin
|
|
91
|
-
|
|
92
|
-
create_predictor
|
|
93
|
-
create_table
|
|
94
|
-
create_datasource
|
|
95
|
-
create_database
|
|
96
|
-
'''
|
|
97
|
-
START, SET, USE, SHOW, DELETE, INSERT, UPDATE, ALTER, SELECT, ROLLBACK, COMMIT, EXPLAIN, CREATE, AI, TABLE, PREDICTOR, VIEW, DATASOURCE, DROP, RETRAIN, DESCRIBE, DATABASE, BEGIN = map(
|
|
98
|
-
CaselessKeyword,
|
|
99
|
-
"START SET USE SHOW DELETE INSERT UPDATE ALTER SELECT ROLLBACK COMMIT EXPLAIN CREATE AI TABLE PREDICTOR VIEW DATASOURCE DROP RETRAIN DESCRIBE DATABASE BEGIN".split()
|
|
100
|
-
)
|
|
101
|
-
CREATE_PREDICTOR = CREATE + PREDICTOR
|
|
102
|
-
CREATE_VIEW = CREATE + VIEW
|
|
103
|
-
CREATE_DATASOURCE = CREATE + DATASOURCE
|
|
104
|
-
CREATE_DATABASE = CREATE + DATABASE
|
|
105
|
-
CREATE_TABLE = CREATE + TABLE
|
|
106
|
-
|
|
107
|
-
expr = (
|
|
108
|
-
START | SET | USE
|
|
109
|
-
| SHOW | DELETE | INSERT
|
|
110
|
-
| UPDATE | ALTER | SELECT
|
|
111
|
-
| ROLLBACK | COMMIT | EXPLAIN
|
|
112
|
-
| CREATE_PREDICTOR
|
|
113
|
-
| CREATE_VIEW | DROP | RETRAIN
|
|
114
|
-
| CREATE_DATASOURCE | DESCRIBE
|
|
115
|
-
| CREATE_DATABASE | CREATE_TABLE | BEGIN
|
|
116
|
-
)('keyword')
|
|
117
|
-
|
|
118
|
-
r = expr.parseString(sql)
|
|
119
|
-
|
|
120
|
-
keyword = '_'.join(r.get('keyword', [])).lower()
|
|
121
|
-
|
|
122
|
-
if keyword == 0:
|
|
123
|
-
raise exc.ErSqlSyntaxError('Cant get keyword from statement')
|
|
124
|
-
|
|
125
|
-
return keyword
|
|
126
|
-
|
|
127
|
-
def ends_with(self, text):
|
|
128
|
-
''' Check if sql ends with 'text'. Not case sensitive.
|
|
129
|
-
'''
|
|
130
|
-
test_sql = ' '.join(self._sql.split()).lower()
|
|
131
|
-
return test_sql.endswith(text.lower())
|
|
132
|
-
|
|
133
|
-
def cut_from_tail(self, text):
|
|
134
|
-
''' Removes 'text' from end of sql. Not case sensitive.
|
|
135
|
-
'''
|
|
136
|
-
text_arr = text.split(' ')
|
|
137
|
-
|
|
138
|
-
ending = CaselessKeyword(text_arr[0])
|
|
139
|
-
for x in text_arr[1:]:
|
|
140
|
-
ending = ending + CaselessKeyword(x)
|
|
141
|
-
ending = ending + StringEnd()
|
|
142
|
-
|
|
143
|
-
expr = (originalTextFor(SkipTo(ending)))('original') + (originalTextFor(ending))('ending')
|
|
144
|
-
|
|
145
|
-
try:
|
|
146
|
-
r = expr.parseString(self._sql)
|
|
147
|
-
except ParseException:
|
|
148
|
-
return False
|
|
149
|
-
|
|
150
|
-
self._sql = r.asDict()['original'].strip()
|
|
151
|
-
return True
|
|
File without changes
|
|
File without changes
|