mlrun 1.10.0rc23__py3-none-any.whl → 1.10.0rc25__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.

Files changed (32) hide show
  1. mlrun/common/schemas/hub.py +14 -0
  2. mlrun/common/schemas/model_monitoring/constants.py +1 -0
  3. mlrun/common/schemas/model_monitoring/model_endpoints.py +10 -1
  4. mlrun/config.py +5 -1
  5. mlrun/datastore/azure_blob.py +66 -43
  6. mlrun/datastore/datastore_profile.py +8 -2
  7. mlrun/datastore/model_provider/huggingface_provider.py +118 -30
  8. mlrun/datastore/model_provider/model_provider.py +66 -8
  9. mlrun/datastore/model_provider/openai_provider.py +149 -47
  10. mlrun/db/base.py +1 -1
  11. mlrun/db/httpdb.py +6 -4
  12. mlrun/db/nopdb.py +1 -0
  13. mlrun/model_monitoring/api.py +2 -2
  14. mlrun/model_monitoring/applications/base.py +22 -10
  15. mlrun/model_monitoring/applications/context.py +1 -4
  16. mlrun/model_monitoring/controller.py +10 -2
  17. mlrun/model_monitoring/db/_schedules.py +2 -4
  18. mlrun/platforms/iguazio.py +7 -3
  19. mlrun/projects/project.py +28 -24
  20. mlrun/runtimes/nuclio/__init__.py +1 -0
  21. mlrun/runtimes/nuclio/application/application.py +26 -2
  22. mlrun/runtimes/nuclio/function.py +10 -0
  23. mlrun/runtimes/nuclio/serving.py +4 -0
  24. mlrun/runtimes/utils.py +22 -5
  25. mlrun/serving/server.py +25 -14
  26. mlrun/utils/version/version.json +2 -2
  27. {mlrun-1.10.0rc23.dist-info → mlrun-1.10.0rc25.dist-info}/METADATA +23 -22
  28. {mlrun-1.10.0rc23.dist-info → mlrun-1.10.0rc25.dist-info}/RECORD +32 -32
  29. {mlrun-1.10.0rc23.dist-info → mlrun-1.10.0rc25.dist-info}/WHEEL +0 -0
  30. {mlrun-1.10.0rc23.dist-info → mlrun-1.10.0rc25.dist-info}/entry_points.txt +0 -0
  31. {mlrun-1.10.0rc23.dist-info → mlrun-1.10.0rc25.dist-info}/licenses/LICENSE +0 -0
  32. {mlrun-1.10.0rc23.dist-info → mlrun-1.10.0rc25.dist-info}/top_level.txt +0 -0
@@ -16,6 +16,7 @@ from .serving import ServingRuntime, new_v2_model_server # noqa
16
16
  from .nuclio import nuclio_init_hook # noqa
17
17
  from .function import (
18
18
  min_nuclio_versions,
19
+ multiple_port_sidecar_is_supported,
19
20
  RemoteRuntime,
20
21
  ) # noqa
21
22
  from .api_gateway import APIGateway
@@ -22,7 +22,10 @@ import mlrun.errors
22
22
  import mlrun.run
23
23
  from mlrun.common.runtimes.constants import NuclioIngressAddTemplatedIngressModes
24
24
  from mlrun.runtimes import RemoteRuntime
25
- from mlrun.runtimes.nuclio import min_nuclio_versions
25
+ from mlrun.runtimes.nuclio import (
26
+ min_nuclio_versions,
27
+ multiple_port_sidecar_is_supported,
28
+ )
26
29
  from mlrun.runtimes.nuclio.api_gateway import (
27
30
  APIGateway,
28
31
  APIGatewayMetadata,
@@ -79,6 +82,10 @@ class ApplicationSpec(NuclioSpec):
79
82
  add_templated_ingress_host_mode=None,
80
83
  state_thresholds=None,
81
84
  disable_default_http_trigger=None,
85
+ serving_spec=None,
86
+ graph=None,
87
+ parameters=None,
88
+ track_models=None,
82
89
  internal_application_port=None,
83
90
  application_ports=None,
84
91
  ):
@@ -120,6 +127,10 @@ class ApplicationSpec(NuclioSpec):
120
127
  security_context=security_context,
121
128
  service_type=service_type,
122
129
  add_templated_ingress_host_mode=add_templated_ingress_host_mode,
130
+ serving_spec=serving_spec,
131
+ graph=graph,
132
+ parameters=parameters,
133
+ track_models=track_models,
123
134
  state_thresholds=state_thresholds,
124
135
  disable_default_http_trigger=disable_default_http_trigger,
125
136
  )
@@ -174,7 +185,13 @@ class ApplicationSpec(NuclioSpec):
174
185
  if port != self.internal_application_port:
175
186
  cleaned_ports.append(port)
176
187
 
177
- self._application_ports = [self.internal_application_port] + cleaned_ports
188
+ application_ports = [self.internal_application_port] + cleaned_ports
189
+
190
+ # ensure multiple ports are supported in Nuclio
191
+ if len(application_ports) > 1:
192
+ multiple_port_sidecar_is_supported()
193
+
194
+ self._application_ports = application_ports
178
195
 
179
196
  @property
180
197
  def internal_application_port(self):
@@ -186,6 +203,13 @@ class ApplicationSpec(NuclioSpec):
186
203
  is_valid_port(port, raise_on_error=True)
187
204
  self._internal_application_port = port
188
205
 
206
+ # If when internal application port is being set, length of self._application_ports is 1,
207
+ # it means that it consist of [old_port] only
208
+ # so in this case, we rewrite the list completely, by setting value to [new_value]
209
+ if len(self.application_ports) == 1:
210
+ self._application_ports = [port]
211
+ return
212
+
189
213
  # when setting new internal application port, ensure that it is included in the application ports
