MindsDB 25.2.4.0__py3-none-any.whl → 25.3.1.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 +15 -0
- mindsdb/api/executor/command_executor.py +1 -1
- mindsdb/api/executor/datahub/datanodes/system_tables.py +6 -1
- mindsdb/api/executor/planner/query_planner.py +6 -2
- mindsdb/api/executor/sql_query/steps/prepare_steps.py +2 -1
- mindsdb/api/mongo/classes/query_sql.py +2 -1
- mindsdb/api/mongo/responders/aggregate.py +2 -2
- mindsdb/api/mongo/responders/coll_stats.py +3 -2
- mindsdb/api/mongo/responders/db_stats.py +2 -1
- mindsdb/api/mongo/responders/insert.py +4 -2
- mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +2 -1
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +5 -4
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +2 -4
- mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +1 -1
- mindsdb/integrations/handlers/gmail_handler/connection_args.py +2 -2
- mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +19 -66
- mindsdb/integrations/handlers/gmail_handler/requirements.txt +0 -1
- mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +15 -0
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +31 -41
- mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +0 -2
- mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +2 -38
- mindsdb/integrations/libs/llm/utils.py +2 -1
- mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +29 -38
- mindsdb/integrations/utilities/pydantic_utils.py +208 -0
- mindsdb/integrations/utilities/rag/pipelines/rag.py +11 -4
- mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +800 -135
- mindsdb/integrations/utilities/rag/settings.py +390 -152
- mindsdb/integrations/utilities/sql_utils.py +2 -1
- mindsdb/interfaces/agents/agents_controller.py +11 -7
- mindsdb/interfaces/agents/mindsdb_chat_model.py +4 -2
- mindsdb/interfaces/chatbot/chatbot_controller.py +9 -8
- mindsdb/interfaces/database/database.py +2 -1
- mindsdb/interfaces/database/projects.py +28 -2
- mindsdb/interfaces/jobs/jobs_controller.py +4 -1
- mindsdb/interfaces/model/model_controller.py +5 -2
- mindsdb/interfaces/skills/retrieval_tool.py +128 -39
- mindsdb/interfaces/skills/skill_tool.py +7 -7
- mindsdb/interfaces/skills/skills_controller.py +8 -4
- mindsdb/interfaces/storage/db.py +14 -0
- mindsdb/interfaces/storage/json.py +59 -0
- mindsdb/interfaces/storage/model_fs.py +85 -3
- mindsdb/interfaces/triggers/triggers_controller.py +2 -1
- mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +17 -3
- mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_json_storage.py +29 -0
- mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py +41 -0
- mindsdb/utilities/config.py +5 -1
- mindsdb/utilities/functions.py +11 -0
- {MindsDB-25.2.4.0.dist-info → mindsdb-25.3.1.0.dist-info}/METADATA +221 -223
- {MindsDB-25.2.4.0.dist-info → mindsdb-25.3.1.0.dist-info}/RECORD +53 -51
- {MindsDB-25.2.4.0.dist-info → mindsdb-25.3.1.0.dist-info}/WHEEL +1 -1
- mindsdb/integrations/handlers/gmail_handler/utils.py +0 -45
- {MindsDB-25.2.4.0.dist-info → mindsdb-25.3.1.0.dist-info}/LICENSE +0 -0
- {MindsDB-25.2.4.0.dist-info → mindsdb-25.3.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=GbHD_Ez6vYgMQy6NvdycomymgDUng-r6k-Ye0LsKkh0,444
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
|
-
mindsdb/__main__.py,sha256=
|
|
3
|
+
mindsdb/__main__.py,sha256=rW-_mLgFu5UGtHY3PY0svt8M8l62DVVQpACnVM7qwLo,21827
|
|
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=XEX0xoNaUfefZpkOARDElwoTbbhEKECqqvf6HtkrFxs,78243
|
|
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
|
|
@@ -21,13 +21,13 @@ mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=9gs
|
|
|
21
21
|
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=HowB1lnbs__qiVOE63uAuOqhDEj-2IcuiPh5bb3RgPg,9797
|
|
22
22
|
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=OQJbmzGLYzbA0v-_rwmzB5gvwpJVO0c9h6oNjeGjGPU,12554
|
|
23
23
|
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=KAYGMEDY4hVf7hZtyB26ehEwu1SCooql3mtoaN0itHs,6336
|
|
24
|
-
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=
|
|
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
|
|
26
26
|
mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
|
|
27
27
|
mindsdb/api/executor/planner/plan_join.py,sha256=rZn21LGxWyRou4iVOpNpt9IY4TytPoIDJy8rfGqfhoE,22506
|
|
28
28
|
mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
|
|
29
29
|
mindsdb/api/executor/planner/query_plan.py,sha256=T2KAz19cYrtPwJp4JKAYU9WeBzFppCH3btAQZLknsNw,716
|
|
30
|
-
mindsdb/api/executor/planner/query_planner.py,sha256=
|
|
30
|
+
mindsdb/api/executor/planner/query_planner.py,sha256=KaXQIFf0l9f9NtbX6VXDOOQXQq8ivJiq0PHhTATIzrA,31185
|
|
31
31
|
mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
|
|
32
32
|
mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
|
|
33
33
|
mindsdb/api/executor/planner/steps.py,sha256=kB7FtJiUjiuDYk8a3qw_-EK4VKqcRZSr-udSTyctq6M,8830
|
|
@@ -45,7 +45,7 @@ mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=xjVSFzopHVW85sq5p5WVp
|
|
|
45
45
|
mindsdb/api/executor/sql_query/steps/join_step.py,sha256=8wW7AmIMhMinpMovSgl-2CGujV3mDX5kTFLxuI1KZfQ,4261
|
|
46
46
|
mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
|
|
47
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=
|
|
48
|
+
mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=IYsPxelD5WjtLIsfIxWBL22Jqcmq4eWXvIRn0PlN0fI,1602
|
|
49
49
|
mindsdb/api/executor/sql_query/steps/project_step.py,sha256=WQ23VkfWrVHKRnyy91Kh9uRI7Twb-IBvSQl2TZy_21w,2854
|
|
50
50
|
mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=RXZ1L05H_MHwVNdf6qDbIStsDjG_3QxEr3wPuFtZMdM,891
|
|
51
51
|
mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=o7znv6v6mbtm1mrQpJBWHQeD8s02XDKiTSXHClNJDSE,7275
|
|
@@ -104,7 +104,7 @@ mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
|
104
104
|
mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
|
|
105
105
|
mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
|
|
106
106
|
mindsdb/api/mongo/classes/__init__.py,sha256=djMptbZ7tE2nfdbkIl4JS8--qISMWQ1t-dZCwYsF5X4,177
|
|
107
|
-
mindsdb/api/mongo/classes/query_sql.py,sha256
|
|
107
|
+
mindsdb/api/mongo/classes/query_sql.py,sha256=-qxKa9xQtPB0EEEI6_xRwndsp7qLDmRZp1et3yT1xt8,639
|
|
108
108
|
mindsdb/api/mongo/classes/responder.py,sha256=f70rusIQLTSfK2p2-Hrew09haP-SWEJaZQwEPM7ISmU,1764
|
|
109
109
|
mindsdb/api/mongo/classes/responder_collection.py,sha256=nfqahPNvwqvzNtqQy_Rj1Ml4qWS_igDykvvldqqHOII,769
|
|
110
110
|
mindsdb/api/mongo/classes/scram.py,sha256=pTSejWIV-lqu-WrXa8HNJrkWHPeEP0nle4POQXj6QOs,3217
|
|
@@ -112,13 +112,13 @@ mindsdb/api/mongo/classes/session.py,sha256=PscakqhYijuAjgxrwkJRgFuGtZhf38aKJbW-
|
|
|
112
112
|
mindsdb/api/mongo/functions/__init__.py,sha256=4seMQSsLgygeK41jqIBdwymTj0R59XploqLrSsCqSgU,266
|
|
113
113
|
mindsdb/api/mongo/responders/__init__.py,sha256=9P4apLtuhBegQBqm75nyliyodbJobxzgPZHxLoea3cA,2733
|
|
114
114
|
mindsdb/api/mongo/responders/add_shard.py,sha256=QxtUNTom7utI6LI_qYCbKVJ-6ky4RDqptdJ-zRlUITo,228
|
|
115
|
-
mindsdb/api/mongo/responders/aggregate.py,sha256=
|
|
115
|
+
mindsdb/api/mongo/responders/aggregate.py,sha256=Xp96EmnR3a8ePEEW6-vm-4lzweQEfVqukDuE10B4qIg,2761
|
|
116
116
|
mindsdb/api/mongo/responders/buildinfo.py,sha256=nhZHFAzwbdHW-KlSHWirv9znPnCejxlPi-MO4f6TYNY,317
|
|
117
|
-
mindsdb/api/mongo/responders/coll_stats.py,sha256=
|
|
117
|
+
mindsdb/api/mongo/responders/coll_stats.py,sha256=38UGHKGTKewzW5erYFouQezbQNasyIrNJZRriRgXSdI,1851
|
|
118
118
|
mindsdb/api/mongo/responders/company_id.py,sha256=ixY9HpSROzHEQ0CR_vAH2-3Mc0HBJVipSKhD2uxfXEs,689
|
|
119
119
|
mindsdb/api/mongo/responders/connection_status.py,sha256=smUfHSg75_s49fxdjUGdpBsVd01bZjUlEhg8vvR3H8E,577
|
|
120
120
|
mindsdb/api/mongo/responders/count.py,sha256=U1-r9adlVlkwnjNOheyWTxUg6J9M3o8uR-vApDrrmQY,487
|
|
121
|
-
mindsdb/api/mongo/responders/db_stats.py,sha256=
|
|
121
|
+
mindsdb/api/mongo/responders/db_stats.py,sha256=3fZtOAD_ydMUEWZ7ljDGLkGi5XNWncWbg3qVhtHu7s0,889
|
|
122
122
|
mindsdb/api/mongo/responders/delete.py,sha256=B782oXqPjfaYyXjD9E-0E3l1a8GedzyL5uqQtb7R24Y,3642
|
|
123
123
|
mindsdb/api/mongo/responders/describe.py,sha256=FP9Si2eIh_ZEXPHvQzIn3igGVmvKZTH6C4JRYFoey9s,612
|
|
124
124
|
mindsdb/api/mongo/responders/end_sessions.py,sha256=nuArjKPdLI_e2ZmL-mSaEypIgYXG2bGqlfF8JyFwHkw,230
|
|
@@ -128,7 +128,7 @@ mindsdb/api/mongo/responders/get_free_monitoring_status.py,sha256=YwP9gVmtD9KHH_
|
|
|
128
128
|
mindsdb/api/mongo/responders/get_parameter.py,sha256=DcdD9ELIvcA9b3DZZr7WW5ypXYaV7pkVrurI4CCRhFA,602
|
|
129
129
|
mindsdb/api/mongo/responders/getlog.py,sha256=X8IWDSO0pvHw2B9x-YWYOvkaOUQoI8iB1frDOtGnSsw,244
|
|
130
130
|
mindsdb/api/mongo/responders/host_info.py,sha256=k9y4UkU-_5iIvaDNofOl8GRM0DwkhTfW8pp9idvkYjI,627
|
|
131
|
-
mindsdb/api/mongo/responders/insert.py,sha256=
|
|
131
|
+
mindsdb/api/mongo/responders/insert.py,sha256=dj_3ZnsWwJNQo1-FXXfGQzx2ZvdOJCvHnakye7a3o08,9572
|
|
132
132
|
mindsdb/api/mongo/responders/is_master.py,sha256=En4AY_SlXmItUVfxv0_0XoE10zpKe68sAC7UldspyII,446
|
|
133
133
|
mindsdb/api/mongo/responders/is_master_lower.py,sha256=w07COvzytNh8QCsDtKIO3yIljkWRoa7ax0yjffhqZ0o,285
|
|
134
134
|
mindsdb/api/mongo/responders/list_collections.py,sha256=nNJnjIkFHwj0l23qruu_LQAtumKWD1yt_VoR-U4Dj3o,1536
|
|
@@ -148,13 +148,13 @@ mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaD
|
|
|
148
148
|
mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
149
|
mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
|
|
150
150
|
mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
-
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256
|
|
151
|
+
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=RngY85eDzfHvyPRiUUZeyBzRir7sYSPZ8Rw7fzIaRQs,35310
|
|
152
152
|
mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
153
|
mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
|
|
154
154
|
mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
|
|
155
155
|
mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py,sha256=EPdgPoazneHngvbeBcAHzK3kLmUOOeZoGyJepYDO_P4,4436
|
|
156
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=
|
|
157
|
+
mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py,sha256=uUOaAJfmSIcZYLT4dppnbRun7Uawd5x_09bJfIN2EUs,1003
|
|
158
158
|
mindsdb/api/mysql/mysql_proxy/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
159
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py,sha256=a8Gi2hcTPYSTtqscMcEW2R-1Qu_YmMcP1CN9DOfavo0,6246
|
|
160
160
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py,sha256=3jjsF8bs9EJga-miiIElMZegi_-IRApeneer4AzawsA,4913
|
|
@@ -187,7 +187,7 @@ mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsS
|
|
|
187
187
|
mindsdb/api/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
188
|
mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA,325
|
|
189
189
|
mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
|
-
mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=
|
|
190
|
+
mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=Nus9OqgLaNd43iPQ3ses49muyi6CtQMBDY0V8GQeJGE,19360
|
|
191
191
|
mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
|
|
192
192
|
mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=aV9tuhflppO919B7HQGFyxeMuyv3XaGz2t-fwHLqVJI,6441
|
|
193
193
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -294,7 +294,7 @@ mindsdb/integrations/handlers/autokeras_handler/icon.svg,sha256=EBz7nZ-VyXT7Ps3e
|
|
|
294
294
|
mindsdb/integrations/handlers/autokeras_handler/requirements.txt,sha256=Tt8vuUUNRP6fvafQQ7E80xO-kcZnzGWn6Zdasxb2swQ,21
|
|
295
295
|
mindsdb/integrations/handlers/autosklearn_handler/__about__.py,sha256=5MLlCXNdhytRAHGaROfNZ6ZIS9u8bKFoYtSeDG1jvEI,359
|
|
296
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=
|
|
297
|
+
mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py,sha256=hyfSKZGR_bMxgKLkGoQQ0XFLWevdAbtI-rmlJqlek1k,1684
|
|
298
298
|
mindsdb/integrations/handlers/autosklearn_handler/config.py,sha256=COLDouTPwcSqxxLNAEd28h7IAcbWEKT61nZbz24dD0o,710
|
|
299
299
|
mindsdb/integrations/handlers/autosklearn_handler/icon.png,sha256=kbcEAnyOFO2mj20-godaONlkzrtK-3Oj-yhQ-kX1O78,15729
|
|
300
300
|
mindsdb/integrations/handlers/autosklearn_handler/requirements.txt,sha256=M80gYwMHVvAlFBJKtarluQacFmr6etbrUQgKjoX_hNM,32
|
|
@@ -660,11 +660,10 @@ mindsdb/integrations/handlers/gitlab_handler/icon.svg,sha256=bQ1whEb3IObHqMiZAHo
|
|
|
660
660
|
mindsdb/integrations/handlers/gitlab_handler/requirements.txt,sha256=1W6ZjjUzciSZ0BX4yJ7C54BWdhWYLCw5ASu-VQohWro,13
|
|
661
661
|
mindsdb/integrations/handlers/gmail_handler/__about__.py,sha256=uj5U9JF0CynCH3ZE858VyDrJUiFgnTSZQcIbEhwnMbw,355
|
|
662
662
|
mindsdb/integrations/handlers/gmail_handler/__init__.py,sha256=2Ed7Pfbdz56spFnl9WGf1vcRdL73LBjBr5lG_-dje38,540
|
|
663
|
-
mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=
|
|
664
|
-
mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=
|
|
663
|
+
mindsdb/integrations/handlers/gmail_handler/connection_args.py,sha256=ICSjOPrCxpOQEpXLkyjm-osa-9fhm_tf77iekhqAsTo,780
|
|
664
|
+
mindsdb/integrations/handlers/gmail_handler/gmail_handler.py,sha256=IEsMHrzgyWEiiLYN1oJGOg4uEtvqw_1TdwoaJE98JuM,18088
|
|
665
665
|
mindsdb/integrations/handlers/gmail_handler/icon.svg,sha256=0kKbNxgVVg3caKfTZSHrma_Ho8dyXNTAgXnQK25hYD4,862
|
|
666
|
-
mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=
|
|
667
|
-
mindsdb/integrations/handlers/gmail_handler/utils.py,sha256=jXNBgCJhBQjt0micfqvGG-Ly-4Uoor__HFUtmUNiVfU,1332
|
|
666
|
+
mindsdb/integrations/handlers/gmail_handler/requirements.txt,sha256=CE8Tu4MYTFbjPoVIYlwI55wCWl22Re5B2Sr4rDLiHKE,25
|
|
668
667
|
mindsdb/integrations/handlers/gmail_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
669
668
|
mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py,sha256=wjJHWn2jBFHm4gBtuVSoc4MdFoIy54jkfnCbPz77KHc,1479
|
|
670
669
|
mindsdb/integrations/handlers/google_analytics_handler/__about__.py,sha256=68QyRQWAMw0MGDM64tuGkSrjepQmQKQea5zvfw0r0Aw,369
|
|
@@ -685,11 +684,11 @@ mindsdb/integrations/handlers/google_books_handler/tests/__init__.py,sha256=47DE
|
|
|
685
684
|
mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py,sha256=tuww8tSsOPizyjPEcHcu7E73q08ErErQbXBSKxw9fWY,1487
|
|
686
685
|
mindsdb/integrations/handlers/google_calendar_handler/__about__.py,sha256=ABiiMZz9sTlrSoW5FIUbFZqmW4WD1BNe-66IC1hj6Vs,388
|
|
687
686
|
mindsdb/integrations/handlers/google_calendar_handler/__init__.py,sha256=ms_QDVhQf3b_jnweJXDVAUFYuyKkPb6JgEfGEzJ9uzA,580
|
|
688
|
-
mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=
|
|
689
|
-
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=
|
|
687
|
+
mindsdb/integrations/handlers/google_calendar_handler/connection_args.py,sha256=HL1g-EYFULOoR3l874dFRmPGeP5bl0fNwRTftYDeF84,780
|
|
688
|
+
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py,sha256=o-iXM8SNuRmoFxJJt8RlRVMqhbjqSYlT3xALifsZLfw,10851
|
|
690
689
|
mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py,sha256=SWioh20npLHBTJu8XsYIImdWZ2mgs34pcvPrudCmOjs,8111
|
|
691
690
|
mindsdb/integrations/handlers/google_calendar_handler/icon.svg,sha256=DQIgxyH7l5C7ONqeAIoofEH4PYDJdRZDFPK7A57XPMg,1915
|
|
692
|
-
mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=
|
|
691
|
+
mindsdb/integrations/handlers/google_calendar_handler/requirements.txt,sha256=CE8Tu4MYTFbjPoVIYlwI55wCWl22Re5B2Sr4rDLiHKE,25
|
|
693
692
|
mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
694
693
|
mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py,sha256=Tv1O__exOy2k58VNAG3LQgOUKICIUt_-RpqAzuGiiRA,2215
|
|
695
694
|
mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py,sha256=kUidXzaoLPxNOiywhLPrUFjG4JZl8krOHzS0QMWl7Tg,424
|
|
@@ -1648,7 +1647,7 @@ mindsdb/integrations/handlers/youtube_handler/__init__.py,sha256=wz69UgXa3njxAci
|
|
|
1648
1647
|
mindsdb/integrations/handlers/youtube_handler/connection_args.py,sha256=08xO6KHfAlFvgSq9QU6PxWDk9AmmPgXdx41ayKxHGAI,923
|
|
1649
1648
|
mindsdb/integrations/handlers/youtube_handler/icon.svg,sha256=uvNffuRPGVzPxWkbZzkSrw2SHm8M8c4GbeypiHPWDss,954
|
|
1650
1649
|
mindsdb/integrations/handlers/youtube_handler/requirements.txt,sha256=Hx27M_gHLgyZBIsNQZAcXYcnFtRgqlHvEgPnWhdisns,48
|
|
1651
|
-
mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=
|
|
1650
|
+
mindsdb/integrations/handlers/youtube_handler/youtube_handler.py,sha256=FewpJAHZyYJItt2qKaHjXpZwajpxMAWAD6DibVWic5Y,4217
|
|
1652
1651
|
mindsdb/integrations/handlers/youtube_handler/youtube_tables.py,sha256=-PiJbjpqoWjh-sdf-EiJ9nyan7DfmkNmPvROzHYgZjA,16797
|
|
1653
1652
|
mindsdb/integrations/handlers/yugabyte_handler/__about__.py,sha256=tVimKqXLHCbBZFeVs2_LfbwaXt3oOBx2k_fTbiu4uwU,350
|
|
1654
1653
|
mindsdb/integrations/handlers/yugabyte_handler/__init__.py,sha256=ZaXZKRnnzUOGLvydpoeSjOxlLx8L_ymcXdEydokAh28,490
|
|
@@ -1690,7 +1689,7 @@ mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdu
|
|
|
1690
1689
|
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=-TcUIzSSX21DPOGh7zI0-nuumqaW0NgUCElXzouWXjg,17523
|
|
1691
1690
|
mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1692
1691
|
mindsdb/integrations/libs/llm/config.py,sha256=M14flGRcngP8n37sT8XLuJj5w-145B4IAyx3vLllogM,3548
|
|
1693
|
-
mindsdb/integrations/libs/llm/utils.py,sha256=
|
|
1692
|
+
mindsdb/integrations/libs/llm/utils.py,sha256=20KrNT9PdvVL0DTPLrOT1uPUw2bMtRhnEZ_7fxBYnRQ,24648
|
|
1694
1693
|
mindsdb/integrations/libs/ml_handler_process/__init__.py,sha256=TW1DslwZTaD8oeGaxPx99uYkPAeDIeHWAturBcnDBFU,756
|
|
1695
1694
|
mindsdb/integrations/libs/ml_handler_process/create_engine_process.py,sha256=YHbk1x7GEIZXcM0IazB2z2tvu5Yd24Fb4aJPpUg321A,788
|
|
1696
1695
|
mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256=-69NRhBGnNG0hgNi9O_W5LffIxPBUmuxy4bbQY2Z-_8,444
|
|
@@ -1705,8 +1704,9 @@ mindsdb/integrations/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
1705
1704
|
mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-dsjRElJZHX_UicYQk,2769
|
|
1706
1705
|
mindsdb/integrations/utilities/handler_utils.py,sha256=UEgEckWFDZXLcu5AbBFrqPJuFFXgejDmDRkr6622CPc,2272
|
|
1707
1706
|
mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
|
|
1707
|
+
mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
|
|
1708
1708
|
mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
|
|
1709
|
-
mindsdb/integrations/utilities/sql_utils.py,sha256=
|
|
1709
|
+
mindsdb/integrations/utilities/sql_utils.py,sha256=zPXrG3pI-wbrrBTM9WXMwt66zsQHw2RZ1qXUX58rJ9Q,6777
|
|
1710
1710
|
mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
|
|
1711
1711
|
mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
|
|
1712
1712
|
mindsdb/integrations/utilities/utils.py,sha256=TuIgAbuZVkCRUSgLmqJ2STZ1CxVgBGrEnajW68SsKg0,972
|
|
@@ -1724,7 +1724,7 @@ mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=lyJdlw
|
|
|
1724
1724
|
mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
|
|
1725
1725
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
|
|
1726
1726
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py,sha256=Nuug_6Zggj5Q4D01sRLpyHrGLvyLL1ONg3SiZH8i4W4,2400
|
|
1727
|
-
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=
|
|
1727
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=IJnVzD2WYavlKtZMJ5uW51CDUBthYnR0YoA_HBtKXDo,3737
|
|
1728
1728
|
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py,sha256=_hlwBPWRZu1cW8dLQnrmJUr39tokoT2SkodHzJ8PzGM,78
|
|
1729
1729
|
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=8xGoJtqMBRYNus6enlyHeFMeyl6Rnh76xIXBJ172RmU,5369
|
|
1730
1730
|
mindsdb/integrations/utilities/handlers/query_utilities/__init__.py,sha256=Gy3epzeBeKSi5xFMs9Zq2ggAupWJTDWc_3C7X8rnSEU,279
|
|
@@ -1739,7 +1739,7 @@ mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validatio
|
|
|
1739
1739
|
mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1740
1740
|
mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
|
|
1741
1741
|
mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=0RhyafFoQPl1aniRYcOu57aljfqKqj_p0cNb_bfOrc8,3742
|
|
1742
|
-
mindsdb/integrations/utilities/rag/settings.py,sha256=
|
|
1742
|
+
mindsdb/integrations/utilities/rag/settings.py,sha256=uTMiNMXIsQGZK1CpG7mrb-YzUfX2OCjPahvh_GRpgH4,33475
|
|
1743
1743
|
mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
|
|
1744
1744
|
mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
|
|
1745
1745
|
mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1752,7 +1752,7 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py,sha25
|
|
|
1752
1752
|
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py,sha256=1afkvEbBSzaeofZAbK80m3UxfZd7PO-SukbnNb1aW3w,5013
|
|
1753
1753
|
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py,sha256=TaJkfrsajapchnP5ED0WMCP85ptbvN2d8y3UMdjMjDc,3188
|
|
1754
1754
|
mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1755
|
-
mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=
|
|
1755
|
+
mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
|
|
1756
1756
|
mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1757
1757
|
mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=L-qCCGtNNdFck034wkeMgvRgO8ii-uNTh9Rp5Ga6ddM,9497
|
|
1758
1758
|
mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
|
|
@@ -1761,22 +1761,22 @@ mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoT
|
|
|
1761
1761
|
mindsdb/integrations/utilities/rag/retrievers/multi_hop_retriever.py,sha256=wC2M3Vsgzs5Nu6uEuD4YQZZU9W8eW_bc7RrrqvN38mk,3319
|
|
1762
1762
|
mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py,sha256=D9QzIRZWQ6LrT892twdgJj287_BlVEmXRQLYQegQuVA,4383
|
|
1763
1763
|
mindsdb/integrations/utilities/rag/retrievers/retriever_factory.py,sha256=knmGLJNEG8x4KFhUYQiCIpghR5yEEeu_tonSUMUqXAQ,2205
|
|
1764
|
-
mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=
|
|
1764
|
+
mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=uOJ8-UW09hkjMo4J6htrbbl5zmH_-YCWauRJxmdp3oc,35309
|
|
1765
1765
|
mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1766
1766
|
mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
|
|
1767
1767
|
mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1768
1768
|
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1769
|
-
mindsdb/interfaces/agents/agents_controller.py,sha256=
|
|
1769
|
+
mindsdb/interfaces/agents/agents_controller.py,sha256=NwqgRlZ1XyZggxLI98x0xVt2vyqrefqrzN6ZvXoU6kU,18318
|
|
1770
1770
|
mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
|
|
1771
1771
|
mindsdb/interfaces/agents/constants.py,sha256=JUXpSW5PZxDZ84BD9zqZpU8u2tI2kUjHLZ1kVcDM7tY,4556
|
|
1772
1772
|
mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
|
|
1773
1773
|
mindsdb/interfaces/agents/langchain_agent.py,sha256=tLZGH4Flfd_H87YDjZF3K9ofFvtr0vM_aCPPoE137D4,27483
|
|
1774
1774
|
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
|
|
1775
|
-
mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=
|
|
1775
|
+
mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
|
|
1776
1776
|
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=lk7UyE7tK807GXLBDr4-b2VVFUUzDtpMx2GjVtywv3o,2459
|
|
1777
1777
|
mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
|
|
1778
1778
|
mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1779
|
-
mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=
|
|
1779
|
+
mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=lZEjoa0zSagLXX8fpKnjaAJdORia0fOie9aeSccLf40,14234
|
|
1780
1780
|
mindsdb/interfaces/chatbot/chatbot_executor.py,sha256=3qU98MHBmUcsIWYqaNNJhoudUQWLPWlCB_di6iFaP1g,7742
|
|
1781
1781
|
mindsdb/interfaces/chatbot/chatbot_task.py,sha256=eKU-7FSygAzFq9lkHKLl5zlkiiQDGjzOX7oUb-rJNQo,7001
|
|
1782
1782
|
mindsdb/interfaces/chatbot/memory.py,sha256=tkqBiA5mMvkuGITCjUC_r0JuyUS2DbeARxJ_GryOZJQ,8346
|
|
@@ -1784,17 +1784,17 @@ mindsdb/interfaces/chatbot/model_executor.py,sha256=qv8DRysWLbJwbv4TkQ-bsLmJOnDa
|
|
|
1784
1784
|
mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augjRHxscn48,8109
|
|
1785
1785
|
mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
|
|
1786
1786
|
mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1787
|
-
mindsdb/interfaces/database/database.py,sha256=
|
|
1787
|
+
mindsdb/interfaces/database/database.py,sha256=ax8GlviJpdTyufQvBfy0ft4H8pxH7w4hp_ejNY_aYHM,4356
|
|
1788
1788
|
mindsdb/interfaces/database/integrations.py,sha256=B4dfcOCsUMKgX5teNEGrXwUBnrX5L2sUP34XvbUaSdk,36825
|
|
1789
1789
|
mindsdb/interfaces/database/log.py,sha256=tewoKWc-xvfbFC9RVaUUAjQGuRY__Lex8fbR_pwNMwc,11074
|
|
1790
|
-
mindsdb/interfaces/database/projects.py,sha256=
|
|
1790
|
+
mindsdb/interfaces/database/projects.py,sha256=pWNsjDgGzdRO4TaNvj9-LC5mvpyh6xzOlMp9hN3HZdg,16083
|
|
1791
1791
|
mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
|
|
1792
1792
|
mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1793
1793
|
mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2uARKGp_NWBkKY,8626
|
|
1794
1794
|
mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1795
1795
|
mindsdb/interfaces/functions/controller.py,sha256=8kyWA8TnMsRDyIl2s3JcvdGYeww4_Qmf-jYq_wwOYH4,6057
|
|
1796
1796
|
mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1797
|
-
mindsdb/interfaces/jobs/jobs_controller.py,sha256=
|
|
1797
|
+
mindsdb/interfaces/jobs/jobs_controller.py,sha256=cRyR5JkcyqkeKmy0TTKYdceee7HI0vBGreJz9PsORgU,18346
|
|
1798
1798
|
mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
|
|
1799
1799
|
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1800
1800
|
mindsdb/interfaces/knowledge_base/controller.py,sha256=2DhhWQmZXDtWuQnSEa-J4m-HEvr6fsvBZ5Chs8xS9QA,36304
|
|
@@ -1805,24 +1805,24 @@ mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=
|
|
|
1805
1805
|
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
|
|
1806
1806
|
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1807
1807
|
mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
|
|
1808
|
-
mindsdb/interfaces/model/model_controller.py,sha256=
|
|
1808
|
+
mindsdb/interfaces/model/model_controller.py,sha256=o84VBCAqr6ecfl9ms0enetZxC30w7pGHzfYkrkZ0x_U,20306
|
|
1809
1809
|
mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1810
1810
|
mindsdb/interfaces/query_context/context_controller.py,sha256=YAmdcSFEzd3aOr4nRF7TX6UfAXH9kMK1qk7bpVtvhpY,9486
|
|
1811
1811
|
mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
|
|
1812
1812
|
mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1813
|
-
mindsdb/interfaces/skills/retrieval_tool.py,sha256=
|
|
1814
|
-
mindsdb/interfaces/skills/skill_tool.py,sha256=
|
|
1815
|
-
mindsdb/interfaces/skills/skills_controller.py,sha256=
|
|
1813
|
+
mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
|
|
1814
|
+
mindsdb/interfaces/skills/skill_tool.py,sha256=lUfQXxcLlEgjVe30knPjE2klWDlChHgCcBYlEJYy9Hw,12992
|
|
1815
|
+
mindsdb/interfaces/skills/skills_controller.py,sha256=RxZDjLhYUtArWV0U1AOhltZ3kfMbJkcxXtr0GwkbNyg,6294
|
|
1816
1816
|
mindsdb/interfaces/skills/sql_agent.py,sha256=ResOUpthG2o7C6w5qNyvQeCoT7fuaExQsRQA9TzKXVE,14619
|
|
1817
1817
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1818
1818
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1819
1819
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
|
|
1820
1820
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=08WyJXYJ_hP7JYLvwaSWuJN6Q1PLgIAvh7bcgsV-0XU,7962
|
|
1821
1821
|
mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1822
|
-
mindsdb/interfaces/storage/db.py,sha256=
|
|
1822
|
+
mindsdb/interfaces/storage/db.py,sha256=ko1TGsNo4zbwO9Rg6J8sS-btGx5-Qwdw9YnBelp0vgA,19512
|
|
1823
1823
|
mindsdb/interfaces/storage/fs.py,sha256=4Nyo-h23UtZc2nz_LWyVzboC_e1jlU58aph1_en8MdE,21155
|
|
1824
|
-
mindsdb/interfaces/storage/json.py,sha256=
|
|
1825
|
-
mindsdb/interfaces/storage/model_fs.py,sha256=
|
|
1824
|
+
mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
|
|
1825
|
+
mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
|
|
1826
1826
|
mindsdb/interfaces/tabs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1827
1827
|
mindsdb/interfaces/tabs/tabs_controller.py,sha256=TZltOnr0DAjhrW2u-bzIVfjPHgh4bxdkitExr9sCNYE,8761
|
|
1828
1828
|
mindsdb/interfaces/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1831,7 +1831,7 @@ mindsdb/interfaces/tasks/task_monitor.py,sha256=OD_XRuPDcXEkt0KYg4mqyJW5wwIZ4FZh
|
|
|
1831
1831
|
mindsdb/interfaces/tasks/task_thread.py,sha256=G2Ouh75uacCdOnGuMBKmHjFGWdCIbilRkCAUKz7Py6M,1666
|
|
1832
1832
|
mindsdb/interfaces/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1833
1833
|
mindsdb/interfaces/triggers/trigger_task.py,sha256=hfNl2aNYSx7WvGQOE4l70mQLpUUqJTAmFgXsHH0mijI,2928
|
|
1834
|
-
mindsdb/interfaces/triggers/triggers_controller.py,sha256=
|
|
1834
|
+
mindsdb/interfaces/triggers/triggers_controller.py,sha256=tmyaI9Pi-EUkaoN5jtRc0aGa_OgDfRRuag0-7mz-VgU,5523
|
|
1835
1835
|
mindsdb/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1836
1836
|
mindsdb/metrics/metrics.py,sha256=6pV5DO85OF_iIBTma0TXRUrfNHU9a0Ds2RS2u1-XYrU,1956
|
|
1837
1837
|
mindsdb/metrics/server.py,sha256=N8TePhS0k7b3NTxhRN4Pt78ZR-ogaOB6ngCBmZaHw14,985
|
|
@@ -1853,7 +1853,7 @@ mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py,sha25
|
|
|
1853
1853
|
mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py,sha256=vCD-CP85Lu6nWNSNYbV-xQVjyAw4942K6AIQYi_wtbU,1957
|
|
1854
1854
|
mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py,sha256=_vrNCc5cL401Bdx2yTQAYInXbT4DTpLMv2XViCOpAns,1789
|
|
1855
1855
|
mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py,sha256=oaa8dFBNBDUnRWmWKX-lowCu5pslF1bw0ndLzMLDwHQ,2384
|
|
1856
|
-
mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py,sha256=
|
|
1856
|
+
mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py,sha256=8vJ5FGFwCF6aBCLqvP1xUEBwfgcTBzoGvwenyB7T5UY,3815
|
|
1857
1857
|
mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py,sha256=qbZJ0SAYJD4L5drKjVgJS5xfXOkjJ2k6H2oNP-ItNeM,1802
|
|
1858
1858
|
mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py,sha256=Fuf5qBCtt_LPYPQMnhcOXRVxad5hOVg4BMPnGL8sj2k,3487
|
|
1859
1859
|
mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py,sha256=iNEPTABbGKvWEKEqYmPz1zn7GMG3iMzvP7REsmUrn1I,799
|
|
@@ -1894,16 +1894,18 @@ mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.
|
|
|
1894
1894
|
mindsdb/migrations/versions/2025-01-15_c06c35f7e8e1_project_company.py,sha256=zJcBGdgBMlt9oI-SbB8C74w-jDf3ZMYlEuO2guwrfZw,1896
|
|
1895
1895
|
mindsdb/migrations/versions/2025-02-09_4943359e354a_file_metadata.py,sha256=0-QqeVZECfpjKwe86PEwQ9dPgo6Pgmkp_213wTHYiPk,826
|
|
1896
1896
|
mindsdb/migrations/versions/2025-02-10_6ab9903fc59a_del_log_table.py,sha256=V46GpRW1Oeg2M5BpBBpwZ2MrYcpAoCSrWfGoHhPXqYs,839
|
|
1897
|
+
mindsdb/migrations/versions/2025-02-14_4521dafe89ab_added_encrypted_content_to_json_storage.py,sha256=ypMSb0IApik_sjmG1ibII6fRH4KdWHFaLQHQro0mgV8,883
|
|
1898
|
+
mindsdb/migrations/versions/2025-02-19_11347c213b36_added_metadata_to_projects.py,sha256=5I6Zs75EzHCAEvRPbjnCEhgT-YfXJU1fHR4GeZxMyVY,1087
|
|
1897
1899
|
mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1898
1900
|
mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1899
1901
|
mindsdb/utilities/auth.py,sha256=6ycLJgXySghgFdzK6emxdStElzt5aOPafjDCRR_g_q0,2336
|
|
1900
1902
|
mindsdb/utilities/cache.py,sha256=6VV5BJ0EWPYK2h80KEM1ETMhw_OCgDKyU6Pejvj1s3E,7431
|
|
1901
|
-
mindsdb/utilities/config.py,sha256=
|
|
1903
|
+
mindsdb/utilities/config.py,sha256=F31QINdBhkQTfEdnitKkekUHQWOU2vdQV5doNqa4Mes,20942
|
|
1902
1904
|
mindsdb/utilities/context.py,sha256=LyKNgtavQnAfZpaPHINhrA_9L_SjfURUBD9fZNtuQMQ,1813
|
|
1903
1905
|
mindsdb/utilities/context_executor.py,sha256=6ByyeulMePEfRrGxR9vlKYF87R8z1wHFwc1GdfhlGCk,1946
|
|
1904
1906
|
mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
|
|
1905
1907
|
mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
|
|
1906
|
-
mindsdb/utilities/functions.py,sha256=
|
|
1908
|
+
mindsdb/utilities/functions.py,sha256=tSAmY6zYUzhsEUXvRPEtgU1yIPKGKLDRtPT1hMuUOv0,6675
|
|
1907
1909
|
mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
|
|
1908
1910
|
mindsdb/utilities/langfuse.py,sha256=SzJ7db-BZIiYiOs27jxmeUAp554W9jFFiuiWy87FNs4,9270
|
|
1909
1911
|
mindsdb/utilities/log.py,sha256=krqJoAsKrrg9bk8X0QfCbbk7CN_f7BS6wm-0aVjkrGc,4401
|
|
@@ -1932,8 +1934,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
|
|
|
1932
1934
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1933
1935
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1934
1936
|
mindsdb/utilities/render/sqlalchemy_render.py,sha256=jVzdLD691hCs26wsUfhj6VDC8YIjL5hX0P9zNzSszH4,30311
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1937
|
+
mindsdb-25.3.1.0.dist-info/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1938
|
+
mindsdb-25.3.1.0.dist-info/METADATA,sha256=nKd2zruKpdFtLfVqsqAUr9iiKStVlEcJz3lRPkH_kyY,41703
|
|
1939
|
+
mindsdb-25.3.1.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
1940
|
+
mindsdb-25.3.1.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1941
|
+
mindsdb-25.3.1.0.dist-info/RECORD,,
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import datetime as dt
|
|
2
|
-
|
|
3
|
-
import json
|
|
4
|
-
|
|
5
|
-
from google_auth_oauthlib.flow import Flow
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
def credentials_to_dict(credentials):
|
|
9
|
-
return {'token': credentials.token,
|
|
10
|
-
'refresh_token': credentials.refresh_token,
|
|
11
|
-
'token_uri': credentials.token_uri,
|
|
12
|
-
'client_id': credentials.client_id,
|
|
13
|
-
'client_secret': credentials.client_secret,
|
|
14
|
-
'scopes': credentials.scopes,
|
|
15
|
-
'expiry': dt.datetime.strftime(credentials.expiry, '%Y-%m-%dT%H:%M:%S')}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
class AuthException(Exception):
|
|
19
|
-
def __init__(self, message, auth_url=None):
|
|
20
|
-
super().__init__(message)
|
|
21
|
-
|
|
22
|
-
self.auth_url = auth_url
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
def google_auth_flow(secret_file, scopes, code=None):
|
|
26
|
-
# initialise flow
|
|
27
|
-
flow = Flow.from_client_secrets_file(secret_file, scopes)
|
|
28
|
-
|
|
29
|
-
# get host url from flask
|
|
30
|
-
from flask import request
|
|
31
|
-
flow.redirect_uri = request.headers['ORIGIN'] + '/verify-auth'
|
|
32
|
-
|
|
33
|
-
if code:
|
|
34
|
-
flow.fetch_token(code=code)
|
|
35
|
-
creds = flow.credentials
|
|
36
|
-
return creds
|
|
37
|
-
else:
|
|
38
|
-
auth_url = flow.authorization_url()[0]
|
|
39
|
-
raise AuthException(f'Authorisation required. Please follow the url: {auth_url}', auth_url=auth_url)
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
def save_creds_to_file(creds, file_path):
|
|
43
|
-
with open(file_path, 'w') as token:
|
|
44
|
-
data = credentials_to_dict(creds)
|
|
45
|
-
token.write(json.dumps(data))
|
|
File without changes
|
|
File without changes
|