MindsDB 25.4.1.0__py3-none-any.whl → 25.4.2.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.

Files changed (48) hide show
  1. mindsdb/__about__.py +1 -1
  2. mindsdb/api/executor/command_executor.py +62 -61
  3. mindsdb/api/executor/data_types/answer.py +9 -12
  4. mindsdb/api/executor/datahub/classes/response.py +11 -0
  5. mindsdb/api/executor/datahub/datanodes/datanode.py +4 -4
  6. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +7 -9
  7. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +22 -16
  8. mindsdb/api/executor/datahub/datanodes/project_datanode.py +20 -20
  9. mindsdb/api/executor/planner/plan_join.py +1 -1
  10. mindsdb/api/executor/planner/steps.py +2 -1
  11. mindsdb/api/executor/sql_query/result_set.py +10 -7
  12. mindsdb/api/executor/sql_query/sql_query.py +36 -82
  13. mindsdb/api/executor/sql_query/steps/delete_step.py +2 -3
  14. mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +5 -3
  15. mindsdb/api/executor/sql_query/steps/insert_step.py +2 -2
  16. mindsdb/api/executor/sql_query/steps/prepare_steps.py +2 -2
  17. mindsdb/api/executor/sql_query/steps/subselect_step.py +20 -8
  18. mindsdb/api/executor/sql_query/steps/update_step.py +4 -6
  19. mindsdb/api/http/namespaces/sql.py +4 -1
  20. mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +1 -1
  21. mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +4 -27
  22. mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +1 -0
  23. mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +38 -37
  24. mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +23 -13
  25. mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +1 -1
  26. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +3 -2
  27. mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +4 -4
  28. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +19 -5
  29. mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +9 -4
  30. mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +1 -1
  31. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +18 -11
  32. mindsdb/integrations/libs/ml_handler_process/learn_process.py +1 -2
  33. mindsdb/integrations/libs/response.py +9 -4
  34. mindsdb/integrations/libs/vectordatabase_handler.py +17 -5
  35. mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +8 -98
  36. mindsdb/interfaces/database/log.py +8 -9
  37. mindsdb/interfaces/database/projects.py +1 -5
  38. mindsdb/interfaces/functions/controller.py +59 -17
  39. mindsdb/interfaces/functions/to_markdown.py +194 -0
  40. mindsdb/interfaces/jobs/jobs_controller.py +3 -3
  41. mindsdb/interfaces/knowledge_base/controller.py +101 -60
  42. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +3 -14
  43. mindsdb/interfaces/query_context/context_controller.py +3 -1
  44. {mindsdb-25.4.1.0.dist-info → mindsdb-25.4.2.0.dist-info}/METADATA +231 -230
  45. {mindsdb-25.4.1.0.dist-info → mindsdb-25.4.2.0.dist-info}/RECORD +48 -46
  46. {mindsdb-25.4.1.0.dist-info → mindsdb-25.4.2.0.dist-info}/WHEEL +0 -0
  47. {mindsdb-25.4.1.0.dist-info → mindsdb-25.4.2.0.dist-info}/licenses/LICENSE +0 -0
  48. {mindsdb-25.4.1.0.dist-info → mindsdb-25.4.2.0.dist-info}/top_level.txt +0 -0
@@ -1,56 +1,57 @@
1
- mindsdb/__about__.py,sha256=l6k-xjzls0aeDwMq_OHWqnoThJgSRjAfHjalp4V15G0,456
1
+ mindsdb/__about__.py,sha256=lJOrb5bKV21uGXyoq3krOFuk82VLEtMUMtch7R8k13M,456
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
3
  mindsdb/__main__.py,sha256=vubKLXMO7JkuqIMlKlj1St7HKhJNm5SmyHda5waUrjU,22637
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=XEX0xoNaUfefZpkOARDElwoTbbhEKECqqvf6HtkrFxs,78243
8
+ mindsdb/api/executor/command_executor.py,sha256=lCNMp1Z93BLSVQBcS6HFsoaaBKIXfpMfYZtRurFe_OQ,78250
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
12
12
  mindsdb/api/executor/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- mindsdb/api/executor/data_types/answer.py,sha256=YyF6ZG0vUSCM2NqJGAl1Xkyxx2AgX2vGVEM8pMYCPKA,433