190
214
  # it just triggers setter logic, so setting to the same value is a no-op
191
215
  self.application_ports = self._application_ports
@@ -1045,6 +1045,9 @@ class RemoteRuntime(KubeResource):
1045
1045
  sidecar["image"] = image
1046
1046
 
1047
1047
  ports = mlrun.utils.helpers.as_list(ports)
1048
+ if len(ports) > 1:
1049
+ mlrun.runtimes.nuclio.multiple_port_sidecar_is_supported()
1050
+
1048
1051
  # according to RFC-6335, port name should be less than 15 characters,
1049
1052
  # so we truncate it if needed and leave room for the index
1050
1053
  port_name = name[:13].rstrip("-_") if len(name) > 13 else name
@@ -1458,3 +1461,10 @@ def enrich_nuclio_function_from_headers(
1458
1461
  else []
1459
1462
  )
1460
1463
  func.status.container_image = headers.get("x-mlrun-container-image", "")
1464
+
1465
+
1466
+ @min_nuclio_versions("1.14.14")
1467
+ def multiple_port_sidecar_is_supported():
1468
+ # multiple ports are supported from nuclio version 1.14.14
1469
+ # this method exists only for running the min_nuclio_versions decorator
1470
+ return True
@@ -22,6 +22,7 @@ from nuclio import KafkaTrigger
22
22
 
23
23
  import mlrun
24
24
  import mlrun.common.schemas as schemas
25
+ import mlrun.datastore.datastore_profile as ds_profile
25
26
  from mlrun.datastore import get_kafka_brokers_from_dict, parse_kafka_url
26
27
  from mlrun.model import ObjectList
27
28
  from mlrun.runtimes.function_reference import FunctionReference
@@ -740,6 +741,7 @@ class ServingRuntime(RemoteRuntime):
740
741
  current_function="*",
741
742
  track_models=False,
742
743
  workdir=None,
744
+ stream_profile: Optional[ds_profile.DatastoreProfile] = None,
743
745
  **kwargs,
744
746
  ) -> GraphServer:
745
747
  """create mock server object for local testing/emulation
@@ -748,6 +750,7 @@ class ServingRuntime(RemoteRuntime):
748
750
  :param current_function: specify if you want to simulate a child function, * for all functions
749
751
  :param track_models: allow model tracking (disabled by default in the mock server)
750
752
  :param workdir: working directory to locate the source code (if not the current one)
753
+ :param stream_profile: stream profile to use for the mock server output stream.
751
754
  """
752
755
 
753
756
  # set the namespaces/modules to look for the steps code in
@@ -787,6 +790,7 @@ class ServingRuntime(RemoteRuntime):
787
790
  logger=logger,
788
791
  is_mock=True,
789
792
  monitoring_mock=self.spec.track_models,
793
+ stream_profile=stream_profile,
790
794
  )
791
795
 
792
796
  server.graph = add_system_steps_to_graph(
mlrun/runtimes/utils.py CHANGED
@@ -26,6 +26,7 @@ import pandas as pd
26
26
  import mlrun
27
27
  import mlrun.common.constants
28
28
  import mlrun.common.constants as mlrun_constants
29
+ import mlrun.common.runtimes.constants
29
30
  import mlrun.common.schemas
30
31
  import mlrun.utils.regex
31
32
  from mlrun.artifacts import TableArtifact
@@ -153,6 +154,7 @@ def results_to_iter(results, runspec, execution):
153
154
 
154
155
  iter = []
155
156
  failed = 0
157
+ pending_retry = 0
156
158
  running = 0
157
159
  for task in results:
158
160
  if task:
@@ -164,17 +166,26 @@ def results_to_iter(results, runspec, execution):
164
166
  "state": state,
165
167
  "iter": id,
166
168
  }
167
- if state == "error":
169
+ if state == mlrun.common.runtimes.constants.RunStates.error:
168
170
  failed += 1
169
171
  err = get_in(task, ["status", "error"], "")
170
- logger.error(f"error in task {execution.uid}:{id} - {err_to_str(err)}")
171
- elif state != "completed":
172
+ logger.error(f"error in task {execution.uid}:{id} - {err_to_str(err)}")
173
+ elif state == mlrun.common.runtimes.constants.RunStates.pending_retry:
174
+ pending_retry += 1
175
+ err = get_in(task, ["status", "error"], "")
176
+ retry_count = get_in(task, ["status", "retry_count"], 0)
177
+ logger.warning(
178
+ f"pending retry in task {execution.uid}:{id} - {err_to_str(err)}. Retry count: {retry_count}"
179
+ )
180
+ elif state != mlrun.common.runtimes.constants.RunStates.completed:
172
181
  running += 1
173
182
 
174
183
  iter.append(struct)
175
184
 
176
185
  if not iter:
177
- execution.set_state("completed", commit=True)
186
+ execution.set_state(
187
+ mlrun.common.runtimes.constants.RunStates.completed, commit=True
188
+ )
178
189
  logger.warning("Warning!, zero iteration results")
179
190
  return
180
191
  if hasattr(pd, "json_normalize"):
@@ -204,8 +215,14 @@ def results_to_iter(results, runspec, execution):
204
215
  error=f"{failed} of {len(results)} tasks failed, check logs in db for details",
205
216
  commit=False,
206
217
  )
218
+ elif pending_retry:
219
+ execution.set_state(
220
+ mlrun.common.runtimes.constants.RunStates.pending_retry, commit=False
221
+ )
207
222
  elif running == 0:
208
- execution.set_state("completed", commit=False)
223
+ execution.set_state(
224
+ mlrun.common.runtimes.constants.RunStates.completed, commit=False
225
+ )
209
226
  execution.commit()
