mlrun 1.10.0rc42__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/config.py +3 -12
- mlrun/datastore/base.py +265 -7
- mlrun/datastore/datastore.py +1 -1
- mlrun/datastore/model_provider/huggingface_provider.py +6 -2
- mlrun/datastore/store_resources.py +4 -4
- mlrun/model_monitoring/applications/base.py +16 -2
- mlrun/projects/operations.py +10 -10
- mlrun/projects/project.py +34 -29
- mlrun/run.py +3 -3
- mlrun/runtimes/nuclio/function.py +4 -2
- mlrun/runtimes/nuclio/serving.py +17 -16
- mlrun/serving/server.py +41 -22
- mlrun/serving/states.py +70 -77
- mlrun/utils/helpers.py +3 -1
- mlrun/utils/notifications/notification/mail.py +38 -15
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.10.0rc42.dist-info → mlrun-1.10.1rc4.dist-info}/METADATA +9 -7
- {mlrun-1.10.0rc42.dist-info → mlrun-1.10.1rc4.dist-info}/RECORD +22 -22
- {mlrun-1.10.0rc42.dist-info → mlrun-1.10.1rc4.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc42.dist-info → mlrun-1.10.1rc4.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc42.dist-info → mlrun-1.10.1rc4.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc42.dist-info → mlrun-1.10.1rc4.dist-info}/top_level.txt +0 -0
|
@@ -34,17 +34,18 @@ class MailNotification(base.NotificationBase):
|
|
|
34
34
|
|
|
35
35
|
boolean_params = ["use_tls", "start_tls", "validate_certs"]
|
|
36
36
|
|
|
37
|
+
optional_auth_params = ["username", "password"]
|
|
38
|
+
|
|
37
39
|
required_params = [
|
|
38
40
|
"server_host",
|
|
39
41
|
"server_port",
|
|
40
42
|
"sender_address",
|
|
41
|
-
"username",
|
|
42
|
-
"password",
|
|
43
43
|
"email_addresses",
|
|
44
44
|
] + boolean_params
|
|
45
45
|
|
|
46
46
|
@classmethod
|
|
47
47
|
def validate_params(cls, params):
|
|
48
|
+
cls._enrich_params(params)
|
|
48
49
|
for required_param in cls.required_params:
|
|
49
50
|
if required_param not in params:
|
|
50
51
|
raise ValueError(
|
|
@@ -57,6 +58,13 @@ class MailNotification(base.NotificationBase):
|
|
|
57
58
|
f"Parameter '{boolean_param}' must be a boolean for MailNotification"
|
|
58
59
|
)
|
|
59
60
|
|
|
61
|
+
# Allow no auth, username only, or username + password
|
|
62
|
+
# Some SMTP servers allow username without password
|
|
63
|
+
if params["password"] and not params["username"]:
|
|
64
|
+
raise ValueError(
|
|
65
|
+
"Parameter 'username' is required when 'password' is provided for MailNotification"
|
|
66
|
+
)
|
|
67
|
+
|
|
60
68
|
cls._validate_emails(params)
|
|
61
69
|
|
|
62
70
|
async def push(
|
|
@@ -78,6 +86,8 @@ class MailNotification(base.NotificationBase):
|
|
|
78
86
|
)
|
|
79
87
|
self.params["body"] = runs_html
|
|
80
88
|
|
|
89
|
+
self._enrich_params(self.params)
|
|
90
|
+
|
|
81
91
|
if message_body_override:
|
|
82
92
|
self.params["body"] = message_body_override.replace(
|
|
83
93
|
"{{ runs }}", runs_html
|
|
@@ -147,8 +157,8 @@ class MailNotification(base.NotificationBase):
|
|
|
147
157
|
sender_address: str,
|
|
148
158
|
server_host: str,
|
|
149
159
|
server_port: int,
|
|
150
|
-
username: str,
|
|
151
|
-
password: str,
|
|
160
|
+
username: typing.Optional[str],
|
|
161
|
+
password: typing.Optional[str],
|
|
152
162
|
use_tls: bool,
|
|
153
163
|
start_tls: bool,
|
|
154
164
|
validate_certs: bool,
|
|
@@ -163,14 +173,27 @@ class MailNotification(base.NotificationBase):
|
|
|
163
173
|
message["Subject"] = subject
|
|
164
174
|
message.attach(MIMEText(body, "html"))
|
|
165
175
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
176
|
+
send_kwargs = {
|
|
177
|
+
"hostname": server_host,
|
|
178
|
+
"port": server_port,
|
|
179
|
+
"use_tls": use_tls,
|
|
180
|
+
"validate_certs": validate_certs,
|
|
181
|
+
"start_tls": start_tls,
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
# Only include auth parameters when provided to avoid forcing SMTP AUTH
|
|
185
|
+
if username is not None:
|
|
186
|
+
send_kwargs["username"] = username
|
|
187
|
+
if password is not None:
|
|
188
|
+
send_kwargs["password"] = password
|
|
189
|
+
|
|
190
|
+
await aiosmtplib.send(message, **send_kwargs)
|
|
191
|
+
|
|
192
|
+
@staticmethod
|
|
193
|
+
def _enrich_params(params):
|
|
194
|
+
# if username/password are not provided or empty strings, set them to None.
|
|
195
|
+
# this ensures consistent behavior in _send_email and avoids
|
|
196
|
+
# forcing SMTP auth when the server does not require authentication.
|
|
197
|
+
for param in ["username", "password"]:
|
|
198
|
+
if param not in params or not params[param]:
|
|
199
|
+
params[param] = None
|
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.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
|
|
@@ -44,7 +44,7 @@ Requires-Dist: semver~=3.0
|
|
|
44
44
|
Requires-Dist: dependency-injector~=4.41
|
|
45
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
|
|
@@ -298,8 +298,8 @@ Removing inappropriate data at an early stage saves resources that would otherwi
|
|
|
298
298
|
|
|
299
299
|
|
|
300
300
|
**Docs:**
|
|
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)
|
|
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),
|
|
303
303
|
[Guardrails for data management](https://docs.mlrun.org/en/stable/genai/data-mgmt/guardrails-data.html)
|
|
304
304
|
**Demo:**
|
|
305
305
|
[Call center demo](https://github.com/mlrun/demo-call-center)
|
|
@@ -313,7 +313,8 @@ preprocess (prepare) the data, run the training pipeline, and evaluate the model
|
|
|
313
313
|
**Docs:**
|
|
314
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)
|
|
315
315
|
**Demos:**
|
|
316
|
-
[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)
|
|
317
318
|
**Video:**
|
|
318
319
|
[Call center](https://youtu.be/YycMbxRgLBA)
|
|
319
320
|
|
|
@@ -329,7 +330,8 @@ inferring results using one or more models, and driving actions.
|
|
|
329
330
|
**Tutorial:**
|
|
330
331
|
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/genai-01-basic-tutorial.html)
|
|
331
332
|
**Demos:**
|
|
332
|
-
[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)
|
|
333
335
|
**Video:**
|
|
334
336
|
[Call center](https://youtu.be/YycMbxRgLBA)
|
|
335
337
|
|
|
@@ -344,7 +346,7 @@ Collect production data, metadata, and metrics to tune the model and application
|
|
|
344
346
|
**Tutorials:**
|
|
345
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)
|
|
346
348
|
**Demo:**
|
|
347
|
-
[
|
|
349
|
+
[Banking agent demo](https://github.com/mlrun/demo-banking-agent)
|
|
348
350
|
|
|
349
351
|
|
|
350
352
|
<a id="mlops-tasks"></a>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=acM2jRv7RCvBROwucuC01Rf_HdvV3xUPtJlQtX_01MY,8076
|
|
2
2
|
mlrun/__main__.py,sha256=wQNaxW7QsqFBtWffnPkw-497fnpsrQzUnscBQQAP_UM,48364
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=ZA0emGsgvvZovD9iABSU34aD8Du0_VulIiDjiY5aoag,72871
|
|
4
4
|
mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
|
|
5
5
|
mlrun/execution.py,sha256=Ozu8SjO-nQ6l5vHwqrTQjmP6koMpUqNQpp6qn6jvhVE,58802
|
|
6
6
|
mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
|
|
@@ -8,7 +8,7 @@ mlrun/k8s_utils.py,sha256=zIacVyvsXrXVO-DdxAoGQOGEDWOGJEFJzYPhPVnn3z8,24548
|
|
|
8
8
|
mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
|
|
9
9
|
mlrun/model.py,sha256=flea-6ktoUqHp5HtMV8HZVotUl6Mm2kIcPHtVNLHXKk,89287
|
|
10
10
|
mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
|
|
11
|
-
mlrun/run.py,sha256=
|
|
11
|
+
mlrun/run.py,sha256=oXmDAaPVt6HJhC-WzaZp_9kLKaX1L-OdTL1vLTqX7RA,49744
|
|
12
12
|
mlrun/secrets.py,sha256=VFETVDJFZ0AGDivYjhYscO_YHnzeBnAebxlio7Svkq0,9633
|
|
13
13
|
mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
|
|
14
14
|
mlrun/alerts/alert.py,sha256=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
|
|
@@ -86,8 +86,8 @@ mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI
|
|
|
86
86
|
mlrun/datastore/__init__.py,sha256=LAAqChT1ydUpQ9f8PpAMXb20xjpr1kMMx74ZvtyiTp4,6097
|
|
87
87
|
mlrun/datastore/alibaba_oss.py,sha256=E0t0-e9Me2t2Mux2LWdC9riOG921TgNjhoy897JJX7o,4932
|
|
88
88
|
mlrun/datastore/azure_blob.py,sha256=LQZ3p0MEe1G5oNwCUo5xA4_xLhykMtnlV0aA5tWuzdA,17978
|
|
89
|
-
mlrun/datastore/base.py,sha256
|
|
90
|
-
mlrun/datastore/datastore.py,sha256=
|
|
89
|
+
mlrun/datastore/base.py,sha256=-Xy83AZ1chjDmctu1C9EMplBBXdvc-GAju8mDav5sBA,34542
|
|
90
|
+
mlrun/datastore/datastore.py,sha256=2M7FKJng4CYM9Kmo7Q_hD55DDK7YtGldDeCS-MhLCJ4,13411
|
|
91
91
|
mlrun/datastore/datastore_profile.py,sha256=K2MrA0KjznkoWci5ua6L_k1rjMGBfCsQFAql-Iwok0M,24680
|
|
92
92
|
mlrun/datastore/dbfs_store.py,sha256=CJwst1598qxiu63-Qa0c3e5E8LjeCv1XbMyWI7A6irY,6560
|
|
93
93
|
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
@@ -101,14 +101,14 @@ mlrun/datastore/snowflake_utils.py,sha256=KBbIN8REEuQyk1tVIW33rpwORzbC0Wmj0pm43h
|
|
|
101
101
|
mlrun/datastore/sources.py,sha256=98jazPqOvEz49aeVuKilXbBCeaZnQvaKbZXmkrPgePA,49066
|
|
102
102
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
103
103
|
mlrun/datastore/spark_utils.py,sha256=dn0RWpYzee-M8UZw-NVuHAdqlNAZ7VO-fNtI8ZiDkyM,2864
|
|
104
|
-
mlrun/datastore/store_resources.py,sha256=
|
|
104
|
+
mlrun/datastore/store_resources.py,sha256=2vCPCFl1W6tNLnU0R9C0fjrS93X7aShaQt-lcEiAxmc,6843
|
|
105
105
|
mlrun/datastore/storeytargets.py,sha256=c1NRT_dfwlwjY8O8KnD_8PKaRRng5YctlAZS4U4xpZs,6454
|
|
106
106
|
mlrun/datastore/targets.py,sha256=8dRnLy1wBYJbVyommYkpGeztdT1CsfFHZY6Zh7o8X-Q,79165
|
|
107
107
|
mlrun/datastore/utils.py,sha256=0EMNZpRHOi8zQBsE3rAe_7JmPojVc3-mIY_1n5SBkJI,12288
|
|
108
108
|
mlrun/datastore/v3io.py,sha256=sMn5473k_bXyIJovNf0rahbVHRmO0YPdOwIhbs06clg,8201
|
|
109
109
|
mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
|
|
110
110
|
mlrun/datastore/model_provider/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
111
|
-
mlrun/datastore/model_provider/huggingface_provider.py,sha256=
|
|
111
|
+
mlrun/datastore/model_provider/huggingface_provider.py,sha256=i9Cg3uY8B0zKz-WjTxHdu-IpHsYRDTlxpyX6v9QrUxs,16444
|
|
112
112
|
mlrun/datastore/model_provider/mock_model_provider.py,sha256=uIgGP3yZtLDLS-2WMyH20SGfrpodpyxyIw4WYTpHhUg,3059
|
|
113
113
|
mlrun/datastore/model_provider/model_provider.py,sha256=en0tlQjztFKNyeGYUP8GqsPNsJnZYh3jq8GT7TJrBWE,14096
|
|
114
114
|
mlrun/datastore/model_provider/openai_provider.py,sha256=FH-5tdUOPcJHJXePO_gB7X0TJnv74e-lPjgp58-OzTA,15565
|
|
@@ -236,7 +236,7 @@ mlrun/model_monitoring/stream_processing.py,sha256=bryYO3D0cC10MAQ-liHxUZ79MrL-V
|
|
|
236
236
|
mlrun/model_monitoring/writer.py,sha256=l2D_5Ms5Wq5jfyQRVJbGBBRTMLjMmIAxwPeHWmrc9Kg,16382
|
|
237
237
|
mlrun/model_monitoring/applications/__init__.py,sha256=BwlmRELlFJf2b2YMyv5kUSHNe8--OyqWhDgRlT8a_8g,779
|
|
238
238
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=t9LDIqQUGE10cyjyhlg0QqN1yVx0apD1HpERYLJfm8U,7409
|
|
239
|
-
mlrun/model_monitoring/applications/base.py,sha256=
|
|
239
|
+
mlrun/model_monitoring/applications/base.py,sha256=J5ycSCEUA7GmvK7Sh6-giz1ARV9jtLP_rmCBobnsDC0,52015
|
|
240
240
|
mlrun/model_monitoring/applications/context.py,sha256=oBYtCoMG6jvOowrPPDogZ_IjWaPIZ-Jqj5IdUlSzEzY,17040
|
|
241
241
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
|
|
242
242
|
mlrun/model_monitoring/applications/results.py,sha256=LfBQOmkpKGvVGNrcj5QiXsRIG2IRgcv_Xqe4QJBmauk,5699
|
|
@@ -279,9 +279,9 @@ mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ip
|
|
|
279
279
|
mlrun/platforms/__init__.py,sha256=QgtpAt1lpfTKk0mLtesB1P8szK9cpNDPeYzu2qDbPCM,3580
|
|
280
280
|
mlrun/platforms/iguazio.py,sha256=32_o95Ntx9z3ciowt2NcnX7tAiLBwX3VB0mbTQ-KrIQ,13848
|
|
281
281
|
mlrun/projects/__init__.py,sha256=hdCOA6_fp8X4qGGGT7Bj7sPbkM1PayWuaVZL0DkpuZw,1240
|
|
282
|
-
mlrun/projects/operations.py,sha256=
|
|
282
|
+
mlrun/projects/operations.py,sha256=zmVT9L7XvAQ37nF-WLMN4tuyfApSG9hCpfBlt3BVCBQ,21046
|
|
283
283
|
mlrun/projects/pipelines.py,sha256=ZOfuIEHOXfuc4qAkuWvbWhCjP6kqpLkv-yBBaY9RXhg,52219
|
|
284
|
-
mlrun/projects/project.py,sha256=
|
|
284
|
+
mlrun/projects/project.py,sha256=39HaE7BeYXDRDWh71yCK1Y6Y5pYViqOkjKxnd8RtmqE,258135
|
|
285
285
|
mlrun/runtimes/__init__.py,sha256=NSIk1xlUduSY3ZZ2tLmXegw1Z1im5_KjtbmsL874Z6s,9829
|
|
286
286
|
mlrun/runtimes/base.py,sha256=CFiKLDXsRzjOEqnGOUjB-1dnKjBkNdHAVAw4GOloyjQ,38914
|
|
287
287
|
mlrun/runtimes/daskjob.py,sha256=IN6gKKrmCIjWooj5FgFm-pAb2i7ra1ERRzClfu_rYGI,20102
|
|
@@ -303,9 +303,9 @@ mlrun/runtimes/mpijob/abstract.py,sha256=QjAG4OZ6JEQ58w5-qYNd6hUGwvaW8ynLtlr9jNf
|
|
|
303
303
|
mlrun/runtimes/mpijob/v1.py,sha256=zSlRkiWHz4B3yht66sVf4mlfDs8YT9EnP9DfBLn5VNs,3372
|
|
304
304
|
mlrun/runtimes/nuclio/__init__.py,sha256=osOVMN9paIOuUoOTizmkxMb_OXRP-SlPwXHJSSYK_wk,834
|
|
305
305
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
306
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
306
|
+
mlrun/runtimes/nuclio/function.py,sha256=hWV3UVY9kgoOF1WoVEtFQD5u063vkh-F60d0GA3eCX8,56203
|
|
307
307
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
308
|
-
mlrun/runtimes/nuclio/serving.py,sha256
|
|
308
|
+
mlrun/runtimes/nuclio/serving.py,sha256=-uGZrIZ5SzBnVnUH5BvFYPnXM5hOurvPQ74do_qcJzQ,39175
|
|
309
309
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
310
310
|
mlrun/runtimes/nuclio/application/application.py,sha256=PVeFau_3geo7pndK99mID_9C9ecJcglUFHPQ1rCAWFA,33994
|
|
311
311
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
|
|
@@ -315,9 +315,9 @@ mlrun/serving/__init__.py,sha256=nriJAcVn5aatwU03T7SsE6ngJEGTxr3wIGt4WuvCCzY,139
|
|
|
315
315
|
mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
|
|
316
316
|
mlrun/serving/remote.py,sha256=p29CBtKwbW_l8BzmNg3Uy__0eMf7_OubTMzga_S3EOA,22089
|
|
317
317
|
mlrun/serving/routers.py,sha256=pu5jlSLI4Ml68YP_FMFDhhwPfLcT6lRu5yL5QDgXPHQ,52889
|
|
318
|
-
mlrun/serving/server.py,sha256=
|
|
318
|
+
mlrun/serving/server.py,sha256=j1KsDPPD4m-gjidLWwy0UycbymzzczbvIrg0Y11DcHQ,43312
|
|
319
319
|
mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
|
|
320
|
-
mlrun/serving/states.py,sha256=
|
|
320
|
+
mlrun/serving/states.py,sha256=gVD6r8tfosQtv2KOT2cTU5uFeE-B9aI-EYvueVnxETM,140640
|
|
321
321
|
mlrun/serving/steps.py,sha256=zbMgJnu-m4n7vhFRgZkCMMifIsCya-TzAj3Gjc-Fgnc,2193
|
|
322
322
|
mlrun/serving/system_steps.py,sha256=BDCJn73h7cUT5AoSSm25Fjg4WwzcEpMQp-ZjMw9ogEc,20025
|
|
323
323
|
mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
|
|
@@ -333,7 +333,7 @@ mlrun/utils/async_http.py,sha256=8Olx8TNNeXB07nEGwlqhEgFgnFAD71vBU_bqaA9JW-w,122
|
|
|
333
333
|
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
334
334
|
mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
|
|
335
335
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
336
|
-
mlrun/utils/helpers.py,sha256=
|
|
336
|
+
mlrun/utils/helpers.py,sha256=Z-wTyI1o63WCiOYbtzsU42On0Bk794ASxX7-n2AitUk,87310
|
|
337
337
|
mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
|
|
338
338
|
mlrun/utils/logger.py,sha256=uaCgI_ezzaXf7nJDCy-1Nrjds8vSXqDbzmjmb3IyCQo,14864
|
|
339
339
|
mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
|
|
@@ -348,15 +348,15 @@ mlrun/utils/notifications/notification/base.py,sha256=xrKdA5-a6eGWXogmSAtgJS0cKq
|
|
|
348
348
|
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
349
349
|
mlrun/utils/notifications/notification/git.py,sha256=JKAiEfs5qOMn0IeU__AzdQ4u6GctMzu1xMauNJ4wdUw,6311
|
|
350
350
|
mlrun/utils/notifications/notification/ipython.py,sha256=9uZvI1uOLFaNuAsfJPXmL3l6dOzFoWdBK5GYNYFAfks,2282
|
|
351
|
-
mlrun/utils/notifications/notification/mail.py,sha256=
|
|
351
|
+
mlrun/utils/notifications/notification/mail.py,sha256=dcEfi1jO4X3ExdrZs1ckLJnH01UcwU75Jzlg9LZCMfw,7080
|
|
352
352
|
mlrun/utils/notifications/notification/slack.py,sha256=wSu_7W0EnGLBNwIgWCYEeTP8j9SPAMPDBnfUcPnVZYA,7299
|
|
353
353
|
mlrun/utils/notifications/notification/webhook.py,sha256=FM5-LQAKAVJKp37MRzR3SsejalcnpM6r_9Oe7znxZEA,5313
|
|
354
354
|
mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
|
|
355
|
-
mlrun/utils/version/version.json,sha256=
|
|
355
|
+
mlrun/utils/version/version.json,sha256=ymiImbulnx1g_h9rLvjk9HZCLMuD8w-mjv-EpTOic9M,89
|
|
356
356
|
mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
|
|
357
|
-
mlrun-1.10.
|
|
358
|
-
mlrun-1.10.
|
|
359
|
-
mlrun-1.10.
|
|
360
|
-
mlrun-1.10.
|
|
361
|
-
mlrun-1.10.
|
|
362
|
-
mlrun-1.10.
|
|
357
|
+
mlrun-1.10.1rc4.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
|
|
358
|
+
mlrun-1.10.1rc4.dist-info/METADATA,sha256=VfxCDKAkgnnXjfzdW3mF75onp8Krw_gAeCf2YSaNsgA,25786
|
|
359
|
+
mlrun-1.10.1rc4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
360
|
+
mlrun-1.10.1rc4.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
361
|
+
mlrun-1.10.1rc4.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
362
|
+
mlrun-1.10.1rc4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|