13
+ mindsdb/api/executor/data_types/answer.py,sha256=bvCpI-Tji2kgTzyzFaw-EgstMdssZvFmLXmiBjG87Bg,392
14
14
  mindsdb/api/executor/data_types/response_type.py,sha256=eAmjV_UoOKTLh6H7Qi9_1VFhvGm7k1u30D8anJJASGo,128
15
15
  mindsdb/api/executor/datahub/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
16
16
  mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ mindsdb/api/executor/datahub/classes/response.py,sha256=sCGFeOscRWi7f0SPvS1P3IzKFJwCUGmjRUR2SxKnfcs,299
17
18
  mindsdb/api/executor/datahub/classes/tables_row.py,sha256=wT3TzoK3dFNiRc92rh_Hgo1uqaznFldtXBUGCzKNOlg,1934
18
19
  mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
19
- mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=IuWnQvT6SVMoMOELuLoMCAUxZpItGn0Nr0ct44fspr0,373
20
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=PTSwy1PFfFWc0tt-Xb4nOU8gaqpq8Y9FVIFZ1SNgjqU,6323
21
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=okCAg21_aZ4pLCs6VRj0mJcD3Da2-rzyMhIe4bm048M,9896
20
+ mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=Up2GVmlR96qu7Bn_xrBXry8aK67YolPZ9Idk-yuL_yI,418
21
+ mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=ylB-xv3rr3d3GjcrGznRfdT6bBIHR063_mAQHWc2RGk,6371
22
+ mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=KMLCNqdwaYLOqJNLRo1pV0y0IF-EBZe0-fpvzLBklKo,10505
22
23
  mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=xWWe25ZaOhc-c_gjT6n1w4A_g-z7h8W4JUb9sW5Hglo,12567
23
- mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=KAYGMEDY4hVf7hZtyB26ehEwu1SCooql3mtoaN0itHs,6336
24
+ mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=Y4dzi-aHNgC5ncM8KyEhjoz5sglGfexix6fymA4ulvQ,6425
24
25
  mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=9Bol0qiDRxBQJ53-EytjxzLnVNsipmrRm0J-BrDJ7eU,15559
25
26
  mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
26
27
  mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
27
- mindsdb/api/executor/planner/plan_join.py,sha256=rZn21LGxWyRou4iVOpNpt9IY4TytPoIDJy8rfGqfhoE,22506
28
+ mindsdb/api/executor/planner/plan_join.py,sha256=IXJkdteC_RNLYMMCyQHRlO4q9Fyo-PXCka7v6selO88,22526
28
29
  mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
29
30
  mindsdb/api/executor/planner/query_plan.py,sha256=T2KAz19cYrtPwJp4JKAYU9WeBzFppCH3btAQZLknsNw,716
30
31
  mindsdb/api/executor/planner/query_planner.py,sha256=KaXQIFf0l9f9NtbX6VXDOOQXQq8ivJiq0PHhTATIzrA,31185
31
32
  mindsdb/api/executor/planner/query_prepare.py,sha256=ZH8fZ05tFMMy9aeuLU1R5F-ThSPtiGbvozoCZSNGz7A,16694
32
33
  mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
33
- mindsdb/api/executor/planner/steps.py,sha256=kB7FtJiUjiuDYk8a3qw_-EK4VKqcRZSr-udSTyctq6M,8830
34
+ mindsdb/api/executor/planner/steps.py,sha256=ApXHrHvIBIL2-MV1SNRQ37sqPGUC51s0v2-2ArN7tAM,8890
34
35
  mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