210
227
 
211
228
 
mlrun/serving/server.py CHANGED
@@ -33,9 +33,10 @@ from nuclio import Context as NuclioContext
33
33
  from nuclio.request import Logger as NuclioLogger
34
34
 
35
35
  import mlrun
36
- import mlrun.common.constants
37
36
  import mlrun.common.helpers
38
37
  import mlrun.common.schemas
38
+ import mlrun.common.schemas.model_monitoring.constants as mm_constants
39
+ import mlrun.datastore.datastore_profile as ds_profile
39
40
  import mlrun.model_monitoring
40
41
  import mlrun.utils
41
42
  from mlrun.config import config
@@ -82,7 +83,6 @@ class _StreamContext:
82
83
  self.hostname = socket.gethostname()
83
84
  self.function_uri = function_uri
84
85
  self.output_stream = None
85
- stream_uri = None
86
86
  log_stream = parameters.get(FileTargetKind.LOG_STREAM, "")
87
87
 
88
88
  if (enabled or log_stream) and function_uri:
@@ -93,20 +93,16 @@ class _StreamContext:
93
93
 
94
94
  stream_args = parameters.get("stream_args", {})
95
95
 
96
- if log_stream == DUMMY_STREAM:
97
- # Dummy stream used for testing, see tests/serving/test_serving.py
98
- stream_uri = DUMMY_STREAM
99
- elif not stream_args.get("mock"): # if not a mock: `context.is_mock = True`
100
- stream_uri = mlrun.model_monitoring.get_stream_path(project=project)
101
-
102
96
  if log_stream:
103
- # Update the stream path to the log stream value
104
- stream_uri = log_stream.format(project=project)
105
- self.output_stream = get_stream_pusher(stream_uri, **stream_args)
97
+ # Get the output stream from the log stream path
98
+ stream_path = log_stream.format(project=project)
99
+ self.output_stream = get_stream_pusher(stream_path, **stream_args)
106
100
  else:
107
101
  # Get the output stream from the profile
108
102
  self.output_stream = mlrun.model_monitoring.helpers.get_output_stream(
109
- project=project, mock=stream_args.get("mock", False)
103
+ project=project,
104
+ profile=parameters.get("stream_profile"),
105
+ mock=stream_args.get("mock", False),
110
106
  )
111
107
 
112
108
 
@@ -184,11 +180,12 @@ class GraphServer(ModelObj):
184
180
  self,
185
181
  context,
186
182
  namespace,
187
- resource_cache: ResourceCache = None,
183
+ resource_cache: Optional[ResourceCache] = None,
188
184
  logger=None,
189
185
  is_mock=False,
190
186
  monitoring_mock=False,
191
- ):
187
+ stream_profile: Optional[ds_profile.DatastoreProfile] = None,
188
+ ) -> None:
192
189
  """for internal use, initialize all steps (recursively)"""
193
190
 
194
191
  if self.secret_sources:
@@ -203,6 +200,20 @@ class GraphServer(ModelObj):
203
200
  context.monitoring_mock = monitoring_mock
204
201
  context.root = self.graph
205
202
 
203
+ if is_mock and monitoring_mock:
204
+ if stream_profile:
205
+ # Add the user-defined stream profile to the parameters
206
+ self.parameters["stream_profile"] = stream_profile
207
+ elif not (
208
+ self.parameters.get(FileTargetKind.LOG_STREAM)
209
+ or mlrun.get_secret_or_env(
210
+ mm_constants.ProjectSecretKeys.STREAM_PROFILE_NAME
211
+ )
212
+ ):
213
+ # Set a dummy log stream for mocking purposes if there is no direct
214
+ # user-defined stream profile and no information in the environment
215
+ self.parameters[FileTargetKind.LOG_STREAM] = DUMMY_STREAM
216
+
206
217
  context.stream = _StreamContext(
207
218
  self.track_models, self.parameters, self.function_uri
208
219
  )
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "492ba7e7e40ca97c91a65058a403b6582387ea67",
3
- "version": "1.10.0-rc23"
2
+ "git_commit": "93eae062e788304f5adff8f128f49db8f1f346af",
3
+ "version": "1.10.0-rc25"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlrun
3
- Version: 1.10.0rc23
3
+ Version: 1.10.0rc25
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -43,7 +43,7 @@ Requires-Dist: v3io-frames~=0.10.15; python_version < "3.11"
43
43
  Requires-Dist: v3io-frames>=0.13.0; python_version >= "3.11"
44
44
  Requires-Dist: semver~=3.0
45
45
  Requires-Dist: dependency-injector~=4.41
46
- Requires-Dist: fsspec<2024.7,>=2023.9.2
46
+ Requires-Dist: fsspec<=2025.7.0,>=2025.5.1
47
47
  Requires-Dist: v3iofs~=0.1.17
48
48
  Requires-Dist: storey~=1.10.11
49
49
  Requires-Dist: inflection~=0.5.0
@@ -56,14 +56,15 @@ Requires-Dist: mlrun-pipelines-kfp-common~=0.5.8
56
56
  Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.7
57
57
  Requires-Dist: docstring_parser~=0.16
58
58
  Requires-Dist: aiosmtplib~=3.0
59
+ Requires-Dist: deepdiff~=7.0
59
60
  Provides-Extra: s3
60
61
  Requires-Dist: boto3<1.36,>=1.28.0; extra == "s3"
61
62
  Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "s3"
62
- Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "s3"
63
+ Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "s3"
63
64
  Provides-Extra: azure-blob-storage
64
65
  Requires-Dist: msrest~=0.6.21; extra == "azure-blob-storage"
65
66
  Requires-Dist: azure-core~=1.24; extra == "azure-blob-storage"
