MindsDB 25.1.4.0__py3-none-any.whl → 25.1.5.1__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 (44) hide show
  1. {MindsDB-25.1.4.0.dist-info → MindsDB-25.1.5.1.dist-info}/METADATA +235 -246
  2. {MindsDB-25.1.4.0.dist-info → MindsDB-25.1.5.1.dist-info}/RECORD +44 -42
  3. mindsdb/__about__.py +1 -1
  4. mindsdb/api/executor/datahub/datanodes/datanode.py +1 -1
  5. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +1 -1
  6. mindsdb/api/executor/datahub/datanodes/integration_datanode.py +1 -1
  7. mindsdb/api/executor/datahub/datanodes/project_datanode.py +2 -26
  8. mindsdb/api/http/namespaces/agents.py +3 -1
  9. mindsdb/api/http/namespaces/knowledge_bases.py +4 -1
  10. mindsdb/integrations/handlers/databricks_handler/requirements.txt +1 -1
  11. mindsdb/integrations/handlers/file_handler/requirements.txt +0 -4
  12. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +1 -1
  13. mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +8 -0
  14. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +4 -2
  15. mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +5 -3
  16. mindsdb/integrations/handlers/snowflake_handler/requirements.txt +1 -1
  17. mindsdb/integrations/handlers/web_handler/requirements.txt +0 -1
  18. mindsdb/integrations/libs/ml_handler_process/learn_process.py +1 -1
  19. mindsdb/integrations/libs/vectordatabase_handler.py +4 -3
  20. mindsdb/integrations/utilities/files/__init__.py +0 -0
  21. mindsdb/integrations/utilities/files/file_reader.py +258 -0
  22. mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +2 -1
  23. mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +8 -3
  24. mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +5 -9
  25. mindsdb/integrations/utilities/rag/pipelines/rag.py +1 -3
  26. mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +97 -89
  27. mindsdb/integrations/utilities/rag/settings.py +29 -14
  28. mindsdb/interfaces/agents/agents_controller.py +15 -3
  29. mindsdb/interfaces/agents/constants.py +1 -0
  30. mindsdb/interfaces/agents/langchain_agent.py +15 -10
  31. mindsdb/interfaces/agents/langfuse_callback_handler.py +4 -0
  32. mindsdb/interfaces/agents/mindsdb_database_agent.py +14 -0
  33. mindsdb/interfaces/database/integrations.py +5 -1
  34. mindsdb/interfaces/database/projects.py +38 -1
  35. mindsdb/interfaces/knowledge_base/controller.py +26 -11
  36. mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +7 -26
  37. mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +18 -10
  38. mindsdb/interfaces/skills/skill_tool.py +12 -6
  39. mindsdb/interfaces/skills/skills_controller.py +7 -3
  40. mindsdb/interfaces/skills/sql_agent.py +81 -18
  41. mindsdb/utilities/langfuse.py +15 -0
  42. {MindsDB-25.1.4.0.dist-info → MindsDB-25.1.5.1.dist-info}/LICENSE +0 -0
  43. {MindsDB-25.1.4.0.dist-info → MindsDB-25.1.5.1.dist-info}/WHEEL +0 -0
  44. {MindsDB-25.1.4.0.dist-info → MindsDB-25.1.5.1.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- mindsdb/__about__.py,sha256=_Urw9l-AFaLVc5Iq1Ue-3QlRChjZdQ2-gAT_0VgzOdc,444
1
+ mindsdb/__about__.py,sha256=_OX65JrB4ZYo5mhWGmzJNzfgsjD8_BXsJHk3qDsrRZs,444
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
3
  mindsdb/__main__.py,sha256=VQ3RetGs34NhFRT9d76o5S3UpKxdr-G3c0138kz3f8Y,21435
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -16,11 +16,11 @@ mindsdb/api/executor/datahub/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY
16
16
  mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  mindsdb/api/executor/datahub/classes/tables_row.py,sha256=wT3TzoK3dFNiRc92rh_Hgo1uqaznFldtXBUGCzKNOlg,1934
18
18
  mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
19
- mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=-WsN9svEd1FlcToR56wmfJYGSiGcryfx5StnBHdj4JA,355
20
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=D0wM8_uPfTcmnswcnyXGH86UZOiPg2ASmDuOVs3zhMY,6323
21
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=-3OkgZvD8b6H9mBw0NB2tNcw0yRuyI8XKWk9pwB4o2U,9799
19
+ mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=IuWnQvT6SVMoMOELuLoMCAUxZpItGn0Nr0ct44fspr0,373
20
+ mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=9gsMJN6sWEgugFnv9_aNK-X4DV-61RSxT2OenKUDUYA,6341
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
- mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=esPZgPoS2E-fPWFf1UUIm5x4_ptbbsVUELrEhurtHPs,7276
23
+ mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=KAYGMEDY4hVf7hZtyB26ehEwu1SCooql3mtoaN0itHs,6336
24
24
  mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=puAzEVGfZCckan8febfdREtnO-lJYnP0a7T2GwRexGo,14388
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
@@ -61,7 +61,7 @@ mindsdb/api/http/initialize.py,sha256=irU6IAhiyFkRDPmLgakhrBqh0Xi4x4aAo4jViF7eSL
61
61
  mindsdb/api/http/start.py,sha256=3F2iob1EHNh9cCeuxD1RjlVp0wnRw-ybh7lU5KaYGK8,2350
62
62
  mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
63
63
  mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- mindsdb/api/http/namespaces/agents.py,sha256=fD1w2HbHYLEYr-UQ7eAPhkvrOrNlOAWw37oNNyWTmJw,18858
64
+ mindsdb/api/http/namespaces/agents.py,sha256=G_7SMVFNgM7uL-BgatA2iBqYJA3pTLT2l2nKt_5zn-s,18947
65
65
  mindsdb/api/http/namespaces/analysis.py,sha256=Dp3izdLkG35cSAKNUPJfuGoFSRe34CzFPKk2CEVjDoI,3821
66
66
  mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
67
67
  mindsdb/api/http/namespaces/chatbots.py,sha256=9UBguchWd04wfYCrsNcFkkt0RCbg-eJcv79RIcJa5Zk,11738
@@ -71,7 +71,7 @@ mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzX
71
71
  mindsdb/api/http/namespaces/file.py,sha256=u6xYa_moAMb0UXWGkNtErGw9nk-FbloRuLHrLCANjoU,6644
72
72
  mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
73
73
  mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
74
- mindsdb/api/http/namespaces/knowledge_bases.py,sha256=bkuEaekMVpFiUTTcpqOJnxYphoEqkCDmNgth020Qszw,16564
74
+ mindsdb/api/http/namespaces/knowledge_bases.py,sha256=khPdoF5O0SQDtlGj5W0Q1gyPiuzoaq7DEgCYxpRPsXQ,16651
75
75
  mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
76
76
  mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
77
77
  mindsdb/api/http/namespaces/skills.py,sha256=2eG5NtaqJSXQ_ex9Tus0sHA7oF4_SKOxPTdlpnz2tkk,5923
@@ -461,7 +461,7 @@ mindsdb/integrations/handlers/databricks_handler/__init__.py,sha256=go72eMqUWKLj
461
461
  mindsdb/integrations/handlers/databricks_handler/connection_args.py,sha256=tdHFSNaXlAUFkM-FX7cMXEfdF6UtEgcNPSaRhFXuSUg,1885
462
462
  mindsdb/integrations/handlers/databricks_handler/databricks_handler.py,sha256=BFNxA5Xsdajva89SpUPMghUEubn3VaE8NsMhZhAG88s,9434
463
463
  mindsdb/integrations/handlers/databricks_handler/icon.svg,sha256=p4vKYvjt5bXU6R88i6xcoNKHO2DNlAGZGGZPZKNkroU,618
464
- mindsdb/integrations/handlers/databricks_handler/requirements.txt,sha256=WKJM5-tYSbdFsVTs9gLd3jTqmqD8nUi6yhI4ALUVyZw,24
464
+ mindsdb/integrations/handlers/databricks_handler/requirements.txt,sha256=W5yjZU0A5YjPZ5Ls_JEF6xNSQ-IsPKf7_iSxSAZ0IXY,43
465
465
  mindsdb/integrations/handlers/databricks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
466
466
  mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py,sha256=5b8Qcb4eZMfBtSrTpgfi-Gwk_BU5iOrV8_DWLNF01VE,1302
467
467
  mindsdb/integrations/handlers/datastax_handler/__about__.py,sha256=KFwu-VBIpci40lIAMfFzBKW3iCXBYox8JL73Y7ma62M,351
@@ -609,7 +609,7 @@ mindsdb/integrations/handlers/file_handler/__about__.py,sha256=UavP5jJ_xWIaJ0oRs
609
609
  mindsdb/integrations/handlers/file_handler/__init__.py,sha256=46Hnm3ijRsYw95BkkBxHJK8k4h_2Te0j1W0r3-ptVCg,329
610
610
  mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=eL4wugROFNBK7qcOvELrcx7cCBtkibZ-StQZCSBIn14,18363
611
611
  mindsdb/integrations/handlers/file_handler/icon.svg,sha256=hsXEvUzrO7WQMOPC83LYQt-FW0wey9TCj5EwiIJwKwk,565
612
- mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=0a-9n_mDJfSsmbTIL94YxHTIFm2oybXwTap6-oSNg_U,119
612
+ mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
613
613
  mindsdb/integrations/handlers/file_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
614
614
  mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py,sha256=1F_6d9rjcwitp9J0SNMyR1BxTb8WLzLz_h20yw2FYaQ,15558
615
615
  mindsdb/integrations/handlers/file_handler/tests/data/test.txt,sha256=SUG2Uw_Hmth51gyaCJyeyfAbFssHfsB3qWFcxBX_W1g,570
@@ -1032,8 +1032,8 @@ mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py,sha256=rUQ0p9bqH
1032
1032
  mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py,sha256=vraI6WlfpNk0C_D0wQH7Wxxy7zpI57rOp2t2XPgHuSk,533
1033
1033
  mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z2hQUMEyyP8DUmhgUtjvsfN3HU2EBes,2430
1034
1034
  mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=MjvBXKUqrh3j9ikXNaEf45qVQfmFUAhjNN493rdvsfw,3490
1035
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8O2fhjoyS3N0Pb4ZVY3iong3Dm0DtCVwZkORSiPw2YM,9319
1036
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=cLXEu1uf6dqWIyrURRZjlVnsKO9iltAPpMAhLZc17y8,3146
1035
+ mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8Xi8rKFWpEsDw5mzqgR7IW4wEbk-TBNqNqOj4350gL4,9333
1036
+ mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=5eqvh7tX6wepvteTgmDxikRoqmx4VIRWszQyM8tPdFc,3421
1037
1037
  mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
1038
1038
  mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
1039
1039
  mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
@@ -1171,7 +1171,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
1171
1171
  mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
1172
1172
  mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
1173
1173
  mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
1174
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=9t0XTkE2c9eKiGhFh0wh0spYn8wSMLo5U2o8_0C85Qg,19292
1174
+ mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=U7bY7Aogz4-gKA-DH6TYfLU4UgYTf162noZ9BsJjJZY,19356
1175
1175
  mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1176
1176
  mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
1177
1177
  mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=dguuDcpGTUdL7KHbLPv3OLY9fmvJrQj5I_CsfmuQdKk,606
@@ -1275,7 +1275,7 @@ mindsdb/integrations/handlers/rag_handler/settings.py,sha256=5T4_oZt9dUD67AJXeZr
1275
1275
  mindsdb/integrations/handlers/ray_serve_handler/__about__.py,sha256=42oqKM1C-nIisvPvAL5fIxBDP-rxEduXnGrUUjrfLIU,345
1276
1276
  mindsdb/integrations/handlers/ray_serve_handler/__init__.py,sha256=MYDLydWeimQ74znwnrrgnh9S6YgtE7UnJcYBVlWv6r8,596
1277
1277
  mindsdb/integrations/handlers/ray_serve_handler/icon.svg,sha256=spxNMpiGLzxt46VM70-m-z4xButrIQ_dzLTarJKYSOA,1990
1278
- mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=tgd1pfCfPP1JPZ2GhrRAZrXtMX2jOGGsFBvrCyKCwGk,2802
1278
+ mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=8nvYD8IqGQGpWqsD63JBdWMSehfvrk8F8U6V0pCJiAw,2924
1279
1279
  mindsdb/integrations/handlers/reddit_handler/__about__.py,sha256=Xp4s3kJp-REycH83S1RLSaPZHpFqbn-MjRuQZ5BpBuQ,336
1280
1280
  mindsdb/integrations/handlers/reddit_handler/__init__.py,sha256=n3dhcPIHT_89hQxEXKQbHApOGBGQxtvWxp-fvFL083s,496
1281
1281
  mindsdb/integrations/handlers/reddit_handler/icon.svg,sha256=JAhHkvjiEfOz_BSbBVosQs8VXegNanxdnNUNz1bHyRM,3986
@@ -1401,7 +1401,7 @@ mindsdb/integrations/handlers/snowflake_handler/__about__.py,sha256=O2reZn6Jc5N1
1401
1401
  mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DIgRy6XdrGgBjTf_H5G514XYH0fGFYsw,609
1402
1402
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1403
1403
  mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
1404
- mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=5r0GR-Pbs4w_Mxp6OmX83aVj7D_y7hagqozmHE_ijyE,63
1404
+ mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=RC9MdPLYC6oRsCC2k5sLfgxDTEuEPvqe8OpyjMYEECs,63
1405
1405
  mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=0NpP-KVaxduKaAkb7yKA--WzdDTWhzyNrWW9BoxNF2o,11090
1406
1406
  mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1407
1407
  mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py,sha256=2_zTKNxqbvhzwVhU9JRmv5Chhh9rulGnMfj-GVIPA60,7369
@@ -1613,7 +1613,7 @@ mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py,sha256=OG5Rh1
1613
1613
  mindsdb/integrations/handlers/web_handler/__about__.py,sha256=CxQc3_pLSKuz1AnBj6sWq3rEdVwcaO_WsfpeAVSKjOY,349
1614
1614
  mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE3B900gkZLuQ8QWQEvYFbTUkE,504
1615
1615
  mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
1616
- mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=AduQXA-pttagj8PyqEVLSzzO-YxXZpNbzym4vdRvXHQ,21
1616
+ mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
1617
1617
  mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=4dAVqvoLDaxQsg3zZyyaGE2XPABjxGTV8GIuDq3KPPY,11275
1618
1618
  mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=AB-wNODo6WKlWkF8Iw1NEKgKVErPR5utkvXIihFtXn0,3320
1619
1619
  mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
@@ -1686,7 +1686,7 @@ mindsdb/integrations/libs/process_cache.py,sha256=Ad63SQKKVJiZemISb2RnWdjTsyKVeN
1686
1686
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1687
1687
  mindsdb/integrations/libs/response.py,sha256=iyadSLc5e7gY-rviaaoFNIrgIhDBJ-DZux062PxRRz8,3119
1688
1688
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1689
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=E5gYqD3e9rqspCNecxfYWwtM-itfX3kdkP7cUwUtrag,17448
1689
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=-TcUIzSSX21DPOGh7zI0-nuumqaW0NgUCElXzouWXjg,17523
1690
1690
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1691
1691
  mindsdb/integrations/libs/llm/config.py,sha256=M14flGRcngP8n37sT8XLuJj5w-145B4IAyx3vLllogM,3548
1692
1692
  mindsdb/integrations/libs/llm/utils.py,sha256=vCiWWqCfmKElyyuka4Asd1UBhEZiH7YWn_xRAk3xies,24362
@@ -1696,7 +1696,7 @@ mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256
1696
1696
  mindsdb/integrations/libs/ml_handler_process/describe_process.py,sha256=D1FEY2C5Ht1KjiycMuplLgHhfRaw-OJylVgst6pOzpQ,4205
1697
1697
  mindsdb/integrations/libs/ml_handler_process/func_call_process.py,sha256=W29lPhV6K8g2prNR57CmyJ_t5DNG_EVnf4fhnHpGFPI,728
1698
1698
  mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py,sha256=Lult730J8sPGabO4cVqXWtc9gqt_iFvTFlY7GAym1RM,771
1699
- mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=k3UAcRx2wZukaHOaFGxGzqNhEcW3MdhfCt_C4WYJPNs,7100
1699
+ mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=EjMwG2Hy4N6xS3qJYwibGGhR6xsZH6L_LSkEnwlSnDE,7103
1700
1700
  mindsdb/integrations/libs/ml_handler_process/predict_process.py,sha256=QmThCaCy-LBVCcpzHWEecl6eWW48QJsf2HxxnwNWN0o,1346
1701
1701
  mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=cczOfdAPbriukLa5lamDT4VRONjFZ9QGdlXxzOad4K8,788
1702
1702
  mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
@@ -1713,17 +1713,19 @@ mindsdb/integrations/utilities/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
1713
1713
  mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-8BNfeUJshGz4_MFrIDYBQ,1665
1714
1714
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
1715
1715
  mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
1716
+ mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1717
+ mindsdb/integrations/utilities/files/file_reader.py,sha256=F9v0ix-Ym56GFnwE3bIaojY7hu5Vkz8_cB8oRBzPgQE,8233
1716
1718
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1717
1719
  mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=zkvVb54zxtn4_NSwqCD-SVQG_5JI9EYRygb6EABQu7g,43
1718
1720
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
1719
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=nzJtuvxpwochJIsni2Z79kmK546KD_dNEGpxvH-jxIs,5255
1721
+ mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=pwH6_oyXIv-Ng1eH8By7K3A4zu0jvQ6TXN2FYPwK6yc,5336
1720
1722
  mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=lyJdlw4_MFt3w3Iue7npRGwjNPIHzZZGox4dNEXvVaE,139
1721
1723
  mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
1722
1724
  mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
1723
1725
  mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py,sha256=Nuug_6Zggj5Q4D01sRLpyHrGLvyLL1ONg3SiZH8i4W4,2400
1724
1726
  mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=6JRit6NCWhzThecl0BM5bFGsmST6CD4vSAOm-nAqBqE,4223
1725
1727
  mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py,sha256=_hlwBPWRZu1cW8dLQnrmJUr39tokoT2SkodHzJ8PzGM,78
1726
- mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=LnNooFkevFgbtWnfOxc4JC8c3fRJNhqGpu8cgvo3dZc,5211
1728
+ mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=8xGoJtqMBRYNus6enlyHeFMeyl6Rnh76xIXBJ172RmU,5369
1727
1729
  mindsdb/integrations/utilities/handlers/query_utilities/__init__.py,sha256=Gy3epzeBeKSi5xFMs9Zq2ggAupWJTDWc_3C7X8rnSEU,279
1728
1730
  mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py,sha256=XFmXkaDd1y2YwWDpVG6EptdWpT1QnW8cPmC9QEDyorw,1483
1729
1731
  mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py,sha256=tylfQrK9kNAOdCpAKgTyACka1L4AGj-CT1JYpnjyRFc,1543
@@ -1736,11 +1738,11 @@ mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validatio
1736
1738
  mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1737
1739
  mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
1738
1740
  mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=0RhyafFoQPl1aniRYcOu57aljfqKqj_p0cNb_bfOrc8,3742
1739
- mindsdb/integrations/utilities/rag/settings.py,sha256=Is7abNO0KjB4__ru90HxEcnQEoFgIcGUmdKpg5vuvtA,23629
1741
+ mindsdb/integrations/utilities/rag/settings.py,sha256=aV4u5syOXMBOU-hXgOD9MfhRRPe3xf-T6SsaU3otUh4,23489
1740
1742
  mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
1741
1743
  mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
1742
1744
  mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1743
- mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py,sha256=CtQbiwUaBqIzlB20oqTarfM_Cqi2tfNd9D8CMJYffMs,10350
1745
+ mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py,sha256=DsYSCJqjjVqOHiHsO5UrrsRVFV5KcU2hcl01-CIt9JI,10245
1744
1746
  mindsdb/integrations/utilities/rag/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1745
1747
  mindsdb/integrations/utilities/rag/loaders/file_loader.py,sha256=CZWcr1F2LHmiKxrQwqPModAlHCgJ4F9OLuVpaf14DR8,1868
1746
1748
  mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py,sha256=TgLU4hFPc-eKJPuN8Gn9UnwqXWF_EhCUGTZNMEP-_vQ,1476
@@ -1748,7 +1750,7 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py,sha25
1748
1750
  mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py,sha256=1afkvEbBSzaeofZAbK80m3UxfZd7PO-SukbnNb1aW3w,5013
1749
1751
  mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py,sha256=TaJkfrsajapchnP5ED0WMCP85ptbvN2d8y3UMdjMjDc,3188
1750
1752
  mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1751
- mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=hkIqbBkERkOrsOUruLweKnj4Euo5GoJbXB5GspD1TGk,15218
1753
+ mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=fFFwts-6Vai8rNaPmj8znLEvkTKyra3L9qQ0LEG581I,15095
1752
1754
  mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1753
1755
  mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=ivSLr6ZA51pFNIrP5vr1STs54fHvnnj_CGqxK-HLFAc,9083
1754
1756
  mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
@@ -1757,18 +1759,18 @@ mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoT
1757
1759
  mindsdb/integrations/utilities/rag/retrievers/multi_hop_retriever.py,sha256=wC2M3Vsgzs5Nu6uEuD4YQZZU9W8eW_bc7RrrqvN38mk,3319
1758
1760
  mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py,sha256=D9QzIRZWQ6LrT892twdgJj287_BlVEmXRQLYQegQuVA,4383
1759
1761
  mindsdb/integrations/utilities/rag/retrievers/retriever_factory.py,sha256=knmGLJNEG8x4KFhUYQiCIpghR5yEEeu_tonSUMUqXAQ,2205
1760
- mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=Xjf8aMNGUBqXF_2poPtoTrZeVhr30pXcpCSarvExrHA,9586
1762
+ mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=yLyDt1M28C9DlrzcLPhQIB0kkNdfkGMYkawN6u6sFO4,10390
1761
1763
  mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1762
1764
  mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
1763
1765
  mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1764
1766
  mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1765
- mindsdb/interfaces/agents/agents_controller.py,sha256=TMzmzQsgxZjmtARcoyOspATUEi4rRTfBExeuAZDrprc,17456
1767
+ mindsdb/interfaces/agents/agents_controller.py,sha256=4lb8t7S9IGG-ZbBCNQsN36-5JN40qHEBvDNq4JaQJqo,18159
1766
1768
  mindsdb/interfaces/agents/callback_handlers.py,sha256=90mGvx6ZIXRA_PAoV6vf8OHjJN65GHgoM3ip_ULOVN8,4711
1767
- mindsdb/interfaces/agents/constants.py,sha256=iPxsSPrf9cEiYmOJSJSHvF3VG-UTIJoYt6j5gmR4Byc,4433
1768
- mindsdb/interfaces/agents/langchain_agent.py,sha256=rAavppJfAc1ZmRMhOLCu_FyUijkqL8lo0VeX5XdG0xE,25454
1769
- mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=hNgvYZkD1LWXbcZVJF-SntAKHvCRlurMEUhBkTRtIgs,4839
1769
+ mindsdb/interfaces/agents/constants.py,sha256=VrtxjycDDsZ1z1kgVuz84yjfJicvDedeut3J2x0NMWE,4462
1770
+ mindsdb/interfaces/agents/langchain_agent.py,sha256=GswT0iPmQThJsoEIBOmWZG3K1eqwuLMuLQtCI36LQPg,25878
1771
+ mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=EIea9jsKgcGANPCZpdLe929bJy85SVA_bjdsyPiwp_g,4900
1770
1772
  mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=9e_LxCKrCSOZWqURHWavw-FQUK9PLJ5O18IGYSHD9us,6051
1771
- mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=swLalN9fN91FmxmUALXyNKI4amVg3ABukeFi2cf_Ja4,1858
1773
+ mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=lk7UyE7tK807GXLBDr4-b2VVFUUzDtpMx2GjVtywv3o,2459
1772
1774
  mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
1773
1775
  mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1774
1776
  mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=Ex-_CoZayYW3GAde0XozTL5s5M3rwWJqxt_c1uU09vg,14181
@@ -1780,9 +1782,9 @@ mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augj
1780
1782
  mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
1781
1783
  mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1782
1784
  mindsdb/interfaces/database/database.py,sha256=Uq02qqkkAhGTZTf_BiyyvAg8X5QhakjpDWMRn-kZOgU,4284
1783
- mindsdb/interfaces/database/integrations.py,sha256=-OzOnU1PIOgSD0Tgq-tdSpMb6V1qtXPgbdvAaYm__9s,36445
1785
+ mindsdb/interfaces/database/integrations.py,sha256=9hTqsOihKipy66XiW5-vCGazHWdyIt7zVp3mODBduis,36797
1784
1786
  mindsdb/interfaces/database/log.py,sha256=tewoKWc-xvfbFC9RVaUUAjQGuRY__Lex8fbR_pwNMwc,11074
1785
- mindsdb/interfaces/database/projects.py,sha256=aNI9vTppVogA8pZvG6jjdykKSEYzAwSALjjEUtOYp6o,13652
1787
+ mindsdb/interfaces/database/projects.py,sha256=0ZjcqpDf437FmRhUk4z8YJR3MaoxtwJH60uPusLbfPU,15077
1786
1788
  mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
1787
1789
  mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1788
1790
  mindsdb/interfaces/file/file_controller.py,sha256=-CS3ocAJV_K2Bwb2p_RezEj2Bjnk8WKtCVmkqFYmxX4,4612
@@ -1792,10 +1794,10 @@ mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
1792
1794
  mindsdb/interfaces/jobs/jobs_controller.py,sha256=xBleXIpGLZ_Sg3j5e7BeTRV-Hp6ELMuFuQwtVZyQ72s,18247
1793
1795
  mindsdb/interfaces/jobs/scheduler.py,sha256=m_C-QiTExljq0ilpe4vQiQv56AIWsrtfcdo0krMYQes,3664
1794
1796
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1795
- mindsdb/interfaces/knowledge_base/controller.py,sha256=SdChVGii_RKCvIrbxLsF8MvMY50OQgatDfynsOkS6Qw,35689
1797
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=2DhhWQmZXDtWuQnSEa-J4m-HEvr6fsvBZ5Chs8xS9QA,36304
1796
1798
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1797
1799
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=0sLB2GOQhh3d46WNcVPF0iTmJc01CIXJoPT99XktuMo,295
1798
- mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=Ry0KG8F6kNPAnaoKRqsGX1Oq_ukt6ZmI8fYgj_0RnvU,6342
1800
+ mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
1799
1801
  mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=RdASLNgDdvfjwLawIqsSQeQKX2qf411e5N7bjQuCNmQ,14604
1800
1802
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
1801
1803
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1806,13 +1808,13 @@ mindsdb/interfaces/query_context/context_controller.py,sha256=YAmdcSFEzd3aOr4nRF
1806
1808
  mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
1807
1809
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1808
1810
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=zuEEPky--GdKHa1rqd4VhM2wgtlGas5G72eFbooj-Hg,4480
1809
- mindsdb/interfaces/skills/skill_tool.py,sha256=knU34NKWlF0-Wc_no0mdUOlXDJkP_kTQjcuhxiRUH2E,12568
1810
- mindsdb/interfaces/skills/skills_controller.py,sha256=6UagDyYf-xDjnanIJzoOcPAIuBi7g9O6DKE0YaKW61g,5783
1811
- mindsdb/interfaces/skills/sql_agent.py,sha256=fDKSrumx5ml4aCjPbo-Edmv0vSml-LiiXhftjJTDMY8,12117
1811
+ mindsdb/interfaces/skills/skill_tool.py,sha256=8YjAmQ8PM0dhO8pRfKuwO2Bf3bKizLARelztjbwNz4c,12925
1812
+ mindsdb/interfaces/skills/skills_controller.py,sha256=CUY0B_9DBCUX7LzeODrdBs4WDNRivGPTPHYcGtH7b-M,6146
1813
+ mindsdb/interfaces/skills/sql_agent.py,sha256=ZIW1-X95SDzaX5xHlVzST3z7k5Ij35BdJOgd9e2c6a0,14356
1812
1814
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1813
1815
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1814
1816
  mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=CDi2v2Ym3u-0nr8jq7wyf8CymWRFy_wziCov4Y9b3Iw,1253
1815
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=Ad74RUYhwR4zFQPmES1aJKsVHj9YpMUJqzRgyPotXt4,6010
1817
+ mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=xDMSe00nxdYe0m-rQM-awJnb6j5A2uR9Ve_Zx0HPMcc,7002
1816
1818
  mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1817
1819
  mindsdb/interfaces/storage/db.py,sha256=L-nXGVVkt4izM2VgORfCitLUg3xVup8nwLi7B9PyKCg,19351
1818
1820
  mindsdb/interfaces/storage/fs.py,sha256=4Nyo-h23UtZc2nz_LWyVzboC_e1jlU58aph1_en8MdE,21155
@@ -1898,7 +1900,7 @@ mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6wa
1898
1900
  mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
1899
1901
  mindsdb/utilities/functions.py,sha256=CQ87uYz7elOeklHbl7vQdK6QPKpTLGWHAOEKW-lKq5Q,6398
1900
1902
  mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
1901
- mindsdb/utilities/langfuse.py,sha256=mPw_eKhSA5LS4EV21lSE9jhXR-Ih7PpaEVnqcOVwh1c,8886
1903
+ mindsdb/utilities/langfuse.py,sha256=SzJ7db-BZIiYiOs27jxmeUAp554W9jFFiuiWy87FNs4,9270
1902
1904
  mindsdb/utilities/log.py,sha256=cqWnFDM3qBbsMKTpIXKjA7q1jTZDMkrk4YhjVmzko58,3908
1903
1905
  mindsdb/utilities/log_controller.py,sha256=B70FF1P1-kkpujpSAkxhu9FCZARKXfvov-SBl3oiobA,1039
1904
1906
  mindsdb/utilities/partitioning.py,sha256=W84Nj8t2pveOo1ZfWuuYrSTOlOaZhLTPEaDxbE6BlyY,1466
@@ -1927,8 +1929,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
1927
1929
  mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
1928
1930
  mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1929
1931
  mindsdb/utilities/render/sqlalchemy_render.py,sha256=XnG2IvB5tTF65EK-xV14HXrfGxyz2cQw7K6zEr9dclI,28287
1930
- MindsDB-25.1.4.0.dist-info/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1931
- MindsDB-25.1.4.0.dist-info/METADATA,sha256=PkOdPMY6p1hf2-pmQUeYoPW6o6dNdcqnoqWt5fzS2vo,43201
1932
- MindsDB-25.1.4.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
1933
- MindsDB-25.1.4.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1934
- MindsDB-25.1.4.0.dist-info/RECORD,,
1932
+ MindsDB-25.1.5.1.dist-info/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1933
+ MindsDB-25.1.5.1.dist-info/METADATA,sha256=2DoUnhc4emoweLx4ZwXFz8xjL6zhcRBWa8tskS4GEg8,42706
1934
+ MindsDB-25.1.5.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
1935
+ MindsDB-25.1.5.1.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1936
+ MindsDB-25.1.5.1.dist-info/RECORD,,
mindsdb/__about__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  __title__ = 'MindsDB'
2
2
  __package_name__ = 'mindsdb'
3
- __version__ = '25.1.4.0'
3
+ __version__ = '25.1.5.1'
4
4
  __description__ = "MindsDB's AI SQL Server enables developers to build AI tools that need access to real-time data to perform their tasks"
5
5
  __email__ = "jorge@mindsdb.com"
6
6
  __author__ = 'MindsDB Inc'
@@ -13,7 +13,7 @@ class DataNode:
13
13
  def has_table(self, tableName):
14
14
  pass
15
15
 
16
- def get_table_columns(self, tableName):
16
+ def get_table_columns(self, tableName, schema_name=None):
17
17
  pass
18
18
 
19
19
  def query(self, query=None, native_query=None, session=None):
@@ -120,7 +120,7 @@ class InformationSchemaDataNode(DataNode):
120
120
  return True
121
121
  return False
122
122
 
123
- def get_table_columns(self, tableName):
123
+ def get_table_columns(self, tableName, schema_name=None):
124
124
  tn = tableName.upper()
125
125
  if tn in self.tables:
126
126
  return [
@@ -81,7 +81,7 @@ class IntegrationDataNode(DataNode):
81
81
  if 'type' in columns:
82
82
  types = df[df.columns[columns.index('type')]]
83
83
  else:
84
- types = [None] * len(columns)
84
+ types = [None] * len(names)
85
85
 
86
86
  ret = []
87
87
  for i, name in enumerate(names):
@@ -14,9 +14,6 @@ from mindsdb_sql_parser.ast import (
14
14
  from mindsdb.utilities.exception import EntityNotExistsError
15
15
  from mindsdb.api.executor.datahub.datanodes.datanode import DataNode
16
16
  from mindsdb.api.executor.datahub.classes.tables_row import TablesRow
17
- from mindsdb.api.executor.sql_query import SQLQuery
18
- from mindsdb.api.executor.utilities.sql import query_df
19
- from mindsdb.interfaces.query_context.context_controller import query_context_controller
20
17
  from mindsdb.utilities.partitioning import process_dataframe_in_partitions
21
18
 
22
19
 
@@ -52,7 +49,7 @@ class ProjectDataNode(DataNode):
52
49
  tables = self.project.get_tables()
53
50
  return table_name in tables
54
51
 
55
- def get_table_columns(self, table_name):
52
+ def get_table_columns(self, table_name, schema_name=None):
56
53
  return [
57
54
  {'name': name}
58
55
  for name in self.project.get_columns(table_name)
@@ -122,28 +119,7 @@ class ProjectDataNode(DataNode):
122
119
 
123
120
  if self.project.get_view(query_table):
124
121
  # this is the view
125
-
126
- view_meta = self.project.query_view(query)
127
-
128
- query_context_controller.set_context('view', view_meta['id'])
129
-
130
- try:
131
- sqlquery = SQLQuery(
132
- view_meta['query_ast'],
133
- session=session
134
- )
135
- result = sqlquery.fetch(view='dataframe')
136
-
137
- finally:
138
- query_context_controller.release_context('view', view_meta['id'])
139
-
140
- if result['success'] is False:
141
- raise Exception(f"Cant execute view query: {view_meta['query_ast']}")
142
- df = result['result']
143
- # remove duplicated columns
144
- df = df.loc[:, ~df.columns.duplicated()]
145
-
146
- df = query_df(df, query, session=session)
122
+ df = self.project.query_view(query, session)
147
123
 
148
124
  columns_info = [
149
125
  {
@@ -475,11 +475,13 @@ class AgentCompletions(Resource):
475
475
 
476
476
  output_col = agents_controller.assistant_column
477
477
  model_output = completion.iloc[-1][output_col]
478
+ trace_id = completion.iloc[-1]['trace_id']
478
479
 
479
480
  response = {
480
481
  'message': {
481
482
  'content': model_output,
482
- 'role': 'assistant'
483
+ 'role': 'assistant',
484
+ 'trace_id': trace_id
483
485
  }
484
486
  }
485
487
 
@@ -105,7 +105,10 @@ class KnowledgeBasesResource(Resource):
105
105
  f'Knowledge Base with name {kb_name} already exists'
106
106
  )
107
107
 
108
- embedding_model_identifier = Identifier(parts=[knowledge_base['model']])
108
+ embedding_model_identifier = None
109
+ if knowledge_base.get('model'):
110
+ embedding_model_identifier = Identifier(parts=[knowledge_base['model']])
111
+
109
112
  storage = knowledge_base.get('storage')
110
113
  embedding_table_identifier = None
111
114
  if storage is not None:
@@ -1 +1 @@
1
- databricks-sql-connector
1
+ databricks-sql-connector >= 3.7.1, < 4.0.0
@@ -1,4 +0,0 @@
1
- charset-normalizer
2
- filetype
3
- openpyxl # Optional dep of langchain for txt files
4
- pymupdf # Optional dep for PDF files
@@ -28,7 +28,7 @@ class MSOneDriveHandler(APIHandler):
28
28
  """
29
29
 
30
30
  name = 'one_drive'
31
- supported_file_formats = ['csv', 'tsv', 'json', 'parquet']
31
+ supported_file_formats = ['csv', 'tsv', 'json', 'parquet', 'pdf', 'txt']
32
32
 
33
33
  def __init__(self, name: Text, connection_data: Dict, **kwargs: Any) -> None:
34
34
  """
@@ -9,6 +9,8 @@ from mindsdb.integrations.utilities.sql_utils import (
9
9
  SortColumn
10
10
  )
11
11
 
12
+ from mindsdb.integrations.utilities.files.file_reader import FileReader
13
+
12
14
 
13
15
  class ListFilesTable(APIResource):
14
16
  """
@@ -97,4 +99,10 @@ class FileTable(APIResource):
97
99
  elif file_extension == "parquet":
98
100
  df = pd.read_parquet(BytesIO(file_content))
99
101
 
102
+ elif file_extension == "pdf":
103
+ df = FileReader().read_pdf(BytesIO(file_content))
104
+
105
+ elif file_extension == "txt":
106
+ df = FileReader().read_txt(BytesIO(file_content))
107
+
100
108
  return df
@@ -373,10 +373,12 @@ class PgVectorHandler(VectorStoreHandler, PostgresHandler):
373
373
 
374
374
  # Add vector size specification only if provided
375
375
  size_spec = f"({self._vector_size})" if self._vector_size is not None else "()"
376
-
376
+ if vector_column_type == 'vector':
377
+ size_spec = ''
378
+
377
379
  cur.execute(f"""
378
380
  CREATE TABLE IF NOT EXISTS {table_name} (
379
- id SERIAL PRIMARY KEY,
381
+ id TEXT PRIMARY KEY,
380
382
  embeddings {vector_column_type}{size_spec},
381
383
  content TEXT,
382
384
  metadata JSONB
@@ -12,7 +12,7 @@ class RayServeHandler(BaseMLEngine):
12
12
  - A Ray Serve server should be running
13
13
 
14
14
  Example:
15
-
15
+
16
16
  """ # noqa
17
17
  name = 'ray_serve'
18
18
 
@@ -42,9 +42,11 @@ class RayServeHandler(BaseMLEngine):
42
42
  raise Exception("Error: Training failed: " + resp['status'])
43
43
 
44
44
  def predict(self, df, args=None):
45
- args = self.model_storage.json_get('args') # override any incoming args for now
45
+ args = {**(self.model_storage.json_get('args')), **args} # merge incoming args
46
+ pred_args = args.get('predict_params', {})
47
+ args = {**args, **pred_args} # merge pred_args
46
48
  resp = requests.post(args['predict_url'],
47
- json={'df': df.to_json(orient='records')},
49
+ json={'df': df.to_json(orient='records'), 'pred_args': pred_args},
48
50
  headers={'content-type': 'application/json; format=pandas-records'})
49
51
  response = resp.json()
50
52
 
@@ -1,2 +1,2 @@
1
- snowflake-connector-python==3.12.3
1
+ snowflake-connector-python==3.13.1
2
2
  snowflake-sqlalchemy==1.7.0
@@ -1,3 +1,2 @@
1
- pymupdf
2
1
  html2text
3
2
  bs4
@@ -72,7 +72,7 @@ def learn_process(data_integration_ref: dict, problem_definition: dict, fetch_da
72
72
  elif data_integration_ref['type'] == 'view':
73
73
  project = database_controller.get_project(project_name)
74
74
  query_ast = parse_sql(fetch_data_query)
75
- view_meta = project.query_view(query_ast)
75
+ view_meta = project.get_view_meta(query_ast)
76
76
  sqlquery = SQLQuery(view_meta['query_ast'], session=sql_session)
77
77
  elif data_integration_ref['type'] == 'project':
78
78
  query_ast = parse_sql(fetch_data_query)
@@ -337,7 +337,7 @@ class VectorStoreHandler(BaseHandler):
337
337
  # dispatch delete
338
338
  return self.delete(table_name, conditions=conditions)
339
339
 
340
- def _dispatch_select(self, query: Select):
340
+ def dispatch_select(self, query: Select, conditions: List[FilterCondition] = None):
341
341
  """
342
342
  Dispatch select query to the appropriate method.
343
343
  """
@@ -357,7 +357,8 @@ class VectorStoreHandler(BaseHandler):
357
357
 
358
358
  # check if columns are allowed
359
359
  where_statement = query.where
360
- conditions = self._extract_conditions(where_statement)
360
+ if conditions is None:
361
+ conditions = self._extract_conditions(where_statement)
361
362
 
362
363
  # get offset and limit
363
364
  offset = query.offset.value if query.offset is not None else None
@@ -382,7 +383,7 @@ class VectorStoreHandler(BaseHandler):
382
383
  Insert: self._dispatch_insert,
383
384
  Update: self._dispatch_update,
384
385
  Delete: self._dispatch_delete,
385
- Select: self._dispatch_select,
386
+ Select: self.dispatch_select,
386
387
  }
387
388
  if type(query) in dispatch_router:
388
389
  resp = dispatch_router[type(query)](query)
File without changes