35
36
  mindsdb/api/executor/planner/utils.py,sha256=pCec75lLc5V84LYMheprYxT7RGeJPKiNZrqA_bYmco0,3838
36
37
  mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5V25G_SdsNIYZI,32
37
- mindsdb/api/executor/sql_query/result_set.py,sha256=tYU0q47RGCxwCIloPn_gxz0O3cBe6ShPQWreWT2rKUE,9629
38
- mindsdb/api/executor/sql_query/sql_query.py,sha256=6S_PTYYsi9T4I6EvL8X5VvD8sbogSKsuxCQt9gYgGgc,11064
38
+ mindsdb/api/executor/sql_query/result_set.py,sha256=cX5Mp5BRYzsZ7avbIALVcrZgAs4w-c8O08JOQoQH-nM,9789
39
+ mindsdb/api/executor/sql_query/sql_query.py,sha256=G2YRHJkgSr34SIH222g1VZ8TAvXHucx4hW31BSv0Jdw,9427
39
40
  mindsdb/api/executor/sql_query/steps/__init__.py,sha256=73K_wevliekB1qX5g6RW_TN6wKqXneBVkk52m3Ualvk,728
40
41
  mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=Qm_kVTg0fwXWIy26Atmie_bGNa0wQQ7mVengN6Zly2A,16305
41
42
  mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
42
- mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=YsHVlszYDV2-kxCcMnaGUyf-m7clrFzw0h0o4ZCvZAU,1324
43
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=uGilR7k9m8H6QJ5ackTQ78SROdnC54SDYvJWA8WhRuk,3879
44
- mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=xjVSFzopHVW85sq5p5WVp4hcwkS3qdN8Ygc50jMjFJ0,3738
43
+ mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
44
+ mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=-1CE0KIEY3IZjMfSoVCNUpe_yASU7rBnpVvEmpU13AQ,3941
45
+ mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=Vz0rjS5FHx9Ym-U4TuU_PdO60qGov-ZFF83aLYOHfvo,3785
45
46
  mindsdb/api/executor/sql_query/steps/join_step.py,sha256=8wW7AmIMhMinpMovSgl-2CGujV3mDX5kTFLxuI1KZfQ,4261
46
47
  mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
47
48
  mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSjjHmPpNLMVPX4adAU-PoHJBuY,656
48
- mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=IYsPxelD5WjtLIsfIxWBL22Jqcmq4eWXvIRn0PlN0fI,1602
49
+ mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=eciOR2oUbheMcJqL72pqoSJncjh3HvL38GMZ6zVZdGM,1596
49
50
  mindsdb/api/executor/sql_query/steps/project_step.py,sha256=WQ23VkfWrVHKRnyy91Kh9uRI7Twb-IBvSQl2TZy_21w,2854
50
51
  mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=RXZ1L05H_MHwVNdf6qDbIStsDjG_3QxEr3wPuFtZMdM,891
51
- mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=o7znv6v6mbtm1mrQpJBWHQeD8s02XDKiTSXHClNJDSE,7275
52
+ mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=J9aVzChLxIoI8QwykdqDKYCObW5_ZhYQPvv7oBRDXo8,8120
52
53
  mindsdb/api/executor/sql_query/steps/union_step.py,sha256=wT_cRVE0vGFAXYcdTsm3P8TdfEgU-eHeNfFllR6OJ7U,1791
53
- mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0MeUNsgVsK4pm2VrwM2ZrRua2JFvUHGhvzwzXRc8I1o,4563
54
+ mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS5t8SfSo-14ttOd1r0_T8NA,4643
54
55
  mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
56
  mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
56
57
  mindsdb/api/executor/utilities/sql.py,sha256=vULbEMKN3ZB5RULqC_VPRhuROQ0_CotHYqA32Z2gKAg,6280
@@ -75,7 +76,7 @@ mindsdb/api/http/namespaces/knowledge_bases.py,sha256=ZwzSXn_6DNn3awCnMlvCbZfCOT
75
76
  mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