66
- Requires-Dist: adlfs==2023.9.0; extra == "azure-blob-storage"
67
+ Requires-Dist: adlfs==2024.12.0; extra == "azure-blob-storage"
67
68
  Requires-Dist: pyopenssl>=23; extra == "azure-blob-storage"
68
69
  Provides-Extra: azure-key-vault
69
70
  Requires-Dist: azure-identity~=1.5; extra == "azure-key-vault"
@@ -78,7 +79,7 @@ Requires-Dist: google-cloud-storage==2.14.0; extra == "google-cloud"
78
79
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "google-cloud"
79
80
  Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "google-cloud"
80
81
  Requires-Dist: google-cloud==0.34; extra == "google-cloud"
81
- Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "google-cloud"
82
+ Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "google-cloud"
82
83
  Provides-Extra: kafka
83
84
  Requires-Dist: kafka-python~=2.1.0; extra == "kafka"
84
85
  Requires-Dist: avro~=1.11; extra == "kafka"
@@ -96,8 +97,8 @@ Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "da
96
97
  Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "dask"
97
98
  Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "dask"
98
99
  Provides-Extra: alibaba-oss
99
- Requires-Dist: ossfs==2023.12.0; extra == "alibaba-oss"
100
- Requires-Dist: oss2==2.18.1; extra == "alibaba-oss"
100
+ Requires-Dist: ossfs==2025.5.0; extra == "alibaba-oss"
101
+ Requires-Dist: oss2==2.18.4; extra == "alibaba-oss"
101
102
  Provides-Extra: tdengine
102
103
  Requires-Dist: taos-ws-py==0.3.2; extra == "tdengine"
103
104
  Provides-Extra: snowflake
@@ -126,7 +127,7 @@ Requires-Dist: pydantic<2,>=1; extra == "api"
126
127
  Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.7; extra == "api"
127
128
  Requires-Dist: grpcio~=1.70.0; extra == "api"
128
129
  Provides-Extra: all
129
- Requires-Dist: adlfs==2023.9.0; extra == "all"
130
+ Requires-Dist: adlfs==2024.12.0; extra == "all"
130
131
  Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "all"
131
132
  Requires-Dist: avro~=1.11; extra == "all"
132
133
  Requires-Dist: azure-core~=1.24; extra == "all"
@@ -138,7 +139,7 @@ Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "all"
138
139
  Requires-Dist: databricks-sdk~=0.20.0; extra == "all"
139
140
  Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "all"
140
141
  Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "all"
141
- Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "all"
142
+ Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "all"
142
143
  Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "all"
143
144
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
144
145
  Requires-Dist: google-cloud-storage==2.14.0; extra == "all"
@@ -147,17 +148,17 @@ Requires-Dist: graphviz~=0.20.0; extra == "all"
147
148
  Requires-Dist: kafka-python~=2.1.0; extra == "all"
148
149
  Requires-Dist: mlflow~=2.22; extra == "all"
149
150
  Requires-Dist: msrest~=0.6.21; extra == "all"
150
- Requires-Dist: oss2==2.18.1; extra == "all"
151
- Requires-Dist: ossfs==2023.12.0; extra == "all"
151
+ Requires-Dist: oss2==2.18.4; extra == "all"
152
+ Requires-Dist: ossfs==2025.5.0; extra == "all"
152
153
  Requires-Dist: plotly~=5.23; extra == "all"
153
154
  Requires-Dist: pyopenssl>=23; extra == "all"
154
155
  Requires-Dist: redis~=4.3; extra == "all"
155
- Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "all"
156
+ Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "all"
156
157
  Requires-Dist: snowflake-connector-python~=3.7; extra == "all"
157
158
  Requires-Dist: sqlalchemy~=2.0; extra == "all"
158
159
  Requires-Dist: taos-ws-py==0.3.2; extra == "all"
159
160
  Provides-Extra: complete
160
- Requires-Dist: adlfs==2023.9.0; extra == "complete"
161
+ Requires-Dist: adlfs==2024.12.0; extra == "complete"
161
162
  Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete"
162
163
  Requires-Dist: avro~=1.11; extra == "complete"
163
164
  Requires-Dist: azure-core~=1.24; extra == "complete"
@@ -169,7 +170,7 @@ Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete"
169
170
  Requires-Dist: databricks-sdk~=0.20.0; extra == "complete"
170
171
  Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete"
171
172
  Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete"
172
- Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete"
173
+ Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete"
173
174
  Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete"
174
175
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete"
175
176
  Requires-Dist: google-cloud-storage==2.14.0; extra == "complete"
@@ -178,17 +179,17 @@ Requires-Dist: graphviz~=0.20.0; extra == "complete"
178
179
  Requires-Dist: kafka-python~=2.1.0; extra == "complete"
179
180
  Requires-Dist: mlflow~=2.22; extra == "complete"
180
181
  Requires-Dist: msrest~=0.6.21; extra == "complete"
181
- Requires-Dist: oss2==2.18.1; extra == "complete"
182
- Requires-Dist: ossfs==2023.12.0; extra == "complete"
182
+ Requires-Dist: oss2==2.18.4; extra == "complete"
183
+ Requires-Dist: ossfs==2025.5.0; extra == "complete"
183
184
  Requires-Dist: plotly~=5.23; extra == "complete"
184
185
  Requires-Dist: pyopenssl>=23; extra == "complete"
185
186
  Requires-Dist: redis~=4.3; extra == "complete"
186
- Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "complete"
187
+ Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete"
187
188
  Requires-Dist: snowflake-connector-python~=3.7; extra == "complete"
188
189
  Requires-Dist: sqlalchemy~=2.0; extra == "complete"
189
190
  Requires-Dist: taos-ws-py==0.3.2; extra == "complete"
190
191
  Provides-Extra: complete-api
