MindsDB 25.6.4.0__py3-none-any.whl → 25.7.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.
- mindsdb/__about__.py +1 -1
- mindsdb/__main__.py +53 -94
- mindsdb/api/a2a/agent.py +30 -206
- mindsdb/api/a2a/common/server/server.py +26 -27
- mindsdb/api/a2a/task_manager.py +93 -227
- mindsdb/api/a2a/utils.py +21 -0
- mindsdb/api/executor/command_executor.py +8 -6
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +1 -1
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +9 -11
- mindsdb/api/executor/datahub/datanodes/system_tables.py +1 -1
- mindsdb/api/executor/planner/query_prepare.py +68 -87
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +6 -1
- mindsdb/api/executor/sql_query/steps/union_step.py +11 -9
- mindsdb/api/executor/utilities/sql.py +97 -21
- mindsdb/api/http/namespaces/agents.py +126 -201
- mindsdb/api/http/namespaces/config.py +12 -1
- mindsdb/api/http/namespaces/file.py +49 -24
- mindsdb/api/mcp/start.py +45 -31
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +45 -52
- mindsdb/integrations/handlers/huggingface_handler/__init__.py +17 -12
- mindsdb/integrations/handlers/huggingface_handler/finetune.py +223 -223
- mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +383 -383
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt +7 -6
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +7 -6
- mindsdb/integrations/handlers/huggingface_handler/settings.py +25 -25
- mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +22 -15
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +244 -141
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +1 -1
- mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +3 -2
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +1 -1
- mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
- mindsdb/integrations/libs/keyword_search_base.py +41 -0
- mindsdb/integrations/libs/vectordatabase_handler.py +114 -84
- mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +36 -42
- mindsdb/integrations/utilities/sql_utils.py +11 -0
- mindsdb/interfaces/agents/agents_controller.py +29 -9
- mindsdb/interfaces/agents/langchain_agent.py +7 -5
- mindsdb/interfaces/agents/mcp_client_agent.py +4 -4
- mindsdb/interfaces/agents/mindsdb_database_agent.py +10 -43
- mindsdb/interfaces/data_catalog/data_catalog_reader.py +3 -1
- mindsdb/interfaces/database/projects.py +1 -3
- mindsdb/interfaces/functions/controller.py +54 -64
- mindsdb/interfaces/functions/to_markdown.py +47 -14
- mindsdb/interfaces/knowledge_base/controller.py +228 -110
- mindsdb/interfaces/knowledge_base/evaluate.py +18 -6
- mindsdb/interfaces/knowledge_base/executor.py +346 -0
- mindsdb/interfaces/knowledge_base/llm_client.py +5 -6
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +20 -45
- mindsdb/interfaces/knowledge_base/preprocessing/models.py +36 -69
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py +2 -0
- mindsdb/interfaces/skills/sql_agent.py +181 -130
- mindsdb/interfaces/storage/db.py +9 -7
- mindsdb/utilities/config.py +58 -40
- mindsdb/utilities/exception.py +58 -7
- mindsdb/utilities/security.py +54 -11
- {mindsdb-25.6.4.0.dist-info → mindsdb-25.7.2.0.dist-info}/METADATA +245 -259
- {mindsdb-25.6.4.0.dist-info → mindsdb-25.7.2.0.dist-info}/RECORD +61 -58
- {mindsdb-25.6.4.0.dist-info → mindsdb-25.7.2.0.dist-info}/WHEEL +0 -0
- {mindsdb-25.6.4.0.dist-info → mindsdb-25.7.2.0.dist-info}/licenses/LICENSE +0 -0
- {mindsdb-25.6.4.0.dist-info → mindsdb-25.7.2.0.dist-info}/top_level.txt +0 -0
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=l80ipnFIZXcOiL0WuiOYkcsLgqiVn2VltoPMnikBXLI,456
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
|
-
mindsdb/__main__.py,sha256=
|
|
3
|
+
mindsdb/__main__.py,sha256=lvVxdaADyZsyLfLMYLoIyPmRYsacbgEfPbBkUqdIpEY,23459
|
|
4
4
|
mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
mindsdb/api/a2a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
mindsdb/api/a2a/__main__.py,sha256=zrzTzt9zgN38NImInrmxCsdr66urJNS0JOq0xJaKHac,4712
|
|
7
|
-
mindsdb/api/a2a/agent.py,sha256=
|
|
7
|
+
mindsdb/api/a2a/agent.py,sha256=p4cniVpuUh-KwTyDAfCSBf7fiWQbMQa4yGQ45mha2wk,6964
|
|
8
8
|
mindsdb/api/a2a/constants.py,sha256=1BmvDneWzNG6YJFUc-gZ9CNCO4wq2_12vFe6aw23yX4,2292
|
|
9
9
|
mindsdb/api/a2a/run_a2a.py,sha256=7cWNu93DAaSG2jVgVvjoPy0ACaAhbU2qoApYkHYaLGc,2893
|
|
10
|
-
mindsdb/api/a2a/task_manager.py,sha256=
|
|
10
|
+
mindsdb/api/a2a/task_manager.py,sha256=pc234awHGX4jyWPUYKVODR6GyYpbYtigWj7wOamxocc,20666
|
|
11
|
+
mindsdb/api/a2a/utils.py,sha256=81jhx9QbU8AJqVUvptcMDzfY40wIo_NJtMIYJHoE9EY,778
|
|
11
12
|
mindsdb/api/a2a/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
13
|
mindsdb/api/a2a/common/types.py,sha256=EYBpqEj-nZapSKe2jI8BcNDfSlTXXTbw8RcSA1DII9Q,8787
|
|
13
14
|
mindsdb/api/a2a/common/server/__init__.py,sha256=Bl7Qa3Pk4QWY4yDPRNyHeTzNJpAe9HgUJd8-oTnMPv8,152
|
|
14
|
-
mindsdb/api/a2a/common/server/server.py,sha256=
|
|
15
|
+
mindsdb/api/a2a/common/server/server.py,sha256=mg1MXHQ0Gf7iVG_winqaYBkgNhYUEqnOAY7Xnveb0wo,7079
|
|
15
16
|
mindsdb/api/a2a/common/server/task_manager.py,sha256=NnKO2ZcI-KBWiX4wNc8FbLmnVsb5KeIm62B4jdX73IU,10189
|
|
16
17
|
mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S2OTmUOZ4M,854
|
|
17
18
|
mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
19
|
mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
|
|
19
20
|
mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
20
|
-
mindsdb/api/executor/command_executor.py,sha256=
|
|
21
|
+
mindsdb/api/executor/command_executor.py,sha256=1uTvOyU14PjUueAnzT7gp9Gf1bQTJGOcgbrqQ8LdxoE,81004
|
|
21
22
|
mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
|
|
22
23
|
mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
|
|
23
24
|
mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
|
|
@@ -30,18 +31,18 @@ mindsdb/api/executor/datahub/classes/response.py,sha256=1JLErGOSwcgYeSlCOBaEDjkX
|
|
|
30
31
|
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
|
|
31
32
|
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
32
33
|
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=hYIig24NP18NPlP-yR01qfgrebm2pwJYOy3zgZi4mQI,594
|
|
33
|
-
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=
|
|
34
|
-
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=
|
|
34
|
+
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=4G8kWdxTT16DRcALwUPlcHM5OIt2eCEBfG44j-VUURA,8763
|
|
35
|
+
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=d64gyT2VvVg1cwKCb-13pnhR2jDTII0rcod0W4qEowc,11073
|
|
35
36
|
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
|
|
36
37
|
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=I97p3wsZjGZ7wfgq54rs9X-72MYXu1PVHteWVFRX-rg,7682
|
|
37
|
-
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=
|
|
38
|
+
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=JCxwfbqGjTOwn1JqyJfdIk5C9h8TViUEn9L7IMrqT58,27505
|
|
38
39
|
mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
|
|
39
40
|
mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
|
|
40
41
|
mindsdb/api/executor/planner/plan_join.py,sha256=01Hp2RSYgXDWt-H8UcUufO6Hj1zUtY3ZbHpUCR1f0VU,22432
|
|
41
42
|
mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
|
|
42
43
|
mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
|
|
43
44
|
mindsdb/api/executor/planner/query_planner.py,sha256=9yNno776Ht1cGwmoSVRgz2psltWRg8bYwyJIOcWXI-A,35605
|
|
44
|
-
mindsdb/api/executor/planner/query_prepare.py,sha256=
|
|
45
|
+
mindsdb/api/executor/planner/query_prepare.py,sha256=Wsquc8hsJFDLbW3P_f87YivoIw2_cf1yXHQQXFjYA4s,16565
|
|
45
46
|
mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
|
|
46
47
|
mindsdb/api/executor/planner/steps.py,sha256=eAffDFqL0ZpCn1PSFK5gnpsY6eb-gM--lZw2WyadGfo,9511
|
|
47
48
|
mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
|
|
@@ -53,7 +54,7 @@ mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0
|
|
|
53
54
|
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=NU_Okjioql0iZW1wfYv_IIftOVEjQpW0SOrg1lFJops,17229
|
|
54
55
|
mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
|
|
55
56
|
mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
|
|
56
|
-
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=
|
|
57
|
+
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=06ldNOI5tzbux5GEX_CTADihuKwlKzORP14wiPsXlaE,4263
|
|
57
58
|
mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=-ViiI0UILMcpPjpXAZcODnS3WIPtMNCB1LxIJCSuGLE,7154
|
|
58
59
|
mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=oi5q43kzBKKDXh97MbrzQT6qJpp6tcBakfqC6OJ3R0w,4250
|
|
59
60
|
mindsdb/api/executor/sql_query/steps/join_step.py,sha256=govBGAmZEgFQ4I-QmxNY7nRN81_GF4HAuP-wOTDSrBk,4265
|
|
@@ -63,11 +64,11 @@ mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=URXDoE6vuc5mJ-vBkM5
|
|
|
63
64
|
mindsdb/api/executor/sql_query/steps/project_step.py,sha256=2Hy-b9a3-bJcUHQNhILWSNs17k0JTLrG1aGwTbtJDAM,2868
|
|
64
65
|
mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=01aDbFrqatM-iX70gU3-ODPBP9F-v0mWZ9BedddBOa8,889
|
|
65
66
|
mindsdb/api/executor/sql_query/steps/subselect_step.py,sha256=JLLjZyMNcWt-115WjRtdUvPr5200lxY4HDw-JJEtEaQ,8973
|
|
66
|
-
mindsdb/api/executor/sql_query/steps/union_step.py,sha256=
|
|
67
|
+
mindsdb/api/executor/sql_query/steps/union_step.py,sha256=SDCQqLON3NHSbzc2g31xT8CNG5cXu2dSRB7-AELQt6Q,1859
|
|
67
68
|
mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS5t8SfSo-14ttOd1r0_T8NA,4643
|
|
68
69
|
mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
70
|
mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
|
|
70
|
-
mindsdb/api/executor/utilities/sql.py,sha256=
|
|
71
|
+
mindsdb/api/executor/utilities/sql.py,sha256=WcSw85NtgiF2i5hH3qwwCgXfWlHI3qzTORmRV5Kmg_E,9314
|
|
71
72
|
mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
73
|
mindsdb/api/http/gui.py,sha256=Ph0Yz8G3F2D16VYN61IL6Mxc0j71dOlMn-Wu5r8N2Eg,3137
|
|
73
74
|
mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
|
|
@@ -75,14 +76,14 @@ mindsdb/api/http/initialize.py,sha256=eZvMgyqYQRbbuykjwVmxxX3LFz6mkFZ2HE8zMQepKE
|
|
|
75
76
|
mindsdb/api/http/start.py,sha256=tD_ImE2kbGAJk3wFX6s5ezCavd2LRJ2qU9U2tOVSQLo,2389
|
|
76
77
|
mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
|
|
77
78
|
mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
|
-
mindsdb/api/http/namespaces/agents.py,sha256=
|
|
79
|
+
mindsdb/api/http/namespaces/agents.py,sha256=eCUPLQwD1kDIGbrFOax7DZ6jQHoEeUzHyGwyvHKUxdA,17808
|
|
79
80
|
mindsdb/api/http/namespaces/analysis.py,sha256=maYxI-TP9RswWHgKX3KAZQJK_XSBQfpZMqv0ZH1ZC0k,4295
|
|
80
81
|
mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
|
|
81
82
|
mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv99BNABxMjw,11877
|
|
82
|
-
mindsdb/api/http/namespaces/config.py,sha256=
|
|
83
|
+
mindsdb/api/http/namespaces/config.py,sha256=Ci_kv906hIA9Ye5c8_MwNW7HQV9kC75DXsSB8nk-WH0,8966
|
|
83
84
|
mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
|
|
84
85
|
mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
|
|
85
|
-
mindsdb/api/http/namespaces/file.py,sha256=
|
|
86
|
+
mindsdb/api/http/namespaces/file.py,sha256=K0gP1rGX32foRABy4JNJNK02f1TBNx1f2AlxBCFKMUw,7837
|
|
86
87
|
mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
|
|
87
88
|
mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
|
|
88
89
|
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=RotgaH_Utryxrqm4OUTeinjY1JzQzPQ3t72FVM2GQ0s,16570
|
|
@@ -117,7 +118,7 @@ mindsdb/api/http/namespaces/configs/webhooks.py,sha256=WTZAN2r6GdR8LbhAyh9osFGaF
|
|
|
117
118
|
mindsdb/api/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
119
|
mindsdb/api/litellm/start.py,sha256=U6gBzQrHNmbPCjCnizPz59jnM0GdYmMx84XTIVzCiww,2761
|
|
119
120
|
mindsdb/api/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
|
-
mindsdb/api/mcp/start.py,sha256=
|
|
121
|
+
mindsdb/api/mcp/start.py,sha256=6QIEMpQlLMC8HmBX2UyFJaGaQ1IrLniOYhysxDFzR0w,6457
|
|
121
122
|
mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
123
|
mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
|
|
123
124
|
mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
|
|
@@ -366,7 +367,7 @@ mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py,sha256=47DEQpj
|
|
|
366
367
|
mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py,sha256=9MibR3PQlvZzt7Q0rCU6R8dICvqhPA_kxoUp4JiVEVE,1353
|
|
367
368
|
mindsdb/integrations/handlers/chromadb_handler/__about__.py,sha256=28MPMq-Rjb1tR4SawSItNeGvVRupERgeHUDW7KRiyr4,345
|
|
368
369
|
mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2JpJT_nUryqEZrRR3TtpAmynMFOfHr4,659
|
|
369
|
-
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=
|
|
370
|
+
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=vW0JlfgBi5Z8z6_zC9irb0qfa1qGVQYKddC3tW1zSrg,19100
|
|
370
371
|
mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
|
|
371
372
|
mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
|
|
372
373
|
mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=74shT4HXgWhY9USh902gDPUo7SvgHZZ2u9V13jkdC_E,99
|
|
@@ -790,13 +791,13 @@ mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt,sha256=VO
|
|
|
790
791
|
mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
791
792
|
mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py,sha256=gNbILP3emqqlboEypuaScSkTcjazGGPYql2AD7nK1rg,128
|
|
792
793
|
mindsdb/integrations/handlers/huggingface_handler/__about__.py,sha256=B1bb52kL0iLViLiewWIK183GOKoe5Q0XJZvD66wXl24,353
|
|
793
|
-
mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=
|
|
794
|
-
mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=
|
|
795
|
-
mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=
|
|
794
|
+
mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=gkRr9Plm5imtkJ6utRRfC81CC-7crr35UVrN8IBgrA0,859
|
|
795
|
+
mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=GhenLv_QAbh9qjvOdtB4msiL8T6QD0NnsciW7wYrP2g,8455
|
|
796
|
+
mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=FExukaCMUf3SBd4xyV_BQTQBtlasQvzePTdJzS_OROw,14214
|
|
796
797
|
mindsdb/integrations/handlers/huggingface_handler/icon.svg,sha256=yU820GpXed8h9CloppHH0D1-EJjrorSLlbjciV91b9k,9064
|
|
797
|
-
mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=
|
|
798
|
-
mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=
|
|
799
|
-
mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=
|
|
798
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=1ftzN7HUi0s5DqoCmqEkvI3y014ftejINamwWJcRf2s,197
|
|
799
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=_7nN1AvZtSX3L-GLt6Hi0Tb7BV780NhjNhGXDQUF-2k,237
|
|
800
|
+
mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1qa9xcOuDlyTjLhnFKu6CNB-cIQtHCxCGWzOhJ4Tb8k,1034
|
|
800
801
|
mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
|
|
801
802
|
mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
|
|
802
803
|
mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py,sha256=2DuHEQN03FRK7_-6jC_f-wfNtWRHuWbAdAd8FhdEPcE,1247
|
|
@@ -931,7 +932,7 @@ mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha2
|
|
|
931
932
|
mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
|
|
932
933
|
mindsdb/integrations/handlers/litellm_handler/__init__.py,sha256=phvu1-lcM1HovXh4GHunND_ScTON4Yb3s4VXNVd_epU,550
|
|
933
934
|
mindsdb/integrations/handlers/litellm_handler/icon.png,sha256=mfPLH1-n3D1q3U57hADzl7s2G-W-EDevUHzmvnLTjy8,37122
|
|
934
|
-
mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=
|
|
935
|
+
mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=T6yktTfoicaiQbit4YnKIc8k_nJZEKINF4fDwx98nkg,6319
|
|
935
936
|
mindsdb/integrations/handlers/litellm_handler/requirements.txt,sha256=dy-zvg7q-XWnmLu6dh1DSphrzDsLZHec2oSRuF-jWmw,18
|
|
936
937
|
mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84fLe2AhBWzSzpeHbeoeVNz3T6-Rlk,2301
|
|
937
938
|
mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
|
|
@@ -1192,7 +1193,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
|
|
|
1192
1193
|
mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
|
|
1193
1194
|
mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
|
|
1194
1195
|
mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
|
|
1195
|
-
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=
|
|
1196
|
+
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=YP9WoaniXSwxW-KS-c8JPtNWEG6XUY61MNAntwyu4m4,27111
|
|
1196
1197
|
mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1197
1198
|
mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
|
|
1198
1199
|
mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=njwyWqUt8PmCISBN4KjcDnZPakbro1E5lSqTEEZbTO8,607
|
|
@@ -1249,7 +1250,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
|
|
|
1249
1250
|
mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
|
|
1250
1251
|
mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
|
|
1251
1252
|
mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
|
|
1252
|
-
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=
|
|
1253
|
+
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=HCOMYxG8Lp6m0JANb-mIiHwBWEdulL-lcs2wu7QLERA,28572
|
|
1253
1254
|
mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1254
1255
|
mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
|
|
1255
1256
|
mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
|
|
@@ -1346,8 +1347,8 @@ mindsdb/integrations/handlers/salesforce_handler/__init__.py,sha256=nH_HnnS5cnDa
|
|
|
1346
1347
|
mindsdb/integrations/handlers/salesforce_handler/connection_args.py,sha256=XF20-m222AxVvK751lWKV2tb3I1WkRrmR5AJ7qV9PtI,1498
|
|
1347
1348
|
mindsdb/integrations/handlers/salesforce_handler/icon.svg,sha256=sL7XX_vF5Y7gLLklV1h17MXILGYz0f79VH915DQXyV0,8594
|
|
1348
1349
|
mindsdb/integrations/handlers/salesforce_handler/requirements.txt,sha256=JbByk_8_aqTrg45rT_tUbyDgUoDSTK7VVpgUaMen3wU,22
|
|
1349
|
-
mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=
|
|
1350
|
-
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=
|
|
1350
|
+
mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=D0en13KMZN3trRyt_d2qAHIhYaRCTjCWmPJZEmcK9n0,10644
|
|
1351
|
+
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=bw_6ydTYTsN1ybqEETxzx-nYotDcuixV2x5tUYqY3FY,10517
|
|
1351
1352
|
mindsdb/integrations/handlers/sap_erp_handler/__about__.py,sha256=yXC_YavBeY0vTZvwkU4EN7DUijGMZ8m3jtQsftKwlhs,340
|
|
1352
1353
|
mindsdb/integrations/handlers/sap_erp_handler/__init__.py,sha256=2rnUX-yeCkCgh4viBttHdG4o4HKJrVI3m82S8GJFCBU,531
|
|
1353
1354
|
mindsdb/integrations/handlers/sap_erp_handler/api.py,sha256=tAIqeww34R0N0QyVKYhSE3NRzIDoBn8xepCZIG4tYbg,2168
|
|
@@ -1479,8 +1480,8 @@ mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,
|
|
|
1479
1480
|
mindsdb/integrations/handlers/statsforecast_handler/__about__.py,sha256=1X1F2LyKSugvGa7VZco3R4fDZTM1ED3Ku-ys2evcczY,374
|
|
1480
1481
|
mindsdb/integrations/handlers/statsforecast_handler/__init__.py,sha256=LYYrtDMAW5aFPLPyIp-rOxO2O6izWi7pNtQGAsRmmdY,516
|
|
1481
1482
|
mindsdb/integrations/handlers/statsforecast_handler/icon.svg,sha256=dg5efvtY54Q70QS8a1FGc3-RbH9vbsWoOCmHtPjANRE,590
|
|
1482
|
-
mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=
|
|
1483
|
-
mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=
|
|
1483
|
+
mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=byT245TFXdOIWksM4Sik8GToMkKEEkY-GLx8J8tI0oM,35
|
|
1484
|
+
mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=byT245TFXdOIWksM4Sik8GToMkKEEkY-GLx8J8tI0oM,35
|
|
1484
1485
|
mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=jPo3yj5nuxi6WP8xrEFx4lI1pGJbKQs-uHJLtBrLz_k,8408
|
|
1485
1486
|
mindsdb/integrations/handlers/strapi_handler/__about__.py,sha256=pCZCrsIQ2_9QSAfpIY8se9QDvIE2kP9_a5N0DnRMO6k,344
|
|
1486
1487
|
mindsdb/integrations/handlers/strapi_handler/__init__.py,sha256=TnZspPGgLSMgWxJkY0oUd6EiPl16Xo7spn0Oswok8-o,529
|
|
@@ -1708,12 +1709,13 @@ mindsdb/integrations/libs/api_handler_exceptions.py,sha256=mw83eTmo9knpVHP1ISnud
|
|
|
1708
1709
|
mindsdb/integrations/libs/api_handler_generator.py,sha256=qQs12fr31g0XvMjTInopNfKiPj7pKfyuNhqqX0tCgGo,19304
|
|
1709
1710
|
mindsdb/integrations/libs/base.py,sha256=LaM5XhcGw75Yfg5aUvAzhoEOu7-FrXHnJD-E8zyg1_8,21069
|
|
1710
1711
|
mindsdb/integrations/libs/const.py,sha256=Pbdv7K_SvOWSwANwu4FK2S0jkJYaRnVZpfx4SexxR8c,407
|
|
1712
|
+
mindsdb/integrations/libs/keyword_search_base.py,sha256=U-O6AxIj8kZmnmoR3_RxO3RkZsydpsKUHjEy38mU6wk,1205
|
|
1711
1713
|
mindsdb/integrations/libs/ml_exec_base.py,sha256=lp4LGXZUfTaPfY4V44osJQfz0pq0-l3V4gc1vl4rWoc,17540
|
|
1712
1714
|
mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmozuc7CCg1EXaQ5s,16079
|
|
1713
1715
|
mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
|
|
1714
1716
|
mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
|
|
1715
1717
|
mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
|
|
1716
|
-
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=
|
|
1718
|
+
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=7BLFn1wxPbMhUjKp5X3M1DsOJ-puJTmac9HPwjPrAHQ,20467
|
|
1717
1719
|
mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1718
1720
|
mindsdb/integrations/libs/llm/config.py,sha256=p_N1E3b-KB2g-OT2gC66QP1ahh7VftjXublf4k_uLig,4957
|
|
1719
1721
|
mindsdb/integrations/libs/llm/utils.py,sha256=Wz2aptwngVyPX8tVrNx1yUHffpgnMDHQG-e01LoXFwc,25140
|
|
@@ -1733,7 +1735,7 @@ mindsdb/integrations/utilities/handler_utils.py,sha256=z34PVi3977e8UURfRjLc8nh6p
|
|
|
1733
1735
|
mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
|
|
1734
1736
|
mindsdb/integrations/utilities/pydantic_utils.py,sha256=JvB34a7XTMbA4z_vS1aURvU4PE0rNhZDkOVzb8xfRZw,6992
|
|
1735
1737
|
mindsdb/integrations/utilities/query_traversal.py,sha256=XtAuZU58un1s40JMoxMZX0JzhBEqgsW95Ux1UqHGLgY,9882
|
|
1736
|
-
mindsdb/integrations/utilities/sql_utils.py,sha256=
|
|
1738
|
+
mindsdb/integrations/utilities/sql_utils.py,sha256=X_eX1ccdoPKz7_oSpm1FKwQ5AxdQ4K-tz12l6_25R0I,7116
|
|
1737
1739
|
mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
|
|
1738
1740
|
mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
|
|
1739
1741
|
mindsdb/integrations/utilities/utils.py,sha256=sM2WfOrlIyliSm2lXaPyU21l4kQZVoSv1yLsBDKv90k,972
|
|
@@ -1781,7 +1783,7 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_load
|
|
|
1781
1783
|
mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1782
1784
|
mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
|
|
1783
1785
|
mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1784
|
-
mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=
|
|
1786
|
+
mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=BbenQy3SkaIbHM0RmbLfVfdY7EVd-esQyBW1HHgNELI,15665
|
|
1785
1787
|
mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=IN7R2dtqEtqdhPQh5r62oZOII_4m_ZU-XCpnbvSqjw0,3729
|
|
1786
1788
|
mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
|
|
1787
1789
|
mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
|
|
@@ -1794,16 +1796,16 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
|
|
|
1794
1796
|
mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
|
|
1795
1797
|
mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1796
1798
|
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1797
|
-
mindsdb/interfaces/agents/agents_controller.py,sha256=
|
|
1799
|
+
mindsdb/interfaces/agents/agents_controller.py,sha256=HP2mvcMNqqvr50XSZcr3oaoPa-vYwFwpoNlXqUbElYo,29404
|
|
1798
1800
|
mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
|
|
1799
1801
|
mindsdb/interfaces/agents/constants.py,sha256=W1p2z1iLeY4eC-lOVFaeR8MluVPfWfjMoyAmKjIYyOI,8438
|
|
1800
1802
|
mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
|
|
1801
|
-
mindsdb/interfaces/agents/langchain_agent.py,sha256=
|
|
1803
|
+
mindsdb/interfaces/agents/langchain_agent.py,sha256=dSyEOD7t0-QEn-AWDe7Ugbjo4ijtC36Ly6f_LWg31_U,30345
|
|
1802
1804
|
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
|
|
1803
1805
|
mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
|
|
1804
|
-
mindsdb/interfaces/agents/mcp_client_agent.py,sha256=
|
|
1806
|
+
mindsdb/interfaces/agents/mcp_client_agent.py,sha256=8pDHMWJz5aYe7lyyVJYLqlCCKVMT_iqoWJ-XeBXSUz8,10036
|
|
1805
1807
|
mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
|
|
1806
|
-
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=
|
|
1808
|
+
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=OmvdSnN6ZIHC_EudSXxY9f_MJOGyrWD-TcRTrPnedds,4782
|
|
1807
1809
|
mindsdb/interfaces/agents/run_mcp_agent.py,sha256=4ZXhIGBu3wVIZC9Ys6vTJDxGJzLXppLLqzbg1UFanS8,8689
|
|
1808
1810
|
mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
|
|
1809
1811
|
mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -1817,32 +1819,33 @@ mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS
|
|
|
1817
1819
|
mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1818
1820
|
mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
|
|
1819
1821
|
mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=jB0jHcLARFRCnGfN1IzQ_djsXIcnzgz3hi5hCiTRuz8,15622
|
|
1820
|
-
mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=
|
|
1822
|
+
mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=fUSLlpmHo8hrb9zjtwNXzbSAoWRBxUI34cYSaN9vObI,2186
|
|
1821
1823
|
mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1822
1824
|
mindsdb/interfaces/database/database.py,sha256=xUGax9RhsFRN0DAmPtVLTk1LrNsRxc74hA6nRRX5FfU,5605
|
|
1823
1825
|
mindsdb/interfaces/database/integrations.py,sha256=3CFTJZmEVcVFgtiP4r1zNr0HBsKq2L3I1YuU5UaJDOc,37031
|
|
1824
1826
|
mindsdb/interfaces/database/log.py,sha256=ZpsEKKEtF32KjWRQ5rMtnHZTHqqJiffeaEcUDTx44cs,10305
|
|
1825
|
-
mindsdb/interfaces/database/projects.py,sha256=
|
|
1827
|
+
mindsdb/interfaces/database/projects.py,sha256=isAnZ8JkTDPAONnV3SqILeCHitP1Er8AcBghRPxuh9w,16460
|
|
1826
1828
|
mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
|
|
1827
1829
|
mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1828
1830
|
mindsdb/interfaces/file/file_controller.py,sha256=vkxIdR12FLCZkAbwm-0_ZFK56q5bJciRqYwLK_0ooIM,8059
|
|
1829
1831
|
mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1830
|
-
mindsdb/interfaces/functions/controller.py,sha256=
|
|
1831
|
-
mindsdb/interfaces/functions/to_markdown.py,sha256=
|
|
1832
|
+
mindsdb/interfaces/functions/controller.py,sha256=1nMC-DREpkjeVMKBxvqzNNSidj4-uIFWmuNjYlqZ1gM,7659
|
|
1833
|
+
mindsdb/interfaces/functions/to_markdown.py,sha256=sD5iIRlaAsHdrqsyJyqKD5ItnfPY-g5-845K0Y_f6Ac,3901
|
|
1832
1834
|
mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1833
1835
|
mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
|
|
1834
1836
|
mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
|
|
1835
1837
|
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1836
|
-
mindsdb/interfaces/knowledge_base/controller.py,sha256=
|
|
1837
|
-
mindsdb/interfaces/knowledge_base/evaluate.py,sha256=
|
|
1838
|
-
mindsdb/interfaces/knowledge_base/
|
|
1838
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=OGvMR47X5EaQ-GMxijpSwcUEY4feX3WXmYMfanewAxk,55922
|
|
1839
|
+
mindsdb/interfaces/knowledge_base/evaluate.py,sha256=FYRq7WPRJlwR4Djn7LrDt5WFJXV_cJR6G6dv7y-ATyc,19767
|
|
1840
|
+
mindsdb/interfaces/knowledge_base/executor.py,sha256=WN6tKDtBBPBjEQdRaX8KS5ypv3DzoEd2dWWBI60py_U,12967
|
|
1841
|
+
mindsdb/interfaces/knowledge_base/llm_client.py,sha256=e7Z7Hl9usBmfb4srLWKAk5YeR-TB4XN0nZCaj9NT_XM,2734
|
|
1839
1842
|
mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
|
|
1840
1843
|
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1841
1844
|
mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
|
|
1842
1845
|
mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=l_snHg8O6pLu4-TGTd5K3VgWVwlXa7mnLH_NaQdbS6E,3596
|
|
1843
|
-
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=
|
|
1846
|
+
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=vVCw-MG0D9mRMycycKaV3T5lfD8sDDJ83iNY-F3E918,14504
|
|
1844
1847
|
mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=ciOiEmSN3JalwN9_d-tfJLabD_5etBYIHavCnazI0x8,17333
|
|
1845
|
-
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=
|
|
1848
|
+
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=76SO2G6tSqGzE64cnFWR9XtA8YXqf6rEjS24uRp_Nsk,5850
|
|
1846
1849
|
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1847
1850
|
mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
|
|
1848
1851
|
mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
|
|
@@ -1854,14 +1857,14 @@ mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-
|
|
|
1854
1857
|
mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
|
|
1855
1858
|
mindsdb/interfaces/skills/skill_tool.py,sha256=ciuo9kEWaRvBIhyXBFCfn3fLBzh2Sr7TgPalPxnOilg,20486
|
|
1856
1859
|
mindsdb/interfaces/skills/skills_controller.py,sha256=ury7v-nns9OHWMouzetCF1bbAZmbpSwSBpOOYZuXJr8,6248
|
|
1857
|
-
mindsdb/interfaces/skills/sql_agent.py,sha256=
|
|
1860
|
+
mindsdb/interfaces/skills/sql_agent.py,sha256=2AEXbUd1ygRHNWFdw6bjnjerCXQl7X4ct3x_sEjtiMU,26591
|
|
1858
1861
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1859
1862
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1860
|
-
mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=
|
|
1863
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=upkozOXGLirA0gNiHSz8VXzhJc4NHYkV65uP_kUsVyg,10061
|
|
1861
1864
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
|
|
1862
1865
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=9vre6MI_kzDY4lae42EhOvuTdXcTrs9R_oeiuZkMO2o,12352
|
|
1863
1866
|
mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1864
|
-
mindsdb/interfaces/storage/db.py,sha256=
|
|
1867
|
+
mindsdb/interfaces/storage/db.py,sha256=SLFof1ZrA43t8yiKgIHCi5qp-NAeXX9tHWy714IItCk,28854
|
|
1865
1868
|
mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
|
|
1866
1869
|
mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
|
|
1867
1870
|
mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
|
|
@@ -1949,10 +1952,10 @@ mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
1949
1952
|
mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1950
1953
|
mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
|
|
1951
1954
|
mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
|
|
1952
|
-
mindsdb/utilities/config.py,sha256=
|
|
1955
|
+
mindsdb/utilities/config.py,sha256=zFEcXDzDdPuNZl54A1j_rJBwnkWGy4gEKRqIiEfFOMI,27913
|
|
1953
1956
|
mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
|
|
1954
1957
|
mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
|
|
1955
|
-
mindsdb/utilities/exception.py,sha256=
|
|
1958
|
+
mindsdb/utilities/exception.py,sha256=Y0-aO54_EQeebBuvR0105qITJc_Jq6bQ5QszmmKmUpE,2688
|
|
1956
1959
|
mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
|
|
1957
1960
|
mindsdb/utilities/functions.py,sha256=xAlSAmgWMosCYoBI2mZyEyIrz0RAJaPTiFDq2sQVIeI,5279
|
|
1958
1961
|
mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
|
|
@@ -1960,7 +1963,7 @@ mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY
|
|
|
1960
1963
|
mindsdb/utilities/log.py,sha256=fiiPluFEnO_Ud88Bi25yepRKWXr-9oNsJukR1elo7pQ,4818
|
|
1961
1964
|
mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
|
|
1962
1965
|
mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
|
|
1963
|
-
mindsdb/utilities/security.py,sha256=
|
|
1966
|
+
mindsdb/utilities/security.py,sha256=Jcd6v1UKRr4HY7SRkYdvF9zSjcqeKRO10f295XVZNAA,3017
|
|
1964
1967
|
mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
|
|
1965
1968
|
mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
|
|
1966
1969
|
mindsdb/utilities/starters.py,sha256=rfwpqJHkPlqh5wv3bSDsyak0Y7LHSjeOUfTJmkNIoYQ,2453
|
|
@@ -1985,8 +1988,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
|
|
|
1985
1988
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1986
1989
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1987
1990
|
mindsdb/utilities/render/sqlalchemy_render.py,sha256=7GYCKCCFIo4UzmPtnRncefZBuUVdcVEo4ICqHxGWPrw,30852
|
|
1988
|
-
mindsdb-25.
|
|
1989
|
-
mindsdb-25.
|
|
1990
|
-
mindsdb-25.
|
|
1991
|
-
mindsdb-25.
|
|
1992
|
-
mindsdb-25.
|
|
1991
|
+
mindsdb-25.7.2.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1992
|
+
mindsdb-25.7.2.0.dist-info/METADATA,sha256=BHCqrbbtinenSrG8N5FLkAJxJYvUbvWa6b-DghRoSqE,44098
|
|
1993
|
+
mindsdb-25.7.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1994
|
+
mindsdb-25.7.2.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1995
|
+
mindsdb-25.7.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|