mlrun 1.10.0rc16__py3-none-any.whl → 1.10.1rc4__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 mlrun might be problematic. Click here for more details.
- mlrun/__init__.py +22 -2
- mlrun/artifacts/document.py +6 -1
- mlrun/artifacts/llm_prompt.py +21 -15
- mlrun/artifacts/model.py +3 -3
- mlrun/common/constants.py +9 -0
- mlrun/common/formatters/artifact.py +1 -0
- mlrun/common/model_monitoring/helpers.py +86 -0
- mlrun/common/schemas/__init__.py +2 -0
- mlrun/common/schemas/auth.py +2 -0
- mlrun/common/schemas/function.py +10 -0
- mlrun/common/schemas/hub.py +30 -18
- mlrun/common/schemas/model_monitoring/__init__.py +2 -0
- mlrun/common/schemas/model_monitoring/constants.py +30 -6
- mlrun/common/schemas/model_monitoring/functions.py +13 -4
- mlrun/common/schemas/model_monitoring/model_endpoints.py +11 -0
- mlrun/common/schemas/pipeline.py +1 -1
- mlrun/common/schemas/serving.py +3 -0
- mlrun/common/schemas/workflow.py +1 -0
- mlrun/common/secrets.py +22 -1
- mlrun/config.py +34 -21
- mlrun/datastore/__init__.py +11 -3
- mlrun/datastore/azure_blob.py +162 -47
- mlrun/datastore/base.py +265 -7
- mlrun/datastore/datastore.py +10 -5
- mlrun/datastore/datastore_profile.py +61 -5
- mlrun/datastore/model_provider/huggingface_provider.py +367 -0
- mlrun/datastore/model_provider/mock_model_provider.py +87 -0
- mlrun/datastore/model_provider/model_provider.py +211 -74
- mlrun/datastore/model_provider/openai_provider.py +243 -71
- mlrun/datastore/s3.py +24 -2
- mlrun/datastore/store_resources.py +4 -4
- mlrun/datastore/storeytargets.py +2 -3
- mlrun/datastore/utils.py +15 -3
- mlrun/db/base.py +27 -19
- mlrun/db/httpdb.py +57 -48
- mlrun/db/nopdb.py +25 -10
- mlrun/execution.py +55 -13
- mlrun/hub/__init__.py +15 -0
- mlrun/hub/module.py +181 -0
- mlrun/k8s_utils.py +105 -16
- mlrun/launcher/base.py +13 -6
- mlrun/launcher/local.py +2 -0
- mlrun/model.py +9 -3
- mlrun/model_monitoring/api.py +66 -27
- mlrun/model_monitoring/applications/__init__.py +1 -1
- mlrun/model_monitoring/applications/base.py +388 -138
- mlrun/model_monitoring/applications/context.py +2 -4
- mlrun/model_monitoring/applications/results.py +4 -7
- mlrun/model_monitoring/controller.py +239 -101
- mlrun/model_monitoring/db/_schedules.py +36 -13
- mlrun/model_monitoring/db/_stats.py +4 -3
- mlrun/model_monitoring/db/tsdb/base.py +29 -9
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +4 -5
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +154 -50
- mlrun/model_monitoring/db/tsdb/tdengine/writer_graph_steps.py +51 -0
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +17 -4
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +245 -51
- mlrun/model_monitoring/helpers.py +28 -5
- mlrun/model_monitoring/stream_processing.py +45 -14
- mlrun/model_monitoring/writer.py +220 -1
- mlrun/platforms/__init__.py +3 -2
- mlrun/platforms/iguazio.py +7 -3
- mlrun/projects/operations.py +16 -11
- mlrun/projects/pipelines.py +2 -2
- mlrun/projects/project.py +157 -69
- mlrun/run.py +97 -20
- mlrun/runtimes/__init__.py +18 -0
- mlrun/runtimes/base.py +14 -6
- mlrun/runtimes/daskjob.py +1 -0
- mlrun/runtimes/local.py +5 -2
- mlrun/runtimes/mounts.py +20 -2
- mlrun/runtimes/nuclio/__init__.py +1 -0
- mlrun/runtimes/nuclio/application/application.py +147 -17
- mlrun/runtimes/nuclio/function.py +72 -27
- mlrun/runtimes/nuclio/serving.py +102 -20
- mlrun/runtimes/pod.py +213 -21
- mlrun/runtimes/utils.py +49 -9
- mlrun/secrets.py +54 -13
- mlrun/serving/remote.py +79 -6
- mlrun/serving/routers.py +23 -41
- mlrun/serving/server.py +230 -40
- mlrun/serving/states.py +605 -232
- mlrun/serving/steps.py +62 -0
- mlrun/serving/system_steps.py +136 -81
- mlrun/serving/v2_serving.py +9 -10
- mlrun/utils/helpers.py +215 -83
- mlrun/utils/logger.py +3 -1
- mlrun/utils/notifications/notification/base.py +18 -0
- mlrun/utils/notifications/notification/git.py +2 -4
- mlrun/utils/notifications/notification/mail.py +38 -15
- mlrun/utils/notifications/notification/slack.py +2 -4
- mlrun/utils/notifications/notification/webhook.py +2 -5
- mlrun/utils/notifications/notification_pusher.py +1 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/METADATA +51 -50
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/RECORD +100 -95
- mlrun/api/schemas/__init__.py +0 -259
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.1rc4
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -21,7 +21,9 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
21
21
|
Requires-Python: >=3.9, <3.12
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
-
Requires-Dist: urllib3
|
|
24
|
+
Requires-Dist: urllib3>=1.26.20
|
|
25
|
+
Requires-Dist: v3io-frames~=0.10.16; python_version < "3.11"
|
|
26
|
+
Requires-Dist: v3io-frames~=0.13.11; python_version >= "3.11"
|
|
25
27
|
Requires-Dist: GitPython>=3.1.41,~=3.1
|
|
26
28
|
Requires-Dist: aiohttp~=3.11
|
|
27
29
|
Requires-Dist: aiohttp-retry~=2.9
|
|
@@ -38,31 +40,30 @@ Requires-Dist: tabulate~=0.8.6
|
|
|
38
40
|
Requires-Dist: v3io~=0.7.0
|
|
39
41
|
Requires-Dist: pydantic>=1.10.15
|
|
40
42
|
Requires-Dist: mergedeep~=1.3
|
|
41
|
-
Requires-Dist: v3io-frames~=0.10.14; python_version < "3.11"
|
|
42
|
-
Requires-Dist: v3io-frames>=0.13.0; python_version >= "3.11"
|
|
43
43
|
Requires-Dist: semver~=3.0
|
|
44
44
|
Requires-Dist: dependency-injector~=4.41
|
|
45
|
-
Requires-Dist: fsspec
|
|
45
|
+
Requires-Dist: fsspec<=2025.7.0,>=2025.5.1
|
|
46
46
|
Requires-Dist: v3iofs~=0.1.17
|
|
47
|
-
Requires-Dist: storey~=1.10.
|
|
47
|
+
Requires-Dist: storey~=1.10.20
|
|
48
48
|
Requires-Dist: inflection~=0.5.0
|
|
49
49
|
Requires-Dist: python-dotenv~=1.0
|
|
50
50
|
Requires-Dist: setuptools>=75.2
|
|
51
51
|
Requires-Dist: deprecated~=1.2
|
|
52
52
|
Requires-Dist: jinja2>=3.1.6,~=3.1
|
|
53
53
|
Requires-Dist: orjson<4,>=3.9.15
|
|
54
|
-
Requires-Dist: mlrun-pipelines-kfp-common~=0.5.
|
|
55
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.5.9
|
|
55
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8
|
|
56
56
|
Requires-Dist: docstring_parser~=0.16
|
|
57
57
|
Requires-Dist: aiosmtplib~=3.0
|
|
58
|
+
Requires-Dist: deepdiff<9.0.0,>=8.6.1
|
|
58
59
|
Provides-Extra: s3
|
|
59
60
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "s3"
|
|
60
61
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "s3"
|
|
61
|
-
Requires-Dist: s3fs
|
|
62
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "s3"
|
|
62
63
|
Provides-Extra: azure-blob-storage
|
|
63
64
|
Requires-Dist: msrest~=0.6.21; extra == "azure-blob-storage"
|
|
64
65
|
Requires-Dist: azure-core~=1.24; extra == "azure-blob-storage"
|
|
65
|
-
Requires-Dist: adlfs==
|
|
66
|
+
Requires-Dist: adlfs==2024.12.0; extra == "azure-blob-storage"
|
|
66
67
|
Requires-Dist: pyopenssl>=23; extra == "azure-blob-storage"
|
|
67
68
|
Provides-Extra: azure-key-vault
|
|
68
69
|
Requires-Dist: azure-identity~=1.5; extra == "azure-key-vault"
|
|
@@ -77,7 +78,7 @@ Requires-Dist: google-cloud-storage==2.14.0; extra == "google-cloud"
|
|
|
77
78
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "google-cloud"
|
|
78
79
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "google-cloud"
|
|
79
80
|
Requires-Dist: google-cloud==0.34; extra == "google-cloud"
|
|
80
|
-
Requires-Dist: gcsfs
|
|
81
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "google-cloud"
|
|
81
82
|
Provides-Extra: kafka
|
|
82
83
|
Requires-Dist: kafka-python~=2.1.0; extra == "kafka"
|
|
83
84
|
Requires-Dist: avro~=1.11; extra == "kafka"
|
|
@@ -90,13 +91,13 @@ Requires-Dist: databricks-sdk~=0.20.0; extra == "databricks-sdk"
|
|
|
90
91
|
Provides-Extra: sqlalchemy
|
|
91
92
|
Requires-Dist: sqlalchemy~=2.0; extra == "sqlalchemy"
|
|
92
93
|
Provides-Extra: dask
|
|
93
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "dask"
|
|
94
|
-
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "dask"
|
|
95
94
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "dask"
|
|
95
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "dask"
|
|
96
96
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "dask"
|
|
97
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "dask"
|
|
97
98
|
Provides-Extra: alibaba-oss
|
|
98
|
-
Requires-Dist: ossfs==
|
|
99
|
-
Requires-Dist: oss2==2.18.
|
|
99
|
+
Requires-Dist: ossfs==2025.5.0; extra == "alibaba-oss"
|
|
100
|
+
Requires-Dist: oss2==2.18.4; extra == "alibaba-oss"
|
|
100
101
|
Provides-Extra: tdengine
|
|
101
102
|
Requires-Dist: taos-ws-py==0.3.2; extra == "tdengine"
|
|
102
103
|
Provides-Extra: snowflake
|
|
@@ -104,7 +105,7 @@ Requires-Dist: snowflake-connector-python~=3.7; extra == "snowflake"
|
|
|
104
105
|
Provides-Extra: dev-postgres
|
|
105
106
|
Requires-Dist: pytest-mock-resources[postgres]~=2.12; extra == "dev-postgres"
|
|
106
107
|
Provides-Extra: kfp18
|
|
107
|
-
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]
|
|
108
|
+
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]~=0.5.8; extra == "kfp18"
|
|
108
109
|
Provides-Extra: api
|
|
109
110
|
Requires-Dist: uvicorn~=0.32.1; extra == "api"
|
|
110
111
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "api"
|
|
@@ -112,7 +113,7 @@ Requires-Dist: apscheduler<4,>=3.11; extra == "api"
|
|
|
112
113
|
Requires-Dist: objgraph~=3.6; extra == "api"
|
|
113
114
|
Requires-Dist: igz-mgmt~=0.4.1; extra == "api"
|
|
114
115
|
Requires-Dist: humanfriendly~=10.0; extra == "api"
|
|
115
|
-
Requires-Dist: fastapi~=0.
|
|
116
|
+
Requires-Dist: fastapi~=0.120.0; extra == "api"
|
|
116
117
|
Requires-Dist: sqlalchemy~=2.0; extra == "api"
|
|
117
118
|
Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "api"
|
|
118
119
|
Requires-Dist: pymysql~=1.1; extra == "api"
|
|
@@ -122,22 +123,21 @@ Requires-Dist: timelength~=1.1; extra == "api"
|
|
|
122
123
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
|
|
123
124
|
Requires-Dist: aiosmtplib~=3.0; extra == "api"
|
|
124
125
|
Requires-Dist: pydantic<2,>=1; extra == "api"
|
|
125
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
126
|
-
Requires-Dist: grpcio~=1.70.0; extra == "api"
|
|
126
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8; extra == "api"
|
|
127
127
|
Provides-Extra: all
|
|
128
|
-
Requires-Dist: adlfs==
|
|
128
|
+
Requires-Dist: adlfs==2024.12.0; extra == "all"
|
|
129
129
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "all"
|
|
130
130
|
Requires-Dist: avro~=1.11; extra == "all"
|
|
131
131
|
Requires-Dist: azure-core~=1.24; extra == "all"
|
|
132
132
|
Requires-Dist: azure-identity~=1.5; extra == "all"
|
|
133
133
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "all"
|
|
134
134
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "all"
|
|
135
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "all"
|
|
135
136
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
136
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "all"
|
|
137
137
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "all"
|
|
138
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "all"
|
|
138
139
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
139
|
-
Requires-Dist:
|
|
140
|
-
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "all"
|
|
140
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "all"
|
|
141
141
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "all"
|
|
142
142
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
|
|
143
143
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "all"
|
|
@@ -146,29 +146,29 @@ Requires-Dist: graphviz~=0.20.0; extra == "all"
|
|
|
146
146
|
Requires-Dist: kafka-python~=2.1.0; extra == "all"
|
|
147
147
|
Requires-Dist: mlflow~=2.22; extra == "all"
|
|
148
148
|
Requires-Dist: msrest~=0.6.21; extra == "all"
|
|
149
|
-
Requires-Dist: oss2==2.18.
|
|
150
|
-
Requires-Dist: ossfs==
|
|
149
|
+
Requires-Dist: oss2==2.18.4; extra == "all"
|
|
150
|
+
Requires-Dist: ossfs==2025.5.0; extra == "all"
|
|
151
151
|
Requires-Dist: plotly~=5.23; extra == "all"
|
|
152
152
|
Requires-Dist: pyopenssl>=23; extra == "all"
|
|
153
153
|
Requires-Dist: redis~=4.3; extra == "all"
|
|
154
|
-
Requires-Dist: s3fs
|
|
154
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "all"
|
|
155
155
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "all"
|
|
156
156
|
Requires-Dist: sqlalchemy~=2.0; extra == "all"
|
|
157
157
|
Requires-Dist: taos-ws-py==0.3.2; extra == "all"
|
|
158
158
|
Provides-Extra: complete
|
|
159
|
-
Requires-Dist: adlfs==
|
|
159
|
+
Requires-Dist: adlfs==2024.12.0; extra == "complete"
|
|
160
160
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete"
|
|
161
161
|
Requires-Dist: avro~=1.11; extra == "complete"
|
|
162
162
|
Requires-Dist: azure-core~=1.24; extra == "complete"
|
|
163
163
|
Requires-Dist: azure-identity~=1.5; extra == "complete"
|
|
164
164
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete"
|
|
165
165
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete"
|
|
166
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "complete"
|
|
166
167
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
167
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete"
|
|
168
168
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete"
|
|
169
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "complete"
|
|
169
170
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
170
|
-
Requires-Dist:
|
|
171
|
-
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete"
|
|
171
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete"
|
|
172
172
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete"
|
|
173
173
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete"
|
|
174
174
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete"
|
|
@@ -177,17 +177,17 @@ Requires-Dist: graphviz~=0.20.0; extra == "complete"
|
|
|
177
177
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete"
|
|
178
178
|
Requires-Dist: mlflow~=2.22; extra == "complete"
|
|
179
179
|
Requires-Dist: msrest~=0.6.21; extra == "complete"
|
|
180
|
-
Requires-Dist: oss2==2.18.
|
|
181
|
-
Requires-Dist: ossfs==
|
|
180
|
+
Requires-Dist: oss2==2.18.4; extra == "complete"
|
|
181
|
+
Requires-Dist: ossfs==2025.5.0; extra == "complete"
|
|
182
182
|
Requires-Dist: plotly~=5.23; extra == "complete"
|
|
183
183
|
Requires-Dist: pyopenssl>=23; extra == "complete"
|
|
184
184
|
Requires-Dist: redis~=4.3; extra == "complete"
|
|
185
|
-
Requires-Dist: s3fs
|
|
185
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete"
|
|
186
186
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete"
|
|
187
187
|
Requires-Dist: sqlalchemy~=2.0; extra == "complete"
|
|
188
188
|
Requires-Dist: taos-ws-py==0.3.2; extra == "complete"
|
|
189
189
|
Provides-Extra: complete-api
|
|
190
|
-
Requires-Dist: adlfs==
|
|
190
|
+
Requires-Dist: adlfs==2024.12.0; extra == "complete-api"
|
|
191
191
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete-api"
|
|
192
192
|
Requires-Dist: aiosmtplib~=3.0; extra == "complete-api"
|
|
193
193
|
Requires-Dist: alembic~=1.14; extra == "complete-api"
|
|
@@ -198,36 +198,35 @@ Requires-Dist: azure-identity~=1.5; extra == "complete-api"
|
|
|
198
198
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete-api"
|
|
199
199
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete-api"
|
|
200
200
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "complete-api"
|
|
201
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "complete-api"
|
|
201
202
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
202
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
|
|
203
203
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete-api"
|
|
204
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "complete-api"
|
|
204
205
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
205
|
-
Requires-Dist:
|
|
206
|
-
Requires-Dist:
|
|
207
|
-
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete-api"
|
|
206
|
+
Requires-Dist: fastapi~=0.120.0; extra == "complete-api"
|
|
207
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete-api"
|
|
208
208
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
|
|
209
209
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete-api"
|
|
210
210
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete-api"
|
|
211
211
|
Requires-Dist: google-cloud==0.34; extra == "complete-api"
|
|
212
212
|
Requires-Dist: graphviz~=0.20.0; extra == "complete-api"
|
|
213
|
-
Requires-Dist: grpcio~=1.70.0; extra == "complete-api"
|
|
214
213
|
Requires-Dist: humanfriendly~=10.0; extra == "complete-api"
|
|
215
214
|
Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
|
|
216
215
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
|
|
217
216
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
|
|
218
217
|
Requires-Dist: mlflow~=2.22; extra == "complete-api"
|
|
219
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
218
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8; extra == "complete-api"
|
|
220
219
|
Requires-Dist: msrest~=0.6.21; extra == "complete-api"
|
|
221
220
|
Requires-Dist: objgraph~=3.6; extra == "complete-api"
|
|
222
|
-
Requires-Dist: oss2==2.18.
|
|
223
|
-
Requires-Dist: ossfs==
|
|
221
|
+
Requires-Dist: oss2==2.18.4; extra == "complete-api"
|
|
222
|
+
Requires-Dist: ossfs==2025.5.0; extra == "complete-api"
|
|
224
223
|
Requires-Dist: plotly~=5.23; extra == "complete-api"
|
|
225
224
|
Requires-Dist: psycopg2-binary~=2.9; extra == "complete-api"
|
|
226
225
|
Requires-Dist: pydantic<2,>=1; extra == "complete-api"
|
|
227
226
|
Requires-Dist: pymysql~=1.1; extra == "complete-api"
|
|
228
227
|
Requires-Dist: pyopenssl>=23; extra == "complete-api"
|
|
229
228
|
Requires-Dist: redis~=4.3; extra == "complete-api"
|
|
230
|
-
Requires-Dist: s3fs
|
|
229
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete-api"
|
|
231
230
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete-api"
|
|
232
231
|
Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "complete-api"
|
|
233
232
|
Requires-Dist: sqlalchemy~=2.0; extra == "complete-api"
|
|
@@ -299,8 +298,8 @@ Removing inappropriate data at an early stage saves resources that would otherwi
|
|
|
299
298
|
|
|
300
299
|
|
|
301
300
|
**Docs:**
|
|
302
|
-
[Using LLMs to process unstructured data](https://docs.mlrun.org/en/stable/genai/data-mgmt/unstructured-data.html)
|
|
303
|
-
[Vector databases](https://docs.mlrun.org/en/stable/genai/data-mgmt/vector-databases.html)
|
|
301
|
+
[Using LLMs to process unstructured data](https://docs.mlrun.org/en/stable/genai/data-mgmt/unstructured-data.html),
|
|
302
|
+
[Vector databases](https://docs.mlrun.org/en/stable/genai/data-mgmt/vector-databases.html),
|
|
304
303
|
[Guardrails for data management](https://docs.mlrun.org/en/stable/genai/data-mgmt/guardrails-data.html)
|
|
305
304
|
**Demo:**
|
|
306
305
|
[Call center demo](https://github.com/mlrun/demo-call-center)
|
|
@@ -314,7 +313,8 @@ preprocess (prepare) the data, run the training pipeline, and evaluate the model
|
|
|
314
313
|
**Docs:**
|
|
315
314
|
[Working with RAG](https://docs.mlrun.org/en/stable/genai/development/working-with-rag.html), [Evalating LLMs](https://docs.mlrun.org/en/stable/genai/development/evaluating-llms.html), [Fine tuning LLMS](https://docs.mlrun.org/en/stable/genai/development/fine-tuning-llms.html)
|
|
316
315
|
**Demos:**
|
|
317
|
-
[Call center demo](https://github.com/mlrun/demo-call-center),
|
|
316
|
+
[Call center demo](https://github.com/mlrun/demo-call-center),
|
|
317
|
+
[Banking agent demo](https://github.com/mlrun/demo-banking-agent)
|
|
318
318
|
**Video:**
|
|
319
319
|
[Call center](https://youtu.be/YycMbxRgLBA)
|
|
320
320
|
|
|
@@ -328,9 +328,10 @@ inferring results using one or more models, and driving actions.
|
|
|
328
328
|
**Docs:**
|
|
329
329
|
[Serving gen AI models](https://docs.mlrun.org/en/stable/genai/deployment/genai_serving.html), [GPU utilization](https://docs.mlrun.org/en/stable/genai/deployment/gpu_utilization.html), [Gen AI realtime serving graph](https://docs.mlrun.org/en/stable/genai/deployment/genai_serving_graph.html)
|
|
330
330
|
**Tutorial:**
|
|
331
|
-
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/
|
|
331
|
+
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/genai-01-basic-tutorial.html)
|
|
332
332
|
**Demos:**
|
|
333
|
-
[Call center demo](https://github.com/mlrun/demo-call-center),
|
|
333
|
+
[Call center demo](https://github.com/mlrun/demo-call-center),
|
|
334
|
+
[Banking agent demo](https://github.com/mlrun/demo-banking-agent)
|
|
334
335
|
**Video:**
|
|
335
336
|
[Call center](https://youtu.be/YycMbxRgLBA)
|
|
336
337
|
|
|
@@ -343,9 +344,9 @@ Collect production data, metadata, and metrics to tune the model and application
|
|
|
343
344
|
**Docs:**
|
|
344
345
|
[Model monitoring <monitoring](https://docs.mlrun.org/en/stable/concepts/monitoring.html), [Alerts and notifications](https://docs.mlrun.org/en/stable/concepts/alerts-notifications.html)
|
|
345
346
|
**Tutorials:**
|
|
346
|
-
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/
|
|
347
|
+
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/genai-01-basic-tutorial.html), [Model monitoring using LLM](https://docs.mlrun.org/en/stable/tutorials/genai-02-monitoring-llm.html)
|
|
347
348
|
**Demo:**
|
|
348
|
-
[
|
|
349
|
+
[Banking agent demo](https://github.com/mlrun/demo-banking-agent)
|
|
349
350
|
|
|
350
351
|
|
|
351
352
|
<a id="mlops-tasks"></a>
|