MindsDB 25.3.3.0__py3-none-any.whl → 25.3.4.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 (45) hide show
  1. mindsdb/__about__.py +2 -2
  2. mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +2 -6
  3. mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +1 -1
  4. mindsdb/api/http/namespaces/agents.py +9 -5
  5. mindsdb/api/http/namespaces/chatbots.py +6 -5
  6. mindsdb/api/http/namespaces/databases.py +5 -6
  7. mindsdb/api/http/namespaces/skills.py +5 -4
  8. mindsdb/api/http/namespaces/views.py +6 -7
  9. mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +23 -2
  10. mindsdb/integrations/handlers/confluence_handler/confluence_api_client.py +164 -0
  11. mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +54 -59
  12. mindsdb/integrations/handlers/confluence_handler/confluence_tables.py +753 -0
  13. mindsdb/integrations/handlers/confluence_handler/connection_args.py +8 -8
  14. mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +16 -6
  15. mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +64 -83
  16. mindsdb/integrations/handlers/huggingface_handler/requirements.txt +5 -4
  17. mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +5 -5
  18. mindsdb/integrations/handlers/langchain_handler/requirements.txt +1 -1
  19. mindsdb/integrations/handlers/lightwood_handler/requirements.txt +3 -3
  20. mindsdb/integrations/handlers/litellm_handler/requirements.txt +1 -1
  21. mindsdb/integrations/handlers/llama_index_handler/requirements.txt +1 -1
  22. mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +1 -1
  23. mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py +278 -0
  24. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +114 -70
  25. mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +431 -0
  26. mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +2 -0
  27. mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +18 -4
  28. mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +18 -16
  29. mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +26 -1
  30. mindsdb/integrations/libs/vectordatabase_handler.py +2 -2
  31. mindsdb/integrations/utilities/files/file_reader.py +3 -3
  32. mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +36 -2
  33. mindsdb/integrations/utilities/rag/settings.py +1 -0
  34. mindsdb/interfaces/chatbot/chatbot_controller.py +6 -4
  35. mindsdb/interfaces/jobs/jobs_controller.py +1 -4
  36. mindsdb/interfaces/knowledge_base/controller.py +9 -28
  37. mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +1 -1
  38. mindsdb/interfaces/skills/skills_controller.py +8 -7
  39. {mindsdb-25.3.3.0.dist-info → mindsdb-25.3.4.1.dist-info}/METADATA +237 -237
  40. {mindsdb-25.3.3.0.dist-info → mindsdb-25.3.4.1.dist-info}/RECORD +43 -41
  41. {mindsdb-25.3.3.0.dist-info → mindsdb-25.3.4.1.dist-info}/WHEEL +1 -1
  42. mindsdb/integrations/handlers/confluence_handler/confluence_table.py +0 -193
  43. mindsdb/integrations/handlers/confluence_handler/requirements.txt +0 -1
  44. {mindsdb-25.3.3.0.dist-info → mindsdb-25.3.4.1.dist-info/licenses}/LICENSE +0 -0
  45. {mindsdb-25.3.3.0.dist-info → mindsdb-25.3.4.1.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- mindsdb/__about__.py,sha256=7xE5LpjKTOw5WXoWMuiZAy5WT1KosaIDK7yxpF7dIEk,444
1
+ mindsdb/__about__.py,sha256=H5cqZBE5cU9Hi1AFNnP3KQektq1qDOcsG7OwbOqelCQ,456
2
2
  mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
3
3
  mindsdb/__main__.py,sha256=OOvGVNYi17UNn66OFjRNGcgxR9JefTxLZzL3vHq3AEg,21826
4
4
  mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -17,9 +17,9 @@ mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
17
17
  mindsdb/api/executor/datahub/classes/tables_row.py,sha256=wT3TzoK3dFNiRc92rh_Hgo1uqaznFldtXBUGCzKNOlg,1934
18
18
  mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
19
19
  mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=IuWnQvT6SVMoMOELuLoMCAUxZpItGn0Nr0ct44fspr0,373
20
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=9gsMJN6sWEgugFnv9_aNK-X4DV-61RSxT2OenKUDUYA,6341
20
+ mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=PTSwy1PFfFWc0tt-Xb4nOU8gaqpq8Y9FVIFZ1SNgjqU,6323
21
21
  mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=HowB1lnbs__qiVOE63uAuOqhDEj-2IcuiPh5bb3RgPg,9797
22
- mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=OQJbmzGLYzbA0v-_rwmzB5gvwpJVO0c9h6oNjeGjGPU,12554
22
+ mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=xWWe25ZaOhc-c_gjT6n1w4A_g-z7h8W4JUb9sW5Hglo,12567
23
23
  mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=KAYGMEDY4hVf7hZtyB26ehEwu1SCooql3mtoaN0itHs,6336
24
24
  mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=PCmcxj_Jbhd5JuGpekfb8nQJBTJCfptibJuy0Wrz10I,14218
25
25
  mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
@@ -61,12 +61,12 @@ mindsdb/api/http/initialize.py,sha256=pWQCv7YicvU7rmqh0w5r-12iWHOtdNChKWID-bxzvX
61
61
  mindsdb/api/http/start.py,sha256=3F2iob1EHNh9cCeuxD1RjlVp0wnRw-ybh7lU5KaYGK8,2350
62
62
  mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
63
63
  mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
- mindsdb/api/http/namespaces/agents.py,sha256=wLo4msX2kp1X9F--HN0_s5dS0RXg6d21a5jQctIgb7I,18712
64
+ mindsdb/api/http/namespaces/agents.py,sha256=H3C4MmNCsrk3Dv8Cw1kx0j7EvNOia5PfyfQYuElgczE,18984
65
65
  mindsdb/api/http/namespaces/analysis.py,sha256=Dp3izdLkG35cSAKNUPJfuGoFSRe34CzFPKk2CEVjDoI,3821
66
66
  mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
67
- mindsdb/api/http/namespaces/chatbots.py,sha256=9UBguchWd04wfYCrsNcFkkt0RCbg-eJcv79RIcJa5Zk,11738
67
+ mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
68
68
  mindsdb/api/http/namespaces/config.py,sha256=-OZaCf32lHIi1hZ3gt6nuR0XF1gxkh3zv-oU28Z9Tfs,8382
69
- mindsdb/api/http/namespaces/databases.py,sha256=HAr2pvEuj3n2t1Wmxje0ZsSRxrY3sz9k_MGQ-yvgYWg,18570
69
+ mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
70
70
  mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
71
71
  mindsdb/api/http/namespaces/file.py,sha256=u6xYa_moAMb0UXWGkNtErGw9nk-FbloRuLHrLCANjoU,6644
72
72
  mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
@@ -74,12 +74,12 @@ mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednW
74
74
  mindsdb/api/http/namespaces/knowledge_bases.py,sha256=ZwzSXn_6DNn3awCnMlvCbZfCOTPM3VcsQNotMM05v3U,16653
75
75
  mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
76
76
  mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
77
- mindsdb/api/http/namespaces/skills.py,sha256=2eG5NtaqJSXQ_ex9Tus0sHA7oF4_SKOxPTdlpnz2tkk,5923
77
+ mindsdb/api/http/namespaces/skills.py,sha256=-tCB-OH-PK-UzB7INuKM6xNXfK4lWZUH2NHa43osjMI,6024
78
78
  mindsdb/api/http/namespaces/sql.py,sha256=-uLWZPsd8q2vUjJeZE3c4qjBbatnrWgPhlHROSaFVnc,5964
79
79
  mindsdb/api/http/namespaces/tab.py,sha256=3qgdc6q2WmQQIonSTFvrSvbEgBdGAe98czWWx4OMRNQ,4054
80
80
  mindsdb/api/http/namespaces/tree.py,sha256=8I_X7Uhn6OAEsgWOfneF1UBif0T0YFmj-SG_iT20C3E,3807
81
81
  mindsdb/api/http/namespaces/util.py,sha256=3A_Ab16mHC83362PILbF6L4hh9zGAn8NG3nPlQZMhqk,3636
82
- mindsdb/api/http/namespaces/views.py,sha256=fIuK_D0-jr_F2UmYSdfxBWXhpbYjPhwxTs8yF0v35XI,6172
82
+ mindsdb/api/http/namespaces/views.py,sha256=bSoCOJQq-xyWdOpNRA1YyOSlYHTHHYIZgd8m4E_rvy0,6226
83
83
  mindsdb/api/http/namespaces/webhooks.py,sha256=HjSFv5MZatwrkU1CMVDJKx5bDeZsmuLnUs7nnEQ7kvw,1146
84
84
  mindsdb/api/http/namespaces/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
85
  mindsdb/api/http/namespaces/configs/agents.py,sha256=9LKToZNLtQGBhj1nRwIjaTNDeI5PA-TbVVW1qwFdqzc,124
@@ -348,7 +348,7 @@ mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py,sha256=47DEQpj
348
348
  mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py,sha256=9MibR3PQlvZzt7Q0rCU6R8dICvqhPA_kxoUp4JiVEVE,1353
349
349
  mindsdb/integrations/handlers/chromadb_handler/__about__.py,sha256=28MPMq-Rjb1tR4SawSItNeGvVRupERgeHUDW7KRiyr4,345
350
350
  mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2JpJT_nUryqEZrRR3TtpAmynMFOfHr4,659
351
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=P6kfyDvow-DAe_G_QXBhHVRCwA6ZOKr_ttlF4S1PTAA,17381
351
+ mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=JjIKaFvCGDjW8FpL1ROtCVoGoGh8Td8fg6QHYI_l3Uk,18005
352
352
  mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
353
353
  mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
354
354
  mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=xDi58Geqkth3WtJFFFD20zyutNzmtrKu9cQOSNNzx9A,16
@@ -412,11 +412,11 @@ mindsdb/integrations/handlers/coinbase_handler/icon.svg,sha256=MWExiK7-0F7OeLSLK
412
412
  mindsdb/integrations/handlers/coinbase_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
413
  mindsdb/integrations/handlers/confluence_handler/__about__.py,sha256=0U9j9CfAa3mfGZPk6sq1n5LfCpnHtCgIH1JkaSsPRnQ,356
414
414
  mindsdb/integrations/handlers/confluence_handler/__init__.py,sha256=68yvHlrf7xrRjrOqkzYIXfr4mFEQKs2GtCQKBhvuuWU,646
415
- mindsdb/integrations/handlers/confluence_handler/confluence_handler.py,sha256=jBrwbXKcjiaAeaExeOWfRWRyho0EtCwdXkBxOvUIXXM,3027
416
- mindsdb/integrations/handlers/confluence_handler/confluence_table.py,sha256=NEGw0_FRErHbx2dfw2x3i2lNKD9OJAq2p1ffj4W9snk,6415
417
- mindsdb/integrations/handlers/confluence_handler/connection_args.py,sha256=SGE1AMgywnlY8YYBfzYH7p0Y88AMCWKVhmTvcWh-ouQ,750
415
+ mindsdb/integrations/handlers/confluence_handler/confluence_api_client.py,sha256=s-4O6zlk39cWwLuK4CEyAEpZrICEVskWIaGrf8TZ-vM,4980
416
+ mindsdb/integrations/handlers/confluence_handler/confluence_handler.py,sha256=BntGCIyGcZQAe8Uz8TZZsXP3Bs9g4hb6pEtoWNMg4zs,3381
417
+ mindsdb/integrations/handlers/confluence_handler/confluence_tables.py,sha256=m0MEItwvz2Xj7J0NECKvHgKJFphsUrtdOplNABvyDaI,24079
418
+ mindsdb/integrations/handlers/confluence_handler/connection_args.py,sha256=RZOuI3CbJ3VZmWJ5SDQ2vgppFRF42FUhfNAfpHgEdVM,852
418
419
  mindsdb/integrations/handlers/confluence_handler/icon.svg,sha256=Piz_ZFABS16FgHfePv3-6yBU2c-h7yeX1bZ5JXFJ_Fk,2500
419
- mindsdb/integrations/handlers/confluence_handler/requirements.txt,sha256=uGqoPIycab1Q50-NoN8vHp7TdzfHVamy9_t1RvONbog,21
420
420
  mindsdb/integrations/handlers/confluence_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
421
421
  mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py,sha256=pICgz5DHaXNg8bqL1wtoD_cBWDrgnIHw9vbZoLKciyk,2163
422
422
  mindsdb/integrations/handlers/couchbase_handler/__about__.py,sha256=edORh0-jjv2_SYfeqStXH_zhdp_rnsnyPQVhDHUV8Ns,345
@@ -545,7 +545,7 @@ mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py,sha256=47DEQpj8HB
545
545
  mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py,sha256=jkGvXoQEoQnzcj3zuORu7upfcoaGcDmVOe83IqzPQbQ,1479
546
546
  mindsdb/integrations/handlers/dummy_data_handler/__about__.py,sha256=PSYHn55hrQRpnqoXiTNmXNdhCSmWmEhLL7Nb4eKdhkw,228
547
547
  mindsdb/integrations/handlers/dummy_data_handler/__init__.py,sha256=peKZXPxEaMzXOIJCrKalzz8TQwcnZP4YOy3amask-cc,491
548
- mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py,sha256=-NnUD3-9eM7XSWoiRKjF85geGYcXG-wWC6j1QO9aWtA,2951
548
+ mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py,sha256=XQR7WhU_4o0JSqQZsI7BZVbnBOpongUetmf8_AMt8ZQ,3379
549
549
  mindsdb/integrations/handlers/dummy_data_handler/icon.svg,sha256=K9XlyM95whoniFSqPOz8tm2hxKJxanwZWoYD0IzDzrg,152
550
550
  mindsdb/integrations/handlers/dynamodb_handler/__about__.py,sha256=C-WnvzjgGPutV61FH6eTAkpnc3Y3DRdoKwaNUXLhWkg,357
551
551
  mindsdb/integrations/handlers/dynamodb_handler/__init__.py,sha256=yTEVxzxm3SCeATwL0lPyASgiowEVH00C7Nciy_31lyU,631
@@ -611,7 +611,7 @@ mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=atOboSG8pcMwnH
611
611
  mindsdb/integrations/handlers/file_handler/icon.svg,sha256=hsXEvUzrO7WQMOPC83LYQt-FW0wey9TCj5EwiIJwKwk,565
612
612
  mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
613
613
  mindsdb/integrations/handlers/file_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
614
- mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py,sha256=UubwfvgJFe7aSZxpzPGcJ32bvMUE72VnxUJB3RqmSZo,11743
614
+ mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py,sha256=kFJaLeOjpIgCjWsBQL7A4Q4nN5Z1APafxX9zyT_rU1g,11078
615
615
  mindsdb/integrations/handlers/file_handler/tests/data/test.txt,sha256=SUG2Uw_Hmth51gyaCJyeyfAbFssHfsB3qWFcxBX_W1g,570
616
616
  mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py,sha256=Dz6gPZVoxWJqMgte07pkMKtQq42u7qYtCiaxdHVgANw,392
617
617
  mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py,sha256=AncBNXt6EECSYDNTlnkxkQ3_dfgEITMKaUUWjV-KSMY,537
@@ -776,8 +776,8 @@ mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=f-LxhPOlZsX
776
776
  mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=gDf5yC-ot2IZdONMIcQ5bEvKMtk-nci5OcSYmvmEGQg,8085
777
777
  mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=2wSfHCnAFbiHco37Eq_1f71vwSfoZ_ntz9f-d7pmlvI,13620
778
778
  mindsdb/integrations/handlers/huggingface_handler/icon.svg,sha256=yU820GpXed8h9CloppHH0D1-EJjrorSLlbjciV91b9k,9064
779
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=b06gV4B6G_4Jpu2_4wc2_TdvCOletzs0f3RAcNRB-Tk,58
780
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=QpOXH_fRN7ZmQSRi_DOZaC3-ArP-PnCePEiEy1VTw1c,183
779
+ mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=BRdNg-JVvnwtNNk-b633J-GJRivCCi_CtStF2SjH3Qg,159
780
+ mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=xJEc47qOOZ97_ctibvXlOynB0llxN_zzKCb9yDyhuSs,199
781
781
  mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1dAcKyjEcuK1LSktqK_5tPLJzQGCNTs0GR9CMe8qTvk,984
782
782
  mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
783
783
  mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
@@ -862,7 +862,7 @@ mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkOb
862
862
  mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
863
863
  mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
864
864
  mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=2MoMZYz4e4f4NCE-hHheJulxFJAkJudrvOn6-EAGv4Y,12816
865
- mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=t5uKtzYVlZUSYjEPnhHhvohm0yo56c90NUYzFYSOI-I,237
865
+ mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=X3GMk6YUemVSiVvr0Rd2P2HerVhXFeL84yzrBgAiWHk,238
866
866
  mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=lb0zKsVpTafWi5QSVTbQ0hgvVx1Yr1rLg_i6rTHcVsQ,11385
867
867
  mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
868
868
  mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=qoDI2PYu2Kw5TapUlHC1QUIfufxvzuJ1RpLBEpd_woE,512
@@ -896,7 +896,7 @@ mindsdb/integrations/handlers/lightwood_handler/__init__.py,sha256=iW8kT1kCcBjfe
896
896
  mindsdb/integrations/handlers/lightwood_handler/functions.py,sha256=WkeI0J19WPh_36wZvezpnV2SW6wc9tEkumKil3qTB-4,9139
897
897
  mindsdb/integrations/handlers/lightwood_handler/icon.svg,sha256=q8G2Qws-_E79MdxpSDHtNCqLwK0RWauNmRwGszIs_FE,2542
898
898
  mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py,sha256=H-Xq0Zxc3hfGHGmmWSXkAmT79V_8R6DQ00nnPRUl-3M,23643
899
- mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=lDcJLjnHmKIaJhJnzlHLn5miNYJo3lJ8PCu_fmf5_AA,91
899
+ mindsdb/integrations/handlers/lightwood_handler/requirements.txt,sha256=vB2o7KbynVd_ePEfXGvBZZ-EOsy-KsYOcm82qQ5S8c0,91
900
900
  mindsdb/integrations/handlers/lightwood_handler/utils.py,sha256=3dEI41hsgCzt_GeyXQ5k4U-w_NEZ_sLpbChS0wywANw,2242
901
901
  mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
902
902
  mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py,sha256=kQlcLZqpZEgn03-SMGOxHS5Z-2ayOO-wyaU_r4d-754,10985
@@ -911,13 +911,13 @@ mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpk
911
911
  mindsdb/integrations/handlers/litellm_handler/__init__.py,sha256=phvu1-lcM1HovXh4GHunND_ScTON4Yb3s4VXNVd_epU,550
912
912
  mindsdb/integrations/handlers/litellm_handler/icon.png,sha256=mfPLH1-n3D1q3U57hADzl7s2G-W-EDevUHzmvnLTjy8,37122
913
913
  mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=-C82eH--GVPD-4P7_lPk3GbcTGmyqYLjuGZwW9iQ4pk,4911
914
- mindsdb/integrations/handlers/litellm_handler/requirements.txt,sha256=t8CkwrUVwT_keDYTRwU2DVXc-o5r4divHF7IJjK7ZN4,17
914
+ mindsdb/integrations/handlers/litellm_handler/requirements.txt,sha256=dy-zvg7q-XWnmLu6dh1DSphrzDsLZHec2oSRuF-jWmw,18
915
915
  mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84fLe2AhBWzSzpeHbeoeVNz3T6-Rlk,2301
916
916
  mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
917
917
  mindsdb/integrations/handlers/llama_index_handler/__init__.py,sha256=xR7fPvGnYIOw4QOUZ88Gs6tUZHbcr-Wp2V-NmVK-Mlw,506
918
918
  mindsdb/integrations/handlers/llama_index_handler/icon.svg,sha256=yjhd8lFNW75F5o5ZRC69UMAu2P_Fxjj7SgLADwUQeJc,12609
919
919
  mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py,sha256=GJvKsXkFnrkCg1A6MZJApe9IQDC7g0n_aSSOWPZkG7s,7859
920
- mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=tS1jwSXXbrsDrRxvvhyptH5AZiRhQaJejfAIuVjYaTc,101
920
+ mindsdb/integrations/handlers/llama_index_handler/requirements.txt,sha256=xoOq5UyUuLyAbii-dIMeUoLts_iloEsv6qM9KBe4cvs,101
921
921
  mindsdb/integrations/handlers/llama_index_handler/settings.py,sha256=4L4-EJn_D6z_DcVaQ3o22BpPwSsdmyG1ayRIrIaMTsU,2156
922
922
  mindsdb/integrations/handlers/ludwig_handler/__about__.py,sha256=5pC8567sj_ZZW70dm7Chkc4He6-F8l5oUKE1W9V98Ck,343
923
923
  mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7rK_zPFFAIHGjEsGR_rc2FK8r8HyM,536
@@ -1029,13 +1029,15 @@ mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt,sha256=T_nkUv
1029
1029
  mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py,sha256=rUQ0p9bqHSjpEgXe9T-Hq-bfGrMHIU5Rmiwt-orDOCk,369
1030
1030
  mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py,sha256=vraI6WlfpNk0C_D0wQH7Wxxy7zpI57rOp2t2XPgHuSk,533
1031
1031
  mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z2hQUMEyyP8DUmhgUtjvsfN3HU2EBes,2430
1032
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=q3Qd-9bBYacurH_rV5cYpLUgrI0kvSHGSDoi_OnkeWY,3508
1032
+ mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=wncgJ7BXsFNRMn3aJLhtwZIaDCeoeHdBpCmg_dzm_Vg,3516
1033
1033
  mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8Xi8rKFWpEsDw5mzqgR7IW4wEbk-TBNqNqOj4350gL4,9333
1034
1034
  mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=rBD6sEli8XP-cxTogFu2J7ScO_WTw1gM-6gZm2P8lsc,2802
1035
1035
  mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
1036
1036
  mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
1037
1037
  mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
1038
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=AhyeTNxk7-Yatux5T_ZHru3ZkOvb8nMk2APc2fMrFwg,5249
1038
+ mindsdb/integrations/handlers/ms_teams_handler/ms_graph_api_teams_client.py,sha256=JgyMCeLgtiC2SS-lzN5k8JGnpHyqujDdzWbRPgdlD5w,9083
1039
+ mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py,sha256=1FyxdMZTGnTM3t5D5_oRkz2shC-Le6ckw5Y1a9gCZYk,8546
1040
+ mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py,sha256=-8jH0fB98GU9m_o4_HLyVp1LC-UAYxu1OfRRkHT8kYQ,13753
1039
1041
  mindsdb/integrations/handlers/ms_teams_handler/requirements.txt,sha256=On99gSLUaYbgUGenm0cRwUf-C-pPune9zbcHkRtdoLU,40
1040
1042
  mindsdb/integrations/handlers/mssql_handler/__about__.py,sha256=PIWwVwn9iAHApIWRxOrMuktBneTm9JRLeGkZiSSH-EQ,363
1041
1043
  mindsdb/integrations/handlers/mssql_handler/__init__.py,sha256=eYkU7VeK9N8vb68pZEJYVNDIH4JslkIiz8HrX9HV2sQ,612
@@ -1049,7 +1051,7 @@ mindsdb/integrations/handlers/mysql_handler/__about__.py,sha256=UCFLhlYJ-_DenwFc
1049
1051
  mindsdb/integrations/handlers/mysql_handler/__init__.py,sha256=ikcK9oIUFjMfyRDAUKKvb8JQ4Fw-P1zLBeEHo2ZMPY8,592
1050
1052
  mindsdb/integrations/handlers/mysql_handler/connection_args.py,sha256=--9ZuX6QSTbWPcRQuptMElStU6p_wkYAUGuxVhRi9JU,2288
1051
1053
  mindsdb/integrations/handlers/mysql_handler/icon.svg,sha256=yvGRJXlDZ7tyqGSjbgEgG-gDhrKPUVt2ifG6xdjSfAA,4136
1052
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=kre20kMMPefkc3DrqD65i36WhzUc82lIotRC9_vinVc,6930
1054
+ mindsdb/integrations/handlers/mysql_handler/mysql_handler.py,sha256=ugQ3S_wO1MFZ3e4KxkTHgZwIz-e03h6r0BJgheldhp8,7005
1053
1055
  mindsdb/integrations/handlers/mysql_handler/requirements.txt,sha256=uDDh7neCc41qZxjCFB2rpKPTSZvD58RCfa7DjZJykw0,30
1054
1056
  mindsdb/integrations/handlers/mysql_handler/settings.py,sha256=3a6VexTd2nD72WiXYG_IGeZ-n59ANggeE3X5OkdxHI8,1692
1055
1057
  mindsdb/integrations/handlers/neuralforecast_handler/__about__.py,sha256=qfziv8flt2mMSNCiZMOzXHN7karhW69QZy3rRnCdSY8,377
@@ -1169,7 +1171,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
1169
1171
  mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
1170
1172
  mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
1171
1173
  mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
1172
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=PSxJdnnTpSGAdxrGwq_X17w01gSvjarjFZj84XZC7UU,19384
1174
+ mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=GwooXGEbhICnaxZCFDj8aCF1Q9MtxfBp8mHVCVnG1xI,19776
1173
1175
  mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1174
1176
  mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
1175
1177
  mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=dguuDcpGTUdL7KHbLPv3OLY9fmvJrQj5I_CsfmuQdKk,606
@@ -1273,7 +1275,7 @@ mindsdb/integrations/handlers/rag_handler/settings.py,sha256=5T4_oZt9dUD67AJXeZr
1273
1275
  mindsdb/integrations/handlers/ray_serve_handler/__about__.py,sha256=42oqKM1C-nIisvPvAL5fIxBDP-rxEduXnGrUUjrfLIU,345
1274
1276
  mindsdb/integrations/handlers/ray_serve_handler/__init__.py,sha256=MYDLydWeimQ74znwnrrgnh9S6YgtE7UnJcYBVlWv6r8,596
1275
1277
  mindsdb/integrations/handlers/ray_serve_handler/icon.svg,sha256=spxNMpiGLzxt46VM70-m-z4xButrIQ_dzLTarJKYSOA,1990
1276
- mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=WQlIVCA4-M5QKnUPlmd6zGbx1hZPFQuONc12bGiGZeo,4657
1278
+ mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=TvaOR1rkdjOe2dxvieGkqxSrvNAjtwtd7jDEluB_uQM,4710
1277
1279
  mindsdb/integrations/handlers/reddit_handler/__about__.py,sha256=Xp4s3kJp-REycH83S1RLSaPZHpFqbn-MjRuQZ5BpBuQ,336
1278
1280
  mindsdb/integrations/handlers/reddit_handler/__init__.py,sha256=n3dhcPIHT_89hQxEXKQbHApOGBGQxtvWxp-fvFL083s,496
1279
1281
  mindsdb/integrations/handlers/reddit_handler/icon.svg,sha256=JAhHkvjiEfOz_BSbBVosQs8VXegNanxdnNUNz1bHyRM,3986
@@ -1400,7 +1402,7 @@ mindsdb/integrations/handlers/snowflake_handler/__init__.py,sha256=tPpKf8KwyX2DI
1400
1402
  mindsdb/integrations/handlers/snowflake_handler/connection_args.py,sha256=7pnJbHpbXMZwQbAS4U7LJUk8OWLLpPN2_q9IPr7wpec,1778
1401
1403
  mindsdb/integrations/handlers/snowflake_handler/icon.svg,sha256=Syi1A_eltgZH6HjPuKi8bi9Pzf8T879RfVAZnNzK0Qo,4088
1402
1404
  mindsdb/integrations/handlers/snowflake_handler/requirements.txt,sha256=RC9MdPLYC6oRsCC2k5sLfgxDTEuEPvqe8OpyjMYEECs,63
1403
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=m6ShR8yZYn7hxDkNRbe-AJDuNF9OlrfhrxCRM3f6Qqg,11098
1405
+ mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py,sha256=zNJwQr6up7NKW76YJS24uqXoLQQLgllWrJLyX3iUAqo,12134
1404
1406
  mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1405
1407
  mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py,sha256=2_zTKNxqbvhzwVhU9JRmv5Chhh9rulGnMfj-GVIPA60,7369
1406
1408
  mindsdb/integrations/handlers/solace_handler/__about__.py,sha256=C-y1qVOGsPDdMEjUocH_juhmrpRwN2-U61sJT_lwzE0,354
@@ -1684,7 +1686,7 @@ mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmoz
1684
1686
  mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
1685
1687
  mindsdb/integrations/libs/response.py,sha256=iyadSLc5e7gY-rviaaoFNIrgIhDBJ-DZux062PxRRz8,3119
1686
1688
  mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
1687
- mindsdb/integrations/libs/vectordatabase_handler.py,sha256=-TcUIzSSX21DPOGh7zI0-nuumqaW0NgUCElXzouWXjg,17523
1689
+ mindsdb/integrations/libs/vectordatabase_handler.py,sha256=mVItuuV-ya5CMGmrfWOoRDUqFeHozd4XeNpQi6k3Kt4,17521
1688
1690
  mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1689
1691
  mindsdb/integrations/libs/llm/config.py,sha256=M14flGRcngP8n37sT8XLuJj5w-145B4IAyx3vLllogM,3548
1690
1692
  mindsdb/integrations/libs/llm/utils.py,sha256=20KrNT9PdvVL0DTPLrOT1uPUw2bMtRhnEZ_7fxBYnRQ,24648
@@ -1713,11 +1715,11 @@ mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-
1713
1715
  mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
1714
1716
  mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
1715
1717
  mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1716
- mindsdb/integrations/utilities/files/file_reader.py,sha256=MwityIR28k3lrLQeVxOufRNlATHDMihedLtqB8YhuBQ,11219
1718
+ mindsdb/integrations/utilities/files/file_reader.py,sha256=r9Eb86eRSF-vi5sU0E9FNJIKJdlMEl2n0yRDt0ykNvk,11298
1717
1719
  mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1718
1720
  mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=zkvVb54zxtn4_NSwqCD-SVQG_5JI9EYRygb6EABQu7g,43
1719
1721
  mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
1720
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=cNv-zkdParB87dKMd-jqf9p8YFyELtac4O19gX-yGMM,4959
1722
+ mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=JikiOFYkji_7l1ckXn3I8NjrruTjcI7TdpqHxLU-mIE,6292
1721
1723
  mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=lyJdlw4_MFt3w3Iue7npRGwjNPIHzZZGox4dNEXvVaE,139
1722
1724
  mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
1723
1725
  mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
@@ -1737,7 +1739,7 @@ mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validatio
1737
1739
  mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1738
1740
  mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
1739
1741
  mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=0RhyafFoQPl1aniRYcOu57aljfqKqj_p0cNb_bfOrc8,3742
1740
- mindsdb/integrations/utilities/rag/settings.py,sha256=uTMiNMXIsQGZK1CpG7mrb-YzUfX2OCjPahvh_GRpgH4,33475
1742
+ mindsdb/integrations/utilities/rag/settings.py,sha256=wJ4aA6lciKmKN3kz8dad6dxmvqhHo2rzj97xgVlcB_c,33497
1741
1743
  mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
1742
1744
  mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
1743
1745
  mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1774,7 +1776,7 @@ mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2e
1774
1776
  mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=lk7UyE7tK807GXLBDr4-b2VVFUUzDtpMx2GjVtywv3o,2459
1775
1777
  mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
1776
1778
  mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1777
- mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=lZEjoa0zSagLXX8fpKnjaAJdORia0fOie9aeSccLf40,14234
1779
+ mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=nmJs8zotT88aab99FdPQLqaOSsqbqmHNpo9oK6nlBG0,14494
1778
1780
  mindsdb/interfaces/chatbot/chatbot_executor.py,sha256=3qU98MHBmUcsIWYqaNNJhoudUQWLPWlCB_di6iFaP1g,7742
1779
1781
  mindsdb/interfaces/chatbot/chatbot_task.py,sha256=eKU-7FSygAzFq9lkHKLl5zlkiiQDGjzOX7oUb-rJNQo,7001
1780
1782
  mindsdb/interfaces/chatbot/memory.py,sha256=tkqBiA5mMvkuGITCjUC_r0JuyUS2DbeARxJ_GryOZJQ,8346
@@ -1792,14 +1794,14 @@ mindsdb/interfaces/file/file_controller.py,sha256=ebe0hEZhOHbrMhVg84XW33Jl1jUeo2
1792
1794
  mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1793
1795
  mindsdb/interfaces/functions/controller.py,sha256=8kyWA8TnMsRDyIl2s3JcvdGYeww4_Qmf-jYq_wwOYH4,6057
1794
1796
  mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1795
- mindsdb/interfaces/jobs/jobs_controller.py,sha256=cRyR5JkcyqkeKmy0TTKYdceee7HI0vBGreJz9PsORgU,18346
1797
+ mindsdb/interfaces/jobs/jobs_controller.py,sha256=yuDN2JVIrgbQlHkxwLbhyX9CwL8oENIRjYnAR5h0ufE,18280
1796
1798
  mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
1797
1799
  mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1798
- mindsdb/interfaces/knowledge_base/controller.py,sha256=2DhhWQmZXDtWuQnSEa-J4m-HEvr6fsvBZ5Chs8xS9QA,36304
1800
+ mindsdb/interfaces/knowledge_base/controller.py,sha256=jSVxCvvEa8mTVPfeJ8MhgyGPerBRGLxddh_doyuV8x0,35311
1799
1801
  mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1800
1802
  mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
1801
1803
  mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
1802
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=RdASLNgDdvfjwLawIqsSQeQKX2qf411e5N7bjQuCNmQ,14604
1804
+ mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=Ew8pB-4aFXbYF_v4KYT0YRqFELMBJkLD3YiCnLRK1ok,14546
1803
1805
  mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
1804
1806
  mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1805
1807
  mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
@@ -1810,7 +1812,7 @@ mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCb
1810
1812
  mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
1811
1813
  mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
1812
1814
  mindsdb/interfaces/skills/skill_tool.py,sha256=lUfQXxcLlEgjVe30knPjE2klWDlChHgCcBYlEJYy9Hw,12992
1813
- mindsdb/interfaces/skills/skills_controller.py,sha256=RxZDjLhYUtArWV0U1AOhltZ3kfMbJkcxXtr0GwkbNyg,6294
1815
+ mindsdb/interfaces/skills/skills_controller.py,sha256=cNblNQNOJXQkuXq0q2g7-OmAFG-QoBbRign6gHt6NLg,6319
1814
1816
  mindsdb/interfaces/skills/sql_agent.py,sha256=ResOUpthG2o7C6w5qNyvQeCoT7fuaExQsRQA9TzKXVE,14619
1815
1817
  mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1816
1818
  mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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=E6_sJv9kfwOwUMurDklFOKpwplASwUBFhfknUqwbUCw,30627
1935
- mindsdb-25.3.3.0.dist-info/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1936
- mindsdb-25.3.3.0.dist-info/METADATA,sha256=Ow16X8K3pHk0j_i7nAT0p56ckZKLms4S13A-2Rxuzaw,41689
1937
- mindsdb-25.3.3.0.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
1938
- mindsdb-25.3.3.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1939
- mindsdb-25.3.3.0.dist-info/RECORD,,
1937
+ mindsdb-25.3.4.1.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
1938
+ mindsdb-25.3.4.1.dist-info/METADATA,sha256=VRCxtEU0DqArwI1rMwp54IoNXf-DvvkwTBQQes3xLUU,41758
1939
+ mindsdb-25.3.4.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1940
+ mindsdb-25.3.4.1.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
1941
+ mindsdb-25.3.4.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.1.0)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,193 +0,0 @@
1
- from typing import List
2
-
3
- import pandas as pd
4
- from mindsdb_sql_parser import ast
5
-
6
- from mindsdb.integrations.libs.api_handler import APITable
7
- from mindsdb.integrations.utilities.sql_utils import extract_comparison_conditions
8
- from mindsdb.utilities import log
9
-
10
- from mindsdb_sql_parser import ast
11
-
12
- logger = log.getLogger(__name__)
13
-
14
-
15
- class ConfluencePagesTable(APITable):
16
- """Confluence Pages Table implementation"""
17
-
18
- def select(self, query: ast.Select) -> pd.DataFrame:
19
- """Pulls data from the Confluence "get_all_pages_from_space" API endpoint"""
20
- conditions = extract_comparison_conditions(query.where)
21
- if query.limit:
22
- total_results = query.limit.value
23
- else:
24
- total_results = 50
25
-
26
- space_name = None
27
- page_id = None
28
-
29
- for a_where in conditions:
30
- if a_where[1] == "space":
31
- space_name = a_where[2]
32
- if a_where[0] != "=":
33
- raise ValueError("Unsupported where operation for space")
34
- elif a_where[1] == "id":
35
- page_id = a_where[2]
36
- if a_where[0] != "=":
37
- raise ValueError("Unsupported where operation for id")
38
- elif a_where[1] not in ["id", "space"]:
39
- raise ValueError(f"Unsupported where argument {a_where[1]}")
40
-
41
- if space_name is None:
42
- raise ValueError("Space name must be provided in the WHERE clause")
43
-
44
- if page_id is not None:
45
- try:
46
- page = self.handler.connect().get_page_by_id(page_id, expand='body.storage,space')
47
- confluence_pages_records = [page] if page['space']['key'] == space_name else []
48
- except Exception as e:
49
- logger.error(f"Error fetching page with ID {page_id}: {str(e)}")
50
- confluence_pages_records = []
51
- else:
52
- confluence_pages_records = self.handler.connect().get_all_pages_from_space(
53
- space_name, start=0, limit=total_results, expand="body.storage,space"
54
- )
55
-
56
- if not confluence_pages_records:
57
- return pd.DataFrame(columns=self.get_columns())
58
-
59
- confluence_pages_df = pd.json_normalize(confluence_pages_records)
60
-
61
- confluence_pages_df.columns = confluence_pages_df.columns.str.replace("body.storage.value", "body")
62
- confluence_pages_df['space'] = confluence_pages_df['space.key']
63
-
64
- confluence_pages_df = confluence_pages_df[self.get_columns()]
65
-
66
- selected_columns = []
67
- for target in query.targets:
68
- if isinstance(target, ast.Star):
69
- selected_columns = self.get_columns()
70
- break
71
- elif isinstance(target, ast.Identifier):
72
- col = target.parts[-1]
73
- if col in self.get_columns():
74
- selected_columns.append(col)
75
- else:
76
- raise ValueError(f"Unknown column: {col}")
77
- else:
78
- raise ValueError(f"Unknown query target {type(target)}")
79
-
80
- confluence_pages_df = confluence_pages_df[selected_columns]
81
-
82
- if query.order_by and len(query.order_by) > 0:
83
- sort_columns = []
84
- sort_ascending = []
85
- for an_order in query.order_by:
86
- if isinstance(an_order.field, ast.Identifier):
87
- column = an_order.field.parts[-1]
88
- if column in selected_columns:
89
- sort_columns.append(column)
90
- sort_ascending.append(an_order.direction == "ASC")
91
- else:
92
- raise ValueError(f"Order by unknown column {column}")
93
- else:
94
- raise ValueError(f"Unsupported order by clause: {an_order}")
95
-
96
- if sort_columns:
97
- confluence_pages_df = confluence_pages_df.sort_values(
98
- by=sort_columns,
99
- ascending=sort_ascending
100
- )
101
-
102
- return confluence_pages_df
103
-
104
-
105
- def get_columns(self) -> List[str]:
106
- """Gets all columns to be returned in pandas DataFrame responses
107
- Returns
108
- -------
109
- List[str]
110
- List of columns
111
- """
112
- return [
113
- "id",
114
- "type",
115
- "status",
116
- "title",
117
- "space",
118
- "body",
119
- "_links.self",
120
- "_links.webui",
121
- ]
122
-
123
- def insert(self, query: ast.Insert):
124
- """Inserts a new page into the Confluence space
125
-
126
- Parameters
127
- ----------
128
- query : ast.Insert
129
- Given SQL INSERT query
130
-
131
- Raises
132
- ------
133
- ValueError
134
- If the query contains an unsupported condition
135
- """
136
-
137
- columns = [col.name for col in query.columns]
138
-
139
- for i, val in enumerate(query.values):
140
- params = dict(zip(columns, val))
141
-
142
- self.handler.connect().create_page(
143
- space=params["space"],
144
- title=params["title"],
145
- body=params["body"],
146
- )
147
-
148
- def update(self, query: ast.Update):
149
- """Updates a page in the Confluence space
150
-
151
- Parameters
152
- ----------
153
- query : ast.Update
154
- Given SQL UPDATE query
155
-
156
- Raises
157
- ------
158
- ValueError
159
- If the query contains an unsupported condition
160
- """
161
- params = extract_comparison_conditions(query.where)
162
- title = query.update_columns["title"].get_string()
163
- body = query.update_columns["body"].get_string()
164
-
165
- for param in params:
166
- if param[1] == "id":
167
- id = param[2]
168
- self.handler.connect().update_page(
169
- page_id=id,
170
- title=title,
171
- body=body,
172
- )
173
-
174
- def delete(self, query: ast.Delete):
175
- """Deletes a page from the Confluence space
176
-
177
- Parameters
178
- ----------
179
- query : ast.Delete
180
- Given SQL DELETE query
181
-
182
- Raises
183
- ------
184
- ValueError
185
- If the query contains an unsupported condition
186
- """
187
- params = extract_comparison_conditions(query.where)
188
- for param in params:
189
- if param[1] == "id":
190
- id = param[2]
191
- self.handler.connect().remove_page(
192
- page_id=id,
193
- )
@@ -1 +0,0 @@
1
- atlassian-python-api