76
77
  mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
77
78
  mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
78
- mindsdb/api/http/namespaces/sql.py,sha256=-uLWZPsd8q2vUjJeZE3c4qjBbatnrWgPhlHROSaFVnc,5964
79
+ mindsdb/api/http/namespaces/sql.py,sha256=oLBc1DHQS9aTb5jy4jxg5WYQQe40aqohr6Yr_1St5vY,6073
79
80
  mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
80
81
  mindsdb/api/http/namespaces/tree.py,sha256=8I_X7Uhn6OAEsgWOfneF1UBif0T0YFmj-SG_iT20C3E,3807
81
82
  mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
@@ -150,7 +151,7 @@ mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaD
150
151
  mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
152
  mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
152
153
  mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=RngY85eDzfHvyPRiUUZeyBzRir7sYSPZ8Rw7fzIaRQs,35310
154
+ mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=qQbQxwoP61wuqlmeGcvu4loNpN7fgKs6hBXeRamcUgs,35849
154
155
  mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
156
  mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
156
157
  mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
@@ -170,19 +171,19 @@ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py,sha256=Z69B
170
171
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py,sha256=GpnE4vjpcVlawiCDjINu-kt3SWz13Ly0lHTo6yQlD6Y,486
171
172
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py,sha256=NYLm3iIflBISShSFw9xGLNBtIIuCoqf9w77V-kdw87I,2927
172
173
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py,sha256=9VjwaNrM4obv_QfK_wv4YZcpc1ub5JW7_lKrhzAG8O8,3770
173
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py,sha256=qyhrVvgLwyChXdQrTT8SGa1cUfVgqfOjbkqOHkW5mxA,3785
174
+ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py,sha256=jO4JZ1THYHyWRbrtckPLjRK0eb652Jqv7wCn8EgMj2Q,3787
174
175
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py,sha256=vgrffdKjKDpEPTMXyTEaQDk7WBOjhyCEHu73ju6NH1I,421
175
176
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py,sha256=W1Xpgl_1NsA-WNnyJF-MBLisV8p-V5T1u7Xcxgl7mDk,1523
176
177
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py,sha256=_Pc2uTLyEkXxdSt3LY6uxpWaVOE1Nblvljw5CoggWTw,1426
177
178
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py,sha256=ykZJyhvw8iDq8CwVHW0RW5SWbTbfqyX1aD9dOo5Y9MA,1494
178
179
  mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py,sha256=cm2f1fjPy0nfKWCPARMvq92smMij_X4WTjOdxRlMXOM,521
179
180
  mindsdb/api/mysql/mysql_proxy/executor/__init__.py,sha256=U4cWmxMMtOYdK4a3OvSyy-VzICWiURroIAKMKMoRcnM,38
180
- mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=ZDsOpD2ytu6oveD_yngG-hrM6qvoWEHIVnv5HetQ7K0,4219
181
+ mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=5WvY3XHn_BCRTCveeNOQU_H4UtobotSsLBn29HYCmbY,3443
181
182
  mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
183
  mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py,sha256=k5ZmduhQW2E3Mf_jns-dyVLsRxXUAJE1b3Qbr1FkHKo,4116
183
184
  mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
184
185
  mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
185
- mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=DONo51s6ckrShZ_mTJkL6u33AqPeHq5uuWvBzw8d6RA,38007
186
+ mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py,sha256=ubgVGT56J5xvzNz8JnHApdSGWTElW8gd_fD81uyB6Kk,38043
186
187
  mindsdb/api/mysql/mysql_proxy/utilities/__init__.py,sha256=y6AJu3xWHud92ZK_pfU3WzDj8gLIYvXfFNJ-phZmjJo,26
187
188
  mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py,sha256=6iKdCaPRytM2uk9F0fXEl7Xl89wU-_28K0CtndChvfU,407
