mlrun 1.10.0rc11__py3-none-any.whl → 1.10.0rc13__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 +2 -1
- mlrun/__main__.py +7 -1
- mlrun/artifacts/base.py +9 -3
- mlrun/artifacts/dataset.py +2 -1
- mlrun/artifacts/llm_prompt.py +6 -2
- mlrun/artifacts/model.py +2 -2
- mlrun/common/constants.py +1 -0
- mlrun/common/runtimes/constants.py +10 -1
- mlrun/common/schemas/__init__.py +1 -1
- mlrun/common/schemas/model_monitoring/model_endpoints.py +1 -1
- mlrun/common/schemas/serving.py +7 -0
- mlrun/config.py +21 -2
- mlrun/datastore/__init__.py +3 -1
- mlrun/datastore/alibaba_oss.py +1 -1
- mlrun/datastore/azure_blob.py +1 -1
- mlrun/datastore/base.py +6 -31
- mlrun/datastore/datastore.py +109 -33
- mlrun/datastore/datastore_profile.py +31 -0
- mlrun/datastore/dbfs_store.py +1 -1
- mlrun/datastore/google_cloud_storage.py +2 -2
- mlrun/datastore/model_provider/__init__.py +13 -0
- mlrun/datastore/model_provider/model_provider.py +160 -0
- mlrun/datastore/model_provider/openai_provider.py +144 -0
- mlrun/datastore/remote_client.py +65 -0
- mlrun/datastore/s3.py +1 -1
- mlrun/datastore/storeytargets.py +1 -1
- mlrun/datastore/utils.py +22 -0
- mlrun/datastore/v3io.py +1 -1
- mlrun/db/base.py +1 -1
- mlrun/db/httpdb.py +9 -4
- mlrun/db/nopdb.py +1 -1
- mlrun/execution.py +28 -7
- mlrun/launcher/base.py +23 -13
- mlrun/launcher/local.py +3 -1
- mlrun/launcher/remote.py +4 -2
- mlrun/model.py +65 -0
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +175 -8
- mlrun/package/packagers_manager.py +2 -0
- mlrun/projects/operations.py +8 -1
- mlrun/projects/pipelines.py +40 -18
- mlrun/projects/project.py +28 -5
- mlrun/run.py +42 -2
- mlrun/runtimes/__init__.py +6 -0
- mlrun/runtimes/base.py +24 -6
- mlrun/runtimes/daskjob.py +1 -0
- mlrun/runtimes/databricks_job/databricks_runtime.py +1 -0
- mlrun/runtimes/local.py +1 -6
- mlrun/serving/server.py +1 -2
- mlrun/serving/states.py +438 -23
- mlrun/serving/system_steps.py +27 -29
- mlrun/utils/helpers.py +13 -2
- mlrun/utils/notifications/notification_pusher.py +15 -0
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.10.0rc11.dist-info → mlrun-1.10.0rc13.dist-info}/METADATA +2 -2
- {mlrun-1.10.0rc11.dist-info → mlrun-1.10.0rc13.dist-info}/RECORD +59 -55
- {mlrun-1.10.0rc11.dist-info → mlrun-1.10.0rc13.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc11.dist-info → mlrun-1.10.0rc13.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc11.dist-info → mlrun-1.10.0rc13.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc11.dist-info → mlrun-1.10.0rc13.dist-info}/top_level.txt +0 -0
mlrun/serving/system_steps.py
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
15
|
import random
|
|
16
|
-
from copy import
|
|
16
|
+
from copy import deepcopy
|
|
17
17
|
from datetime import timedelta
|
|
18
18
|
from typing import Any, Optional, Union
|
|
19
19
|
|
|
@@ -32,11 +32,12 @@ class MonitoringPreProcessor(storey.MapClass):
|
|
|
32
32
|
|
|
33
33
|
def __init__(
|
|
34
34
|
self,
|
|
35
|
-
context,
|
|
36
35
|
**kwargs,
|
|
37
36
|
):
|
|
38
37
|
super().__init__(**kwargs)
|
|
39
|
-
self.
|
|
38
|
+
self.server: mlrun.serving.GraphServer = (
|
|
39
|
+
getattr(self.context, "server", None) if self.context else None
|
|
40
|
+
)
|
|
40
41
|
|
|
41
42
|
def reconstruct_request_resp_fields(
|
|
42
43
|
self, event, model: str, model_monitoring_data: dict
|
|
@@ -148,14 +149,17 @@ class MonitoringPreProcessor(storey.MapClass):
|
|
|
148
149
|
|
|
149
150
|
def do(self, event):
|
|
150
151
|
monitoring_event_list = []
|
|
151
|
-
server: mlrun.serving.GraphServer = getattr(self.context, "server", None)
|
|
152
152
|
model_runner_name = event._metadata.get("model_runner_name", "")
|
|
153
|
-
step = server.graph.steps[model_runner_name] if server else
|
|
153
|
+
step = self.server.graph.steps[model_runner_name] if self.server else None
|
|
154
|
+
if not step or not hasattr(step, "monitoring_data"):
|
|
155
|
+
raise mlrun.errors.MLRunRuntimeError(
|
|
156
|
+
f"ModelRunnerStep name {model_runner_name} is not found in the graph or does not have monitoring data"
|
|
157
|
+
)
|
|
154
158
|
monitoring_data = step.monitoring_data
|
|
155
159
|
logger.debug(
|
|
156
160
|
"monitoring preprocessor started",
|
|
157
161
|
event=event,
|
|
158
|
-
|
|
162
|
+
monitoring_data=monitoring_data,
|
|
159
163
|
metadata=event._metadata,
|
|
160
164
|
)
|
|
161
165
|
if len(monitoring_data) > 1:
|
|
@@ -184,8 +188,8 @@ class MonitoringPreProcessor(storey.MapClass):
|
|
|
184
188
|
mm_schemas.StreamProcessingEvent.LABELS: monitoring_data[
|
|
185
189
|
model
|
|
186
190
|
].get(mlrun.common.schemas.MonitoringData.OUTPUTS),
|
|
187
|
-
mm_schemas.StreamProcessingEvent.FUNCTION_URI: server.function_uri
|
|
188
|
-
if server
|
|
191
|
+
mm_schemas.StreamProcessingEvent.FUNCTION_URI: self.server.function_uri
|
|
192
|
+
if self.server
|
|
189
193
|
else None,
|
|
190
194
|
mm_schemas.StreamProcessingEvent.REQUEST: request,
|
|
191
195
|
mm_schemas.StreamProcessingEvent.RESPONSE: resp,
|
|
@@ -226,8 +230,8 @@ class MonitoringPreProcessor(storey.MapClass):
|
|
|
226
230
|
mm_schemas.StreamProcessingEvent.LABELS: monitoring_data[model].get(
|
|
227
231
|
mlrun.common.schemas.MonitoringData.OUTPUTS
|
|
228
232
|
),
|
|
229
|
-
mm_schemas.StreamProcessingEvent.FUNCTION_URI: server.function_uri
|
|
230
|
-
if server
|
|
233
|
+
mm_schemas.StreamProcessingEvent.FUNCTION_URI: self.server.function_uri
|
|
234
|
+
if self.server
|
|
231
235
|
else None,
|
|
232
236
|
mm_schemas.StreamProcessingEvent.REQUEST: request,
|
|
233
237
|
mm_schemas.StreamProcessingEvent.RESPONSE: resp,
|
|
@@ -253,19 +257,17 @@ class BackgroundTaskStatus(storey.MapClass):
|
|
|
253
257
|
creation failed or in progress
|
|
254
258
|
"""
|
|
255
259
|
|
|
256
|
-
def __init__(self,
|
|
257
|
-
|
|
258
|
-
self.server: mlrun.serving.GraphServer =
|
|
260
|
+
def __init__(self, **kwargs):
|
|
261
|
+
super().__init__(**kwargs)
|
|
262
|
+
self.server: mlrun.serving.GraphServer = (
|
|
263
|
+
getattr(self.context, "server", None) if self.context else None
|
|
264
|
+
)
|
|
259
265
|
self._background_task_check_timestamp = None
|
|
260
266
|
self._background_task_state = mlrun.common.schemas.BackgroundTaskState.running
|
|
261
|
-
super().__init__(**kwargs)
|
|
262
267
|
|
|
263
268
|
def do(self, event):
|
|
264
|
-
if (self.context and self.context.is_mock) or self.context is None:
|
|
265
|
-
return event
|
|
266
269
|
if self.server is None:
|
|
267
270
|
return None
|
|
268
|
-
|
|
269
271
|
if (
|
|
270
272
|
self._background_task_state
|
|
271
273
|
== mlrun.common.schemas.BackgroundTaskState.running
|
|
@@ -283,19 +285,14 @@ class BackgroundTaskStatus(storey.MapClass):
|
|
|
283
285
|
self._background_task_check_timestamp = mlrun.utils.now_date()
|
|
284
286
|
self._log_background_task_state(background_task.status.state)
|
|
285
287
|
self._background_task_state = background_task.status.state
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
== mlrun.common.schemas.BackgroundTaskState.succeeded
|
|
289
|
-
):
|
|
290
|
-
return event
|
|
291
|
-
else:
|
|
292
|
-
return None
|
|
293
|
-
elif (
|
|
288
|
+
|
|
289
|
+
if (
|
|
294
290
|
self._background_task_state
|
|
295
|
-
== mlrun.common.schemas.BackgroundTaskState.
|
|
291
|
+
== mlrun.common.schemas.BackgroundTaskState.succeeded
|
|
296
292
|
):
|
|
293
|
+
return event
|
|
294
|
+
else:
|
|
297
295
|
return None
|
|
298
|
-
return event
|
|
299
296
|
|
|
300
297
|
def _log_background_task_state(
|
|
301
298
|
self, background_task_state: mlrun.common.schemas.BackgroundTaskState
|
|
@@ -382,9 +379,10 @@ class SamplingStep(storey.MapClass):
|
|
|
382
379
|
|
|
383
380
|
|
|
384
381
|
class MockStreamPusher(storey.MapClass):
|
|
385
|
-
def __init__(self,
|
|
382
|
+
def __init__(self, output_stream=None, **kwargs):
|
|
386
383
|
super().__init__(**kwargs)
|
|
387
|
-
|
|
384
|
+
stream = self.context.stream if self.context else None
|
|
385
|
+
self.output_stream = output_stream or stream.output_stream
|
|
388
386
|
|
|
389
387
|
def do(self, event):
|
|
390
388
|
self.output_stream.push(
|
mlrun/utils/helpers.py
CHANGED
|
@@ -97,7 +97,13 @@ class StorePrefix:
|
|
|
97
97
|
|
|
98
98
|
@classmethod
|
|
99
99
|
def is_artifact(cls, prefix):
|
|
100
|
-
return prefix in [
|
|
100
|
+
return prefix in [
|
|
101
|
+
cls.Artifact,
|
|
102
|
+
cls.Model,
|
|
103
|
+
cls.Dataset,
|
|
104
|
+
cls.Document,
|
|
105
|
+
cls.LLMPrompt,
|
|
106
|
+
]
|
|
101
107
|
|
|
102
108
|
@classmethod
|
|
103
109
|
def kind_to_prefix(cls, kind):
|
|
@@ -907,8 +913,13 @@ def enrich_image_url(
|
|
|
907
913
|
|
|
908
914
|
# it's an mlrun image if the repository is mlrun
|
|
909
915
|
is_mlrun_image = image_url.startswith("mlrun/") or "/mlrun/" in image_url
|
|
910
|
-
|
|
916
|
+
if ":" in image_url:
|
|
917
|
+
_, image_tag = image_url.rsplit(":", 1)
|
|
918
|
+
else:
|
|
919
|
+
image_tag = None
|
|
911
920
|
if is_mlrun_image and "mlrun/ml-base" in image_url:
|
|
921
|
+
# use the tag from image URL if available, else fallback to the given tag
|
|
922
|
+
tag = image_tag or tag
|
|
912
923
|
if tag:
|
|
913
924
|
if mlrun.utils.helpers.validate_component_version_compatibility(
|
|
914
925
|
"mlrun-client", "1.10.0-rc0", mlrun_client_version=tag
|
|
@@ -296,6 +296,21 @@ class NotificationPusher(_NotificationPusherBase):
|
|
|
296
296
|
+ custom_message
|
|
297
297
|
)
|
|
298
298
|
|
|
299
|
+
retry_count = run.status.retry_count or 0
|
|
300
|
+
max_retries = (run.spec.retry.count or 0) if run.spec.retry else 0
|
|
301
|
+
|
|
302
|
+
# If any retries were attempted, include retry info in the final notification message.
|
|
303
|
+
# This is only shown when the final notification is sent (after success or final failure)
|
|
304
|
+
if retry_count > 0:
|
|
305
|
+
message += f"\nRetries attempted: {retry_count}"
|
|
306
|
+
if (
|
|
307
|
+
run.state() == runtimes_constants.RunStates.error
|
|
308
|
+
and retry_count >= max_retries
|
|
309
|
+
):
|
|
310
|
+
message += (
|
|
311
|
+
"\nRetry limit reached — run has failed after all retry attempts."
|
|
312
|
+
)
|
|
313
|
+
|
|
299
314
|
severity = (
|
|
300
315
|
notification_object.severity
|
|
301
316
|
or mlrun.common.schemas.NotificationSeverity.INFO
|
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.0rc13
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -31,7 +31,7 @@ Requires-Dist: ipython~=8.10
|
|
|
31
31
|
Requires-Dist: nuclio-jupyter~=0.11.1
|
|
32
32
|
Requires-Dist: numpy<1.27.0,>=1.26.4
|
|
33
33
|
Requires-Dist: pandas<2.2,>=1.2
|
|
34
|
-
Requires-Dist: pyarrow<
|
|
34
|
+
Requires-Dist: pyarrow<18,>=10.0
|
|
35
35
|
Requires-Dist: pyyaml<7,>=6.0.2
|
|
36
36
|
Requires-Dist: requests~=2.32
|
|
37
37
|
Requires-Dist: tabulate~=0.8.6
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
mlrun/__init__.py,sha256=
|
|
2
|
-
mlrun/__main__.py,sha256=
|
|
3
|
-
mlrun/config.py,sha256=
|
|
1
|
+
mlrun/__init__.py,sha256=Y_AFhZV1hEx4vfiO-cyjup0aLGcp6R0SeL75GqLFQrc,7514
|
|
2
|
+
mlrun/__main__.py,sha256=wQNaxW7QsqFBtWffnPkw-497fnpsrQzUnscBQQAP_UM,48364
|
|
3
|
+
mlrun/config.py,sha256=dmJj0Yzd0ZpNf10gsjS-19UqJhuBkoOfhf2SoQTNqcg,72398
|
|
4
4
|
mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
5
|
+
mlrun/execution.py,sha256=CdxLlhn8q7-IhP3QVAy8nnbo_02V_NodVueB0-MAfoo,56187
|
|
6
6
|
mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
|
|
7
7
|
mlrun/k8s_utils.py,sha256=mMnGyouHoJC93ZD2KGf9neJM1pD7mR9IXLnHOEwYVTQ,21469
|
|
8
8
|
mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
|
|
9
|
-
mlrun/model.py,sha256=
|
|
9
|
+
mlrun/model.py,sha256=Bd9mXtPIJNViNRWm4Lzoc1mpDkCpOfDY6TONMmVB4DI,88484
|
|
10
10
|
mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
|
|
11
|
-
mlrun/run.py,sha256=
|
|
11
|
+
mlrun/run.py,sha256=_ban8NoNWfQHps3QIVyWh_Hn2S6usNrFBTUMObaeueo,46904
|
|
12
12
|
mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
14
|
mlrun/alerts/alert.py,sha256=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
|
|
15
15
|
mlrun/api/schemas/__init__.py,sha256=b8pOb-hPeojIisSSiy5zwMh-uZAebyB2mAnmGGLe5Sc,13919
|
|
16
16
|
mlrun/artifacts/__init__.py,sha256=ZrEUNto7tGdnBGteCp9zOyO8b78z7O3xgcpzUt9UHE4,1240
|
|
17
|
-
mlrun/artifacts/base.py,sha256=
|
|
18
|
-
mlrun/artifacts/dataset.py,sha256=
|
|
17
|
+
mlrun/artifacts/base.py,sha256=G6t1HMAQW9Ct24EQnENMYglRPbNUfhoHkKxWdq0YQcI,29683
|
|
18
|
+
mlrun/artifacts/dataset.py,sha256=bhb5Kfbs8P28yjnpN76th5lLEUl5nAqD4VqVzHEVPrM,16421
|
|
19
19
|
mlrun/artifacts/document.py,sha256=p5HsWdmIIJ0NahS7y3EEQN2tfHtUrUmUG-8BEEyi_Jc,17373
|
|
20
20
|
mlrun/artifacts/helpers.py,sha256=ejTEC9vkI2w5FHn5Gopw3VEIxuni0bazWUnR6BBWZfU,1662
|
|
21
|
-
mlrun/artifacts/llm_prompt.py,sha256=
|
|
21
|
+
mlrun/artifacts/llm_prompt.py,sha256=xp1lvqogtDsAtEi3JXs1ZwrhSpxWpQgsEMyL_CJIrVA,5546
|
|
22
22
|
mlrun/artifacts/manager.py,sha256=DEIQBfQhaondfChjmEN-zt-dBvV90yHLzIVqd4oGh00,16827
|
|
23
|
-
mlrun/artifacts/model.py,sha256=
|
|
23
|
+
mlrun/artifacts/model.py,sha256=8EVaD70SOkTohQIWqkDk0MEwskdofxs3wJTgspa2sho,25615
|
|
24
24
|
mlrun/artifacts/plots.py,sha256=wmaxVXiAPSCyn3M7pIlcBu9pP3O8lrq0Ewx6iHRDF9s,4238
|
|
25
25
|
mlrun/common/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
26
|
-
mlrun/common/constants.py,sha256=
|
|
26
|
+
mlrun/common/constants.py,sha256=2V-kw9Iq5KUONuxM8ngdGFBtyEB_-KDGEJzUt994Fp8,4059
|
|
27
27
|
mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
|
|
28
28
|
mlrun/common/secrets.py,sha256=8g9xtIw-9DGcwiZRT62a5ozSQM-aYo8yK5Ghey9WM0g,5179
|
|
29
29
|
mlrun/common/types.py,sha256=1gxThbmC0Vd0U1ffIkEwz4T4S7JOgHt70rvw8TCO21c,1073
|
|
@@ -40,8 +40,8 @@ mlrun/common/formatters/project.py,sha256=4cxC5B6PKvpL2SYxxqg9vpEhoaWtart6iCIr2A
|
|
|
40
40
|
mlrun/common/formatters/run.py,sha256=LlqhhVY4dAp5y17k_sWBtHaJogdNdtJWF0iO9sX-bUw,1059
|
|
41
41
|
mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
42
42
|
mlrun/common/model_monitoring/helpers.py,sha256=AkuHz4u318MEP4ebxmNWlNXh6HiNLrI5oF7QvJiJkYc,2707
|
|
43
|
-
mlrun/common/runtimes/constants.py,sha256=
|
|
44
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
43
|
+
mlrun/common/runtimes/constants.py,sha256=CGMHE2gdsNHXNsa-u3eL0o8sQmDs6PN5FLpMlCDClns,12218
|
|
44
|
+
mlrun/common/schemas/__init__.py,sha256=Q732svi9_oHP9b2aBJkMSIKtHz_1j64lYgx0SD13U7o,5438
|
|
45
45
|
mlrun/common/schemas/alert.py,sha256=u6INAHBhQIfm-mMsGqDJo1_JDN6gOuWZa-8fOU-aOUE,10182
|
|
46
46
|
mlrun/common/schemas/api_gateway.py,sha256=bgC3vXbyb1SVwsSZkLXtEoQLCe_QDKpIhAVX3X_HWW4,7126
|
|
47
47
|
mlrun/common/schemas/artifact.py,sha256=JojMRRa4n0Rge2olGOpUyp348hkTGsMEnvUBRSoo4oE,4310
|
|
@@ -71,50 +71,54 @@ mlrun/common/schemas/runs.py,sha256=yKY29ByTS4SruWQyPpDNFGulMrcT9Ms-3lnwBUDp3us,
|
|
|
71
71
|
mlrun/common/schemas/runtime_resource.py,sha256=TybJmCHJXmm1z3s5J1dd89TeFE6lG5t7vjcrf1R9YfE,1568
|
|
72
72
|
mlrun/common/schemas/schedule.py,sha256=L7z9Lp06-xmFmdp0q5PypCU_DCl6zZIyQTVoJa01gfM,4291
|
|
73
73
|
mlrun/common/schemas/secret.py,sha256=Td2UAeWHSAdA4nIP3rQv_PIVKVqcBnCnK6xjr528tS8,1486
|
|
74
|
-
mlrun/common/schemas/serving.py,sha256
|
|
74
|
+
mlrun/common/schemas/serving.py,sha256=-3U45YLtmVWMZrx4R8kaPgFGoJ4JmD7RE3nydpYNTz8,1359
|
|
75
75
|
mlrun/common/schemas/tag.py,sha256=1wqEiAujsElojWb3qmuyfcaLFjXSNAAQdafkDx7fkn0,891
|
|
76
76
|
mlrun/common/schemas/workflow.py,sha256=emoUaBD_53pzrjglzTjSknCqvyx3_huj04wBp24G9fs,2432
|
|
77
77
|
mlrun/common/schemas/model_monitoring/__init__.py,sha256=K9XumcIsTxdp8oNvCSluBGCS07rbJibHcA1DSg8Xe4w,1877
|
|
78
78
|
mlrun/common/schemas/model_monitoring/constants.py,sha256=yjTaSGiRs0zYIE20QSuJuMNnS5iuJpnV1wBiq7leVpg,13238
|
|
79
79
|
mlrun/common/schemas/model_monitoring/functions.py,sha256=VvbsW8UxD-Raj3gaLpHzEierXl_yA9PO11r1ps4fJZ4,2204
|
|
80
80
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
|
|
81
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=
|
|
81
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=Eb1-gVT1HhpWvnklYhFAdqmNGbl60xPv7IBJfdOTqI8,13073
|
|
82
82
|
mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
|
|
83
83
|
mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
|
|
84
84
|
mlrun/data_types/infer.py,sha256=F_dW7oR6jrhdONzTl4ngeGh9x7twHdpUJBd2xMVA1Vw,6476
|
|
85
85
|
mlrun/data_types/spark.py,sha256=I5JC887dT9RGs5Tqz5zaRxlCMyhMeFmwuNbExQoyW0E,9625
|
|
86
86
|
mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI,11429
|
|
87
|
-
mlrun/datastore/__init__.py,sha256=
|
|
88
|
-
mlrun/datastore/alibaba_oss.py,sha256=
|
|
89
|
-
mlrun/datastore/azure_blob.py,sha256=
|
|
90
|
-
mlrun/datastore/base.py,sha256=
|
|
91
|
-
mlrun/datastore/datastore.py,sha256
|
|
92
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
93
|
-
mlrun/datastore/dbfs_store.py,sha256=
|
|
87
|
+
mlrun/datastore/__init__.py,sha256=UKGHkUfj5A9dqTiOeW4UScvwv0vq91NS_xs3-_QA7Jk,5869
|
|
88
|
+
mlrun/datastore/alibaba_oss.py,sha256=E0t0-e9Me2t2Mux2LWdC9riOG921TgNjhoy897JJX7o,4932
|
|
89
|
+
mlrun/datastore/azure_blob.py,sha256=3LG7tOTwT97ZFBmyq-sfAIe5_SkuFgisRQtipv4kKUw,12779
|
|
90
|
+
mlrun/datastore/base.py,sha256=yLdnFCL2k_rcasdbxXjnQr7Lwm-A79LnW9AITtn9-p4,25450
|
|
91
|
+
mlrun/datastore/datastore.py,sha256=IbAUi2GZesWcmqPimURZD9iP5GpCB8se7GYA9afkAjA,13236
|
|
92
|
+
mlrun/datastore/datastore_profile.py,sha256=fRR01v9mqC40UML49-6rdx-28b2FaRLj7iZeWJgSiT0,22842
|
|
93
|
+
mlrun/datastore/dbfs_store.py,sha256=CJwst1598qxiu63-Qa0c3e5E8LjeCv1XbMyWI7A6irY,6560
|
|
94
94
|
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
95
|
-
mlrun/datastore/google_cloud_storage.py,sha256=
|
|
95
|
+
mlrun/datastore/google_cloud_storage.py,sha256=NREwZT7BCI0HfmOGkjpy5S3psiL_rgQSi43MaazJcKk,8711
|
|
96
96
|
mlrun/datastore/hdfs.py,sha256=NhxvPojQQDEm0xzB6RcvnD4uLZOxfHHKYWV4gwzG7D4,1928
|
|
97
97
|
mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
|
|
98
98
|
mlrun/datastore/redis.py,sha256=yzkVU8c9glXsjVW48RXKzEXaHPrCfQFHabFa4SJ0pN0,5567
|
|
99
|
-
mlrun/datastore/
|
|
99
|
+
mlrun/datastore/remote_client.py,sha256=235UhdsSu31s95EEEICJYHnjj2GadR7wZ6tiDAAJ1gs,2370
|
|
100
|
+
mlrun/datastore/s3.py,sha256=EOLBQ0-_whkkN00rURATpOWuRzJavIdHdNfet9-RGBw,9709
|
|
100
101
|
mlrun/datastore/snowflake_utils.py,sha256=KBbIN8REEuQyk1tVIW33rpwORzbC0Wmj0pm43h-dInA,1481
|
|
101
102
|
mlrun/datastore/sources.py,sha256=98jazPqOvEz49aeVuKilXbBCeaZnQvaKbZXmkrPgePA,49066
|
|
102
103
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
103
104
|
mlrun/datastore/spark_utils.py,sha256=dn0RWpYzee-M8UZw-NVuHAdqlNAZ7VO-fNtI8ZiDkyM,2864
|
|
104
105
|
mlrun/datastore/store_resources.py,sha256=s2794zqkzy_mjRMvRedDNs_tycTLoF8wxTqsWRQphCE,6839
|
|
105
|
-
mlrun/datastore/storeytargets.py,sha256=
|
|
106
|
+
mlrun/datastore/storeytargets.py,sha256=TvHbY3XS0qOg8ImXW1ET61UnjUPcYJbfSGAga3vgC-o,6492
|
|
106
107
|
mlrun/datastore/targets.py,sha256=8dRnLy1wBYJbVyommYkpGeztdT1CsfFHZY6Zh7o8X-Q,79165
|
|
107
|
-
mlrun/datastore/utils.py,sha256=
|
|
108
|
-
mlrun/datastore/v3io.py,sha256=
|
|
108
|
+
mlrun/datastore/utils.py,sha256=7qhGMRos-IgV2o-dywWbMvCGQDlbRs_CZcwfvTxZTvw,11798
|
|
109
|
+
mlrun/datastore/v3io.py,sha256=sMn5473k_bXyIJovNf0rahbVHRmO0YPdOwIhbs06clg,8201
|
|
109
110
|
mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
|
|
111
|
+
mlrun/datastore/model_provider/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
112
|
+
mlrun/datastore/model_provider/model_provider.py,sha256=9SPufmv1LKTgcPSK-0czKNPxsI4Sb-TM8MfuF2xQ3s4,6524
|
|
113
|
+
mlrun/datastore/model_provider/openai_provider.py,sha256=UtyzvJrodGbVRFbWwS8yipdrSxCXnZlp3mMRHJ_wjnI,5363
|
|
110
114
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
111
115
|
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
112
116
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
113
117
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
114
|
-
mlrun/db/base.py,sha256=
|
|
118
|
+
mlrun/db/base.py,sha256=lwtfvJVBAEncVsJDivUv11GS41jfmoFV29y7lNIegEQ,31470
|
|
115
119
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
116
|
-
mlrun/db/httpdb.py,sha256=
|
|
117
|
-
mlrun/db/nopdb.py,sha256=
|
|
120
|
+
mlrun/db/httpdb.py,sha256=oxgFyYhg6hxs03xoHw8JAckStjUqxkkX8KsRouLlNGI,236609
|
|
121
|
+
mlrun/db/nopdb.py,sha256=JSljeHB5jEwU0Crti1J7RT7CJTLGEAxl10rYyHi9EYA,27821
|
|
118
122
|
mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
|
|
119
123
|
mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
|
|
120
124
|
mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
|
|
@@ -215,11 +219,11 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=KINOf0udbY75raTewjEFGNlIRyE0e
|
|
|
215
219
|
mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsgAkHanD25pU2c,11663
|
|
216
220
|
mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
|
|
217
221
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
218
|
-
mlrun/launcher/base.py,sha256=
|
|
222
|
+
mlrun/launcher/base.py,sha256=6T17geeplFgYL2Suu4xo5crN_s9JETtr1m0ael8dIYk,17225
|
|
219
223
|
mlrun/launcher/client.py,sha256=cl40ZdF2fU1QbUKdl4Xnucb1u2h-8_dn095qIUyxbuM,6402
|
|
220
224
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
221
|
-
mlrun/launcher/local.py,sha256=
|
|
222
|
-
mlrun/launcher/remote.py,sha256=
|
|
225
|
+
mlrun/launcher/local.py,sha256=4SHY8d8p-nWWMeFywgBb_uzyct8GFyVMW3ysIvHGPVU,11724
|
|
226
|
+
mlrun/launcher/remote.py,sha256=zFXE52Cq_7EkC8lfNKT0ceIbye0CfFiundF7O1YU4Xw,7810
|
|
223
227
|
mlrun/model_monitoring/__init__.py,sha256=2zigVN5JUnOhRcqGBd4gj0ctubVlyEvxmxXix0De5GQ,709
|
|
224
228
|
mlrun/model_monitoring/api.py,sha256=lAsUp-gzqw8D1cpHVGA2_nPMYn5R4jdxk9UaGOiQ8fE,25945
|
|
225
229
|
mlrun/model_monitoring/controller.py,sha256=CQxK9Sq5k8XonvVBQnSimakpTwMMAyqT5mOaG534MaM,37660
|
|
@@ -248,14 +252,14 @@ mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py,sha256=dtkaHaWKWE
|
|
|
248
252
|
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=aI8WXi3P64P7cIe6L-vQ3oyt-9anhALWMXKEvUSZI3s,48199
|
|
249
253
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
250
254
|
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
|
|
251
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
255
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=9c5cDhtkLjdQA4X6P_kyE40WGo-bhVhDsRqEc023TUs,57766
|
|
252
256
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
253
257
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
254
258
|
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
255
259
|
mlrun/package/context_handler.py,sha256=M3jtI_DOA99W0IOeufIzfaRKxolwDGReA2K-C06e5cc,14588
|
|
256
260
|
mlrun/package/errors.py,sha256=cbLEH-GYdoZj2wFyBhQsw_sMofoMKFy_kM3RLlr9eHA,1203
|
|
257
261
|
mlrun/package/packager.py,sha256=Lmm8bmaIoS_LUl2lYW_YeF1a-tj0Z55H3Rm3J-HqAbs,15188
|
|
258
|
-
mlrun/package/packagers_manager.py,sha256=
|
|
262
|
+
mlrun/package/packagers_manager.py,sha256=WQ6mXJ0SitwQaH1U5gVzQUXcfFBSwlaOaqIvjR6kejU,37429
|
|
259
263
|
mlrun/package/packagers/__init__.py,sha256=wF2OdhG1zgABbxYBxBNUCk0VNYwBMS9Yy4EW0OMPuoI,666
|
|
260
264
|
mlrun/package/packagers/default_packager.py,sha256=H-X8C0oYA4KZu9sJ8VhtUQO07yamjLq_s5zagQYAg7E,26767
|
|
261
265
|
mlrun/package/packagers/numpy_packagers.py,sha256=Juhi-ZoUXxNrYk5XamOBeBkS0NH2cGabqVWS3ofSFaE,25766
|
|
@@ -271,24 +275,24 @@ mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ip
|
|
|
271
275
|
mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
|
|
272
276
|
mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
|
|
273
277
|
mlrun/projects/__init__.py,sha256=hdCOA6_fp8X4qGGGT7Bj7sPbkM1PayWuaVZL0DkpuZw,1240
|
|
274
|
-
mlrun/projects/operations.py,sha256=
|
|
275
|
-
mlrun/projects/pipelines.py,sha256=
|
|
276
|
-
mlrun/projects/project.py,sha256=
|
|
277
|
-
mlrun/runtimes/__init__.py,sha256=
|
|
278
|
-
mlrun/runtimes/base.py,sha256=
|
|
279
|
-
mlrun/runtimes/daskjob.py,sha256=
|
|
278
|
+
mlrun/projects/operations.py,sha256=Rc__P5ucNAY2G-lHc2LrnZs15PUbNFt8-NqNNT2Bjpk,20623
|
|
279
|
+
mlrun/projects/pipelines.py,sha256=kY5BUHAjNri-9KjWZiCZ9Wo5XwZFqpvqctWy5j8va60,51611
|
|
280
|
+
mlrun/projects/project.py,sha256=Yhy2mnbWqpDiIBqH6jOZ8yFh4vbqs1Q-_Lkd0kQD4q0,252388
|
|
281
|
+
mlrun/runtimes/__init__.py,sha256=8cqrYKy1a0_87XG7V_p96untQ4t8RocadM4LVEEN1JM,9029
|
|
282
|
+
mlrun/runtimes/base.py,sha256=FVEooeQMpwxIK2iW1R0FNbC5P1sZ_efKtJcsdNSYNmc,38266
|
|
283
|
+
mlrun/runtimes/daskjob.py,sha256=zuWnFLgiPoYFMRSLYiwwG2MpFYKK662_ekbvu2VKvdQ,19906
|
|
280
284
|
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
281
285
|
mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
|
|
282
286
|
mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
|
|
283
287
|
mlrun/runtimes/kubejob.py,sha256=wadCzmSgjv9OU_Ax8CQNHfXLo0v-ev9ZGHUFGcNc9Qw,8577
|
|
284
|
-
mlrun/runtimes/local.py,sha256=
|
|
288
|
+
mlrun/runtimes/local.py,sha256=R72VdrXnFdAhLsKJiWPOcfsi4jS-W5E1FnkT2Xllt8M,22150
|
|
285
289
|
mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
|
|
286
290
|
mlrun/runtimes/pod.py,sha256=YwkvZQqj2M2YP1xg6ECbzh-DfcBo9rJCIJxfrsJ8thA,51711
|
|
287
291
|
mlrun/runtimes/remotesparkjob.py,sha256=IMnolOY6jh1xMrCtxs-awUqQoWVgRpan4l0b91vUqdI,7693
|
|
288
292
|
mlrun/runtimes/utils.py,sha256=VFKA7dWuILAcJGia_7Pw_zBBG00wZlat7o2N6u5EItw,16284
|
|
289
293
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
290
294
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=ufjcLKA5E6FSDF5CXm5l8uP_mUSFppwr5krLHln1kAU,2243
|
|
291
|
-
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=
|
|
295
|
+
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=ceX0umkNMHvxuXZic4QulWOfJyhPKHVo3T-oPhKTO8Y,12874
|
|
292
296
|
mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=jD1T36pRmSFRGgJVGRzccYJxwYH8eVze_FJrF2aSS-g,8682
|
|
293
297
|
mlrun/runtimes/mpijob/__init__.py,sha256=6sUPQRFwigi4mqjDVZmRE-qgaLw2ILY5NbneVUuMKto,947
|
|
294
298
|
mlrun/runtimes/mpijob/abstract.py,sha256=AJYRF4Jv0NWTUY3buri3XbbrXqC1ZMPHKLKUMcqWRW8,9237
|
|
@@ -307,10 +311,10 @@ mlrun/serving/__init__.py,sha256=1MjUInuyxsF-dTHZuKelq2XLhg2GInH9LjAY3PcWEzs,136
|
|
|
307
311
|
mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
|
|
308
312
|
mlrun/serving/remote.py,sha256=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
|
|
309
313
|
mlrun/serving/routers.py,sha256=SmBOlHn7rT2gWTa-W8f16UB0UthgIFc4D1cPOZAA9ss,54003
|
|
310
|
-
mlrun/serving/server.py,sha256=
|
|
314
|
+
mlrun/serving/server.py,sha256=NXqpuNMiIjavwhG8lwBKLVLh9QarP6DJm_0qB4pStfY,32523
|
|
311
315
|
mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
|
|
312
|
-
mlrun/serving/states.py,sha256=
|
|
313
|
-
mlrun/serving/system_steps.py,sha256=
|
|
316
|
+
mlrun/serving/states.py,sha256=ctbHE7y4NvBa2PzcNyVHUtjY49J5112UMO7uMnRLdHU,115536
|
|
317
|
+
mlrun/serving/system_steps.py,sha256=9AqSQwv6nVljGKZoWJbksnuqsl3VqETcytEwjEVLmA4,16446
|
|
314
318
|
mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
|
|
315
319
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
316
320
|
mlrun/serving/v2_serving.py,sha256=257LVOvWxV0KjeY0-Kxro6YgKmPu2QzNne2IORlXi5E,25434
|
|
@@ -324,7 +328,7 @@ mlrun/utils/async_http.py,sha256=8Olx8TNNeXB07nEGwlqhEgFgnFAD71vBU_bqaA9JW-w,122
|
|
|
324
328
|
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
325
329
|
mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
|
|
326
330
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
327
|
-
mlrun/utils/helpers.py,sha256=
|
|
331
|
+
mlrun/utils/helpers.py,sha256=PBBaS5yHoGJrGpcVevU1pX2smijWsC05Yyq4C1LtDDk,80754
|
|
328
332
|
mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
|
|
329
333
|
mlrun/utils/logger.py,sha256=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
|
|
330
334
|
mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
|
|
@@ -333,7 +337,7 @@ mlrun/utils/singleton.py,sha256=fNOfAUtha6OPCV_M1umWnGD0iabnnRwBke9otIspv30,868
|
|
|
333
337
|
mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
|
|
334
338
|
mlrun/utils/vault.py,sha256=-36b_PG0Fk9coPJiX6F704NF1nmKDdCH9Bg17wep88w,10446
|
|
335
339
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
336
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
340
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=82UjmO4CI6ujt8_P04ftY3oBd4hUiYLxlMckJBuqs2U,27358
|
|
337
341
|
mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
|
|
338
342
|
mlrun/utils/notifications/notification/base.py,sha256=-9e3XqUixrWwImnTGrIL4enJRSIUP9gMrJVxwaLqeXc,5403
|
|
339
343
|
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
@@ -343,11 +347,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
|
|
|
343
347
|
mlrun/utils/notifications/notification/slack.py,sha256=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
|
|
344
348
|
mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
|
|
345
349
|
mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
|
|
346
|
-
mlrun/utils/version/version.json,sha256=
|
|
350
|
+
mlrun/utils/version/version.json,sha256=I0d-Zr8pj4sVMPmU8xjd5QW6mgwiBqvk6IZ11EKj5OI,90
|
|
347
351
|
mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
|
|
348
|
-
mlrun-1.10.
|
|
349
|
-
mlrun-1.10.
|
|
350
|
-
mlrun-1.10.
|
|
351
|
-
mlrun-1.10.
|
|
352
|
-
mlrun-1.10.
|
|
353
|
-
mlrun-1.10.
|
|
352
|
+
mlrun-1.10.0rc13.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
|
|
353
|
+
mlrun-1.10.0rc13.dist-info/METADATA,sha256=CFjTSGQmViUQjTMCf8wVnyanD-4f79aHVjvc8so-e2Q,26411
|
|
354
|
+
mlrun-1.10.0rc13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
355
|
+
mlrun-1.10.0rc13.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
356
|
+
mlrun-1.10.0rc13.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
357
|
+
mlrun-1.10.0rc13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|