MindsDB 25.6.3.1__py3-none-any.whl → 25.7.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of MindsDB might be problematic. Click here for more details.
- mindsdb/__about__.py +1 -1
- mindsdb/api/executor/command_executor.py +8 -6
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +72 -44
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +14 -1
- mindsdb/api/executor/datahub/datanodes/project_datanode.py +1 -1
- mindsdb/api/executor/datahub/datanodes/system_tables.py +314 -1
- mindsdb/api/executor/planner/plan_join.py +1 -1
- mindsdb/api/executor/planner/query_planner.py +7 -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/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/ludwig_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +150 -140
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +1 -1
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +2 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
- mindsdb/integrations/libs/api_handler.py +6 -7
- mindsdb/integrations/libs/vectordatabase_handler.py +86 -77
- mindsdb/integrations/utilities/rag/rerankers/base_reranker.py +36 -42
- mindsdb/interfaces/agents/agents_controller.py +29 -9
- mindsdb/interfaces/agents/constants.py +44 -0
- mindsdb/interfaces/agents/langchain_agent.py +15 -6
- 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 +22 -3
- mindsdb/interfaces/knowledge_base/controller.py +121 -102
- mindsdb/interfaces/knowledge_base/evaluate.py +19 -7
- 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 +26 -22
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +40 -28
- mindsdb/interfaces/skills/skill_tool.py +91 -88
- mindsdb/interfaces/skills/sql_agent.py +181 -130
- mindsdb/interfaces/storage/db.py +9 -7
- mindsdb/utilities/config.py +12 -1
- mindsdb/utilities/exception.py +47 -7
- mindsdb/utilities/security.py +54 -11
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.7.1.0.dist-info}/METADATA +239 -251
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.7.1.0.dist-info}/RECORD +55 -54
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.7.1.0.dist-info}/WHEEL +0 -0
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.7.1.0.dist-info}/licenses/LICENSE +0 -0
- {mindsdb-25.6.3.1.dist-info → mindsdb-25.7.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=pi58MuSI71I8biLRTkOES4BKuiGZrUIQwQOI_N0JQAo,456
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
3
|
mindsdb/__main__.py,sha256=bkLqiYLsx1KyCyi6tJjyMBkpMvO3g37wOC0PymMbiHU,24037
|
|
4
4
|
mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -17,7 +17,7 @@ mindsdb/api/a2a/common/server/utils.py,sha256=1k_fBfECT0JQFlFcAJhpNlTYYOruxDlV0S
|
|
|
17
17
|
mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
|
|
19
19
|
mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
20
|
-
mindsdb/api/executor/command_executor.py,sha256=
|
|
20
|
+
mindsdb/api/executor/command_executor.py,sha256=1uTvOyU14PjUueAnzT7gp9Gf1bQTJGOcgbrqQ8LdxoE,81004
|
|
21
21
|
mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
|
|
22
22
|
mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
|
|
23
23
|
mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
|
|
@@ -30,18 +30,18 @@ mindsdb/api/executor/datahub/classes/response.py,sha256=1JLErGOSwcgYeSlCOBaEDjkX
|
|
|
30
30
|
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=7sRAqTbL-YcIfIvbdyEokSefHoWVzNSRM1vjqhqkWGQ,1495
|
|
31
31
|
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
32
32
|
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=
|
|
33
|
+
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=4G8kWdxTT16DRcALwUPlcHM5OIt2eCEBfG44j-VUURA,8763
|
|
34
|
+
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=d64gyT2VvVg1cwKCb-13pnhR2jDTII0rcod0W4qEowc,11073
|
|
35
35
|
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=oyn8cCwEYcxRwza4xRwyNTUE2QoJjAUxvO6Rz_V70xc,14502
|
|
36
|
-
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=
|
|
37
|
-
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=
|
|
36
|
+
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=I97p3wsZjGZ7wfgq54rs9X-72MYXu1PVHteWVFRX-rg,7682
|
|
37
|
+
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=JCxwfbqGjTOwn1JqyJfdIk5C9h8TViUEn9L7IMrqT58,27505
|
|
38
38
|
mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
|
|
39
39
|
mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
|
|
40
|
-
mindsdb/api/executor/planner/plan_join.py,sha256=
|
|
40
|
+
mindsdb/api/executor/planner/plan_join.py,sha256=01Hp2RSYgXDWt-H8UcUufO6Hj1zUtY3ZbHpUCR1f0VU,22432
|
|
41
41
|
mindsdb/api/executor/planner/plan_join_ts.py,sha256=LeQWq1dnhkLo36EaQG5B-EAlGfTFHT1szvEve75uMk8,16369
|
|
42
42
|
mindsdb/api/executor/planner/query_plan.py,sha256=Cj02laM8YCuwuNUNrkLrhbBcO1cOAXcq5IHTx-_R5L0,780
|
|
43
|
-
mindsdb/api/executor/planner/query_planner.py,sha256=
|
|
44
|
-
mindsdb/api/executor/planner/query_prepare.py,sha256=
|
|
43
|
+
mindsdb/api/executor/planner/query_planner.py,sha256=9yNno776Ht1cGwmoSVRgz2psltWRg8bYwyJIOcWXI-A,35605
|
|
44
|
+
mindsdb/api/executor/planner/query_prepare.py,sha256=Wsquc8hsJFDLbW3P_f87YivoIw2_cf1yXHQQXFjYA4s,16565
|
|
45
45
|
mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlCw5hMbWRBSMtEjM,519
|
|
46
46
|
mindsdb/api/executor/planner/steps.py,sha256=eAffDFqL0ZpCn1PSFK5gnpsY6eb-gM--lZw2WyadGfo,9511
|
|
47
47
|
mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
|
|
@@ -53,7 +53,7 @@ mindsdb/api/executor/sql_query/steps/__init__.py,sha256=KHQ25_rwy0pCFHqrLYismnY0
|
|
|
53
53
|
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=NU_Okjioql0iZW1wfYv_IIftOVEjQpW0SOrg1lFJops,17229
|
|
54
54
|
mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
|
|
55
55
|
mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=iPxSYq_GrVBsdB6mmWeCi5fLgbXbIhvXxc0LRMTbJ0M,1370
|
|
56
|
-
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=
|
|
56
|
+
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=06ldNOI5tzbux5GEX_CTADihuKwlKzORP14wiPsXlaE,4263
|
|
57
57
|
mindsdb/api/executor/sql_query/steps/fetch_dataframe_partition.py,sha256=-ViiI0UILMcpPjpXAZcODnS3WIPtMNCB1LxIJCSuGLE,7154
|
|
58
58
|
mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=oi5q43kzBKKDXh97MbrzQT6qJpp6tcBakfqC6OJ3R0w,4250
|
|
59
59
|
mindsdb/api/executor/sql_query/steps/join_step.py,sha256=govBGAmZEgFQ4I-QmxNY7nRN81_GF4HAuP-wOTDSrBk,4265
|
|
@@ -63,7 +63,7 @@ mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=URXDoE6vuc5mJ-vBkM5
|
|
|
63
63
|
mindsdb/api/executor/sql_query/steps/project_step.py,sha256=2Hy-b9a3-bJcUHQNhILWSNs17k0JTLrG1aGwTbtJDAM,2868
|
|
64
64
|
mindsdb/api/executor/sql_query/steps/sql_steps.py,sha256=01aDbFrqatM-iX70gU3-ODPBP9F-v0mWZ9BedddBOa8,889
|
|
65
65
|
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=
|
|
66
|
+
mindsdb/api/executor/sql_query/steps/union_step.py,sha256=SDCQqLON3NHSbzc2g31xT8CNG5cXu2dSRB7-AELQt6Q,1859
|
|
67
67
|
mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0Hn3eXNWLu5mlTNpIsZbS5t8SfSo-14ttOd1r0_T8NA,4643
|
|
68
68
|
mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
69
|
mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
|
|
@@ -82,7 +82,7 @@ mindsdb/api/http/namespaces/chatbots.py,sha256=pLSaTzm2GtqJM-RW8MrEQTIJybLRCMbLv
|
|
|
82
82
|
mindsdb/api/http/namespaces/config.py,sha256=h7nILaVsMtvaLqdcKwXmLCcaWaelVVEedQFyjwDmgX4,8461
|
|
83
83
|
mindsdb/api/http/namespaces/databases.py,sha256=QuHD5zSIftfb5qRdPJS3UtZEnfQnf1fp0wVKe98h7Rg,18543
|
|
84
84
|
mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzXCpxgJA2vY,4729
|
|
85
|
-
mindsdb/api/http/namespaces/file.py,sha256=
|
|
85
|
+
mindsdb/api/http/namespaces/file.py,sha256=K0gP1rGX32foRABy4JNJNK02f1TBNx1f2AlxBCFKMUw,7837
|
|
86
86
|
mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
|
|
87
87
|
mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
|
|
88
88
|
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=RotgaH_Utryxrqm4OUTeinjY1JzQzPQ3t72FVM2GQ0s,16570
|
|
@@ -117,7 +117,7 @@ mindsdb/api/http/namespaces/configs/webhooks.py,sha256=WTZAN2r6GdR8LbhAyh9osFGaF
|
|
|
117
117
|
mindsdb/api/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
118
|
mindsdb/api/litellm/start.py,sha256=U6gBzQrHNmbPCjCnizPz59jnM0GdYmMx84XTIVzCiww,2761
|
|
119
119
|
mindsdb/api/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
|
-
mindsdb/api/mcp/start.py,sha256=
|
|
120
|
+
mindsdb/api/mcp/start.py,sha256=6QIEMpQlLMC8HmBX2UyFJaGaQ1IrLniOYhysxDFzR0w,6457
|
|
121
121
|
mindsdb/api/mongo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
122
|
mindsdb/api/mongo/server.py,sha256=BB0qFC5OrSH_nAFvTiLmXEkBWTFQlZzliKSD1NKau7M,13763
|
|
123
123
|
mindsdb/api/mongo/start.py,sha256=OdTSoUNsR9YF7Kr_QDFtIEJ8N50IoGbkfHu2K-Ia5_w,420
|
|
@@ -366,7 +366,7 @@ mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py,sha256=47DEQpj
|
|
|
366
366
|
mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py,sha256=9MibR3PQlvZzt7Q0rCU6R8dICvqhPA_kxoUp4JiVEVE,1353
|
|
367
367
|
mindsdb/integrations/handlers/chromadb_handler/__about__.py,sha256=28MPMq-Rjb1tR4SawSItNeGvVRupERgeHUDW7KRiyr4,345
|
|
368
368
|
mindsdb/integrations/handlers/chromadb_handler/__init__.py,sha256=FzOq_6Kq-DWh2JpJT_nUryqEZrRR3TtpAmynMFOfHr4,659
|
|
369
|
-
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=
|
|
369
|
+
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=vW0JlfgBi5Z8z6_zC9irb0qfa1qGVQYKddC3tW1zSrg,19100
|
|
370
370
|
mindsdb/integrations/handlers/chromadb_handler/connection_args.py,sha256=68xiE2YIA1nVVgX2TujmKW2eJ1m7gkvkogtizepPR3o,664
|
|
371
371
|
mindsdb/integrations/handlers/chromadb_handler/icon.png,sha256=kNvGVxfI_vQgHvpuBwHXKZOpgERaHHx3i1XmyA8GDRg,4199
|
|
372
372
|
mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=74shT4HXgWhY9USh902gDPUo7SvgHZZ2u9V13jkdC_E,99
|
|
@@ -790,13 +790,13 @@ mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt,sha256=VO
|
|
|
790
790
|
mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
791
791
|
mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py,sha256=gNbILP3emqqlboEypuaScSkTcjazGGPYql2AD7nK1rg,128
|
|
792
792
|
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=
|
|
793
|
+
mindsdb/integrations/handlers/huggingface_handler/__init__.py,sha256=gkRr9Plm5imtkJ6utRRfC81CC-7crr35UVrN8IBgrA0,859
|
|
794
|
+
mindsdb/integrations/handlers/huggingface_handler/finetune.py,sha256=GhenLv_QAbh9qjvOdtB4msiL8T6QD0NnsciW7wYrP2g,8455
|
|
795
|
+
mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py,sha256=FExukaCMUf3SBd4xyV_BQTQBtlasQvzePTdJzS_OROw,14214
|
|
796
796
|
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=
|
|
797
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements.txt,sha256=1ftzN7HUi0s5DqoCmqEkvI3y014ftejINamwWJcRf2s,197
|
|
798
|
+
mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt,sha256=_7nN1AvZtSX3L-GLt6Hi0Tb7BV780NhjNhGXDQUF-2k,237
|
|
799
|
+
mindsdb/integrations/handlers/huggingface_handler/settings.py,sha256=1qa9xcOuDlyTjLhnFKu6CNB-cIQtHCxCGWzOhJ4Tb8k,1034
|
|
800
800
|
mindsdb/integrations/handlers/ibm_cos_handler/__about__.py,sha256=wGXqgk6YqX5TxD4ZGaZDRvMF5G-3NIhSD8O5DhPlnHo,374
|
|
801
801
|
mindsdb/integrations/handlers/ibm_cos_handler/__init__.py,sha256=e5IvCKw0wMTcbljak3k1JPFRFzpYIyEk5EBvxXB-apQ,666
|
|
802
802
|
mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py,sha256=2DuHEQN03FRK7_-6jC_f-wfNtWRHuWbAdAd8FhdEPcE,1247
|
|
@@ -931,7 +931,7 @@ mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py,sha2
|
|
|
931
931
|
mindsdb/integrations/handlers/litellm_handler/__about__.py,sha256=qKuzAOGHI5gYpkNeGTTulSTMuQdHqmWFPTtJhLil4jw,341
|
|
932
932
|
mindsdb/integrations/handlers/litellm_handler/__init__.py,sha256=phvu1-lcM1HovXh4GHunND_ScTON4Yb3s4VXNVd_epU,550
|
|
933
933
|
mindsdb/integrations/handlers/litellm_handler/icon.png,sha256=mfPLH1-n3D1q3U57hADzl7s2G-W-EDevUHzmvnLTjy8,37122
|
|
934
|
-
mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=
|
|
934
|
+
mindsdb/integrations/handlers/litellm_handler/litellm_handler.py,sha256=T6yktTfoicaiQbit4YnKIc8k_nJZEKINF4fDwx98nkg,6319
|
|
935
935
|
mindsdb/integrations/handlers/litellm_handler/requirements.txt,sha256=dy-zvg7q-XWnmLu6dh1DSphrzDsLZHec2oSRuF-jWmw,18
|
|
936
936
|
mindsdb/integrations/handlers/litellm_handler/settings.py,sha256=LUnndIS2pqpQB84fLe2AhBWzSzpeHbeoeVNz3T6-Rlk,2301
|
|
937
937
|
mindsdb/integrations/handlers/llama_index_handler/__about__.py,sha256=BtxlhE6R27NMF-AQRn5hhTK3cSdkyUDU6f9venjZ0dU,359
|
|
@@ -945,7 +945,7 @@ mindsdb/integrations/handlers/ludwig_handler/__init__.py,sha256=Bz_CZB8XJiMLYb7r
|
|
|
945
945
|
mindsdb/integrations/handlers/ludwig_handler/functions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
946
946
|
mindsdb/integrations/handlers/ludwig_handler/icon.svg,sha256=p-EtG5_8PHHYs4u5R45t2yL4qVCFPnUqcdq3CMsvA1U,414
|
|
947
947
|
mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py,sha256=xNGqY_4LKZN2ZqAHJn2FulRu7p1CBR8eBO7C9XH5uPE,2395
|
|
948
|
-
mindsdb/integrations/handlers/ludwig_handler/requirements.txt,sha256=
|
|
948
|
+
mindsdb/integrations/handlers/ludwig_handler/requirements.txt,sha256=7qFLocpjcPdlAgHFqbYfaYzsadXTb3c4Q0ro0ORyB54,44
|
|
949
949
|
mindsdb/integrations/handlers/ludwig_handler/utils.py,sha256=6GF7yKawEaG-sWRUW7jTMb6SzU8eus19d3lK3yHEopA,250
|
|
950
950
|
mindsdb/integrations/handlers/luma_handler/__about__.py,sha256=mJacT8OVMIq5k-kY5ilNBeNP4D-S3LYJ2drayH0vyMY,332
|
|
951
951
|
mindsdb/integrations/handlers/luma_handler/__init__.py,sha256=7Zh8FJe9A0T38wdOEm3cXl8vXyROFuZC8-Mh1X2rT5A,621
|
|
@@ -1192,7 +1192,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
|
|
|
1192
1192
|
mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
|
|
1193
1193
|
mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
|
|
1194
1194
|
mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
|
|
1195
|
-
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=
|
|
1195
|
+
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=nV7H8ugYXDksIxHL22wumA0Hp1_kVHS4jsOloRVbjAU,23699
|
|
1196
1196
|
mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1197
1197
|
mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
|
|
1198
1198
|
mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=njwyWqUt8PmCISBN4KjcDnZPakbro1E5lSqTEEZbTO8,607
|
|
@@ -1249,7 +1249,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
|
|
|
1249
1249
|
mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
|
|
1250
1250
|
mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
|
|
1251
1251
|
mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
|
|
1252
|
-
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=
|
|
1252
|
+
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=HCOMYxG8Lp6m0JANb-mIiHwBWEdulL-lcs2wu7QLERA,28572
|
|
1253
1253
|
mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1254
1254
|
mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=5dqzK1Wei9Lywh8T1ZHMGlsyzHFjZRMtd3glzAb7oDo,5829
|
|
1255
1255
|
mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
|
|
@@ -1347,7 +1347,7 @@ mindsdb/integrations/handlers/salesforce_handler/connection_args.py,sha256=XF20-
|
|
|
1347
1347
|
mindsdb/integrations/handlers/salesforce_handler/icon.svg,sha256=sL7XX_vF5Y7gLLklV1h17MXILGYz0f79VH915DQXyV0,8594
|
|
1348
1348
|
mindsdb/integrations/handlers/salesforce_handler/requirements.txt,sha256=JbByk_8_aqTrg45rT_tUbyDgUoDSTK7VVpgUaMen3wU,22
|
|
1349
1349
|
mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py,sha256=1w93ntZ3U47tyYGjhj6KVF6Ku_-dFCofwYf2XxfIt98,10607
|
|
1350
|
-
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=
|
|
1350
|
+
mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py,sha256=jMEylwnBKlDeEIZpVmx13P-mOYA7lH3LlM9dk_sQ9aE,10509
|
|
1351
1351
|
mindsdb/integrations/handlers/sap_erp_handler/__about__.py,sha256=yXC_YavBeY0vTZvwkU4EN7DUijGMZ8m3jtQsftKwlhs,340
|
|
1352
1352
|
mindsdb/integrations/handlers/sap_erp_handler/__init__.py,sha256=2rnUX-yeCkCgh4viBttHdG4o4HKJrVI3m82S8GJFCBU,531
|
|
1353
1353
|
mindsdb/integrations/handlers/sap_erp_handler/api.py,sha256=tAIqeww34R0N0QyVKYhSE3NRzIDoBn8xepCZIG4tYbg,2168
|
|
@@ -1479,8 +1479,8 @@ mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py,
|
|
|
1479
1479
|
mindsdb/integrations/handlers/statsforecast_handler/__about__.py,sha256=1X1F2LyKSugvGa7VZco3R4fDZTM1ED3Ku-ys2evcczY,374
|
|
1480
1480
|
mindsdb/integrations/handlers/statsforecast_handler/__init__.py,sha256=LYYrtDMAW5aFPLPyIp-rOxO2O6izWi7pNtQGAsRmmdY,516
|
|
1481
1481
|
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=
|
|
1482
|
+
mindsdb/integrations/handlers/statsforecast_handler/requirements.txt,sha256=byT245TFXdOIWksM4Sik8GToMkKEEkY-GLx8J8tI0oM,35
|
|
1483
|
+
mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt,sha256=byT245TFXdOIWksM4Sik8GToMkKEEkY-GLx8J8tI0oM,35
|
|
1484
1484
|
mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py,sha256=jPo3yj5nuxi6WP8xrEFx4lI1pGJbKQs-uHJLtBrLz_k,8408
|
|
1485
1485
|
mindsdb/integrations/handlers/strapi_handler/__about__.py,sha256=pCZCrsIQ2_9QSAfpIY8se9QDvIE2kP9_a5N0DnRMO6k,344
|
|
1486
1486
|
mindsdb/integrations/handlers/strapi_handler/__init__.py,sha256=TnZspPGgLSMgWxJkY0oUd6EiPl16Xo7spn0Oswok8-o,529
|
|
@@ -1703,7 +1703,7 @@ mindsdb/integrations/handlers/zotero_handler/requirements.txt,sha256=uRY96N9ioKv
|
|
|
1703
1703
|
mindsdb/integrations/handlers/zotero_handler/zotero_handler.py,sha256=CVmTS9Cqj85xWt1RWR8BKJDh9h-dUYLXWIkYHI5ncfk,3575
|
|
1704
1704
|
mindsdb/integrations/handlers/zotero_handler/zotero_tables.py,sha256=5uTXP3fYAQ6rKgWKKVRc2x0Pn1u4rNMZUHm01ewC9RA,4861
|
|
1705
1705
|
mindsdb/integrations/libs/__init__.py,sha256=uEz-XQLAwY2nMXc5ilEPP6cWWfo5HpO8o8UfV8JELS0,99
|
|
1706
|
-
mindsdb/integrations/libs/api_handler.py,sha256
|
|
1706
|
+
mindsdb/integrations/libs/api_handler.py,sha256=-Zn0rdVA1gvHms0k2ZDzuifPmKOnlNy8qab3t1lkdho,25359
|
|
1707
1707
|
mindsdb/integrations/libs/api_handler_exceptions.py,sha256=mw83eTmo9knpVHP1ISnudonZcBMI_Xzr77b1wXN-eu8,236
|
|
1708
1708
|
mindsdb/integrations/libs/api_handler_generator.py,sha256=qQs12fr31g0XvMjTInopNfKiPj7pKfyuNhqqX0tCgGo,19304
|
|
1709
1709
|
mindsdb/integrations/libs/base.py,sha256=LaM5XhcGw75Yfg5aUvAzhoEOu7-FrXHnJD-E8zyg1_8,21069
|
|
@@ -1713,7 +1713,7 @@ mindsdb/integrations/libs/process_cache.py,sha256=Razi-ybfANk1KUdUL7X_lR1IxCBmoz
|
|
|
1713
1713
|
mindsdb/integrations/libs/realtime_chat_handler.py,sha256=bJxlLKzYUb8tYShRUsecdubZ_E0kWxzExXK-v37gqYc,1171
|
|
1714
1714
|
mindsdb/integrations/libs/response.py,sha256=YMRiPLoQ6UR2jj9XD3yuqniTgyL5xT_p9F8N8xqcDJ4,6185
|
|
1715
1715
|
mindsdb/integrations/libs/storage_handler.py,sha256=g4rcAD4TzmxWmEtS00235_NAnrdulIir4If6E4y_OUo,3512
|
|
1716
|
-
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=
|
|
1716
|
+
mindsdb/integrations/libs/vectordatabase_handler.py,sha256=eLYPH7gW1TyUdTDpW7b2pf9p4EU_1PfX9HoayKFOugM,19669
|
|
1717
1717
|
mindsdb/integrations/libs/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1718
1718
|
mindsdb/integrations/libs/llm/config.py,sha256=p_N1E3b-KB2g-OT2gC66QP1ahh7VftjXublf4k_uLig,4957
|
|
1719
1719
|
mindsdb/integrations/libs/llm/utils.py,sha256=Wz2aptwngVyPX8tVrNx1yUHffpgnMDHQG-e01LoXFwc,25140
|
|
@@ -1781,7 +1781,7 @@ mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_load
|
|
|
1781
1781
|
mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1782
1782
|
mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=Ij91MJ0QpqocHs2vLfLO43PFZPFCyt1mvFjwvDecVU4,15551
|
|
1783
1783
|
mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1784
|
-
mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=
|
|
1784
|
+
mindsdb/integrations/utilities/rag/rerankers/base_reranker.py,sha256=BbenQy3SkaIbHM0RmbLfVfdY7EVd-esQyBW1HHgNELI,15665
|
|
1785
1785
|
mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=IN7R2dtqEtqdhPQh5r62oZOII_4m_ZU-XCpnbvSqjw0,3729
|
|
1786
1786
|
mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
|
|
1787
1787
|
mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
|
|
@@ -1794,16 +1794,16 @@ mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TI
|
|
|
1794
1794
|
mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
|
|
1795
1795
|
mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1796
1796
|
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1797
|
-
mindsdb/interfaces/agents/agents_controller.py,sha256=
|
|
1797
|
+
mindsdb/interfaces/agents/agents_controller.py,sha256=HP2mvcMNqqvr50XSZcr3oaoPa-vYwFwpoNlXqUbElYo,29404
|
|
1798
1798
|
mindsdb/interfaces/agents/callback_handlers.py,sha256=_iOUz-g5Hglf2wtfpx6ENKNCu2Cba-ZbpQtXyR2xElY,6700
|
|
1799
|
-
mindsdb/interfaces/agents/constants.py,sha256=
|
|
1799
|
+
mindsdb/interfaces/agents/constants.py,sha256=W1p2z1iLeY4eC-lOVFaeR8MluVPfWfjMoyAmKjIYyOI,8438
|
|
1800
1800
|
mindsdb/interfaces/agents/event_dispatch_callback_handler.py,sha256=-76yTtxTHO5AkFTtr_RvYfkdUROJHcKZx6KJDZvj_-M,1331
|
|
1801
|
-
mindsdb/interfaces/agents/langchain_agent.py,sha256=
|
|
1801
|
+
mindsdb/interfaces/agents/langchain_agent.py,sha256=dSyEOD7t0-QEn-AWDe7Ugbjo4ijtC36Ly6f_LWg31_U,30345
|
|
1802
1802
|
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=-51IWB5U2_m71xx00IwSOAK6gJ2n-HD_CzbtbmEfbBQ,11598
|
|
1803
1803
|
mindsdb/interfaces/agents/litellm_server.py,sha256=j33LqHlUt9XApMozP4mHy9iFGT1Lx7WRqKHwGfJfT8w,11366
|
|
1804
|
-
mindsdb/interfaces/agents/mcp_client_agent.py,sha256=
|
|
1804
|
+
mindsdb/interfaces/agents/mcp_client_agent.py,sha256=8pDHMWJz5aYe7lyyVJYLqlCCKVMT_iqoWJ-XeBXSUz8,10036
|
|
1805
1805
|
mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=dtVZU3k-aXiK9AC2_ZizeFP2er_-2YVLj4YxQ189nU0,6155
|
|
1806
|
-
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=
|
|
1806
|
+
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=OmvdSnN6ZIHC_EudSXxY9f_MJOGyrWD-TcRTrPnedds,4782
|
|
1807
1807
|
mindsdb/interfaces/agents/run_mcp_agent.py,sha256=4ZXhIGBu3wVIZC9Ys6vTJDxGJzLXppLLqzbg1UFanS8,8689
|
|
1808
1808
|
mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
|
|
1809
1809
|
mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -1817,7 +1817,7 @@ mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS
|
|
|
1817
1817
|
mindsdb/interfaces/data_catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1818
1818
|
mindsdb/interfaces/data_catalog/base_data_catalog.py,sha256=6aigHIG7fTpkZBPM5UaIblI3QsfEit9DVQKp-Hg4PBg,2051
|
|
1819
1819
|
mindsdb/interfaces/data_catalog/data_catalog_loader.py,sha256=jB0jHcLARFRCnGfN1IzQ_djsXIcnzgz3hi5hCiTRuz8,15622
|
|
1820
|
-
mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=
|
|
1820
|
+
mindsdb/interfaces/data_catalog/data_catalog_reader.py,sha256=fUSLlpmHo8hrb9zjtwNXzbSAoWRBxUI34cYSaN9vObI,2186
|
|
1821
1821
|
mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1822
1822
|
mindsdb/interfaces/database/database.py,sha256=xUGax9RhsFRN0DAmPtVLTk1LrNsRxc74hA6nRRX5FfU,5605
|
|
1823
1823
|
mindsdb/interfaces/database/integrations.py,sha256=3CFTJZmEVcVFgtiP4r1zNr0HBsKq2L3I1YuU5UaJDOc,37031
|
|
@@ -1833,16 +1833,17 @@ mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
1833
1833
|
mindsdb/interfaces/jobs/jobs_controller.py,sha256=2-L61saLbpaQ4hAT_HepIq0DUqdUxsPuNNMkj3ZfAJk,18299
|
|
1834
1834
|
mindsdb/interfaces/jobs/scheduler.py,sha256=eHBWTpZozI_AC-hKmg4p0qRoGZW8O3gEt5Y9nDhHWpw,3696
|
|
1835
1835
|
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/
|
|
1836
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=_WA3aQcm9xsiwkilGlEw4m74OGQ6WMQuR2PTYQbCoLI,51161
|
|
1837
|
+
mindsdb/interfaces/knowledge_base/evaluate.py,sha256=8ZS1d1I9SelzcP-VmYqJ9J7iQuGgiZrqRyZmJaKHb3c,19732
|
|
1838
|
+
mindsdb/interfaces/knowledge_base/executor.py,sha256=WN6tKDtBBPBjEQdRaX8KS5ypv3DzoEd2dWWBI60py_U,12967
|
|
1839
|
+
mindsdb/interfaces/knowledge_base/llm_client.py,sha256=e7Z7Hl9usBmfb4srLWKAk5YeR-TB4XN0nZCaj9NT_XM,2734
|
|
1839
1840
|
mindsdb/interfaces/knowledge_base/utils.py,sha256=gRWJkHVic5mOy1rnjd7eON5mo7rdAyxVYfEbg0iJxmk,855
|
|
1840
1841
|
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1841
1842
|
mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=iW5q65albIfTT1ZuxNceJ8o7yrOcttCH1Kx4Vdo-iPY,296
|
|
1842
1843
|
mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=l_snHg8O6pLu4-TGTd5K3VgWVwlXa7mnLH_NaQdbS6E,3596
|
|
1843
|
-
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=
|
|
1844
|
+
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=vVCw-MG0D9mRMycycKaV3T5lfD8sDDJ83iNY-F3E918,14504
|
|
1844
1845
|
mindsdb/interfaces/knowledge_base/preprocessing/json_chunker.py,sha256=ciOiEmSN3JalwN9_d-tfJLabD_5etBYIHavCnazI0x8,17333
|
|
1845
|
-
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=
|
|
1846
|
+
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=76SO2G6tSqGzE64cnFWR9XtA8YXqf6rEjS24uRp_Nsk,5850
|
|
1846
1847
|
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1847
1848
|
mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
|
|
1848
1849
|
mindsdb/interfaces/model/model_controller.py,sha256=sOqfRjOJls_bN6pDCtUJcOmeJJQK8YzTGfuBo3QBEsY,20260
|
|
@@ -1852,16 +1853,16 @@ mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCb
|
|
|
1852
1853
|
mindsdb/interfaces/query_context/query_task.py,sha256=8lvk48tEPMyXJDtML7aKuVyU54UhXqbHy5jwpPnn-0w,727
|
|
1853
1854
|
mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1854
1855
|
mindsdb/interfaces/skills/retrieval_tool.py,sha256=V4ElVmbkh1e9J9_Ro3-Re9Js-dhUcFJkTmbUa8vi9Gc,8752
|
|
1855
|
-
mindsdb/interfaces/skills/skill_tool.py,sha256=
|
|
1856
|
+
mindsdb/interfaces/skills/skill_tool.py,sha256=ciuo9kEWaRvBIhyXBFCfn3fLBzh2Sr7TgPalPxnOilg,20486
|
|
1856
1857
|
mindsdb/interfaces/skills/skills_controller.py,sha256=ury7v-nns9OHWMouzetCF1bbAZmbpSwSBpOOYZuXJr8,6248
|
|
1857
|
-
mindsdb/interfaces/skills/sql_agent.py,sha256=
|
|
1858
|
+
mindsdb/interfaces/skills/sql_agent.py,sha256=2AEXbUd1ygRHNWFdw6bjnjerCXQl7X4ct3x_sEjtiMU,26591
|
|
1858
1859
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1859
1860
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1860
|
-
mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=
|
|
1861
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_kb_tools.py,sha256=upkozOXGLirA0gNiHSz8VXzhJc4NHYkV65uP_kUsVyg,10061
|
|
1861
1862
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=n7r08idG9Qaa0C41HokUf-w72yyACoINOFKGgtNVHLA,1375
|
|
1862
|
-
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=
|
|
1863
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=9vre6MI_kzDY4lae42EhOvuTdXcTrs9R_oeiuZkMO2o,12352
|
|
1863
1864
|
mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1864
|
-
mindsdb/interfaces/storage/db.py,sha256=
|
|
1865
|
+
mindsdb/interfaces/storage/db.py,sha256=SLFof1ZrA43t8yiKgIHCi5qp-NAeXX9tHWy714IItCk,28854
|
|
1865
1866
|
mindsdb/interfaces/storage/fs.py,sha256=rvY_0Ls60_xuyxH3mO1PVgZX2pbxVjXvmDJ6krg2PMI,21177
|
|
1866
1867
|
mindsdb/interfaces/storage/json.py,sha256=xwMYcn7pJN5Ou1QsBJYBmTX5u2bbUr62l2cWtAQS1cA,5066
|
|
1867
1868
|
mindsdb/interfaces/storage/model_fs.py,sha256=kYJ1-FU7sOh7nEO10_gh1P9YfIbU8VITx5Y6K9K-NLE,11297
|
|
@@ -1949,10 +1950,10 @@ mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
1949
1950
|
mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1950
1951
|
mindsdb/utilities/auth.py,sha256=nfC8oqvaN3GAATc_LeHJ34Kg3PYfyfJ-KI6TN_fOB48,2568
|
|
1951
1952
|
mindsdb/utilities/cache.py,sha256=nkfEt8Pw5H_8sPNXMaS2SZCC3NrEMi486K8m61zqu-s,7590
|
|
1952
|
-
mindsdb/utilities/config.py,sha256=
|
|
1953
|
+
mindsdb/utilities/config.py,sha256=skZw-PnYtqN1TXDlQsJTQfDekig3PTOL_ksRZcDDPMw,27568
|
|
1953
1954
|
mindsdb/utilities/context.py,sha256=IdH0bXIIBHuJ_HzVQIRAZhOs4GD15AwDpXTlNnTBHek,1846
|
|
1954
1955
|
mindsdb/utilities/context_executor.py,sha256=OcJu-FgHZUmtAa_jOfXtwr7LPH3Vw2FPPJlx_9cWi7w,1945
|
|
1955
|
-
mindsdb/utilities/exception.py,sha256=
|
|
1956
|
+
mindsdb/utilities/exception.py,sha256=rH12j1co93P_gF3aO3AxprsAEMxBdIjdhFdQFkpGNds,2184
|
|
1956
1957
|
mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
|
|
1957
1958
|
mindsdb/utilities/functions.py,sha256=xAlSAmgWMosCYoBI2mZyEyIrz0RAJaPTiFDq2sQVIeI,5279
|
|
1958
1959
|
mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
|
|
@@ -1960,7 +1961,7 @@ mindsdb/utilities/langfuse.py,sha256=XMNVxllYCKBkWnhnHxQXjIUof7KOctp7da43usQj7SY
|
|
|
1960
1961
|
mindsdb/utilities/log.py,sha256=fiiPluFEnO_Ud88Bi25yepRKWXr-9oNsJukR1elo7pQ,4818
|
|
1961
1962
|
mindsdb/utilities/partitioning.py,sha256=EnFkEIfPMj2_uH7llOQqzjVrbGO2g0AzH2vQWPALnCA,1828
|
|
1962
1963
|
mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
|
|
1963
|
-
mindsdb/utilities/security.py,sha256=
|
|
1964
|
+
mindsdb/utilities/security.py,sha256=Jcd6v1UKRr4HY7SRkYdvF9zSjcqeKRO10f295XVZNAA,3017
|
|
1964
1965
|
mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
|
|
1965
1966
|
mindsdb/utilities/sql.py,sha256=y2E1fUDikoRCrura5WRCbe56c0PdqNveK6-GRjblhsA,2475
|
|
1966
1967
|
mindsdb/utilities/starters.py,sha256=rfwpqJHkPlqh5wv3bSDsyak0Y7LHSjeOUfTJmkNIoYQ,2453
|
|
@@ -1985,8 +1986,8 @@ mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0Azx
|
|
|
1985
1986
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1986
1987
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1987
1988
|
mindsdb/utilities/render/sqlalchemy_render.py,sha256=7GYCKCCFIo4UzmPtnRncefZBuUVdcVEo4ICqHxGWPrw,30852
|
|
1988
|
-
mindsdb-25.
|
|
1989
|
-
mindsdb-25.
|
|
1990
|
-
mindsdb-25.
|
|
1991
|
-
mindsdb-25.
|
|
1992
|
-
mindsdb-25.
|
|
1989
|
+
mindsdb-25.7.1.0.dist-info/licenses/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1990
|
+
mindsdb-25.7.1.0.dist-info/METADATA,sha256=80pQQ7y-8M-eSL-HBbL-dGy5EETl_qwp7KWTlTdA_6A,44097
|
|
1991
|
+
mindsdb-25.7.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1992
|
+
mindsdb-25.7.1.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1993
|
+
mindsdb-25.7.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|