188
189
  mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py,sha256=dPtDWMh2S5ICsSYMsnLia7-R1mwHUGs7aopiRhLamD8,2341
@@ -350,7 +351,7 @@ mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py,sha256=47DEQpj
350
351
  mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py,sha256=9MibR3PQlvZzt7Q0rCU6R8dICvqhPA_kxoUp4JiVEVE,1353
351
352
  mindsdb/integrations/handlers/chromadb_handler/__about__.py,sha256=28MPMq-Rjb1tR4SawSItNeGvVRupERgeHUDW7KRiyr4,345
352
353
  mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2JpJT_nUryqEZrRR3TtpAmynMFOfHr4,659
353
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=JjIKaFvCGDjW8FpL1ROtCVoGoGh8Td8fg6QHYI_l3Uk,18005
354
+ mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=vQRjjPy_TExK_zmST_-syJWvsZu5qmZBBgwqnR5TWAc,18476
354
355
  mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
355
356
  mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
356
357
  mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=xDi58Geqkth3WtJFFFD20zyutNzmtrKu9cQOSNNzx9A,16
@@ -1045,7 +1046,7 @@ mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWR
1045
1046
  mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
1046
1047
  mindsdb/integrations/handlers/mssql_handler/connection_args.py,sha256=gqdCqCfjOvItZ-tAlUsh7QV7rfyjei_nj0rFX1hKEyE,1524
1047
1048
  mindsdb/integrations/handlers/mssql_handler/icon.svg,sha256=CMPDc66jCYyao_ui5eRds92raysDIMNuhIs59Tvbk_8,11944
1048
- mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=-GnJKbnEkqOVJzjD5sm1MjpfURxK4WWBkMC6XWoXXns,8858
1049
+ mindsdb/integrations/handlers/mssql_handler/mssql_handler.py,sha256=Vr5_jwxtMnUMQFPO9Xl3K-1-NFkvbFhWjeU5mwmK6A8,8886
1049
1050
  mindsdb/integrations/handlers/mssql_handler/requirements.txt,sha256=U59auV3ZAxBGXdMbyXxdRI3LTfCICvZVZWKWMnLUlwA,17
1050
1051
  mindsdb/integrations/handlers/mssql_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1051
1052
  mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py,sha256=gh8t3ft5Xy-EZ3Rfk1oopojQTrbc_DDE-uAlWpeH-8E,6010
@@ -1053,7 +1054,7 @@ mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=UCFLhlYJ-_DenwFc
1053
1054
  mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=ikcK9oIUFjMfyRDAUKKvb8JQ4Fw-P1zLBeEHo2ZMPY8,592
1054
1055
  mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=--9ZuX6QSTbWPcRQuptMElStU6p_wkYAUGuxVhRi9JU,2288
1055
1056
  mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
1056
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=npVR7hvfkG2PogoMwwvn-96TOcUyakef9_dr2zMC6oc,8044
1057
+ mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=WNJFIcaB9qFHlF0EvZ7SXJ6qytQ779opeuLSQEcUYco,8124
1057
1058
  mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
1058
1059
  mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=3a6VexTd2nD72WiXYG_IGeZ-n59ANggeE3X5OkdxHI8,1692
1059
1060
  mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
@@ -1147,7 +1148,7 @@ mindsdb/integrations/handlers/oracle_handler/__about__.py,sha256=IIt4NVwQ52K79l7
1147
1148
  mindsdb/integrations/handlers/oracle_handler/__init__.py,sha256=9U8p9zE7yi32hWtWEQTFcVz5CSgAGlu6E9C-hPf_tBE,629
1148
1149
  mindsdb/integrations/handlers/oracle_handler/connection_args.py,sha256=6NbwAdFz7OBNIaaWH-uAF8sVcixRuRf6Srna-Mk20kk,1966
1149
1150
  mindsdb/integrations/handlers/oracle_handler/icon.svg,sha256=43yVX7g6fI4SLk9h23xsJvzLl9fMOfiKlQ4aNyQ3yxU,537