191
- Requires-Dist: adlfs==2023.9.0; extra == "complete-api"
192
+ Requires-Dist: adlfs==2024.12.0; extra == "complete-api"
192
193
  Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete-api"
193
194
  Requires-Dist: aiosmtplib~=3.0; extra == "complete-api"
194
195
  Requires-Dist: alembic~=1.14; extra == "complete-api"
@@ -205,7 +206,7 @@ Requires-Dist: databricks-sdk~=0.20.0; extra == "complete-api"
205
206
  Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
206
207
  Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
207
208
  Requires-Dist: fastapi~=0.116.0; extra == "complete-api"
208
- Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete-api"
209
+ Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete-api"
209
210
  Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
210
211
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete-api"
211
212
  Requires-Dist: google-cloud-storage==2.14.0; extra == "complete-api"
@@ -220,15 +221,15 @@ Requires-Dist: mlflow~=2.22; extra == "complete-api"
220
221
  Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.7; extra == "complete-api"
221
222
  Requires-Dist: msrest~=0.6.21; extra == "complete-api"
222
223
  Requires-Dist: objgraph~=3.6; extra == "complete-api"
223
- Requires-Dist: oss2==2.18.1; extra == "complete-api"
224
- Requires-Dist: ossfs==2023.12.0; extra == "complete-api"
224
+ Requires-Dist: oss2==2.18.4; extra == "complete-api"
225
+ Requires-Dist: ossfs==2025.5.0; extra == "complete-api"
225
226
  Requires-Dist: plotly~=5.23; extra == "complete-api"
226
227
  Requires-Dist: psycopg2-binary~=2.9; extra == "complete-api"
227
228
  Requires-Dist: pydantic<2,>=1; extra == "complete-api"
228
229
  Requires-Dist: pymysql~=1.1; extra == "complete-api"
229
230
  Requires-Dist: pyopenssl>=23; extra == "complete-api"
230
231
  Requires-Dist: redis~=4.3; extra == "complete-api"
231
- Requires-Dist: s3fs<2024.7,>=2023.9.2; extra == "complete-api"
232
+ Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete-api"
232
233
  Requires-Dist: snowflake-connector-python~=3.7; extra == "complete-api"
233
234
  Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "complete-api"
234
235
  Requires-Dist: sqlalchemy~=2.0; extra == "complete-api"
@@ -1,6 +1,6 @@
1
1
  mlrun/__init__.py,sha256=JYy9uteFFNPbPoC0geDEPhaLrfiqTijxUhLZSToAky4,8029
2
2
  mlrun/__main__.py,sha256=wQNaxW7QsqFBtWffnPkw-497fnpsrQzUnscBQQAP_UM,48364
3
- mlrun/config.py,sha256=XAAb68MwEHpuPddPMtKBULtFk0hI9YC25DniYQk1DKk,72853
3
+ mlrun/config.py,sha256=AHEC0j8mKywIdKfLRN1AH7_zTsMc_5lgE0PH6rRhJLE,73090
4
4
  mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
5
5
  mlrun/execution.py,sha256=wkmT1k0QROgGJFMBIsYUsJaqEF2bkqaYVzp_ZQb527Q,58814
6
6
  mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
@@ -56,7 +56,7 @@ mlrun/common/schemas/feature_store.py,sha256=Kz7AWQ1RCPA8sTL9cGRZnfUBhWf4MX_5yyY
56
56
  mlrun/common/schemas/frontend_spec.py,sha256=tR8k78cppYK-X8kCWe0mz1gk8yqpsn2IxM3QmBdTJs8,2622
57
57
  mlrun/common/schemas/function.py,sha256=BUHenAK6r_mWtDrBWE42xPJU8zh8ng5Usj7GmB_SAcU,5108
58
58
  mlrun/common/schemas/http.py,sha256=KozLgGV1vpNXQ8Qptr_Zm6BEbc2VcU42hSphe_ffe_A,704
59
- mlrun/common/schemas/hub.py,sha256=zYupE3yBKlVEAhHNb4rn9g5T63sekRUnI4Ql3v4a_c4,4118
59
+ mlrun/common/schemas/hub.py,sha256=AU5pCh9hgqYgaYerUW6vndcZHM-benq-i_4a_eRWAyM,4571
60
60
  mlrun/common/schemas/k8s.py,sha256=YgyDK7KNt29GHCOxd1vw-jnl_757cIPLzViCTNT1Zcc,1403
61
61
  mlrun/common/schemas/memory_reports.py,sha256=Q6w7xofQlMD-iqjE8uK9yU5ijLPkht_EsXJCMad_TQo,899
62
62
  mlrun/common/schemas/notification.py,sha256=Q-tBaU_V7YZiuj3ankuACf3_-hb874_osxq0eaW90Ww,5549
@@ -74,10 +74,10 @@ mlrun/common/schemas/serving.py,sha256=4ek9JZDagkdeXyfkX6P6xp4deUNSf_kqXUaXcKSuv
74
74
  mlrun/common/schemas/tag.py,sha256=1wqEiAujsElojWb3qmuyfcaLFjXSNAAQdafkDx7fkn0,891
75
75
  mlrun/common/schemas/workflow.py,sha256=Y-FHJnxs5c86yetuOAPdEJPkne__tLPCxjSXSb4lrjo,2541
76
76
  mlrun/common/schemas/model_monitoring/__init__.py,sha256=FqFiFIDcylquQdY0XTBamB5kMzMrMFEpVYM_ecsVfLg,1925
77
- mlrun/common/schemas/model_monitoring/constants.py,sha256=5Frul4YrJQZvUIOE4T2Tp8I6GjklFD7EyRIOR6YqsPo,13726
77
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=6a5SPuKiducBqbITHLDucRbek30HakqZ7tJ-JaW6sKQ,13828
78
78
  mlrun/common/schemas/model_monitoring/functions.py,sha256=Ej8ChjmMZq1HP32THNABoktQHN1mdlkSqKbofxu10i4,2536
