mlrun 1.7.0rc12__py3-none-any.whl → 1.7.0rc14__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/common/schemas/alert.py +1 -1
- mlrun/common/schemas/project.py +1 -0
- mlrun/config.py +12 -1
- mlrun/datastore/datastore_profile.py +17 -3
- mlrun/datastore/hdfs.py +5 -0
- mlrun/datastore/targets.py +52 -0
- mlrun/datastore/v3io.py +1 -1
- mlrun/db/auth_utils.py +152 -0
- mlrun/db/base.py +1 -1
- mlrun/db/httpdb.py +65 -29
- mlrun/model.py +18 -0
- mlrun/model_monitoring/helpers.py +7 -0
- mlrun/model_monitoring/stream_processing.py +1 -7
- mlrun/model_monitoring/writer.py +22 -4
- mlrun/projects/pipelines.py +24 -7
- mlrun/projects/project.py +112 -34
- mlrun/run.py +0 -1
- mlrun/runtimes/nuclio/api_gateway.py +275 -153
- mlrun/runtimes/pod.py +5 -5
- mlrun/serving/states.py +53 -2
- mlrun/utils/notifications/notification/slack.py +33 -8
- mlrun/utils/notifications/notification/webhook.py +1 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc12.dist-info → mlrun-1.7.0rc14.dist-info}/METADATA +1 -1
- {mlrun-1.7.0rc12.dist-info → mlrun-1.7.0rc14.dist-info}/RECORD +29 -28
- {mlrun-1.7.0rc12.dist-info → mlrun-1.7.0rc14.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc12.dist-info → mlrun-1.7.0rc14.dist-info}/WHEEL +0 -0
- {mlrun-1.7.0rc12.dist-info → mlrun-1.7.0rc14.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc12.dist-info → mlrun-1.7.0rc14.dist-info}/top_level.txt +0 -0
|
@@ -72,12 +72,7 @@ class SlackNotification(NotificationBase):
|
|
|
72
72
|
event_data: mlrun.common.schemas.Event = None,
|
|
73
73
|
) -> dict:
|
|
74
74
|
data = {
|
|
75
|
-
"blocks":
|
|
76
|
-
{
|
|
77
|
-
"type": "header",
|
|
78
|
-
"text": {"type": "plain_text", "text": f"[{severity}] {message}"},
|
|
79
|
-
},
|
|
80
|
-
]
|
|
75
|
+
"blocks": self._generate_slack_header_blocks(severity, message),
|
|
81
76
|
}
|
|
82
77
|
if self.name:
|
|
83
78
|
data["blocks"].append(
|
|
@@ -106,6 +101,32 @@ class SlackNotification(NotificationBase):
|
|
|
106
101
|
|
|
107
102
|
return data
|
|
108
103
|
|
|
104
|
+
def _generate_slack_header_blocks(self, severity: str, message: str):
|
|
105
|
+
header_text = block_text = f"[{severity}] {message}"
|
|
106
|
+
section_text = None
|
|
107
|
+
|
|
108
|
+
# Slack doesn't allow headers to be longer than 150 characters
|
|
109
|
+
# If there's a comma in the message, split the message at the comma
|
|
110
|
+
# Otherwise, split the message at 150 characters
|
|
111
|
+
if len(block_text) > 150:
|
|
112
|
+
if ", " in block_text and block_text.index(", ") < 149:
|
|
113
|
+
header_text = block_text.split(",")[0]
|
|
114
|
+
section_text = block_text[len(header_text) + 2 :]
|
|
115
|
+
else:
|
|
116
|
+
header_text = block_text[:150]
|
|
117
|
+
section_text = block_text[150:]
|
|
118
|
+
blocks = [
|
|
119
|
+
{"type": "header", "text": {"type": "plain_text", "text": header_text}}
|
|
120
|
+
]
|
|
121
|
+
if section_text:
|
|
122
|
+
blocks.append(
|
|
123
|
+
{
|
|
124
|
+
"type": "section",
|
|
125
|
+
"text": self._get_slack_row(section_text),
|
|
126
|
+
}
|
|
127
|
+
)
|
|
128
|
+
return blocks
|
|
129
|
+
|
|
109
130
|
def _get_alert_fields(
|
|
110
131
|
self,
|
|
111
132
|
alert: mlrun.common.schemas.AlertConfig,
|
|
@@ -116,8 +137,12 @@ class SlackNotification(NotificationBase):
|
|
|
116
137
|
self._get_slack_row(f"*Project:*\n{alert.project}"),
|
|
117
138
|
self._get_slack_row(f"*UID:*\n{event_data.entity.id}"),
|
|
118
139
|
]
|
|
119
|
-
if event_data.
|
|
120
|
-
|
|
140
|
+
if event_data.value_dict:
|
|
141
|
+
data_lines = []
|
|
142
|
+
for key, value in event_data.value_dict.items():
|
|
143
|
+
data_lines.append(f"{key}: {value}")
|
|
144
|
+
data_text = "\n".join(data_lines)
|
|
145
|
+
line.append(self._get_slack_row(f"*Event data:*\n{data_text}"))
|
|
121
146
|
|
|
122
147
|
if url := mlrun.utils.helpers.get_ui_url(alert.project, event_data.entity.id):
|
|
123
148
|
line.append(self._get_slack_row(f"*Overview:*\n<{url}|*Job overview*>"))
|
|
@@ -56,7 +56,7 @@ class WebhookNotification(NotificationBase):
|
|
|
56
56
|
if alert:
|
|
57
57
|
request_body["alert"] = alert.dict()
|
|
58
58
|
if event_data:
|
|
59
|
-
request_body["value"] = event_data.
|
|
59
|
+
request_body["value"] = event_data.value_dict
|
|
60
60
|
request_body["id"] = event_data.entity.id
|
|
61
61
|
|
|
62
62
|
if custom_html:
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=rxnxHjb5Rq_EnHv77irxah9zKL89AjZZpjQyx3W5izQ,7249
|
|
2
2
|
mlrun/__main__.py,sha256=LKskOWulg04o0IFm33Pfmokuxo6P9wLSl3ZHkiS9eZc,49326
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=NfpjnYwc3XeXs81yjUE9i0b1M2IyRnHOrgb0U6JzZ_4,64564
|
|
4
4
|
mlrun/errors.py,sha256=HmOAdfpL0bCDisZMUoJPOumneq71ko49Ph-XBL-A4xA,7080
|
|
5
5
|
mlrun/execution.py,sha256=F45o_rJI3Q8epQefTksvyjmgZr4ZxKmUxXbKW5UZOaY,40891
|
|
6
6
|
mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
|
|
7
7
|
mlrun/k8s_utils.py,sha256=YyFZT2WNZrJkcZoqxrkduQgzQ1X-7195O0mmEqvaIug,7023
|
|
8
8
|
mlrun/kfpops.py,sha256=bCHfvzz9E_fOSM8ASPqBcbG4pGRo8Sq5IMvGIYiEYRI,30446
|
|
9
9
|
mlrun/lists.py,sha256=ev-gLBPc_az03yQEHrKyDPq_Bjosa4D_XFiVbRIpmRY,8286
|
|
10
|
-
mlrun/model.py,sha256=
|
|
10
|
+
mlrun/model.py,sha256=gFTnV--Xu7z1j5-Kew9A-pP2x4dItxTRTx6BwbCMSEE,71268
|
|
11
11
|
mlrun/render.py,sha256=aMH3U2z7ELpW8MwYEGOrqLdEUwMX29shqy6V6-KbgiM,13009
|
|
12
|
-
mlrun/run.py,sha256=
|
|
12
|
+
mlrun/run.py,sha256=d6bqJAPfmIbpxoooVM2_Xhm-SFSnXBa1a2UIUEI-l8k,43141
|
|
13
13
|
mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
|
|
14
14
|
mlrun/api/schemas/__init__.py,sha256=LhfO3myrnLVxC0MYCAc1_LTuqhRlYV3H7BwJkjOu3dQ,14211
|
|
15
15
|
mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
|
|
@@ -28,7 +28,7 @@ mlrun/common/db/sql_session.py,sha256=Znc8KE2oLy4lg3_vRki1sVlNx59TgDSOTCXfU561hB
|
|
|
28
28
|
mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
|
|
29
29
|
mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
|
|
30
30
|
mlrun/common/schemas/__init__.py,sha256=JGyxf4eM8ZuVVCASsKZS6lo_Y7VzAuCC8zXZACRAyks,5119
|
|
31
|
-
mlrun/common/schemas/alert.py,sha256=
|
|
31
|
+
mlrun/common/schemas/alert.py,sha256=F-ZQbfBdrSm-PYESjlQ_IjnzKs0OrilOhBdCWzNZOe8,3181
|
|
32
32
|
mlrun/common/schemas/api_gateway.py,sha256=mw47rpTBAVIRV6TdMQ_A6rIgnEHOUweU7iT3VbINvBE,2519
|
|
33
33
|
mlrun/common/schemas/artifact.py,sha256=d6srME_eWn2MpGuqvPQZtePRFkjDfNJgQ6JDd51qVrI,2796
|
|
34
34
|
mlrun/common/schemas/auth.py,sha256=VNvMDdeQxYpnNxxuftI7O47bOaKzvYaiov2I6TnSFvM,6204
|
|
@@ -50,7 +50,7 @@ mlrun/common/schemas/notification.py,sha256=Ge7eWNGf_XUFkjOnUkyUOubdEbmXh9z_OSGc
|
|
|
50
50
|
mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
|
|
51
51
|
mlrun/common/schemas/pagination.py,sha256=q7nk6bipkDiE7HExIVqhy5ANl-zv0x8QC9Kg6AkLtDA,887
|
|
52
52
|
mlrun/common/schemas/pipeline.py,sha256=GhrIsf5tRUQtQYboZ2feXdMjpFelVvduM-SIQoV5TZw,1177
|
|
53
|
-
mlrun/common/schemas/project.py,sha256=
|
|
53
|
+
mlrun/common/schemas/project.py,sha256=jO95DeHYF7f4PWpLtXPik5fxEWL5cbgmuXghYPz7Z6o,4398
|
|
54
54
|
mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
|
|
55
55
|
mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
|
|
56
56
|
mlrun/common/schemas/runtime_resource.py,sha256=2rSuYL-9JkESSomlnU91mYDbfV-IkqZeXx6OHuMmDxs,1554
|
|
@@ -72,11 +72,11 @@ mlrun/datastore/alibaba_oss.py,sha256=OfQ9AbsJNBFF9DFgUdq38TvKw6qwnHmEcnH-nze6ZZ
|
|
|
72
72
|
mlrun/datastore/azure_blob.py,sha256=NpkEoIie7mH171tOwlrwpEwzRYGoo9SF3FAAegEENhU,9019
|
|
73
73
|
mlrun/datastore/base.py,sha256=wWE0lEjOWx_pGbxKQWQFhNvpdtR-WMCML-CiAHjhyzI,24403
|
|
74
74
|
mlrun/datastore/datastore.py,sha256=GGo8XPnKVWWgY0b-18D93V1g8DJgeBNafa6knnHEabw,9111
|
|
75
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
75
|
+
mlrun/datastore/datastore_profile.py,sha256=CTS22aaCy3IqzjJWTzSJnulxFYJ5LStqPOB4Py1py2U,17186
|
|
76
76
|
mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
|
|
77
77
|
mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
|
|
78
78
|
mlrun/datastore/google_cloud_storage.py,sha256=Du5qYYUCSkLt9acQDeQ-PgEjttsE7D2eAoLebO43kiw,6110
|
|
79
|
-
mlrun/datastore/hdfs.py,sha256=
|
|
79
|
+
mlrun/datastore/hdfs.py,sha256=TfL1zUWVRxEHF9kswZtOzrMdDmhSfiSVIAjz7fxWyVw,1876
|
|
80
80
|
mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
|
|
81
81
|
mlrun/datastore/redis.py,sha256=yJ8xYHAR4DyYzsAMLQmsdzO-VVUTQABkIxcWhVHeUFI,5575
|
|
82
82
|
mlrun/datastore/s3.py,sha256=EIPAXJGZ9kpQVbb_utFFZskDM21fAGz4m6QEAGecABU,8110
|
|
@@ -85,15 +85,16 @@ mlrun/datastore/sources.py,sha256=9JXYMTWllHmIv4RwjiTh4AiviTuP97ybFTIuF1sdGyc,39
|
|
|
85
85
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
86
86
|
mlrun/datastore/spark_utils.py,sha256=50rllp6xXpXY__1LbU7aTXUU5ca8dKAfoskPre3npZo,1611
|
|
87
87
|
mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
|
|
88
|
-
mlrun/datastore/targets.py,sha256=
|
|
88
|
+
mlrun/datastore/targets.py,sha256=xmOoCn6KtfxX_-Y2vayfnyMLqKEMgNFMZFxg4ZCoPoA,77309
|
|
89
89
|
mlrun/datastore/utils.py,sha256=TjvFRJIje3RzQpxfMZAGniyzSWgWC_AEbuTrZXxshRo,5852
|
|
90
|
-
mlrun/datastore/v3io.py,sha256=
|
|
90
|
+
mlrun/datastore/v3io.py,sha256=tmZ2S-POZhjjKPE_0T1EkHcv6Q10pz5KQiaTXE1Be-4,8102
|
|
91
91
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
92
92
|
mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
|
|
93
93
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
94
|
-
mlrun/db/
|
|
94
|
+
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
95
|
+
mlrun/db/base.py,sha256=cTH6vKj8p-fyT3a-n9LSIn3Y5KQXjDMpOfVge3_ZkFY,21109
|
|
95
96
|
mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
|
|
96
|
-
mlrun/db/httpdb.py,sha256=
|
|
97
|
+
mlrun/db/httpdb.py,sha256=4WWm02BdjTGYADZ4dFSIlA5Fb_lR4vnpDUMFoy7iArQ,170854
|
|
97
98
|
mlrun/db/nopdb.py,sha256=dcwgZYNSsP-ZNv3ZAyTvD5Pu-2YhoW_fIzHNLG_e1J0,18434
|
|
98
99
|
mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
|
|
99
100
|
mlrun/feature_store/api.py,sha256=QJsyF4FHQnvqSQfB1Y4aEThH5N48tGG6ALJrX3xxNCg,49632
|
|
@@ -207,12 +208,12 @@ mlrun/model_monitoring/controller.py,sha256=saz_EsiNARf4wkK6AePax82j3z10Fe5qbH-K
|
|
|
207
208
|
mlrun/model_monitoring/controller_handler.py,sha256=J9Y9ppLsQaxyYRl21165Rr7QuI9EM-mk-5veAqs4Bi0,1336
|
|
208
209
|
mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
|
|
209
210
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
210
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
211
|
+
mlrun/model_monitoring/helpers.py,sha256=oo_QZnx_M-b7QdVntwuFS4Y5p8pZRulCc44mwtqK8vM,9329
|
|
211
212
|
mlrun/model_monitoring/model_endpoint.py,sha256=BBtxdY5ciormI_al4zshmIp0GN7hGhOCn-hLgpCXek0,3938
|
|
212
213
|
mlrun/model_monitoring/prometheus.py,sha256=cUR4y73GutJB_pA_VCBDl9YtK4PcIJp2wj2rnLVmYi4,7578
|
|
213
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
214
|
+
mlrun/model_monitoring/stream_processing.py,sha256=7p9ILBEI0opn1yf0AwHvucVRVjaJQItWq-Xr1uOG8Y4,49093
|
|
214
215
|
mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
|
|
215
|
-
mlrun/model_monitoring/writer.py,sha256=
|
|
216
|
+
mlrun/model_monitoring/writer.py,sha256=zDdGC9BtMKz23IEYJA2rCX_bGi9vA5esjJ34lf2bMco,9294
|
|
216
217
|
mlrun/model_monitoring/applications/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
217
218
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=RIBY2tqbbYuBgcpkMmR_IjtZjUr8ZSwfMlgszd9KuUc,11701
|
|
218
219
|
mlrun/model_monitoring/db/__init__.py,sha256=sXYc6CF2I_HMJyUoY_4VueQf3OL-vhEAuWHxQvuoGRs,662
|
|
@@ -251,8 +252,8 @@ mlrun/platforms/iguazio.py,sha256=M89zXuCd1bbcIANSy4ec-9evXIs7nPRVo3D0YhKvEtE,19
|
|
|
251
252
|
mlrun/platforms/other.py,sha256=jA-3e8rNq6NSzDHsox4evVMKVN9cnTTYOnVU6rL0zOA,11828
|
|
252
253
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
253
254
|
mlrun/projects/operations.py,sha256=Myzx1dTRQoThBRoxisi5-cpyE8VtbZE5QCrSA_DcIqc,18570
|
|
254
|
-
mlrun/projects/pipelines.py,sha256
|
|
255
|
-
mlrun/projects/project.py,sha256=
|
|
255
|
+
mlrun/projects/pipelines.py,sha256=-AZsHXtJAI-ws7R2JxvEY1pvi7qPohQAy6xHq_zuKDc,41279
|
|
256
|
+
mlrun/projects/project.py,sha256=oFYiDNxWFo8QdwrNE7msiO2jD2Vww0Miw120FIe2sIY,174001
|
|
256
257
|
mlrun/runtimes/__init__.py,sha256=wxt3EZ5ESqld4dF93m-r0E9y0ZeJAn-Y0vppD2lUyqQ,8694
|
|
257
258
|
mlrun/runtimes/base.py,sha256=tM8R7-T-PGvSammpl-nHCVGKW42Vqc8AEmplF4ObHyw,36788
|
|
258
259
|
mlrun/runtimes/constants.py,sha256=oP3OxdYCpbvadJ3zP1JGkqGBKaBheNkCnJISWha9x58,9513
|
|
@@ -262,7 +263,7 @@ mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51P
|
|
|
262
263
|
mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
|
|
263
264
|
mlrun/runtimes/kubejob.py,sha256=pqtIkwem7WRrw2DqrOAO8tAmIVJO4-QVof-zmHVt_WA,8641
|
|
264
265
|
mlrun/runtimes/local.py,sha256=u9MhASzF7VRt_yT6_mZPze_hDvAaBxonPk_KafRG3Gg,21783
|
|
265
|
-
mlrun/runtimes/pod.py,sha256=
|
|
266
|
+
mlrun/runtimes/pod.py,sha256=r7znudhzyyFRtP3sX9J2lb8iKMUbdKtqbSfCxk4yYGE,65232
|
|
266
267
|
mlrun/runtimes/remotesparkjob.py,sha256=ORkKmZRz_V3YiNE1NF7JIa_hI_LWbKEyI15Qb6R6g5I,7326
|
|
267
268
|
mlrun/runtimes/utils.py,sha256=qvTFIGhn-HQi5uCwhSF5dwYZQ8irPbEJQnPQKpuDt9c,15455
|
|
268
269
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
@@ -274,7 +275,7 @@ mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2Sh
|
|
|
274
275
|
mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
|
|
275
276
|
mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
|
|
276
277
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
277
|
-
mlrun/runtimes/nuclio/api_gateway.py,sha256=
|
|
278
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=hHWzBuqk2HZz_2QKJ7fV0ZvgZwb-rrZUySdi0om_ujk,19826
|
|
278
279
|
mlrun/runtimes/nuclio/function.py,sha256=kd01D0Bu8IezCyGMXPqgGr1EUXpMkrjAg7UGiLhu3JI,49335
|
|
279
280
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
280
281
|
mlrun/runtimes/nuclio/serving.py,sha256=H3bSI33FmfOBkL99ZU6_xKbFx4qKdyQVdpIwwfhK5qo,29649
|
|
@@ -289,7 +290,7 @@ mlrun/serving/remote.py,sha256=MrFByphQWmIsKXqw-MOwl2Q1hbtWReYVRKvlcKj9pfw,17980
|
|
|
289
290
|
mlrun/serving/routers.py,sha256=scvpXD0VmgGRLJb2UqNq0o39ML2_F_SyZ4OXVQhJIOM,55086
|
|
290
291
|
mlrun/serving/server.py,sha256=p_wYc6KtRF0X-AogrI4R5mGZT9Hy0BBFe2Ulhbi9mw0,21045
|
|
291
292
|
mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
|
|
292
|
-
mlrun/serving/states.py,sha256=
|
|
293
|
+
mlrun/serving/states.py,sha256=RAWaL3f65-WAa86arKXW8G35TA04Gcp_Z5-gPrDVQr8,57395
|
|
293
294
|
mlrun/serving/utils.py,sha256=WO0n_YTO0YVPTjp_90zxRl4vey4flDgw5vaOHK5p_qY,3871
|
|
294
295
|
mlrun/serving/v1_serving.py,sha256=by4myxlnwyZ0ijQ5fURilGCK1sUpdQL2Il1VR3Xqpxg,11805
|
|
295
296
|
mlrun/serving/v2_serving.py,sha256=3Nx_-Cbgsr4ch5O2S5QYoWIbpydN-QInET_2-BtbSBM,23631
|
|
@@ -319,14 +320,14 @@ mlrun/utils/notifications/notification/base.py,sha256=sq6ICoboUeVwNPhMenaTFDEFnu
|
|
|
319
320
|
mlrun/utils/notifications/notification/console.py,sha256=MAVk7v5PJ52vdGRv76YcEPixWgV0licBPWGpR01uR40,2643
|
|
320
321
|
mlrun/utils/notifications/notification/git.py,sha256=ELZ-ZmbFDb39A0OUIhtvuSbqJoVfF_o_IOxMD5eBlv4,5351
|
|
321
322
|
mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT1U41IYwyytovv5X_LsI4,2066
|
|
322
|
-
mlrun/utils/notifications/notification/slack.py,sha256=
|
|
323
|
-
mlrun/utils/notifications/notification/webhook.py,sha256=
|
|
323
|
+
mlrun/utils/notifications/notification/slack.py,sha256=R8Ek5oLGPPd-xuXV0ajvGYX5vZf5k6y8KEYoCquEc5M,6207
|
|
324
|
+
mlrun/utils/notifications/notification/webhook.py,sha256=m6q7zhIUPjqzHwYXOQf_SjRXB7vQ5snE__gTHP9gRU8,2748
|
|
324
325
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
325
|
-
mlrun/utils/version/version.json,sha256
|
|
326
|
+
mlrun/utils/version/version.json,sha256=-D-5IbAX4IfnQxaGzXtu8827_Ki66p6CyKL_1P3gVhw,89
|
|
326
327
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
327
|
-
mlrun-1.7.
|
|
328
|
-
mlrun-1.7.
|
|
329
|
-
mlrun-1.7.
|
|
330
|
-
mlrun-1.7.
|
|
331
|
-
mlrun-1.7.
|
|
332
|
-
mlrun-1.7.
|
|
328
|
+
mlrun-1.7.0rc14.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
329
|
+
mlrun-1.7.0rc14.dist-info/METADATA,sha256=WRQ8SzeQqMlEGCURm-MU0OPkOcZXLFUjKB2tmVi1pNI,18800
|
|
330
|
+
mlrun-1.7.0rc14.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
331
|
+
mlrun-1.7.0rc14.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
332
|
+
mlrun-1.7.0rc14.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
333
|
+
mlrun-1.7.0rc14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|