1150
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=7xfNHkbFd5fUTgHrd-_jcYEeW02JCTix4phcpMF4ecA,11131
1151
+ mindsdb/integrations/handlers/oracle_handler/oracle_handler.py,sha256=Ht3H9E9pPwJQa4VcTce7JhRQBQoD7VD-eHd76Znknug,11180
1151
1152
  mindsdb/integrations/handlers/oracle_handler/requirements.txt,sha256=6My_yqlFsKIvJvanjJc8usHiQ5Ax_rKaHrzNYNKC71c,16
1152
1153
  mindsdb/integrations/handlers/oracle_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1153
1154
  mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py,sha256=TjY4cZHMPUaLyusCTTHCRGC30pXDUqqM2vEjw2UqB1Q,1064
@@ -1173,7 +1174,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
1173
1174
  mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
1174
1175
  mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
1175
1176
  mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
1176
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=GwooXGEbhICnaxZCFDj8aCF1Q9MtxfBp8mHVCVnG1xI,19776
1177
+ mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=5EvPNjWiitISND41_FuaJyun2i8zyZmlWNGOYF4oUR8,20430
1177
1178
  mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1178
1179
  mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
1179
1180
  mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=dguuDcpGTUdL7KHbLPv3OLY9fmvJrQj5I_CsfmuQdKk,606
@@ -1230,7 +1231,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
1230
1231
  mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
1231
1232
  mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
1232
1233
  mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
1233
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=BGAo4JFcBYhA6u30_0JdTcyjPdgRmcw2otd5Ursq9dg,15597
1234
+ mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=Tjv6Z8BNX-JsyG41--lULo6EtpMwTKzYQNx1NaMnq2o,15826
1234
1235
  mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1235
1236
  mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=IwUYXO3aVCsIunHl5cPsf1nndZj3W-wkp5naH_vPb9Q,5825
1236
1237
  mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
@@ -1288,7 +1289,7 @@ mindsdb/integrations/handlers/redshift_handler/__about__.py,sha256=l9Ri3bz7eW3C5
1288
1289
  mindsdb/integrations/handlers/redshift_handler/__init__.py,sha256=CwcbbRYbQLXROfpRN3KOjqle2oEfOVkB1y-4h2HUOTs,631
1289
1290
  mindsdb/integrations/handlers/redshift_handler/connection_args.py,sha256=je_PzZnNCR5goeNyZY1Tt_0mPQmGUiU_5lCw-lEBxwc,1676
1290
1291
  mindsdb/integrations/handlers/redshift_handler/icon.svg,sha256=iIsJ28OGHPtST21OT4_bNoGt48ORHDPdnNGRYmrDPtQ,765
1291
- mindsdb/integrations/handlers/redshift_handler/redshift_handler.py,sha256=AgwJbVaUjPgzHIqt0ZzsMW5vmH7mKrbRxLqIYoi_tHo,2190
1292
+ mindsdb/integrations/handlers/redshift_handler/redshift_handler.py,sha256=tjfba17TOmjvLELkOOK-DVyal-0yv5-4zhrVt55TPto,2218
1292
1293
  mindsdb/integrations/handlers/redshift_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1293
1294
  mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py,sha256=dNQfm--1S8v-SPfAbS9VGuY7T8M97ELhwL9lxJ3zUNU,5523
1294
1295
  mindsdb/integrations/handlers/replicate_handler/__about__.py,sha256=2_18jFKOFO_515IYxchEJYQG77sR5MJTvOPUfZ_pjnU,349
@@ -1404,7 +1405,7 @@ mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DI
1404
1405
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1405
1406
  mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
1406
1407
  mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=RC9MdPLYC6oRsCC2k5sLfgxDTEuEPvqe8OpyjMYEECs,63