79
79
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
80
- mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=Bl08bnM5DnWJsj4gZhCDD49PDg5y7mPnrsD2fKBE7BI,13316
80
+ mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=aevkfKWRbRj2cxabeUrVka49lJ2SRDA7I8rD-Fihr2Q,13648
81
81
  mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
82
82
  mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
83
83
  mlrun/data_types/infer.py,sha256=F_dW7oR6jrhdONzTl4ngeGh9x7twHdpUJBd2xMVA1Vw,6476
@@ -85,10 +85,10 @@ mlrun/data_types/spark.py,sha256=I5JC887dT9RGs5Tqz5zaRxlCMyhMeFmwuNbExQoyW0E,962
85
85
  mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI,11429
86
86
  mlrun/datastore/__init__.py,sha256=K8lPO3nVQTk14tbJMUS8nbtwhJw1PBzvQ4UI1T5exFo,6097
87
87
  mlrun/datastore/alibaba_oss.py,sha256=E0t0-e9Me2t2Mux2LWdC9riOG921TgNjhoy897JJX7o,4932
88
- mlrun/datastore/azure_blob.py,sha256=3LG7tOTwT97ZFBmyq-sfAIe5_SkuFgisRQtipv4kKUw,12779
88
+ mlrun/datastore/azure_blob.py,sha256=g_ZM4LtccFsDqV2hG_6kfxHB-aGuAdmXEasR_SODWro,13546
89
89
  mlrun/datastore/base.py,sha256=yLdnFCL2k_rcasdbxXjnQr7Lwm-A79LnW9AITtn9-p4,25450
90
90
  mlrun/datastore/datastore.py,sha256=F9NdQFwyAHgjKFSQ1mcLZBuxNqXXesNMjtIVj03L5Gk,13422
91
- mlrun/datastore/datastore_profile.py,sha256=Y4VtaatIK4UXuTdpffCkAcsCBSxj5KOgnX7KlL-Yds8,23803
91
+ mlrun/datastore/datastore_profile.py,sha256=DTirmKUp4LicdaS4svgWpzwkJTJBqDYS73kn5jyGtCQ,23979
92
92
  mlrun/datastore/dbfs_store.py,sha256=CJwst1598qxiu63-Qa0c3e5E8LjeCv1XbMyWI7A6irY,6560
93
93
  mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
94
94
  mlrun/datastore/google_cloud_storage.py,sha256=NREwZT7BCI0HfmOGkjpy5S3psiL_rgQSi43MaazJcKk,8711
@@ -108,18 +108,18 @@ mlrun/datastore/utils.py,sha256=jxvq4lgQfgqb7dwKe4Kp51fYCCyOvitEdIfV2mzlqxg,1193
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=c8t7kZ1ZbjZpbyRmwLNz_eqrfwRXmVs_sf6F1s_H2xg,11594
111
+ mlrun/datastore/model_provider/huggingface_provider.py,sha256=flXoAKKUTgYRnfEUhxqIxh86vET5gopS2YeQDUaxX-k,16200
112
112
  mlrun/datastore/model_provider/mock_model_provider.py,sha256=uIgGP3yZtLDLS-2WMyH20SGfrpodpyxyIw4WYTpHhUg,3059
113
- mlrun/datastore/model_provider/model_provider.py,sha256=3F-iWkxfOI8ypgzJw1I8ZkSXF6xYaqCZf5BMQhG46Fo,11098
114
- mlrun/datastore/model_provider/openai_provider.py,sha256=KgbP8M4VnbWf9Yh5iG2g3qvXEoLmwWyeL1iTWqwFyWI,11406
113
+ mlrun/datastore/model_provider/model_provider.py,sha256=qWo0Apw9co0pNjwyMFKUn4tBamGhRNYBDianxPHL8Vs,14089
114
+ mlrun/datastore/model_provider/openai_provider.py,sha256=FH-5tdUOPcJHJXePO_gB7X0TJnv74e-lPjgp58-OzTA,15565
115
115
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
116
116
  mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
117
117
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
118
118
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
119
- mlrun/db/base.py,sha256=6RHdJ0gODbajw13hjJ5s6ZflW2oa1dDJfoNa4wTWuXw,31743
119
+ mlrun/db/base.py,sha256=fkK30xi9qrsYc_pIORwB1Za0UD3Z1QwfmJ6-pfxdW6s,31742
120
120
  mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
121
- mlrun/db/httpdb.py,sha256=9GFZKD_zn6SbSY5R6KtsMeDUqVl0JDvIneMhHiy5NzQ,238004
122
- mlrun/db/nopdb.py,sha256=RA5lVW-PHorLxEv4t29AJZ_GjqKtlhkxQa5308VAl9U,28063
121
+ mlrun/db/httpdb.py,sha256=LM_xCxsPJzNBARmZJ1GTyzmxJcmGmATy3KR6DaiPljI,238139
122
+ mlrun/db/nopdb.py,sha256=vjHyalrKsckI-W7haer4wiQGyGKyQhU61Fhu0YswtE4,28128
123
123
  mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
124
124
  mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
125
125
  mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
@@ -226,22 +226,22 @@ mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,233
226
226
  mlrun/launcher/local.py,sha256=3gv-IQYoIChSmRaZ0vLUh0Tu26oLMCx9GbBYh4fWygQ,12161
227
227
  mlrun/launcher/remote.py,sha256=zFXE52Cq_7EkC8lfNKT0ceIbye0CfFiundF7O1YU4Xw,7810
228
228
  mlrun/model_monitoring/__init__.py,sha256=qDQnncjya9XPTlfvGyfWsZWiXc-glGZrrNja-5QmCZk,782
