MindsDB 25.1.2.1__py3-none-any.whl → 25.1.5.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-25.1.2.1.dist-info → MindsDB-25.1.5.0.dist-info}/METADATA +246 -255
- {MindsDB-25.1.2.1.dist-info → MindsDB-25.1.5.0.dist-info}/RECORD +94 -83
- mindsdb/__about__.py +1 -1
- mindsdb/__main__.py +5 -3
- mindsdb/api/executor/__init__.py +0 -1
- mindsdb/api/executor/command_executor.py +2 -1
- mindsdb/api/executor/data_types/answer.py +1 -1
- mindsdb/api/executor/datahub/datanodes/datanode.py +1 -1
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +1 -1
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +8 -3
- mindsdb/api/executor/datahub/datanodes/project_datanode.py +9 -26
- mindsdb/api/executor/sql_query/__init__.py +1 -0
- mindsdb/api/executor/sql_query/result_set.py +36 -21
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +1 -1
- mindsdb/api/executor/sql_query/steps/join_step.py +4 -4
- mindsdb/api/executor/sql_query/steps/map_reduce_step.py +6 -39
- mindsdb/api/executor/utilities/sql.py +2 -10
- mindsdb/api/http/namespaces/agents.py +3 -1
- mindsdb/api/http/namespaces/knowledge_bases.py +3 -3
- mindsdb/api/http/namespaces/sql.py +3 -1
- mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +2 -1
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +7 -0
- mindsdb/api/postgres/postgres_proxy/executor/executor.py +2 -1
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +2 -2
- mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/databricks_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/file_handler/file_handler.py +1 -1
- mindsdb/integrations/handlers/file_handler/requirements.txt +0 -4
- mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +17 -1
- mindsdb/integrations/handlers/jira_handler/jira_handler.py +15 -1
- mindsdb/integrations/handlers/jira_handler/jira_table.py +52 -31
- mindsdb/integrations/handlers/langchain_embedding_handler/fastapi_embeddings.py +82 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +8 -1
- mindsdb/integrations/handlers/langchain_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +1 -1
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +8 -0
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +50 -16
- mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +123 -72
- mindsdb/integrations/handlers/pinecone_handler/requirements.txt +1 -1
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +12 -6
- mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +5 -3
- mindsdb/integrations/handlers/slack_handler/slack_handler.py +13 -2
- mindsdb/integrations/handlers/slack_handler/slack_tables.py +21 -1
- mindsdb/integrations/handlers/web_handler/requirements.txt +0 -1
- mindsdb/integrations/libs/ml_handler_process/learn_process.py +2 -2
- mindsdb/integrations/utilities/files/__init__.py +0 -0
- mindsdb/integrations/utilities/files/file_reader.py +258 -0
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +2 -1
- mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +8 -3
- mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +5 -9
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +76 -27
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +18 -1
- mindsdb/integrations/utilities/rag/pipelines/rag.py +74 -21
- mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +166 -108
- mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +108 -78
- mindsdb/integrations/utilities/rag/settings.py +37 -16
- mindsdb/integrations/utilities/sql_utils.py +1 -1
- mindsdb/interfaces/agents/agents_controller.py +18 -8
- mindsdb/interfaces/agents/constants.py +1 -0
- mindsdb/interfaces/agents/langchain_agent.py +124 -157
- mindsdb/interfaces/agents/langfuse_callback_handler.py +4 -37
- mindsdb/interfaces/agents/mindsdb_database_agent.py +21 -13
- mindsdb/interfaces/chatbot/chatbot_controller.py +7 -11
- mindsdb/interfaces/chatbot/chatbot_task.py +16 -5
- mindsdb/interfaces/chatbot/memory.py +58 -13
- mindsdb/interfaces/database/integrations.py +5 -1
- mindsdb/interfaces/database/projects.py +55 -16
- mindsdb/interfaces/database/views.py +12 -25
- mindsdb/interfaces/knowledge_base/controller.py +39 -15
- mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +7 -26
- mindsdb/interfaces/model/functions.py +15 -4
- mindsdb/interfaces/model/model_controller.py +4 -7
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +51 -40
- mindsdb/interfaces/skills/retrieval_tool.py +10 -3
- mindsdb/interfaces/skills/skill_tool.py +97 -54
- mindsdb/interfaces/skills/skills_controller.py +7 -3
- mindsdb/interfaces/skills/sql_agent.py +127 -41
- mindsdb/interfaces/storage/db.py +1 -1
- mindsdb/migrations/versions/2025-01-15_c06c35f7e8e1_project_company.py +88 -0
- mindsdb/utilities/cache.py +7 -4
- mindsdb/utilities/context.py +11 -1
- mindsdb/utilities/langfuse.py +279 -0
- mindsdb/utilities/log.py +20 -2
- mindsdb/utilities/otel/__init__.py +206 -0
- mindsdb/utilities/otel/logger.py +25 -0
- mindsdb/utilities/otel/meter.py +19 -0
- mindsdb/utilities/otel/metric_handlers/__init__.py +25 -0
- mindsdb/utilities/otel/tracer.py +16 -0
- mindsdb/utilities/partitioning.py +52 -0
- mindsdb/utilities/render/sqlalchemy_render.py +7 -1
- mindsdb/utilities/utils.py +34 -0
- mindsdb/utilities/otel.py +0 -72
- {MindsDB-25.1.2.1.dist-info → MindsDB-25.1.5.0.dist-info}/LICENSE +0 -0
- {MindsDB-25.1.2.1.dist-info → MindsDB-25.1.5.0.dist-info}/WHEEL +0 -0
- {MindsDB-25.1.2.1.dist-info → MindsDB-25.1.5.0.dist-info}/top_level.txt +0 -0
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
mindsdb/__about__.py,sha256=
|
|
1
|
+
mindsdb/__about__.py,sha256=Hf4rpI4t4KpRan2XQZXlT2BYMNkK-Witu6DoRc7BrOM,444
|
|
2
2
|
mindsdb/__init__.py,sha256=fZopLiAYa9MzMZ0d48JgHc_LddfFKDzh7n_8icsjrVs,54
|
|
3
|
-
mindsdb/__main__.py,sha256=
|
|
3
|
+
mindsdb/__main__.py,sha256=VQ3RetGs34NhFRT9d76o5S3UpKxdr-G3c0138kz3f8Y,21435
|
|
4
4
|
mindsdb/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
mindsdb/api/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
mindsdb/api/common/check_auth.py,sha256=cQEZqsnCbrRtUf8j4H6uPF98cDPu79t8TdtwBi5g30w,1345
|
|
7
|
-
mindsdb/api/executor/__init__.py,sha256=
|
|
8
|
-
mindsdb/api/executor/command_executor.py,sha256=
|
|
7
|
+
mindsdb/api/executor/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
8
|
+
mindsdb/api/executor/command_executor.py,sha256=nvYmawT1JwwzmK02CoYPmqXeJaQLskGwKnKyhyR0aVU,80692
|
|
9
9
|
mindsdb/api/executor/exceptions.py,sha256=SoxhetIKIVOAwbVP_NatfoKnwt-Xj2yFCiAIqSDxpIE,566
|
|
10
10
|
mindsdb/api/executor/controllers/__init__.py,sha256=px47lPVKqfpqgcoEBHyWoax-ad01rNOTJQCgQmG0Flo,50
|
|
11
11
|
mindsdb/api/executor/controllers/session_controller.py,sha256=2Jf-V0nj7k0aB4scujNVyx91h54odkDrdK1ydsCo46g,3072
|
|
12
12
|
mindsdb/api/executor/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
mindsdb/api/executor/data_types/answer.py,sha256=
|
|
13
|
+
mindsdb/api/executor/data_types/answer.py,sha256=YyF6ZG0vUSCM2NqJGAl1Xkyxx2AgX2vGVEM8pMYCPKA,433
|
|
14
14
|
mindsdb/api/executor/data_types/response_type.py,sha256=eAmjV_UoOKTLh6H7Qi9_1VFhvGm7k1u30D8anJJASGo,128
|
|
15
15
|
mindsdb/api/executor/datahub/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
16
16
|
mindsdb/api/executor/datahub/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
mindsdb/api/executor/datahub/classes/tables_row.py,sha256=wT3TzoK3dFNiRc92rh_Hgo1uqaznFldtXBUGCzKNOlg,1934
|
|
18
18
|
mindsdb/api/executor/datahub/datanodes/__init__.py,sha256=aGoFHBCcl4y-a5rjUYNGpVbZjsh6i__t4u8AY5shPsg,185
|
|
19
|
-
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256
|
|
20
|
-
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=
|
|
21
|
-
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=
|
|
19
|
+
mindsdb/api/executor/datahub/datanodes/datanode.py,sha256=IuWnQvT6SVMoMOELuLoMCAUxZpItGn0Nr0ct44fspr0,373
|
|
20
|
+
mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py,sha256=9gsMJN6sWEgugFnv9_aNK-X4DV-61RSxT2OenKUDUYA,6341
|
|
21
|
+
mindsdb/api/executor/datahub/datanodes/integration_datanode.py,sha256=HowB1lnbs__qiVOE63uAuOqhDEj-2IcuiPh5bb3RgPg,9797
|
|
22
22
|
mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py,sha256=OQJbmzGLYzbA0v-_rwmzB5gvwpJVO0c9h6oNjeGjGPU,12554
|
|
23
|
-
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=
|
|
23
|
+
mindsdb/api/executor/datahub/datanodes/project_datanode.py,sha256=KAYGMEDY4hVf7hZtyB26ehEwu1SCooql3mtoaN0itHs,6336
|
|
24
24
|
mindsdb/api/executor/datahub/datanodes/system_tables.py,sha256=puAzEVGfZCckan8febfdREtnO-lJYnP0a7T2GwRexGo,14388
|
|
25
25
|
mindsdb/api/executor/planner/__init__.py,sha256=Ysh8feXwejpVhJ9yDbrE_lBA3EsGqyWnrbIPdmtE1Oc,143
|
|
26
26
|
mindsdb/api/executor/planner/exceptions.py,sha256=rvLQoFZgCpVsGWomSBdPeuOyr_6FM-QKmseVvUIw5E8,46
|
|
@@ -33,17 +33,17 @@ mindsdb/api/executor/planner/step_result.py,sha256=t2xBRVSfqTRk4GY2JIi21cXSUiFlC
|
|
|
33
33
|
mindsdb/api/executor/planner/steps.py,sha256=kB7FtJiUjiuDYk8a3qw_-EK4VKqcRZSr-udSTyctq6M,8830
|
|
34
34
|
mindsdb/api/executor/planner/ts_utils.py,sha256=_vujPqWH-Y3gVffv6ND1H2b_j99CBvIgQBxZUvZ7Sic,3871
|
|
35
35
|
mindsdb/api/executor/planner/utils.py,sha256=pCec75lLc5V84LYMheprYxT7RGeJPKiNZrqA_bYmco0,3838
|
|
36
|
-
mindsdb/api/executor/sql_query/__init__.py,sha256=
|
|
37
|
-
mindsdb/api/executor/sql_query/result_set.py,sha256=
|
|
36
|
+
mindsdb/api/executor/sql_query/__init__.py,sha256=LJ2BV8snOaXGA8RJ5W5AmQuViLlxJ5V25G_SdsNIYZI,32
|
|
37
|
+
mindsdb/api/executor/sql_query/result_set.py,sha256=tYU0q47RGCxwCIloPn_gxz0O3cBe6ShPQWreWT2rKUE,9629
|
|
38
38
|
mindsdb/api/executor/sql_query/sql_query.py,sha256=6S_PTYYsi9T4I6EvL8X5VvD8sbogSKsuxCQt9gYgGgc,11064
|
|
39
39
|
mindsdb/api/executor/sql_query/steps/__init__.py,sha256=73K_wevliekB1qX5g6RW_TN6wKqXneBVkk52m3Ualvk,728
|
|
40
|
-
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=
|
|
40
|
+
mindsdb/api/executor/sql_query/steps/apply_predictor_step.py,sha256=Qm_kVTg0fwXWIy26Atmie_bGNa0wQQ7mVengN6Zly2A,16305
|
|
41
41
|
mindsdb/api/executor/sql_query/steps/base.py,sha256=xs3wOJ0fkqMRDNR5jDVaz23zeaD8wSF0L-JVC2WW7_E,557
|
|
42
42
|
mindsdb/api/executor/sql_query/steps/delete_step.py,sha256=YsHVlszYDV2-kxCcMnaGUyf-m7clrFzw0h0o4ZCvZAU,1324
|
|
43
43
|
mindsdb/api/executor/sql_query/steps/fetch_dataframe.py,sha256=3ciEmtczfTHDFhRwi1sgAwqt5Scl_QQxYeIrVlbfvv0,3643
|
|
44
44
|
mindsdb/api/executor/sql_query/steps/insert_step.py,sha256=xjVSFzopHVW85sq5p5WVp4hcwkS3qdN8Ygc50jMjFJ0,3738
|
|
45
|
-
mindsdb/api/executor/sql_query/steps/join_step.py,sha256=
|
|
46
|
-
mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=
|
|
45
|
+
mindsdb/api/executor/sql_query/steps/join_step.py,sha256=8wW7AmIMhMinpMovSgl-2CGujV3mDX5kTFLxuI1KZfQ,4261
|
|
46
|
+
mindsdb/api/executor/sql_query/steps/map_reduce_step.py,sha256=v1TZy0FBjw_Bqxx-X2KP-jeqrun-FH4yilghiYhsQEM,4452
|
|
47
47
|
mindsdb/api/executor/sql_query/steps/multiple_step.py,sha256=jAwY8rGUOdecQNP5JSjjHmPpNLMVPX4adAU-PoHJBuY,656
|
|
48
48
|
mindsdb/api/executor/sql_query/steps/prepare_steps.py,sha256=QATZ17UHZe5h41jqJP0yicXMsr1B7ak4p7CLHogFbAA,1538
|
|
49
49
|
mindsdb/api/executor/sql_query/steps/project_step.py,sha256=WQ23VkfWrVHKRnyy91Kh9uRI7Twb-IBvSQl2TZy_21w,2854
|
|
@@ -53,7 +53,7 @@ mindsdb/api/executor/sql_query/steps/union_step.py,sha256=BTVFZz28sGPgbwDOb7pUQx
|
|
|
53
53
|
mindsdb/api/executor/sql_query/steps/update_step.py,sha256=0MeUNsgVsK4pm2VrwM2ZrRua2JFvUHGhvzwzXRc8I1o,4563
|
|
54
54
|
mindsdb/api/executor/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
55
|
mindsdb/api/executor/utilities/functions.py,sha256=xUrrh2zgsP0cYNUAUDGWUXyam693NTL9nlByUAwx7nw,995
|
|
56
|
-
mindsdb/api/executor/utilities/sql.py,sha256=
|
|
56
|
+
mindsdb/api/executor/utilities/sql.py,sha256=vULbEMKN3ZB5RULqC_VPRhuROQ0_CotHYqA32Z2gKAg,6280
|
|
57
57
|
mindsdb/api/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
58
|
mindsdb/api/http/gui.py,sha256=V1_SYzBvEbRfpwSaNdxdlU2ylS-OhJ8IK6p6pcHNJXo,3087
|
|
59
59
|
mindsdb/api/http/gunicorn_wrapper.py,sha256=U11cza-mn71RcLcJZOYwo2Aee3fRIhAYQxby_FF6_Yc,534
|
|
@@ -61,7 +61,7 @@ mindsdb/api/http/initialize.py,sha256=irU6IAhiyFkRDPmLgakhrBqh0Xi4x4aAo4jViF7eSL
|
|
|
61
61
|
mindsdb/api/http/start.py,sha256=3F2iob1EHNh9cCeuxD1RjlVp0wnRw-ybh7lU5KaYGK8,2350
|
|
62
62
|
mindsdb/api/http/utils.py,sha256=nWP2HxeS0Ami0VSFCyoWyhLsz52mRaYkylQCKzH6d7c,1155
|
|
63
63
|
mindsdb/api/http/namespaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
mindsdb/api/http/namespaces/agents.py,sha256=
|
|
64
|
+
mindsdb/api/http/namespaces/agents.py,sha256=G_7SMVFNgM7uL-BgatA2iBqYJA3pTLT2l2nKt_5zn-s,18947
|
|
65
65
|
mindsdb/api/http/namespaces/analysis.py,sha256=Dp3izdLkG35cSAKNUPJfuGoFSRe34CzFPKk2CEVjDoI,3821
|
|
66
66
|
mindsdb/api/http/namespaces/auth.py,sha256=Qm1ZUBdbv_nTDzSQHdzXEosdpYCRzIa17k1yYErOeuk,5483
|
|
67
67
|
mindsdb/api/http/namespaces/chatbots.py,sha256=9UBguchWd04wfYCrsNcFkkt0RCbg-eJcv79RIcJa5Zk,11738
|
|
@@ -71,11 +71,11 @@ mindsdb/api/http/namespaces/default.py,sha256=r8PXn00Um2eyKB5e_Kj7fzk4e4LYH-JCzX
|
|
|
71
71
|
mindsdb/api/http/namespaces/file.py,sha256=u6xYa_moAMb0UXWGkNtErGw9nk-FbloRuLHrLCANjoU,6644
|
|
72
72
|
mindsdb/api/http/namespaces/handlers.py,sha256=zRWZvPOplwSAbKDKeQz93J38TsCQT89-GSlSug6Mtug,7911
|
|
73
73
|
mindsdb/api/http/namespaces/jobs.py,sha256=Oif6biw5Bii1fboSbYbpkFJ7cZW9Ad1jpednWX14Xws,3186
|
|
74
|
-
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=
|
|
74
|
+
mindsdb/api/http/namespaces/knowledge_bases.py,sha256=bkuEaekMVpFiUTTcpqOJnxYphoEqkCDmNgth020Qszw,16564
|
|
75
75
|
mindsdb/api/http/namespaces/models.py,sha256=rCUFF02CQcF_QKeCQJcyAWIZzyyNXw-Jl-aX5lGnvBc,11240
|
|
76
76
|
mindsdb/api/http/namespaces/projects.py,sha256=g2dv_f4MGy7xZRARRqpjghLGSxq_FjHx-fHqPBfRP-E,1407
|
|
77
77
|
mindsdb/api/http/namespaces/skills.py,sha256=2eG5NtaqJSXQ_ex9Tus0sHA7oF4_SKOxPTdlpnz2tkk,5923
|
|
78
|
-
mindsdb/api/http/namespaces/sql.py,sha256
|
|
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=cArp3u3UBZ1pzNagjB_JjqeRTtIvE5WTNG5iuygn9_4,4587
|
|
@@ -148,7 +148,7 @@ mindsdb/api/mongo/utilities/mongodb_query.py,sha256=t6GIriKEGXH0mpaux71kCuVwYVaD
|
|
|
148
148
|
mindsdb/api/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
149
|
mindsdb/api/mysql/start.py,sha256=gxW_29ozucMWxuBlGZHmT4f5WS24YogR4UL93Q0MMAk,377
|
|
150
150
|
mindsdb/api/mysql/mysql_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
-
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256
|
|
151
|
+
mindsdb/api/mysql/mysql_proxy/mysql_proxy.py,sha256=-xRKCBiGoP32IsYK6aEJss_uVn_c9wJF8SZlfPYi6XU,35283
|
|
152
152
|
mindsdb/api/mysql/mysql_proxy/classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
153
|
mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py,sha256=cUdIojE7yC8dGdaJtULSzZjkzlkJoP1CrKomwpFn0nI,3358
|
|
154
154
|
mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py,sha256=oW1oARAZRSIv20Pkfy6nCTB0w69a6-ajVdo9APHohKg,586
|
|
@@ -175,7 +175,7 @@ mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py,sh
|
|
|
175
175
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py,sha256=ykZJyhvw8iDq8CwVHW0RW5SWbTbfqyX1aD9dOo5Y9MA,1494
|
|
176
176
|
mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py,sha256=cm2f1fjPy0nfKWCPARMvq92smMij_X4WTjOdxRlMXOM,521
|
|
177
177
|
mindsdb/api/mysql/mysql_proxy/executor/__init__.py,sha256=U4cWmxMMtOYdK4a3OvSyy-VzICWiURroIAKMKMoRcnM,38
|
|
178
|
-
mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=
|
|
178
|
+
mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py,sha256=ZDsOpD2ytu6oveD_yngG-hrM6qvoWEHIVnv5HetQ7K0,4219
|
|
179
179
|
mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
180
180
|
mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py,sha256=k5ZmduhQW2E3Mf_jns-dyVLsRxXUAJE1b3Qbr1FkHKo,4116
|
|
181
181
|
mindsdb/api/mysql/mysql_proxy/libs/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -189,7 +189,7 @@ mindsdb/api/postgres/start.py,sha256=NVUZBkRBpL0j7eaNBrfQHorCOsNRAKdhtpgsdlv61YA
|
|
|
189
189
|
mindsdb/api/postgres/postgres_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
190
|
mindsdb/api/postgres/postgres_proxy/postgres_proxy.py,sha256=fudxwxAwMN9mb82CUiUqSkaHW9YJ6g3s0nF-Px5QZXc,19392
|
|
191
191
|
mindsdb/api/postgres/postgres_proxy/executor/__init__.py,sha256=ah4U7Z-XWrTGXwPovYZZLr1JTBbd7VB66CSBFgyNAxg,67
|
|
192
|
-
mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=
|
|
192
|
+
mindsdb/api/postgres/postgres_proxy/executor/executor.py,sha256=aV9tuhflppO919B7HQGFyxeMuyv3XaGz2t-fwHLqVJI,6441
|
|
193
193
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
194
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py,sha256=lqCz-LNPsonzrDsZ1vDd3gfWV0CQZVH9ynrOWr11NPc,12729
|
|
195
195
|
mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py,sha256=Nv2_oDCFPRwoRpnqSXm546lAUDDJat7VMoJEHR9J16I,1121
|
|
@@ -348,10 +348,10 @@ 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
|
|
351
|
+
mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py,sha256=P6kfyDvow-DAe_G_QXBhHVRCwA6ZOKr_ttlF4S1PTAA,17381
|
|
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
|
-
mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=
|
|
354
|
+
mindsdb/integrations/handlers/chromadb_handler/requirements.txt,sha256=xDi58Geqkth3WtJFFFD20zyutNzmtrKu9cQOSNNzx9A,16
|
|
355
355
|
mindsdb/integrations/handlers/chromadb_handler/settings.py,sha256=2WL-LMu4ESft90BriiYOmo_WQoXPfh59u_8YeJ3Ml5c,1965
|
|
356
356
|
mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
357
|
mindsdb/integrations/handlers/ckan_handler/__about__.py,sha256=asp1VEDXJCLipP3uoPK7Q_qXIODhH89pJqQyjv6P3WE,337
|
|
@@ -461,7 +461,7 @@ mindsdb/integrations/handlers/databricks_handler/__init__.py,sha256=go72eMqUWKLj
|
|
|
461
461
|
mindsdb/integrations/handlers/databricks_handler/connection_args.py,sha256=tdHFSNaXlAUFkM-FX7cMXEfdF6UtEgcNPSaRhFXuSUg,1885
|
|
462
462
|
mindsdb/integrations/handlers/databricks_handler/databricks_handler.py,sha256=BFNxA5Xsdajva89SpUPMghUEubn3VaE8NsMhZhAG88s,9434
|
|
463
463
|
mindsdb/integrations/handlers/databricks_handler/icon.svg,sha256=p4vKYvjt5bXU6R88i6xcoNKHO2DNlAGZGGZPZKNkroU,618
|
|
464
|
-
mindsdb/integrations/handlers/databricks_handler/requirements.txt,sha256=
|
|
464
|
+
mindsdb/integrations/handlers/databricks_handler/requirements.txt,sha256=W5yjZU0A5YjPZ5Ls_JEF6xNSQ-IsPKf7_iSxSAZ0IXY,43
|
|
465
465
|
mindsdb/integrations/handlers/databricks_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
466
|
mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py,sha256=5b8Qcb4eZMfBtSrTpgfi-Gwk_BU5iOrV8_DWLNF01VE,1302
|
|
467
467
|
mindsdb/integrations/handlers/datastax_handler/__about__.py,sha256=KFwu-VBIpci40lIAMfFzBKW3iCXBYox8JL73Y7ma62M,351
|
|
@@ -607,11 +607,11 @@ mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py,sha256=47DEQpj8H
|
|
|
607
607
|
mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py,sha256=JrgVIq6jucZjUCr8FpbC9ByJ3WdZGppZKHdovvFbNiw,1151
|
|
608
608
|
mindsdb/integrations/handlers/file_handler/__about__.py,sha256=UavP5jJ_xWIaJ0oRsEANLulczZ0craaUb3XLfCSBmEc,331
|
|
609
609
|
mindsdb/integrations/handlers/file_handler/__init__.py,sha256=46Hnm3ijRsYw95BkkBxHJK8k4h_2Te0j1W0r3-ptVCg,329
|
|
610
|
-
mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=
|
|
610
|
+
mindsdb/integrations/handlers/file_handler/file_handler.py,sha256=eL4wugROFNBK7qcOvELrcx7cCBtkibZ-StQZCSBIn14,18363
|
|
611
611
|
mindsdb/integrations/handlers/file_handler/icon.svg,sha256=hsXEvUzrO7WQMOPC83LYQt-FW0wey9TCj5EwiIJwKwk,565
|
|
612
|
-
mindsdb/integrations/handlers/file_handler/requirements.txt,sha256=
|
|
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=
|
|
614
|
+
mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py,sha256=1F_6d9rjcwitp9J0SNMyR1BxTb8WLzLz_h20yw2FYaQ,15558
|
|
615
615
|
mindsdb/integrations/handlers/file_handler/tests/data/test.txt,sha256=SUG2Uw_Hmth51gyaCJyeyfAbFssHfsB3qWFcxBX_W1g,570
|
|
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
|
|
@@ -837,8 +837,8 @@ mindsdb/integrations/handlers/intercom_handler/intercom_tables.py,sha256=GKEJEhu
|
|
|
837
837
|
mindsdb/integrations/handlers/jira_handler/__about__.py,sha256=qP5rGBzzyFBTJnGNCeyOjiBlzfYjt26PU6bw_8MJQOQ,337
|
|
838
838
|
mindsdb/integrations/handlers/jira_handler/__init__.py,sha256=Hsc-LAL8aLWwwjZ1D6k_vI_2L21-XET2sSuf0Pg-ga4,508
|
|
839
839
|
mindsdb/integrations/handlers/jira_handler/icon.svg,sha256=mv8Ee-sh3YbNrGHgdQdgazMICVjU1StIu1Y41H9SjRc,1246
|
|
840
|
-
mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=
|
|
841
|
-
mindsdb/integrations/handlers/jira_handler/jira_table.py,sha256=
|
|
840
|
+
mindsdb/integrations/handlers/jira_handler/jira_handler.py,sha256=kftB6xNJ-w5cXR2EPv2GzOEYMue6qFCyD9QqLrZ1jiQ,3659
|
|
841
|
+
mindsdb/integrations/handlers/jira_handler/jira_table.py,sha256=ttTbNLGNdo_-Pxx-kZ7f31ok990tk16ClGOaqcdRgV4,5886
|
|
842
842
|
mindsdb/integrations/handlers/jira_handler/requirements.txt,sha256=uGqoPIycab1Q50-NoN8vHp7TdzfHVamy9_t1RvONbog,21
|
|
843
843
|
mindsdb/integrations/handlers/kinetica_handler/__about__.py,sha256=t4T3AR68hK91GASSzoP8aWSbbtmszFC0-i7Nb8UVIgs,344
|
|
844
844
|
mindsdb/integrations/handlers/kinetica_handler/__init__.py,sha256=xGpX3Z4sE32AqOPHJ09Vhh-9tvjusZACBCAUwTv8hDI,683
|
|
@@ -855,15 +855,16 @@ mindsdb/integrations/handlers/lancedb_handler/tests/__init__.py,sha256=47DEQpj8H
|
|
|
855
855
|
mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py,sha256=dHFnAMplZCfXk0DwpDM1gKIsG42vEypx9-51nRoCQZc,3351
|
|
856
856
|
mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py,sha256=CqrMPm5gho1vYeXuFNSisjwl32JpHR3IoKv3xw_7fx8,388
|
|
857
857
|
mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py,sha256=7PKWnAB9pBcfxF2SjM3wLmyEq787zj0ZPvSaZD8zoR8,627
|
|
858
|
+
mindsdb/integrations/handlers/langchain_embedding_handler/fastapi_embeddings.py,sha256=h8feiZrRboFcaBGkv5VYdJRHdVeBUCZ6hz0hC_bNqf0,2479
|
|
858
859
|
mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
|
|
859
|
-
mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py,sha256=
|
|
860
|
+
mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py,sha256=GrXTyvb-nLSsfI6V2yblQWSgRgkbTXiWtmfWJYYordw,8277
|
|
860
861
|
mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt,sha256=C_GVvAYnKB13ILpKZcGHSuNg8km5qIB4gbEUaD4Ifz0,24
|
|
861
862
|
mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py,sha256=gxrwh_0d2FiOqAo4xmr-7KGLTFuSuBxLH0gfvmHPVIg,3734
|
|
862
863
|
mindsdb/integrations/handlers/langchain_handler/__about__.py,sha256=rBZQP0fyIkObedPPwbyNl9tB0ygJN6qj0aPwPYI_fqc,345
|
|
863
864
|
mindsdb/integrations/handlers/langchain_handler/__init__.py,sha256=4POM9M6p9cUDAIeQ4gy4Cj-F1p6RPokk3MC2cR77mSw,504
|
|
864
865
|
mindsdb/integrations/handlers/langchain_handler/icon.svg,sha256=dMV03a2BDQvZTwxDAxRmd-GzmCCVXyYvJqTwdZb5Hbw,73222
|
|
865
866
|
mindsdb/integrations/handlers/langchain_handler/langchain_handler.py,sha256=2MoMZYz4e4f4NCE-hHheJulxFJAkJudrvOn6-EAGv4Y,12816
|
|
866
|
-
mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=
|
|
867
|
+
mindsdb/integrations/handlers/langchain_handler/requirements.txt,sha256=4aj8aQLjDOkfE6Fj85Gac143kFwDTW6dVaW8YR3TtZQ,252
|
|
867
868
|
mindsdb/integrations/handlers/langchain_handler/tools.py,sha256=lb0zKsVpTafWi5QSVTbQ0hgvVx1Yr1rLg_i6rTHcVsQ,11385
|
|
868
869
|
mindsdb/integrations/handlers/leonardoai_handler/__about__.py,sha256=tohCA4vFctgcIkYTPoEhcNRW9C1YX07Sxe6n57vTl7A,353
|
|
869
870
|
mindsdb/integrations/handlers/leonardoai_handler/__init__.py,sha256=qoDI2PYu2Kw5TapUlHC1QUIfufxvzuJ1RpLBEpd_woE,512
|
|
@@ -1031,8 +1032,8 @@ mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py,sha256=rUQ0p9bqH
|
|
|
1031
1032
|
mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py,sha256=vraI6WlfpNk0C_D0wQH7Wxxy7zpI57rOp2t2XPgHuSk,533
|
|
1032
1033
|
mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg,sha256=52dL1SJWSi44Z2hQUMEyyP8DUmhgUtjvsfN3HU2EBes,2430
|
|
1033
1034
|
mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py,sha256=MjvBXKUqrh3j9ikXNaEf45qVQfmFUAhjNN493rdvsfw,3490
|
|
1034
|
-
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=
|
|
1035
|
-
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=
|
|
1035
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py,sha256=8Xi8rKFWpEsDw5mzqgR7IW4wEbk-TBNqNqOj4350gL4,9333
|
|
1036
|
+
mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py,sha256=5eqvh7tX6wepvteTgmDxikRoqmx4VIRWszQyM8tPdFc,3421
|
|
1036
1037
|
mindsdb/integrations/handlers/ms_teams_handler/__about__.py,sha256=CqqxMr2iXyNXzPfcrMnDpK7u7gC6tmYPkOYR3KBXgQM,357
|
|
1037
1038
|
mindsdb/integrations/handlers/ms_teams_handler/__init__.py,sha256=btEl5YvlZMkMn3NR6eChKtfT31OQY1LBEII1qJ4hf7g,518
|
|
1038
1039
|
mindsdb/integrations/handlers/ms_teams_handler/icon.svg,sha256=pso2BBOFF2aiAw28W9lBPnvnVeNib21kvrqfZnO_C0M,3934
|
|
@@ -1170,7 +1171,7 @@ mindsdb/integrations/handlers/pgvector_handler/__about__.py,sha256=f7NEmnT5v8Bhc
|
|
|
1170
1171
|
mindsdb/integrations/handlers/pgvector_handler/__init__.py,sha256=291L7daFcaNnMUEcIjs7-U-jgOTJzEvIm2FoO43S_6Q,659
|
|
1171
1172
|
mindsdb/integrations/handlers/pgvector_handler/connection_args.py,sha256=etSu8X9uvYcdG0UZP7N8NdKCywmpcMf19ZPtthZArMg,1688
|
|
1172
1173
|
mindsdb/integrations/handlers/pgvector_handler/icon.svg,sha256=BPrdgXF1gRp2IBmklyYNRpdGtbi1F6Ca78V_L4ji_LE,13760
|
|
1173
|
-
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=
|
|
1174
|
+
mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py,sha256=U7bY7Aogz4-gKA-DH6TYfLU4UgYTf162noZ9BsJjJZY,19356
|
|
1174
1175
|
mindsdb/integrations/handlers/pgvector_handler/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1175
1176
|
mindsdb/integrations/handlers/phoenix_handler/__about__.py,sha256=PGGn5y0Y7tn2FnY2Ru1N7yjr6KZb8IhfUoKFc7GZO9I,359
|
|
1176
1177
|
mindsdb/integrations/handlers/phoenix_handler/__init__.py,sha256=dguuDcpGTUdL7KHbLPv3OLY9fmvJrQj5I_CsfmuQdKk,606
|
|
@@ -1184,8 +1185,8 @@ mindsdb/integrations/handlers/pinecone_handler/__about__.py,sha256=Y216IDI1UcOoZ
|
|
|
1184
1185
|
mindsdb/integrations/handlers/pinecone_handler/__init__.py,sha256=-Zr1wUH_ggClPqhBrYyB0imqtJRNR4F6DXHsAgmpu3U,659
|
|
1185
1186
|
mindsdb/integrations/handlers/pinecone_handler/connection_args.py,sha256=psQUmJK0erheDPFvzFmQE1IE4_W5AAf8U0UPntgrHNI,1612
|
|
1186
1187
|
mindsdb/integrations/handlers/pinecone_handler/icon.svg,sha256=CYI0E8dqYgUElKNLdDGCrGq2oqne3PpURFB94YZYwPA,2683
|
|
1187
|
-
mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py,sha256
|
|
1188
|
-
mindsdb/integrations/handlers/pinecone_handler/requirements.txt,sha256=
|
|
1188
|
+
mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py,sha256=mRjWgH3YyYe5n90nkAhmnTag5y0w5or0417TspZuJBI,13186
|
|
1189
|
+
mindsdb/integrations/handlers/pinecone_handler/requirements.txt,sha256=9VvkJSZPyG8l8V0QYvhOXRd7cj1EHVKji8zpdKvR-Vk,22
|
|
1189
1190
|
mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1190
1191
|
mindsdb/integrations/handlers/pinot_handler/__about__.py,sha256=CxF5ZlieeDDW0W8POUfJVq1XlMavk9q2zEn9PXbgjs4,353
|
|
1191
1192
|
mindsdb/integrations/handlers/pinot_handler/__init__.py,sha256=_iKmsOaetC2HbqCLgOdqRNPDK67U7RmgWuQ0nFwFiMs,598
|
|
@@ -1227,7 +1228,7 @@ mindsdb/integrations/handlers/postgres_handler/__about__.py,sha256=5W3AHCv0BuvCa
|
|
|
1227
1228
|
mindsdb/integrations/handlers/postgres_handler/__init__.py,sha256=tszm8ZCcNkHKoPDIB99A4A40dvj-Yk8PY8p35irS0tQ,606
|
|
1228
1229
|
mindsdb/integrations/handlers/postgres_handler/connection_args.py,sha256=Td7_Pj2HJYVi3-yzBe-BpFfl1zAZvtDZaYh77PfdhE8,1911
|
|
1229
1230
|
mindsdb/integrations/handlers/postgres_handler/icon.svg,sha256=pDl9ZZL9cGcrcGVglWMX1L1IncVv5di1b1tly1dfia4,13757
|
|
1230
|
-
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=
|
|
1231
|
+
mindsdb/integrations/handlers/postgres_handler/postgres_handler.py,sha256=05Bm6w-kg0fAbWuwgE2fglOJMbV8h789aLR2vC8PQro,13876
|
|
1231
1232
|
mindsdb/integrations/handlers/postgres_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1232
1233
|
mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py,sha256=IwUYXO3aVCsIunHl5cPsf1nndZj3W-wkp5naH_vPb9Q,5825
|
|
1233
1234
|
mindsdb/integrations/handlers/pycaret_handler/__about__.py,sha256=Cbt3qxt8SiIhU2_cgCwQxNjrB-alortHg4VqGFY0VlQ,340
|
|
@@ -1274,7 +1275,7 @@ mindsdb/integrations/handlers/rag_handler/settings.py,sha256=5T4_oZt9dUD67AJXeZr
|
|
|
1274
1275
|
mindsdb/integrations/handlers/ray_serve_handler/__about__.py,sha256=42oqKM1C-nIisvPvAL5fIxBDP-rxEduXnGrUUjrfLIU,345
|
|
1275
1276
|
mindsdb/integrations/handlers/ray_serve_handler/__init__.py,sha256=MYDLydWeimQ74znwnrrgnh9S6YgtE7UnJcYBVlWv6r8,596
|
|
1276
1277
|
mindsdb/integrations/handlers/ray_serve_handler/icon.svg,sha256=spxNMpiGLzxt46VM70-m-z4xButrIQ_dzLTarJKYSOA,1990
|
|
1277
|
-
mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=
|
|
1278
|
+
mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py,sha256=8nvYD8IqGQGpWqsD63JBdWMSehfvrk8F8U6V0pCJiAw,2924
|
|
1278
1279
|
mindsdb/integrations/handlers/reddit_handler/__about__.py,sha256=Xp4s3kJp-REycH83S1RLSaPZHpFqbn-MjRuQZ5BpBuQ,336
|
|
1279
1280
|
mindsdb/integrations/handlers/reddit_handler/__init__.py,sha256=n3dhcPIHT_89hQxEXKQbHApOGBGQxtvWxp-fvFL083s,496
|
|
1280
1281
|
mindsdb/integrations/handlers/reddit_handler/icon.svg,sha256=JAhHkvjiEfOz_BSbBVosQs8VXegNanxdnNUNz1bHyRM,3986
|
|
@@ -1392,8 +1393,8 @@ mindsdb/integrations/handlers/slack_handler/__init__.py,sha256=1C8z9FrWQHIk2Dg5f
|
|
|
1392
1393
|
mindsdb/integrations/handlers/slack_handler/connection_args.py,sha256=mzsx968FZZ3gVFXcTimbegcSucYcKzdRnj9FWj1SZ3s,637
|
|
1393
1394
|
mindsdb/integrations/handlers/slack_handler/icon.svg,sha256=bPzub2wQkTiV8nFCoy8TCSAXxYjjg65S7jQT1_yGduM,2005
|
|
1394
1395
|
mindsdb/integrations/handlers/slack_handler/requirements.txt,sha256=92G8Qt34iNKtS1FzKMKUHZp6r8CPz-3TZLn_dD9nY7M,18
|
|
1395
|
-
mindsdb/integrations/handlers/slack_handler/slack_handler.py,sha256=
|
|
1396
|
-
mindsdb/integrations/handlers/slack_handler/slack_tables.py,sha256=
|
|
1396
|
+
mindsdb/integrations/handlers/slack_handler/slack_handler.py,sha256=2C4uvcnU83-zgodCvzJYE9mxX05kpKrj4jLV_hG7a4Y,13318
|
|
1397
|
+
mindsdb/integrations/handlers/slack_handler/slack_tables.py,sha256=4pkgnyICGoZhJQBWE-gDAZDR2bLm69JoFOHYSAQpbBw,28864
|
|
1397
1398
|
mindsdb/integrations/handlers/slack_handler/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1398
1399
|
mindsdb/integrations/handlers/slack_handler/tests/test_slack.py,sha256=DRRHF-i5J711drntA15ZQY1KvI8GYRDXeKDFiH_alJk,883
|
|
1399
1400
|
mindsdb/integrations/handlers/snowflake_handler/__about__.py,sha256=O2reZn6Jc5N14J2xVNjUI-DhRlBp3jDTYPBbzfIG88w,345
|
|
@@ -1612,7 +1613,7 @@ mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py,sha256=OG5Rh1
|
|
|
1612
1613
|
mindsdb/integrations/handlers/web_handler/__about__.py,sha256=CxQc3_pLSKuz1AnBj6sWq3rEdVwcaO_WsfpeAVSKjOY,349
|
|
1613
1614
|
mindsdb/integrations/handlers/web_handler/__init__.py,sha256=vfphmqTz8VmQlD7fmeE3B900gkZLuQ8QWQEvYFbTUkE,504
|
|
1614
1615
|
mindsdb/integrations/handlers/web_handler/icon.svg,sha256=zd0x3UwSoGfJf7Vg5eAcaR4pEtkmJMZwVsgdha2Mtrc,1385
|
|
1615
|
-
mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=
|
|
1616
|
+
mindsdb/integrations/handlers/web_handler/requirements.txt,sha256=DGTAMisIfhU-7xWdii0CEOyiwNDYYKBTsD4F-fKnNRo,13
|
|
1616
1617
|
mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py,sha256=4dAVqvoLDaxQsg3zZyyaGE2XPABjxGTV8GIuDq3KPPY,11275
|
|
1617
1618
|
mindsdb/integrations/handlers/web_handler/web_handler.py,sha256=AB-wNODo6WKlWkF8Iw1NEKgKVErPR5utkvXIihFtXn0,3320
|
|
1618
1619
|
mindsdb/integrations/handlers/webz_handler/__about__.py,sha256=WziIvpCflTd96urD_LFndy7sGYIxqzpfeql4yOTmt_Q,331
|
|
@@ -1695,7 +1696,7 @@ mindsdb/integrations/libs/ml_handler_process/create_validation_process.py,sha256
|
|
|
1695
1696
|
mindsdb/integrations/libs/ml_handler_process/describe_process.py,sha256=D1FEY2C5Ht1KjiycMuplLgHhfRaw-OJylVgst6pOzpQ,4205
|
|
1696
1697
|
mindsdb/integrations/libs/ml_handler_process/func_call_process.py,sha256=W29lPhV6K8g2prNR57CmyJ_t5DNG_EVnf4fhnHpGFPI,728
|
|
1697
1698
|
mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py,sha256=Lult730J8sPGabO4cVqXWtc9gqt_iFvTFlY7GAym1RM,771
|
|
1698
|
-
mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=
|
|
1699
|
+
mindsdb/integrations/libs/ml_handler_process/learn_process.py,sha256=EjMwG2Hy4N6xS3qJYwibGGhR6xsZH6L_LSkEnwlSnDE,7103
|
|
1699
1700
|
mindsdb/integrations/libs/ml_handler_process/predict_process.py,sha256=QmThCaCy-LBVCcpzHWEecl6eWW48QJsf2HxxnwNWN0o,1346
|
|
1700
1701
|
mindsdb/integrations/libs/ml_handler_process/update_engine_process.py,sha256=cczOfdAPbriukLa5lamDT4VRONjFZ9QGdlXxzOad4K8,788
|
|
1701
1702
|
mindsdb/integrations/libs/ml_handler_process/update_process.py,sha256=QA3S0GK2wsbCLmTQxPvdHt2V5-hr5t_25JBRFDfvTEo,784
|
|
@@ -1704,7 +1705,7 @@ mindsdb/integrations/utilities/date_utils.py,sha256=TqCyde_jbknQnrJqYIkNwEHUg-ds
|
|
|
1704
1705
|
mindsdb/integrations/utilities/handler_utils.py,sha256=UEgEckWFDZXLcu5AbBFrqPJuFFXgejDmDRkr6622CPc,2272
|
|
1705
1706
|
mindsdb/integrations/utilities/install.py,sha256=wbg0pcIn8C8PEfjA45DmwueEZ5nX27t2YsLe1xXhC7s,5018
|
|
1706
1707
|
mindsdb/integrations/utilities/query_traversal.py,sha256=oUSsBCwDcMBr-vaUYH5I8koMPDpJDXe0ByxPD0EIG0g,9292
|
|
1707
|
-
mindsdb/integrations/utilities/sql_utils.py,sha256=
|
|
1708
|
+
mindsdb/integrations/utilities/sql_utils.py,sha256=WHlXN3Zjn8kS-sh_jqv1Q6abM-8YocS4WCWzpcIqlhY,6713
|
|
1708
1709
|
mindsdb/integrations/utilities/test_utils.py,sha256=eplCMcVjOsrXRhIhAUhgOPIt2zNiyUV67BYnJ2lvPiE,691
|
|
1709
1710
|
mindsdb/integrations/utilities/time_series_utils.py,sha256=qWVqZaXW7gdVM3jJ6WWYt1VP4WoFmaKt7jhNU6OpMvE,8312
|
|
1710
1711
|
mindsdb/integrations/utilities/utils.py,sha256=TuIgAbuZVkCRUSgLmqJ2STZ1CxVgBGrEnajW68SsKg0,972
|
|
@@ -1712,17 +1713,19 @@ mindsdb/integrations/utilities/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
|
1712
1713
|
mindsdb/integrations/utilities/datasets/dataset.py,sha256=HjxaMAPuos3HaMsVsAm3q-8BNfeUJshGz4_MFrIDYBQ,1665
|
|
1713
1714
|
mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv,sha256=uEOevZwKVjtPScjDVvWfTl4VLvDrhL7D9_9DoRJu7ic,6906
|
|
1714
1715
|
mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv,sha256=erj_BGVabfxDFi9TbTXSJ-OiixHRYnDzoJUJcWWeeQY,104035
|
|
1716
|
+
mindsdb/integrations/utilities/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1717
|
+
mindsdb/integrations/utilities/files/file_reader.py,sha256=F9v0ix-Ym56GFnwE3bIaojY7hu5Vkz8_cB8oRBzPgQE,8233
|
|
1715
1718
|
mindsdb/integrations/utilities/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1716
1719
|
mindsdb/integrations/utilities/handlers/api_utilities/__init__.py,sha256=zkvVb54zxtn4_NSwqCD-SVQG_5JI9EYRygb6EABQu7g,43
|
|
1717
1720
|
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py,sha256=xmcg0gXVY4WUIazM-aCjXXFikFonS6hI05GbdEs5_I8,56
|
|
1718
|
-
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=
|
|
1721
|
+
mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py,sha256=pwH6_oyXIv-Ng1eH8By7K3A4zu0jvQ6TXN2FYPwK6yc,5336
|
|
1719
1722
|
mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py,sha256=lyJdlw4_MFt3w3Iue7npRGwjNPIHzZZGox4dNEXvVaE,139
|
|
1720
1723
|
mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py,sha256=ZgrImndHmaGkTCcx2W-1SlQTWzv0IKCvQKvCLH5jE4g,259
|
|
1721
1724
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py,sha256=badbjE9cfUwgdUzboBXksz8mLHi8pHW5eVr4xdhJYUo,150
|
|
1722
1725
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py,sha256=Nuug_6Zggj5Q4D01sRLpyHrGLvyLL1ONg3SiZH8i4W4,2400
|
|
1723
1726
|
mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py,sha256=6JRit6NCWhzThecl0BM5bFGsmST6CD4vSAOm-nAqBqE,4223
|
|
1724
1727
|
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py,sha256=_hlwBPWRZu1cW8dLQnrmJUr39tokoT2SkodHzJ8PzGM,78
|
|
1725
|
-
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=
|
|
1728
|
+
mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py,sha256=8xGoJtqMBRYNus6enlyHeFMeyl6Rnh76xIXBJ172RmU,5369
|
|
1726
1729
|
mindsdb/integrations/utilities/handlers/query_utilities/__init__.py,sha256=Gy3epzeBeKSi5xFMs9Zq2ggAupWJTDWc_3C7X8rnSEU,279
|
|
1727
1730
|
mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py,sha256=XFmXkaDd1y2YwWDpVG6EptdWpT1QnW8cPmC9QEDyorw,1483
|
|
1728
1731
|
mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py,sha256=tylfQrK9kNAOdCpAKgTyACka1L4AGj-CT1JYpnjyRFc,1543
|
|
@@ -1735,54 +1738,54 @@ mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validatio
|
|
|
1735
1738
|
mindsdb/integrations/utilities/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1736
1739
|
mindsdb/integrations/utilities/rag/config_loader.py,sha256=3m_hdTugNxbTevU79AMNzK-tjObpj5JBvpGMBZB0Iuw,3573
|
|
1737
1740
|
mindsdb/integrations/utilities/rag/rag_pipeline_builder.py,sha256=0RhyafFoQPl1aniRYcOu57aljfqKqj_p0cNb_bfOrc8,3742
|
|
1738
|
-
mindsdb/integrations/utilities/rag/settings.py,sha256=
|
|
1741
|
+
mindsdb/integrations/utilities/rag/settings.py,sha256=aV4u5syOXMBOU-hXgOD9MfhRRPe3xf-T6SsaU3otUh4,23489
|
|
1739
1742
|
mindsdb/integrations/utilities/rag/utils.py,sha256=AAMW1gybfAntUkAPb9AYUeWZUMtZAwWaYiLJcTHNB4A,1620
|
|
1740
1743
|
mindsdb/integrations/utilities/rag/vector_store.py,sha256=EwCdCf0dXwJXKOYfqTUPWEDOPLumWl2EKQiiXzgy8XA,3782
|
|
1741
1744
|
mindsdb/integrations/utilities/rag/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1742
|
-
mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py,sha256=
|
|
1745
|
+
mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py,sha256=DsYSCJqjjVqOHiHsO5UrrsRVFV5KcU2hcl01-CIt9JI,10245
|
|
1743
1746
|
mindsdb/integrations/utilities/rag/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1744
1747
|
mindsdb/integrations/utilities/rag/loaders/file_loader.py,sha256=CZWcr1F2LHmiKxrQwqPModAlHCgJ4F9OLuVpaf14DR8,1868
|
|
1745
1748
|
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py,sha256=TgLU4hFPc-eKJPuN8Gn9UnwqXWF_EhCUGTZNMEP-_vQ,1476
|
|
1746
1749
|
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1747
|
-
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py,sha256=
|
|
1748
|
-
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py,sha256=
|
|
1750
|
+
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py,sha256=1afkvEbBSzaeofZAbK80m3UxfZd7PO-SukbnNb1aW3w,5013
|
|
1751
|
+
mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py,sha256=TaJkfrsajapchnP5ED0WMCP85ptbvN2d8y3UMdjMjDc,3188
|
|
1749
1752
|
mindsdb/integrations/utilities/rag/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1750
|
-
mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=
|
|
1753
|
+
mindsdb/integrations/utilities/rag/pipelines/rag.py,sha256=fFFwts-6Vai8rNaPmj8znLEvkTKyra3L9qQ0LEG581I,15095
|
|
1751
1754
|
mindsdb/integrations/utilities/rag/rerankers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1752
|
-
mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=
|
|
1755
|
+
mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py,sha256=ivSLr6ZA51pFNIrP5vr1STs54fHvnnj_CGqxK-HLFAc,9083
|
|
1753
1756
|
mindsdb/integrations/utilities/rag/retrievers/__init__.py,sha256=Kuo3AJxzHVXMxPFxGqz2AXNPzjBzyMuk2yQj9pFpOsI,128
|
|
1754
1757
|
mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py,sha256=ODNXqeBuDfatGQLvKvogO0aA-A5v3Z4xbCbvO5ICvt4,3923
|
|
1755
1758
|
mindsdb/integrations/utilities/rag/retrievers/base.py,sha256=fomZCUibDLKg-g4_uoTWz6OlhRG-GzqdPPoAR6XyPtk,264
|
|
1756
1759
|
mindsdb/integrations/utilities/rag/retrievers/multi_hop_retriever.py,sha256=wC2M3Vsgzs5Nu6uEuD4YQZZU9W8eW_bc7RrrqvN38mk,3319
|
|
1757
1760
|
mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py,sha256=D9QzIRZWQ6LrT892twdgJj287_BlVEmXRQLYQegQuVA,4383
|
|
1758
1761
|
mindsdb/integrations/utilities/rag/retrievers/retriever_factory.py,sha256=knmGLJNEG8x4KFhUYQiCIpghR5yEEeu_tonSUMUqXAQ,2205
|
|
1759
|
-
mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=
|
|
1762
|
+
mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py,sha256=yLyDt1M28C9DlrzcLPhQIB0kkNdfkGMYkawN6u6sFO4,10390
|
|
1760
1763
|
mindsdb/integrations/utilities/rag/splitters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1761
1764
|
mindsdb/integrations/utilities/rag/splitters/file_splitter.py,sha256=O14E_27omTti4jsxhgTiwHtlR2LdCa9D2DiEgc7yKmc,5260
|
|
1762
1765
|
mindsdb/interfaces/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1763
1766
|
mindsdb/interfaces/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1764
|
-
mindsdb/interfaces/agents/agents_controller.py,sha256=
|
|
1767
|
+
mindsdb/interfaces/agents/agents_controller.py,sha256=4lb8t7S9IGG-ZbBCNQsN36-5JN40qHEBvDNq4JaQJqo,18159
|
|
1765
1768
|
mindsdb/interfaces/agents/callback_handlers.py,sha256=90mGvx6ZIXRA_PAoV6vf8OHjJN65GHgoM3ip_ULOVN8,4711
|
|
1766
|
-
mindsdb/interfaces/agents/constants.py,sha256=
|
|
1767
|
-
mindsdb/interfaces/agents/langchain_agent.py,sha256=
|
|
1768
|
-
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=
|
|
1769
|
+
mindsdb/interfaces/agents/constants.py,sha256=VrtxjycDDsZ1z1kgVuz84yjfJicvDedeut3J2x0NMWE,4462
|
|
1770
|
+
mindsdb/interfaces/agents/langchain_agent.py,sha256=GswT0iPmQThJsoEIBOmWZG3K1eqwuLMuLQtCI36LQPg,25878
|
|
1771
|
+
mindsdb/interfaces/agents/langfuse_callback_handler.py,sha256=EIea9jsKgcGANPCZpdLe929bJy85SVA_bjdsyPiwp_g,4900
|
|
1769
1772
|
mindsdb/interfaces/agents/mindsdb_chat_model.py,sha256=9e_LxCKrCSOZWqURHWavw-FQUK9PLJ5O18IGYSHD9us,6051
|
|
1770
|
-
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=
|
|
1773
|
+
mindsdb/interfaces/agents/mindsdb_database_agent.py,sha256=85kDikJSld6fUg8DKcVad41fzfdoQRaN7hRG08hXBQ8,2184
|
|
1771
1774
|
mindsdb/interfaces/agents/safe_output_parser.py,sha256=x2G27UPT42iVjjj44vGUVNPEUDSHH3nlKJwe3GZDh9A,1605
|
|
1772
1775
|
mindsdb/interfaces/chatbot/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1773
|
-
mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=
|
|
1776
|
+
mindsdb/interfaces/chatbot/chatbot_controller.py,sha256=Ex-_CoZayYW3GAde0XozTL5s5M3rwWJqxt_c1uU09vg,14181
|
|
1774
1777
|
mindsdb/interfaces/chatbot/chatbot_executor.py,sha256=3qU98MHBmUcsIWYqaNNJhoudUQWLPWlCB_di6iFaP1g,7742
|
|
1775
|
-
mindsdb/interfaces/chatbot/chatbot_task.py,sha256=
|
|
1776
|
-
mindsdb/interfaces/chatbot/memory.py,sha256=
|
|
1778
|
+
mindsdb/interfaces/chatbot/chatbot_task.py,sha256=eKU-7FSygAzFq9lkHKLl5zlkiiQDGjzOX7oUb-rJNQo,7001
|
|
1779
|
+
mindsdb/interfaces/chatbot/memory.py,sha256=tkqBiA5mMvkuGITCjUC_r0JuyUS2DbeARxJ_GryOZJQ,8346
|
|
1777
1780
|
mindsdb/interfaces/chatbot/model_executor.py,sha256=qv8DRysWLbJwbv4TkQ-bsLmJOnDaDlMBw7jZ3s6-dzk,3598
|
|
1778
1781
|
mindsdb/interfaces/chatbot/polling.py,sha256=Pi7oPGoz8_LB_4k4YGSPf2XtEdb5ca2augjRHxscn48,8109
|
|
1779
1782
|
mindsdb/interfaces/chatbot/types.py,sha256=nHFxK0FbxGrhv5gqPJc6PbP1LlIbWN-kTAHpS11iLZo,929
|
|
1780
1783
|
mindsdb/interfaces/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1781
1784
|
mindsdb/interfaces/database/database.py,sha256=Uq02qqkkAhGTZTf_BiyyvAg8X5QhakjpDWMRn-kZOgU,4284
|
|
1782
|
-
mindsdb/interfaces/database/integrations.py,sha256
|
|
1785
|
+
mindsdb/interfaces/database/integrations.py,sha256=9hTqsOihKipy66XiW5-vCGazHWdyIt7zVp3mODBduis,36797
|
|
1783
1786
|
mindsdb/interfaces/database/log.py,sha256=tewoKWc-xvfbFC9RVaUUAjQGuRY__Lex8fbR_pwNMwc,11074
|
|
1784
|
-
mindsdb/interfaces/database/projects.py,sha256=
|
|
1785
|
-
mindsdb/interfaces/database/views.py,sha256=
|
|
1787
|
+
mindsdb/interfaces/database/projects.py,sha256=0ZjcqpDf437FmRhUk4z8YJR3MaoxtwJH60uPusLbfPU,15077
|
|
1788
|
+
mindsdb/interfaces/database/views.py,sha256=CthbUly3OgOyFV8a-VRQwhjLh6I1LXbBUzMAcfu8USI,4404
|
|
1786
1789
|
mindsdb/interfaces/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1787
1790
|
mindsdb/interfaces/file/file_controller.py,sha256=-CS3ocAJV_K2Bwb2p_RezEj2Bjnk8WKtCVmkqFYmxX4,4612
|
|
1788
1791
|
mindsdb/interfaces/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1791,29 +1794,29 @@ mindsdb/interfaces/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
1791
1794
|
mindsdb/interfaces/jobs/jobs_controller.py,sha256=xBleXIpGLZ_Sg3j5e7BeTRV-Hp6ELMuFuQwtVZyQ72s,18247
|
|
1792
1795
|
mindsdb/interfaces/jobs/scheduler.py,sha256=m_C-QiTExljq0ilpe4vQiQv56AIWsrtfcdo0krMYQes,3664
|
|
1793
1796
|
mindsdb/interfaces/knowledge_base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1794
|
-
mindsdb/interfaces/knowledge_base/controller.py,sha256=
|
|
1797
|
+
mindsdb/interfaces/knowledge_base/controller.py,sha256=kCoqvJrBqrsGqmGXsF6kXEiJNPszrciUYOR3FOHxnPY,35657
|
|
1795
1798
|
mindsdb/interfaces/knowledge_base/preprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1796
1799
|
mindsdb/interfaces/knowledge_base/preprocessing/constants.py,sha256=0sLB2GOQhh3d46WNcVPF0iTmJc01CIXJoPT99XktuMo,295
|
|
1797
|
-
mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=
|
|
1800
|
+
mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py,sha256=t0ilsEKWLAC0iJrWNPnZXY4DxRNQjvwv4CweeHR9u0g,5542
|
|
1798
1801
|
mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py,sha256=RdASLNgDdvfjwLawIqsSQeQKX2qf411e5N7bjQuCNmQ,14604
|
|
1799
1802
|
mindsdb/interfaces/knowledge_base/preprocessing/models.py,sha256=s0O29xo7V1fjUgee6fN7kkKdMOBrnFLyx3nwkBaxLfY,3790
|
|
1800
1803
|
mindsdb/interfaces/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1801
|
-
mindsdb/interfaces/model/functions.py,sha256=
|
|
1802
|
-
mindsdb/interfaces/model/model_controller.py,sha256=
|
|
1804
|
+
mindsdb/interfaces/model/functions.py,sha256=TlZfCASNDtwEXXTb38ma5fgWmn2f0XuWPQ5m8wufqks,4904
|
|
1805
|
+
mindsdb/interfaces/model/model_controller.py,sha256=7MmAL_hFxswlPRIZ6RME5SGl0ArTzExuVr1Vy3oQc5k,20201
|
|
1803
1806
|
mindsdb/interfaces/query_context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1804
1807
|
mindsdb/interfaces/query_context/context_controller.py,sha256=YAmdcSFEzd3aOr4nRF7TX6UfAXH9kMK1qk7bpVtvhpY,9486
|
|
1805
1808
|
mindsdb/interfaces/query_context/last_query.py,sha256=LbZwvPtDYJFVBRonJr6RgGZyCbCNGcJJdhS22pW_YE0,9331
|
|
1806
1809
|
mindsdb/interfaces/skills/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1807
|
-
mindsdb/interfaces/skills/retrieval_tool.py,sha256=
|
|
1808
|
-
mindsdb/interfaces/skills/skill_tool.py,sha256=
|
|
1809
|
-
mindsdb/interfaces/skills/skills_controller.py,sha256=
|
|
1810
|
-
mindsdb/interfaces/skills/sql_agent.py,sha256=
|
|
1810
|
+
mindsdb/interfaces/skills/retrieval_tool.py,sha256=zuEEPky--GdKHa1rqd4VhM2wgtlGas5G72eFbooj-Hg,4480
|
|
1811
|
+
mindsdb/interfaces/skills/skill_tool.py,sha256=rcs5i5SVuBEowjyCPqZk2etGHvGq2Gi89kmOt2uddSw,12567
|
|
1812
|
+
mindsdb/interfaces/skills/skills_controller.py,sha256=CUY0B_9DBCUX7LzeODrdBs4WDNRivGPTPHYcGtH7b-M,6146
|
|
1813
|
+
mindsdb/interfaces/skills/sql_agent.py,sha256=2INHwWNzUQNYf3dWo9MQ55y5EyIe3TI-YpfucQ5ivXE,13523
|
|
1811
1814
|
mindsdb/interfaces/skills/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1812
1815
|
mindsdb/interfaces/skills/custom/text2sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1813
1816
|
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py,sha256=CDi2v2Ym3u-0nr8jq7wyf8CymWRFy_wziCov4Y9b3Iw,1253
|
|
1814
|
-
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=
|
|
1817
|
+
mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py,sha256=G6H8u6EfCa5a6yOOeX0h5vLRb7SmEP_z4lRiDxwNtYA,6278
|
|
1815
1818
|
mindsdb/interfaces/storage/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
1816
|
-
mindsdb/interfaces/storage/db.py,sha256=
|
|
1819
|
+
mindsdb/interfaces/storage/db.py,sha256=L-nXGVVkt4izM2VgORfCitLUg3xVup8nwLi7B9PyKCg,19351
|
|
1817
1820
|
mindsdb/interfaces/storage/fs.py,sha256=4Nyo-h23UtZc2nz_LWyVzboC_e1jlU58aph1_en8MdE,21155
|
|
1818
1821
|
mindsdb/interfaces/storage/json.py,sha256=KdrmXfqVCNZ_anNpfyygcFQeywbdJMCMbaI3HFJic-U,2925
|
|
1819
1822
|
mindsdb/interfaces/storage/model_fs.py,sha256=LQHyIs3wlOEpFHceAjziA7zuQKY3N-8gt9EuSYHO8zI,8267
|
|
@@ -1885,25 +1888,28 @@ mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py,sha25
|
|
|
1885
1888
|
mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py,sha256=SdZwpPKODEaC9fc6mFc-kw65Y9GzLiV9WsPYquICUI0,701
|
|
1886
1889
|
mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py,sha256=1qQl720lynCbtcGqKIbFM0HCo81xIXqz0Hj3dWkH6UI,3174
|
|
1887
1890
|
mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py,sha256=nCnp-M3ljIEAO9XTc5mSURp2SX5Q8gE6kyJHp5J5vmo,1322
|
|
1891
|
+
mindsdb/migrations/versions/2025-01-15_c06c35f7e8e1_project_company.py,sha256=zJcBGdgBMlt9oI-SbB8C74w-jDf3ZMYlEuO2guwrfZw,1896
|
|
1888
1892
|
mindsdb/migrations/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1889
1893
|
mindsdb/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1890
1894
|
mindsdb/utilities/auth.py,sha256=6ycLJgXySghgFdzK6emxdStElzt5aOPafjDCRR_g_q0,2336
|
|
1891
|
-
mindsdb/utilities/cache.py,sha256=
|
|
1895
|
+
mindsdb/utilities/cache.py,sha256=6VV5BJ0EWPYK2h80KEM1ETMhw_OCgDKyU6Pejvj1s3E,7431
|
|
1892
1896
|
mindsdb/utilities/config.py,sha256=ezGcUAy2D9NiRd1mpLbZ2JyN5JSwAp7HR9Gm9MyZJ6I,20688
|
|
1893
|
-
mindsdb/utilities/context.py,sha256=
|
|
1897
|
+
mindsdb/utilities/context.py,sha256=LyKNgtavQnAfZpaPHINhrA_9L_SjfURUBD9fZNtuQMQ,1813
|
|
1894
1898
|
mindsdb/utilities/context_executor.py,sha256=6ByyeulMePEfRrGxR9vlKYF87R8z1wHFwc1GdfhlGCk,1946
|
|
1895
1899
|
mindsdb/utilities/exception.py,sha256=q-9cwMLmQvuPpwdjRG0xNZ23z9cxHSfyT2295Rk6waA,1034
|
|
1896
1900
|
mindsdb/utilities/fs.py,sha256=1ezB-EkY-qhIBBC_qRUAn79D0CbxCyVDfEdrY2pp1JA,4657
|
|
1897
1901
|
mindsdb/utilities/functions.py,sha256=CQ87uYz7elOeklHbl7vQdK6QPKpTLGWHAOEKW-lKq5Q,6398
|
|
1898
1902
|
mindsdb/utilities/json_encoder.py,sha256=-nWynBlL7AwRyrM8gkiXPvPzk97EBJawryCA-ZO_7-A,1094
|
|
1899
|
-
mindsdb/utilities/
|
|
1903
|
+
mindsdb/utilities/langfuse.py,sha256=SzJ7db-BZIiYiOs27jxmeUAp554W9jFFiuiWy87FNs4,9270
|
|
1904
|
+
mindsdb/utilities/log.py,sha256=cqWnFDM3qBbsMKTpIXKjA7q1jTZDMkrk4YhjVmzko58,3908
|
|
1900
1905
|
mindsdb/utilities/log_controller.py,sha256=B70FF1P1-kkpujpSAkxhu9FCZARKXfvov-SBl3oiobA,1039
|
|
1901
|
-
mindsdb/utilities/
|
|
1906
|
+
mindsdb/utilities/partitioning.py,sha256=W84Nj8t2pveOo1ZfWuuYrSTOlOaZhLTPEaDxbE6BlyY,1466
|
|
1902
1907
|
mindsdb/utilities/ps.py,sha256=vsY7119OJGYd_n1FXT_FuMTfUL3dVr3WiTRyASaGD00,2339
|
|
1903
1908
|
mindsdb/utilities/security.py,sha256=Mdj3c9Y2BFiEmwKY7J-yrbYdQ6oMgWENPE1XIu4tidk,1506
|
|
1904
1909
|
mindsdb/utilities/sentry.py,sha256=PMI55LbYvCi8NLmI3QgCNL1M8bymVr8J4JBTywAl1WE,2420
|
|
1905
1910
|
mindsdb/utilities/starters.py,sha256=PknV9T2RdnEN7ekgt0ru_PYYT20NlFEPz3LrH8kws2w,818
|
|
1906
1911
|
mindsdb/utilities/telemetry.py,sha256=E1RAdG3g4BwUuD5rx6MpFVP1J1gEd6O4AzHTND6ql1A,1377
|
|
1912
|
+
mindsdb/utilities/utils.py,sha256=RZcPZtM5o1PPYOQmooHSTDn2yP909LGKm9whjVzTr28,1089
|
|
1907
1913
|
mindsdb/utilities/wizards.py,sha256=vlWb50BSmBomj4jMGVc-DABx88GGAaWWqZf8RxA6O-0,1708
|
|
1908
1914
|
mindsdb/utilities/hooks/__init__.py,sha256=HDPLuCxND4GUj5biGVfYeCmMZipMIyTG5WCOU3k654E,796
|
|
1909
1915
|
mindsdb/utilities/hooks/profiling.py,sha256=rku6YqVRv1cL0V62aZEw3dzrv5WQcFkoOut_93YHr2Q,2262
|
|
@@ -1914,12 +1920,17 @@ mindsdb/utilities/ml_task_queue/consumer.py,sha256=cRRlgqOEFSQBKFEowLti2NbgX3cti
|
|
|
1914
1920
|
mindsdb/utilities/ml_task_queue/producer.py,sha256=x0s1_xcqtUaT5Og0TdErgWmN1Jp236byzvd2N2HMO34,2764
|
|
1915
1921
|
mindsdb/utilities/ml_task_queue/task.py,sha256=h6PimSa_AXFo_xvEJGvhDhxiCI54VN2VebVQn0QpAsQ,3166
|
|
1916
1922
|
mindsdb/utilities/ml_task_queue/utils.py,sha256=2bmO5cbgqsXuMkolcaK54_VYjoGKIpg60B2t4XRNboU,3239
|
|
1923
|
+
mindsdb/utilities/otel/__init__.py,sha256=l6OLKIeTmRPxtCRsrV27w7vFSfqQAj22BBMT7T-f1Ys,7744
|
|
1924
|
+
mindsdb/utilities/otel/logger.py,sha256=o-bWPUinZS0yz2G89oxVD4qXgi0oo5gXHJI4aT7sejY,892
|
|
1925
|
+
mindsdb/utilities/otel/meter.py,sha256=oJDoBaU76kF6nenJxZIS08IIz-7GFM3enSKQoeJ6oqI,597
|
|
1926
|
+
mindsdb/utilities/otel/tracer.py,sha256=BBdVTwxpF0gP6uDbwJSj49OjIJOF-giyVRd0yR9p8Tc,679
|
|
1927
|
+
mindsdb/utilities/otel/metric_handlers/__init__.py,sha256=3jGsLt5KkdhqaAUUw8ALxERjlPFq9JclOIedXlS-baY,711
|
|
1917
1928
|
mindsdb/utilities/profiler/__init__.py,sha256=d4VXl80uSm1IotR-WwbBInPmLmACiK0AzxXGBA40I-0,251
|
|
1918
1929
|
mindsdb/utilities/profiler/profiler.py,sha256=KCUtOupkbM_nCoof9MtiuhUzDGezx4a4NsBX6vGWbPA,3936
|
|
1919
1930
|
mindsdb/utilities/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1920
|
-
mindsdb/utilities/render/sqlalchemy_render.py,sha256=
|
|
1921
|
-
MindsDB-25.1.
|
|
1922
|
-
MindsDB-25.1.
|
|
1923
|
-
MindsDB-25.1.
|
|
1924
|
-
MindsDB-25.1.
|
|
1925
|
-
MindsDB-25.1.
|
|
1931
|
+
mindsdb/utilities/render/sqlalchemy_render.py,sha256=XnG2IvB5tTF65EK-xV14HXrfGxyz2cQw7K6zEr9dclI,28287
|
|
1932
|
+
MindsDB-25.1.5.0.dist-info/LICENSE,sha256=ziqdjujs6WDn-9g3t0SISjHCBc2pLRht3gnRbQoXmIs,5804
|
|
1933
|
+
MindsDB-25.1.5.0.dist-info/METADATA,sha256=s852law0RiNoumZ_U3A_1MgIiwUsoutFz-QguUrawtU,42706
|
|
1934
|
+
MindsDB-25.1.5.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
1935
|
+
MindsDB-25.1.5.0.dist-info/top_level.txt,sha256=10wPR96JDf3hM8aMP7Fz0lDlmClEP480zgXISJKr5jE,8
|
|
1936
|
+
MindsDB-25.1.5.0.dist-info/RECORD,,
|
mindsdb/__about__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
__title__ = 'MindsDB'
|
|
2
2
|
__package_name__ = 'mindsdb'
|
|
3
|
-
__version__ = '25.1.
|
|
3
|
+
__version__ = '25.1.5.0'
|
|
4
4
|
__description__ = "MindsDB's AI SQL Server enables developers to build AI tools that need access to real-time data to perform their tasks"
|
|
5
5
|
__email__ = "jorge@mindsdb.com"
|
|
6
6
|
__author__ = 'MindsDB Inc'
|
mindsdb/__main__.py
CHANGED
|
@@ -303,12 +303,14 @@ if __name__ == '__main__':
|
|
|
303
303
|
except Exception as e:
|
|
304
304
|
logger.error(f"Error! Something went wrong during DB migrations: {e}")
|
|
305
305
|
|
|
306
|
-
|
|
306
|
+
apis = os.getenv('MINDSDB_APIS') or config.cmd_args.api
|
|
307
|
+
|
|
308
|
+
if apis is None: # If "--api" option is not specified, start the default APIs
|
|
307
309
|
api_arr = [TrunkProcessEnum.HTTP, TrunkProcessEnum.MYSQL]
|
|
308
|
-
elif
|
|
310
|
+
elif apis == "": # If "--api=" (blank) is specified, don't start any APIs
|
|
309
311
|
api_arr = []
|
|
310
312
|
else: # The user has provided a list of APIs to start
|
|
311
|
-
api_arr = [TrunkProcessEnum(name) for name in
|
|
313
|
+
api_arr = [TrunkProcessEnum(name) for name in apis.split(',')]
|
|
312
314
|
|
|
313
315
|
if config.cmd_args.install_handlers is not None:
|
|
314
316
|
handlers_list = [s.strip() for s in config.cmd_args.install_handlers.split(",")]
|
mindsdb/api/executor/__init__.py
CHANGED
|
@@ -71,7 +71,8 @@ from mindsdb_sql_parser.ast.mindsdb import (
|
|
|
71
71
|
import mindsdb.utilities.profiler as profiler
|
|
72
72
|
|
|
73
73
|
from mindsdb.integrations.utilities.query_traversal import query_traversal
|
|
74
|
-
from mindsdb.api.executor import Column,
|
|
74
|
+
from mindsdb.api.executor.sql_query.result_set import Column, ResultSet
|
|
75
|
+
from mindsdb.api.executor.sql_query import SQLQuery
|
|
75
76
|
from mindsdb.api.executor.data_types.answer import ExecuteAnswer
|
|
76
77
|
from mindsdb.api.mysql.mysql_proxy.libs.constants.mysql import (
|
|
77
78
|
CHARSET_NUMBERS,
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import time
|
|
2
|
+
import inspect
|
|
3
|
+
from typing import Optional
|
|
2
4
|
|
|
3
5
|
import numpy as np
|
|
4
6
|
from numpy import dtype as np_dtype
|
|
@@ -53,8 +55,11 @@ class IntegrationDataNode(DataNode):
|
|
|
53
55
|
def has_table(self, tableName):
|
|
54
56
|
return True
|
|
55
57
|
|
|
56
|
-
def get_table_columns(self,
|
|
57
|
-
|
|
58
|
+
def get_table_columns(self, table_name: str, schema_name: Optional[str] = None):
|
|
59
|
+
if 'schema_name' in inspect.signature(self.integration_handler.get_columns).parameters:
|
|
60
|
+
response = self.integration_handler.get_columns(table_name, schema_name)
|
|
61
|
+
else:
|
|
62
|
+
response = self.integration_handler.get_columns(table_name)
|
|
58
63
|
if response.type == RESPONSE_TYPE.TABLE:
|
|
59
64
|
df = response.data_frame
|
|
60
65
|
# case independent
|
|
@@ -76,7 +81,7 @@ class IntegrationDataNode(DataNode):
|
|
|
76
81
|
if 'type' in columns:
|
|
77
82
|
types = df[df.columns[columns.index('type')]]
|
|
78
83
|
else:
|
|
79
|
-
types = [None] * len(
|
|
84
|
+
types = [None] * len(names)
|
|
80
85
|
|
|
81
86
|
ret = []
|
|
82
87
|
for i, name in enumerate(names):
|