1407
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=gaRs0bsn_2cOYq4wYY3m9S1JxQewpejl-c6L5gSYJUc,14034
1408
+ mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=5gTB-_gQZq0GCtFWqAi7S8oEWRDTgfnxwbuJa-t0FYg,14536
1408
1409
  mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1409
1410
  mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py,sha256=2_zTKNxqbvhzwVhU9JRmv5Chhh9rulGnMfj-GVIPA60,7369
1410
1411
  mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
@@ -1686,9 +1687,9 @@ mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4Se
1686
1687
  mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
1687
1688
  mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
1688
1689
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1689
- mindsdb/integrations/libs/response.py,sha256=iyadSLc5e7gY-rviaaoFNIrgIhDBJ-DZux062PxRRz8,3119
1690
+ mindsdb/integrations/libs/response.py,sha256=k-wCsIofWk4S3Mv6GX6sq482g_BIYF0iIMEwxYxrJ6E,3409
1690
1691
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1691
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=u9-etmRWB8gkcL_m8EKjqDpFun2dzuhSNgnmxXhgfbg,17517
1692
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=rg2xUssI3jQ3bm7ss9P-paqHY1waqk1m9ZfbWAqmGM0,17910
1692
1693
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1693
1694
  mindsdb/integrations/libs/llm/config.py,sha256=M14flGRcngP8n37sT8XLuJj5w-145B4IAyx3vLllogM,3548
1694
1695
  mindsdb/integrations/libs/llm/utils.py,sha256=20KrNT9PdvVL0DTPLrOT1uPUw2bMtRhnEZ_7fxBYnRQ,24648
@@ -1698,7 +1699,7 @@ mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256
1698
1699
  mindsdb/integrations/libs/ml_handler_process/describe_process.py,sha256=D1FEY2C5Ht1KjiycMuplLgHhfRaw-OJylVgst6pOzpQ,4205
1699
1700
  mindsdb/integrations/libs/ml_handler_process/func_call_process.py,sha256=W29lPhV6K8g2prNR57CmyJ_t5DNG_EVnf4fhnHpGFPI,728
1700
1701
  mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py,sha256=Lult730J8sPGabO4cVqXWtc9gqt_iFvTFlY7GAym1RM,771
1701
- mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=67Pn-0Y1H-q8sDnpCtCCpaw4dynCtskalO3MbLeVyhI,7521
1702
+ mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=84Sui802ursG2wVgUhc2fhwtmfqoIA20yqoafBh3gOY,7476
1702
1703
  mindsdb/integrations/libs/ml_handler_process/predict_process.py,sha256=QmThCaCy-LBVCcpzHWEecl6eWW48QJsf2HxxnwNWN0o,1346
1703
1704
  mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=cczOfdAPbriukLa5lamDT4VRONjFZ9QGdlXxzOad4K8,788
1704
1705
  mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
@@ -1756,7 +1757,7 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_load
1756
1757
  mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1757
1758
  mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
1758
1759
  mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1759
- mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=XfLhzrN_iCE9vf0m4mlTYkx_MX7fxPW-C30wEQ_ZgLE,16525
1760
+ mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=D8sqgFxMjjmcjIDH7fYyNC0fJakyTZq4Z1ZA0rAKyfY,10546
1760
1761
  mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
1761
1762
  mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
1762
1763
  mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoTWz6OlhRG-GzqdPPoAR6XyPtk,264
@@ -1788,28 +1789,29 @@ mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS
1788
1789
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1789
1790
  mindsdb/interfaces/database/database.py,sha256=ax8GlviJpdTyufQvBfy0ft4H8pxH7w4hp_ejNY_aYHM,4356
1790
1791
  mindsdb/interfaces/database/integrations.py,sha256=B4dfcOCsUMKgX5teNEGrXwUBnrX5L2sUP34XvbUaSdk,36825
