mlrun 1.10.0rc13__py3-none-any.whl → 1.10.0rc42__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/base.py +0 -31
- mlrun/artifacts/document.py +6 -1
- mlrun/artifacts/llm_prompt.py +123 -25
- mlrun/artifacts/manager.py +0 -5
- mlrun/artifacts/model.py +3 -3
- mlrun/common/constants.py +10 -1
- mlrun/common/formatters/artifact.py +1 -0
- mlrun/common/model_monitoring/helpers.py +86 -0
- mlrun/common/schemas/__init__.py +3 -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 +3 -0
- mlrun/common/schemas/model_monitoring/constants.py +30 -6
- mlrun/common/schemas/model_monitoring/functions.py +14 -5
- mlrun/common/schemas/model_monitoring/model_endpoints.py +21 -0
- mlrun/common/schemas/pipeline.py +1 -1
- mlrun/common/schemas/serving.py +3 -0
- mlrun/common/schemas/workflow.py +3 -1
- mlrun/common/secrets.py +22 -1
- mlrun/config.py +33 -11
- mlrun/datastore/__init__.py +11 -3
- mlrun/datastore/azure_blob.py +162 -47
- mlrun/datastore/datastore.py +9 -4
- mlrun/datastore/datastore_profile.py +61 -5
- mlrun/datastore/model_provider/huggingface_provider.py +363 -0
- mlrun/datastore/model_provider/mock_model_provider.py +87 -0
- mlrun/datastore/model_provider/model_provider.py +230 -65
- mlrun/datastore/model_provider/openai_provider.py +295 -42
- mlrun/datastore/s3.py +24 -2
- mlrun/datastore/storeytargets.py +2 -3
- mlrun/datastore/utils.py +15 -3
- mlrun/db/base.py +47 -19
- mlrun/db/httpdb.py +120 -56
- mlrun/db/nopdb.py +38 -10
- mlrun/execution.py +70 -19
- 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 +15 -0
- mlrun/model.py +24 -3
- mlrun/model_monitoring/__init__.py +1 -0
- mlrun/model_monitoring/api.py +66 -27
- mlrun/model_monitoring/applications/__init__.py +1 -1
- mlrun/model_monitoring/applications/base.py +509 -117
- 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 +116 -33
- mlrun/model_monitoring/db/_stats.py +4 -3
- mlrun/model_monitoring/db/tsdb/base.py +100 -9
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +11 -6
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +191 -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 +259 -40
- mlrun/model_monitoring/helpers.py +54 -9
- 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 +6 -1
- mlrun/projects/pipelines.py +46 -26
- mlrun/projects/project.py +166 -58
- mlrun/run.py +94 -17
- mlrun/runtimes/__init__.py +18 -0
- mlrun/runtimes/base.py +14 -6
- mlrun/runtimes/daskjob.py +7 -0
- mlrun/runtimes/local.py +5 -2
- mlrun/runtimes/mounts.py +20 -2
- mlrun/runtimes/mpijob/abstract.py +6 -0
- mlrun/runtimes/mpijob/v1.py +6 -0
- mlrun/runtimes/nuclio/__init__.py +1 -0
- mlrun/runtimes/nuclio/application/application.py +149 -17
- mlrun/runtimes/nuclio/function.py +76 -27
- mlrun/runtimes/nuclio/serving.py +97 -15
- mlrun/runtimes/pod.py +234 -21
- mlrun/runtimes/remotesparkjob.py +6 -0
- mlrun/runtimes/sparkjob/spark3job.py +6 -0
- mlrun/runtimes/utils.py +49 -11
- mlrun/secrets.py +54 -13
- mlrun/serving/__init__.py +2 -0
- mlrun/serving/remote.py +79 -6
- mlrun/serving/routers.py +23 -41
- mlrun/serving/server.py +320 -80
- mlrun/serving/states.py +725 -157
- mlrun/serving/steps.py +62 -0
- mlrun/serving/system_steps.py +200 -119
- mlrun/serving/v2_serving.py +9 -10
- mlrun/utils/helpers.py +288 -88
- 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/slack.py +2 -4
- mlrun/utils/notifications/notification/webhook.py +2 -5
- mlrun/utils/notifications/notification_pusher.py +1 -1
- mlrun/utils/retryer.py +15 -2
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.10.0rc13.dist-info → mlrun-1.10.0rc42.dist-info}/METADATA +45 -51
- {mlrun-1.10.0rc13.dist-info → mlrun-1.10.0rc42.dist-info}/RECORD +106 -101
- mlrun/api/schemas/__init__.py +0 -259
- {mlrun-1.10.0rc13.dist-info → mlrun-1.10.0rc42.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc13.dist-info → mlrun-1.10.0rc42.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc13.dist-info → mlrun-1.10.0rc42.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc13.dist-info → mlrun-1.10.0rc42.dist-info}/top_level.txt +0 -0
mlrun/utils/retryer.py
CHANGED
|
@@ -77,7 +77,17 @@ def create_exponential_backoff(base=2, max_value=120, scale_factor=1):
|
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
class Retryer:
|
|
80
|
-
def __init__(
|
|
80
|
+
def __init__(
|
|
81
|
+
self,
|
|
82
|
+
backoff,
|
|
83
|
+
timeout,
|
|
84
|
+
logger,
|
|
85
|
+
verbose,
|
|
86
|
+
function,
|
|
87
|
+
*args,
|
|
88
|
+
fatal_exceptions=(),
|
|
89
|
+
**kwargs,
|
|
90
|
+
):
|
|
81
91
|
"""
|
|
82
92
|
Initialize function retryer with given *args and **kwargs.
|
|
83
93
|
Tries to run it until success or timeout reached (timeout is optional)
|
|
@@ -89,6 +99,7 @@ class Retryer:
|
|
|
89
99
|
:param verbose: whether to log the failure on each retry
|
|
90
100
|
:param _function: function to run
|
|
91
101
|
:param args: functions args
|
|
102
|
+
:param fatal_exceptions: exception types that should not be retried
|
|
92
103
|
:param kwargs: functions kwargs
|
|
93
104
|
"""
|
|
94
105
|
self.backoff = backoff
|
|
@@ -96,6 +107,7 @@ class Retryer:
|
|
|
96
107
|
self.logger = logger
|
|
97
108
|
self.verbose = verbose
|
|
98
109
|
self.function = function
|
|
110
|
+
self.fatal_exceptions = tuple(fatal_exceptions or ())
|
|
99
111
|
self.args = args
|
|
100
112
|
self.kwargs = kwargs
|
|
101
113
|
self.start_time = None
|
|
@@ -107,7 +119,8 @@ class Retryer:
|
|
|
107
119
|
while not self._timeout_exceeded():
|
|
108
120
|
next_interval = self.first_interval or next(self.backoff)
|
|
109
121
|
result, exc, retry = self._perform_call(next_interval)
|
|
110
|
-
|
|
122
|
+
|
|
123
|
+
if retry and type(exc) not in self.fatal_exceptions:
|
|
111
124
|
time.sleep(next_interval)
|
|
112
125
|
elif not exc:
|
|
113
126
|
return result
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.0rc42
|
|
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,14 +21,16 @@ 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
|
|
28
30
|
Requires-Dist: click~=8.1
|
|
29
31
|
Requires-Dist: nest-asyncio~=1.0
|
|
30
32
|
Requires-Dist: ipython~=8.10
|
|
31
|
-
Requires-Dist: nuclio-jupyter~=0.11.
|
|
33
|
+
Requires-Dist: nuclio-jupyter~=0.11.2
|
|
32
34
|
Requires-Dist: numpy<1.27.0,>=1.26.4
|
|
33
35
|
Requires-Dist: pandas<2.2,>=1.2
|
|
34
36
|
Requires-Dist: pyarrow<18,>=10.0
|
|
@@ -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.16
|
|
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,23 +91,21 @@ 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
|
|
103
104
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "snowflake"
|
|
104
|
-
Provides-Extra: openai
|
|
105
|
-
Requires-Dist: openai~=1.88; extra == "openai"
|
|
106
105
|
Provides-Extra: dev-postgres
|
|
107
106
|
Requires-Dist: pytest-mock-resources[postgres]~=2.12; extra == "dev-postgres"
|
|
108
107
|
Provides-Extra: kfp18
|
|
109
|
-
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]
|
|
108
|
+
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]~=0.5.8; extra == "kfp18"
|
|
110
109
|
Provides-Extra: api
|
|
111
110
|
Requires-Dist: uvicorn~=0.32.1; extra == "api"
|
|
112
111
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "api"
|
|
@@ -114,7 +113,7 @@ Requires-Dist: apscheduler<4,>=3.11; extra == "api"
|
|
|
114
113
|
Requires-Dist: objgraph~=3.6; extra == "api"
|
|
115
114
|
Requires-Dist: igz-mgmt~=0.4.1; extra == "api"
|
|
116
115
|
Requires-Dist: humanfriendly~=10.0; extra == "api"
|
|
117
|
-
Requires-Dist: fastapi~=0.
|
|
116
|
+
Requires-Dist: fastapi~=0.120.0; extra == "api"
|
|
118
117
|
Requires-Dist: sqlalchemy~=2.0; extra == "api"
|
|
119
118
|
Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "api"
|
|
120
119
|
Requires-Dist: pymysql~=1.1; extra == "api"
|
|
@@ -124,22 +123,21 @@ Requires-Dist: timelength~=1.1; extra == "api"
|
|
|
124
123
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
|
|
125
124
|
Requires-Dist: aiosmtplib~=3.0; extra == "api"
|
|
126
125
|
Requires-Dist: pydantic<2,>=1; extra == "api"
|
|
127
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
128
|
-
Requires-Dist: grpcio~=1.70.0; extra == "api"
|
|
126
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8; extra == "api"
|
|
129
127
|
Provides-Extra: all
|
|
130
|
-
Requires-Dist: adlfs==
|
|
128
|
+
Requires-Dist: adlfs==2024.12.0; extra == "all"
|
|
131
129
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "all"
|
|
132
130
|
Requires-Dist: avro~=1.11; extra == "all"
|
|
133
131
|
Requires-Dist: azure-core~=1.24; extra == "all"
|
|
134
132
|
Requires-Dist: azure-identity~=1.5; extra == "all"
|
|
135
133
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "all"
|
|
136
134
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "all"
|
|
135
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "all"
|
|
137
136
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
138
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "all"
|
|
139
137
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "all"
|
|
138
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "all"
|
|
140
139
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
141
|
-
Requires-Dist:
|
|
142
|
-
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "all"
|
|
140
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "all"
|
|
143
141
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "all"
|
|
144
142
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
|
|
145
143
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "all"
|
|
@@ -148,30 +146,29 @@ Requires-Dist: graphviz~=0.20.0; extra == "all"
|
|
|
148
146
|
Requires-Dist: kafka-python~=2.1.0; extra == "all"
|
|
149
147
|
Requires-Dist: mlflow~=2.22; extra == "all"
|
|
150
148
|
Requires-Dist: msrest~=0.6.21; extra == "all"
|
|
151
|
-
Requires-Dist:
|
|
152
|
-
Requires-Dist:
|
|
153
|
-
Requires-Dist: ossfs==2023.12.0; extra == "all"
|
|
149
|
+
Requires-Dist: oss2==2.18.4; extra == "all"
|
|
150
|
+
Requires-Dist: ossfs==2025.5.0; extra == "all"
|
|
154
151
|
Requires-Dist: plotly~=5.23; extra == "all"
|
|
155
152
|
Requires-Dist: pyopenssl>=23; extra == "all"
|
|
156
153
|
Requires-Dist: redis~=4.3; extra == "all"
|
|
157
|
-
Requires-Dist: s3fs
|
|
154
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "all"
|
|
158
155
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "all"
|
|
159
156
|
Requires-Dist: sqlalchemy~=2.0; extra == "all"
|
|
160
157
|
Requires-Dist: taos-ws-py==0.3.2; extra == "all"
|
|
161
158
|
Provides-Extra: complete
|
|
162
|
-
Requires-Dist: adlfs==
|
|
159
|
+
Requires-Dist: adlfs==2024.12.0; extra == "complete"
|
|
163
160
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete"
|
|
164
161
|
Requires-Dist: avro~=1.11; extra == "complete"
|
|
165
162
|
Requires-Dist: azure-core~=1.24; extra == "complete"
|
|
166
163
|
Requires-Dist: azure-identity~=1.5; extra == "complete"
|
|
167
164
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete"
|
|
168
165
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete"
|
|
166
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "complete"
|
|
169
167
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
170
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete"
|
|
171
168
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete"
|
|
169
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "complete"
|
|
172
170
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
173
|
-
Requires-Dist:
|
|
174
|
-
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete"
|
|
171
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete"
|
|
175
172
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete"
|
|
176
173
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete"
|
|
177
174
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete"
|
|
@@ -180,18 +177,17 @@ Requires-Dist: graphviz~=0.20.0; extra == "complete"
|
|
|
180
177
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete"
|
|
181
178
|
Requires-Dist: mlflow~=2.22; extra == "complete"
|
|
182
179
|
Requires-Dist: msrest~=0.6.21; extra == "complete"
|
|
183
|
-
Requires-Dist:
|
|
184
|
-
Requires-Dist:
|
|
185
|
-
Requires-Dist: ossfs==2023.12.0; extra == "complete"
|
|
180
|
+
Requires-Dist: oss2==2.18.4; extra == "complete"
|
|
181
|
+
Requires-Dist: ossfs==2025.5.0; extra == "complete"
|
|
186
182
|
Requires-Dist: plotly~=5.23; extra == "complete"
|
|
187
183
|
Requires-Dist: pyopenssl>=23; extra == "complete"
|
|
188
184
|
Requires-Dist: redis~=4.3; extra == "complete"
|
|
189
|
-
Requires-Dist: s3fs
|
|
185
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete"
|
|
190
186
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete"
|
|
191
187
|
Requires-Dist: sqlalchemy~=2.0; extra == "complete"
|
|
192
188
|
Requires-Dist: taos-ws-py==0.3.2; extra == "complete"
|
|
193
189
|
Provides-Extra: complete-api
|
|
194
|
-
Requires-Dist: adlfs==
|
|
190
|
+
Requires-Dist: adlfs==2024.12.0; extra == "complete-api"
|
|
195
191
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete-api"
|
|
196
192
|
Requires-Dist: aiosmtplib~=3.0; extra == "complete-api"
|
|
197
193
|
Requires-Dist: alembic~=1.14; extra == "complete-api"
|
|
@@ -202,37 +198,35 @@ Requires-Dist: azure-identity~=1.5; extra == "complete-api"
|
|
|
202
198
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete-api"
|
|
203
199
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete-api"
|
|
204
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"
|
|
205
202
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
206
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
|
|
207
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"
|
|
208
205
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
209
|
-
Requires-Dist:
|
|
210
|
-
Requires-Dist:
|
|
211
|
-
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"
|
|
212
208
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
|
|
213
209
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete-api"
|
|
214
210
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete-api"
|
|
215
211
|
Requires-Dist: google-cloud==0.34; extra == "complete-api"
|
|
216
212
|
Requires-Dist: graphviz~=0.20.0; extra == "complete-api"
|
|
217
|
-
Requires-Dist: grpcio~=1.70.0; extra == "complete-api"
|
|
218
213
|
Requires-Dist: humanfriendly~=10.0; extra == "complete-api"
|
|
219
214
|
Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
|
|
220
215
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
|
|
221
216
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
|
|
222
217
|
Requires-Dist: mlflow~=2.22; extra == "complete-api"
|
|
223
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
218
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8; extra == "complete-api"
|
|
224
219
|
Requires-Dist: msrest~=0.6.21; extra == "complete-api"
|
|
225
220
|
Requires-Dist: objgraph~=3.6; extra == "complete-api"
|
|
226
|
-
Requires-Dist:
|
|
227
|
-
Requires-Dist:
|
|
228
|
-
Requires-Dist: ossfs==2023.12.0; extra == "complete-api"
|
|
221
|
+
Requires-Dist: oss2==2.18.4; extra == "complete-api"
|
|
222
|
+
Requires-Dist: ossfs==2025.5.0; extra == "complete-api"
|
|
229
223
|
Requires-Dist: plotly~=5.23; extra == "complete-api"
|
|
230
224
|
Requires-Dist: psycopg2-binary~=2.9; extra == "complete-api"
|
|
231
225
|
Requires-Dist: pydantic<2,>=1; extra == "complete-api"
|
|
232
226
|
Requires-Dist: pymysql~=1.1; extra == "complete-api"
|
|
233
227
|
Requires-Dist: pyopenssl>=23; extra == "complete-api"
|
|
234
228
|
Requires-Dist: redis~=4.3; extra == "complete-api"
|
|
235
|
-
Requires-Dist: s3fs
|
|
229
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete-api"
|
|
236
230
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete-api"
|
|
237
231
|
Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "complete-api"
|
|
238
232
|
Requires-Dist: sqlalchemy~=2.0; extra == "complete-api"
|
|
@@ -333,7 +327,7 @@ inferring results using one or more models, and driving actions.
|
|
|
333
327
|
**Docs:**
|
|
334
328
|
[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)
|
|
335
329
|
**Tutorial:**
|
|
336
|
-
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/
|
|
330
|
+
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/genai-01-basic-tutorial.html)
|
|
337
331
|
**Demos:**
|
|
338
332
|
[Call center demo](https://github.com/mlrun/demo-call-center), [Build & deploy custom(fine-tuned)LLM models and applications](https://github.com/mlrun/demo-llm-tuning/blob/main), [Interactive bot demo using LLMs](https://github.com/mlrun/demo-llm-bot/blob/main)
|
|
339
333
|
**Video:**
|
|
@@ -348,7 +342,7 @@ Collect production data, metadata, and metrics to tune the model and application
|
|
|
348
342
|
**Docs:**
|
|
349
343
|
[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)
|
|
350
344
|
**Tutorials:**
|
|
351
|
-
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/
|
|
345
|
+
[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)
|
|
352
346
|
**Demo:**
|
|
353
347
|
[Build & deploy custom (fine-tuned) LLM models and applications](https://github.com/mlrun/demo-llm-tuning/blob/main)
|
|
354
348
|
|