229
- mlrun/model_monitoring/api.py,sha256=G8mI2iJm7cptTVue7dl9qMD6oY8_uxnEoVLz93DFQq4,27003
230
- mlrun/model_monitoring/controller.py,sha256=sXUdEPG678DYmiVNm-LfJHcsiBkjZqpSTbG8hqxWxX0,43647
229
+ mlrun/model_monitoring/api.py,sha256=k0eOm-vW8z2u05PwMK2PI2mSAplK0xGIrUe_XWk7mRM,27000
230
+ mlrun/model_monitoring/controller.py,sha256=ajuaKd9Jis2IKy2943kVV5ZbGYWGhqPA_MSZkkis8QI,43959
231
231
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
232
232
  mlrun/model_monitoring/helpers.py,sha256=0xhIYKzhaBrgyjLiA_ekCZsXzi3GBXpLyG40Bhj-PTY,23596
233
233
  mlrun/model_monitoring/stream_processing.py,sha256=bryYO3D0cC10MAQ-liHxUZ79MrL-VFXCb7KNyj6bl-8,34655
234
234
  mlrun/model_monitoring/writer.py,sha256=rGRFzSOkqZWvD3Y6sVk2H1Gepfnkzkp9ce00PsApTLo,8288
235
235
  mlrun/model_monitoring/applications/__init__.py,sha256=BwlmRELlFJf2b2YMyv5kUSHNe8--OyqWhDgRlT8a_8g,779
236
236
  mlrun/model_monitoring/applications/_application_steps.py,sha256=t9LDIqQUGE10cyjyhlg0QqN1yVx0apD1HpERYLJfm8U,7409
237
- mlrun/model_monitoring/applications/base.py,sha256=nAJdrAU8yFsZAhgBilBjGI7YsS1B3pK9nrVm4nthelI,46349
238
- mlrun/model_monitoring/applications/context.py,sha256=fAGFNCyNhSnVJPSIeJxv-XmEL2JhDmjK5Ouog9qyvdc,17035
237
+ mlrun/model_monitoring/applications/base.py,sha256=PNYrKBhyqzV7q2TF4HExlMZZWyjPX4UpNED5ezaDZ2o,47158
238
+ mlrun/model_monitoring/applications/context.py,sha256=3W3AW4oyJgx_nW_5mDsV59Iy5D3frkfYMQSc6DgBc4c,17004
239
239
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
240
240
  mlrun/model_monitoring/applications/results.py,sha256=LfBQOmkpKGvVGNrcj5QiXsRIG2IRgcv_Xqe4QJBmauk,5699
241
241
  mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
242
242
  mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
243
243
  mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
244
- mlrun/model_monitoring/db/_schedules.py,sha256=XtmtkQx-qMyq6sV2b_w8rSmetIZF1AHu3EIwfTST6aw,11959
244
+ mlrun/model_monitoring/db/_schedules.py,sha256=CJm4ulHFeE2Jxl4TcDMkvDAFfkb4D9Kd7UEzSAe2PNM,11902
245
245
  mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
246
246
  mlrun/model_monitoring/db/tsdb/__init__.py,sha256=4S86V_Ot_skE16SLkw0WwsaAUB0ECH6SoJdp-TIu6s8,4645
247
247
  mlrun/model_monitoring/db/tsdb/base.py,sha256=34X3LGNo8lrZLbHCVTY1Cp3Y52xnLZ2PukfGzCYI850,33345
@@ -274,11 +274,11 @@ mlrun/package/utils/_supported_format.py,sha256=tuHLPyahFitxoQkZ5dC0dymwc5zxCMVW
274
274
  mlrun/package/utils/log_hint_utils.py,sha256=oFUrzcJ-AHocXSGIiMP6Yq3IYBgUfnrB-ri7EmXMDvg,3695
275
275
  mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ipfuscA8MLU,14694
276
276
  mlrun/platforms/__init__.py,sha256=QgtpAt1lpfTKk0mLtesB1P8szK9cpNDPeYzu2qDbPCM,3580
277
- mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
277
+ mlrun/platforms/iguazio.py,sha256=32_o95Ntx9z3ciowt2NcnX7tAiLBwX3VB0mbTQ-KrIQ,13848
278
278
  mlrun/projects/__init__.py,sha256=hdCOA6_fp8X4qGGGT7Bj7sPbkM1PayWuaVZL0DkpuZw,1240
279
279
  mlrun/projects/operations.py,sha256=Rc__P5ucNAY2G-lHc2LrnZs15PUbNFt8-NqNNT2Bjpk,20623
280
280
  mlrun/projects/pipelines.py,sha256=nGDzBABEOqoe9sWbax4SfF8CVLgrvK0NLWBadzEthVE,52219
281
- mlrun/projects/project.py,sha256=TD_tlkVSKS5V6FfYAP4p7o1bRfWGpqy-BwSP24EQV2c,256200
281
+ mlrun/projects/project.py,sha256=7D3wJNQLOBsAerNND04Q3H5_yRFhHDYKPy0fOFlMA5o,256413
282
282
  mlrun/runtimes/__init__.py,sha256=8cqrYKy1a0_87XG7V_p96untQ4t8RocadM4LVEEN1JM,9029
283
283
  mlrun/runtimes/base.py,sha256=UD2wwxXIZ5ocY-pw7Mzc98plhp-OEgyBuPDtPuVdx98,38346
284
284
  mlrun/runtimes/daskjob.py,sha256=IN6gKKrmCIjWooj5FgFm-pAb2i7ra1ERRzClfu_rYGI,20102
@@ -290,7 +290,7 @@ mlrun/runtimes/local.py,sha256=R72VdrXnFdAhLsKJiWPOcfsi4jS-W5E1FnkT2Xllt8M,22150
290
290
  mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