1791
- mindsdb/interfaces/database/log.py,sha256=tewoKWc-xvfbFC9RVaUUAjQGuRY__Lex8fbR_pwNMwc,11074
1792
- mindsdb/interfaces/database/projects.py,sha256=Gb-odVStMHDl25omQRy40yNyfSG14sVyWDqzGXDwsic,16532
1792
+ mindsdb/interfaces/database/log.py,sha256=lRfYgAAeKXT6f8S-b_-sjqn99lZOgSCDAazLeJgXdF4,11076
1793
+ mindsdb/interfaces/database/projects.py,sha256=V76MlYPYljr7O-i0vwiyPgtcBO6-QYRsFFdt5sAwajQ,16373
1793
1794
  mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
1794
1795
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1795
1796
  mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2uARKGp_NWBkKY,8626
1796
1797
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1797
- mindsdb/interfaces/functions/controller.py,sha256=8kyWA8TnMsRDyIl2s3JcvdGYeww4_Qmf-jYq_wwOYH4,6057
1798
+ mindsdb/interfaces/functions/controller.py,sha256=N9gD8tLp7J19_qeIaN4dyng-0993WDRoQKqWHBq_MZ8,7428
1799
+ mindsdb/interfaces/functions/to_markdown.py,sha256=Gs-rMBfMsdau-0FbQZpvV7_Aeg_vw9Aj25lh6SHGInE,7408
1798
1800
  mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1799
- mindsdb/interfaces/jobs/jobs_controller.py,sha256=yuDN2JVIrgbQlHkxwLbhyX9CwL8oENIRjYnAR5h0ufE,18280
1801
+ mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
1800
1802
  mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1801
1803
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1802
- mindsdb/interfaces/knowledge_base/controller.py,sha256=pLjDrE1OKzD9i1oc0lvm9ONYIbkbrvqj6PP9kEQaZhQ,39003
1804
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=zxt16-7AhC5dYsBYOLrb11aDiLT2VbGZjDci21MeQ-o,40478
1803
1805
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1804
1806
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1805
1807
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
1806
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=Ew8pB-4aFXbYF_v4KYT0YRqFELMBJkLD3YiCnLRK1ok,14546
1808
+ mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=19AR_uqLYleFENUYSGsnn0SHwhQdAmaNqIyfr7mNRR4,14105
1807
1809
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
1808
1810
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1809
1811
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
1810
1812
  mindsdb/interfaces/model/model_controller.py,sha256=o84VBCAqr6ecfl9ms0enetZxC30w7pGHzfYkrkZ0x_U,20306
1811
1813
  mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1812
- mindsdb/interfaces/query_context/context_controller.py,sha256=YAmdcSFEzd3aOr4nRF7TX6UfAXH9kMK1qk7bpVtvhpY,9486
1814
+ mindsdb/interfaces/query_context/context_controller.py,sha256=t73NxqY-L-LALQS0l1DGfOGQ_NoPoI9jZoxgUekhGQ4,9559
1813
1815
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1814
1816
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1815
1817
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
@@ -1936,8 +1938,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
1936
1938
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1937
1939
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1938
1940
  mindsdb/utilities/render/sqlalchemy_render.py,sha256=6NqOcfz19dhd0PEyNfOtNHsBt1fGjq2E3nFNUad5HOk,31444
1939
- mindsdb-25.4.1.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1940
- mindsdb-25.4.1.0.dist-info/METADATA,sha256=a1Q0jVLXlcBCK81Mr2LGOAoUG6LqSEl2LVTqf6uZHeI,41710
1941
- mindsdb-25.4.1.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1942
- mindsdb-25.4.1.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1943
- mindsdb-25.4.1.0.dist-info/RECORD,,
1941
+ mindsdb-25.4.2.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1942
+ mindsdb-25.4.2.0.dist-info/METADATA,sha256=JK9uVodfkUxL9b3mKxxMW9lc7DgyLZY-BEPu_TfAWbM,42043
1943
+ mindsdb-25.4.2.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1944
+ mindsdb-25.4.2.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1945
+ mindsdb-25.4.2.0.dist-info/RECORD,,