291
291
  mlrun/runtimes/pod.py,sha256=AlA8B8OhyhZyP-C8Gvik_RxoVZsGSXgA7kZado82AQo,52253
292
292
  mlrun/runtimes/remotesparkjob.py,sha256=BalAea66GleaKeoYTw6ZL1Qr4wf1yRxfgk1-Fkc9Pqg,7864
293
- mlrun/runtimes/utils.py,sha256=ofHEOPiMVpQmgxnDhzpHoXBIS97q7QVHiN-UxVSMZkQ,16158
293
+ mlrun/runtimes/utils.py,sha256=iRL0U0L56RW26hfjo2n_pRof5XgCAtWSO3YYxPt_2NI,16982
294
294
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
295
295
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=ufjcLKA5E6FSDF5CXm5l8uP_mUSFppwr5krLHln1kAU,2243
296
296
  mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=ceX0umkNMHvxuXZic4QulWOfJyhPKHVo3T-oPhKTO8Y,12874
@@ -298,13 +298,13 @@ mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=jD1T36pRmSFRGgJVGRzcc
298
298
  mlrun/runtimes/mpijob/__init__.py,sha256=6sUPQRFwigi4mqjDVZmRE-qgaLw2ILY5NbneVUuMKto,947
299
299
  mlrun/runtimes/mpijob/abstract.py,sha256=QjAG4OZ6JEQ58w5-qYNd6hUGwvaW8ynLtlr9jNfAHIk,9408
300
300
  mlrun/runtimes/mpijob/v1.py,sha256=zSlRkiWHz4B3yht66sVf4mlfDs8YT9EnP9DfBLn5VNs,3372
301
- mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
301
+ mlrun/runtimes/nuclio/__init__.py,sha256=osOVMN9paIOuUoOTizmkxMb_OXRP-SlPwXHJSSYK_wk,834
302
302
  mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
303
- mlrun/runtimes/nuclio/function.py,sha256=8cCcZKWkhvxWp2L5aOoNI6Q2Ya96RFWRswL942LDZy8,54586
303
+ mlrun/runtimes/nuclio/function.py,sha256=SZAZOyRprArd1DrUD-QR8P9Bh1UuQfTMUpjTLq2jg3Q,54916
304
304
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
305
- mlrun/runtimes/nuclio/serving.py,sha256=OadofTgla-1HoupdEbiOdgNbqE6LmFcCVOaffBjAByI,35383
305
+ mlrun/runtimes/nuclio/serving.py,sha256=0JEMW1_0Eqx5j-Wpksytm9GhUmoho4L7glIs1qEswMc,35641
306
306
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
307
- mlrun/runtimes/nuclio/application/application.py,sha256=5HaB4JEF0PlgP17tyyh-g5X5XfGev4PvEtgVXkScVkg,32080
307
+ mlrun/runtimes/nuclio/application/application.py,sha256=TdDUuA3Qd9EOctTmrxt2kOr90b3IjS6u9jyvUu6bwiA,32911
308
308
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
309
309
  mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
310
310
  mlrun/runtimes/sparkjob/spark3job.py,sha256=3dW7RG2T58F2dsUw0TsRvE3SIFcekx3CerLdcaG1f50,41458
@@ -312,7 +312,7 @@ mlrun/serving/__init__.py,sha256=nriJAcVn5aatwU03T7SsE6ngJEGTxr3wIGt4WuvCCzY,139
312
312
  mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
313
313
  mlrun/serving/remote.py,sha256=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
314
314
  mlrun/serving/routers.py,sha256=SmBOlHn7rT2gWTa-W8f16UB0UthgIFc4D1cPOZAA9ss,54003
315
- mlrun/serving/server.py,sha256=_Wju0myvP-VccyQm9VwNpsZUUiHpRh22WkQbBzd6Z2o,40343
315
+ mlrun/serving/server.py,sha256=5aDCSis4yvRrlpVflTLz3cHCayL8tGt0olPNqWIvJ78,40930
316
316
  mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
317
317
  mlrun/serving/states.py,sha256=HXXpXi9hekUbMhH-0JTdm3l-iIx2giqq3-pAE7owG00,138334
318
318
  mlrun/serving/system_steps.py,sha256=kGaQ2OXsdluthXm_15G-f98caj3n04hq6LTIEBjzLM0,19426
@@ -348,11 +348,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
348
348
  mlrun/utils/notifications/notification/slack.py,sha256=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
349
349
  mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
350
350
  mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
351
- mlrun/utils/version/version.json,sha256=2qBVEU7lBKiv9zvHtV0mCeHZbaKZ8YTV9JnkwWpuEZc,90
351
+ mlrun/utils/version/version.json,sha256=31tE21_0loFL07SqXjhedSAQVjwQFIUdH-TZSkJtUQQ,90
352
352
  mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
353
- mlrun-1.10.0rc23.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
354
- mlrun-1.10.0rc23.dist-info/METADATA,sha256=xCwJjSygfymK3oJbuGfETNBukBcLNpKbCKDMSL9UNjg,26272
355
- mlrun-1.10.0rc23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
356
- mlrun-1.10.0rc23.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
357
- mlrun-1.10.0rc23.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
358
- mlrun-1.10.0rc23.dist-info/RECORD,,
353
+ mlrun-1.10.0rc25.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
354
+ mlrun-1.10.0rc25.dist-info/METADATA,sha256=mDpFTembREc0ylHbGb_Vxctw-1OGde_lnKnMCxxAByY,26328
355
+ mlrun-1.10.0rc25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
356
+ mlrun-1.10.0rc25.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
357
+ mlrun-1.10.0rc25.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
358
+ mlrun-1.10.0rc25.dist-info/RECORD,,