mlrun 1.10.0rc16__py3-none-any.whl → 1.10.0rc42__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mlrun might be problematic. Click here for more details.
- mlrun/__init__.py +22 -2
- mlrun/artifacts/document.py +6 -1
- mlrun/artifacts/llm_prompt.py +21 -15
- mlrun/artifacts/model.py +3 -3
- mlrun/common/constants.py +9 -0
- mlrun/common/formatters/artifact.py +1 -0
- mlrun/common/model_monitoring/helpers.py +86 -0
- mlrun/common/schemas/__init__.py +2 -0
- mlrun/common/schemas/auth.py +2 -0
- mlrun/common/schemas/function.py +10 -0
- mlrun/common/schemas/hub.py +30 -18
- mlrun/common/schemas/model_monitoring/__init__.py +2 -0
- mlrun/common/schemas/model_monitoring/constants.py +30 -6
- mlrun/common/schemas/model_monitoring/functions.py +13 -4
- mlrun/common/schemas/model_monitoring/model_endpoints.py +11 -0
- mlrun/common/schemas/pipeline.py +1 -1
- mlrun/common/schemas/serving.py +3 -0
- mlrun/common/schemas/workflow.py +1 -0
- mlrun/common/secrets.py +22 -1
- mlrun/config.py +32 -10
- mlrun/datastore/__init__.py +11 -3
- mlrun/datastore/azure_blob.py +162 -47
- mlrun/datastore/datastore.py +9 -4
- mlrun/datastore/datastore_profile.py +61 -5
- mlrun/datastore/model_provider/huggingface_provider.py +363 -0
- mlrun/datastore/model_provider/mock_model_provider.py +87 -0
- mlrun/datastore/model_provider/model_provider.py +211 -74
- mlrun/datastore/model_provider/openai_provider.py +243 -71
- mlrun/datastore/s3.py +24 -2
- mlrun/datastore/storeytargets.py +2 -3
- mlrun/datastore/utils.py +15 -3
- mlrun/db/base.py +27 -19
- mlrun/db/httpdb.py +57 -48
- mlrun/db/nopdb.py +25 -10
- mlrun/execution.py +55 -13
- mlrun/hub/__init__.py +15 -0
- mlrun/hub/module.py +181 -0
- mlrun/k8s_utils.py +105 -16
- mlrun/launcher/base.py +13 -6
- mlrun/launcher/local.py +2 -0
- mlrun/model.py +9 -3
- mlrun/model_monitoring/api.py +66 -27
- mlrun/model_monitoring/applications/__init__.py +1 -1
- mlrun/model_monitoring/applications/base.py +372 -136
- mlrun/model_monitoring/applications/context.py +2 -4
- mlrun/model_monitoring/applications/results.py +4 -7
- mlrun/model_monitoring/controller.py +239 -101
- mlrun/model_monitoring/db/_schedules.py +36 -13
- mlrun/model_monitoring/db/_stats.py +4 -3
- mlrun/model_monitoring/db/tsdb/base.py +29 -9
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +4 -5
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +154 -50
- mlrun/model_monitoring/db/tsdb/tdengine/writer_graph_steps.py +51 -0
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +17 -4
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +245 -51
- mlrun/model_monitoring/helpers.py +28 -5
- mlrun/model_monitoring/stream_processing.py +45 -14
- mlrun/model_monitoring/writer.py +220 -1
- mlrun/platforms/__init__.py +3 -2
- mlrun/platforms/iguazio.py +7 -3
- mlrun/projects/operations.py +6 -1
- mlrun/projects/pipelines.py +2 -2
- mlrun/projects/project.py +128 -45
- mlrun/run.py +94 -17
- mlrun/runtimes/__init__.py +18 -0
- mlrun/runtimes/base.py +14 -6
- mlrun/runtimes/daskjob.py +1 -0
- mlrun/runtimes/local.py +5 -2
- mlrun/runtimes/mounts.py +20 -2
- mlrun/runtimes/nuclio/__init__.py +1 -0
- mlrun/runtimes/nuclio/application/application.py +147 -17
- mlrun/runtimes/nuclio/function.py +70 -27
- mlrun/runtimes/nuclio/serving.py +85 -4
- mlrun/runtimes/pod.py +213 -21
- mlrun/runtimes/utils.py +49 -9
- mlrun/secrets.py +54 -13
- mlrun/serving/remote.py +79 -6
- mlrun/serving/routers.py +23 -41
- mlrun/serving/server.py +211 -40
- mlrun/serving/states.py +536 -156
- mlrun/serving/steps.py +62 -0
- mlrun/serving/system_steps.py +136 -81
- mlrun/serving/v2_serving.py +9 -10
- mlrun/utils/helpers.py +212 -82
- mlrun/utils/logger.py +3 -1
- mlrun/utils/notifications/notification/base.py +18 -0
- mlrun/utils/notifications/notification/git.py +2 -4
- mlrun/utils/notifications/notification/slack.py +2 -4
- mlrun/utils/notifications/notification/webhook.py +2 -5
- mlrun/utils/notifications/notification_pusher.py +1 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/METADATA +44 -45
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/RECORD +97 -92
- mlrun/api/schemas/__init__.py +0 -259
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.0rc42
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -21,7 +21,9 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
21
21
|
Requires-Python: >=3.9, <3.12
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
-
Requires-Dist: urllib3
|
|
24
|
+
Requires-Dist: urllib3>=1.26.20
|
|
25
|
+
Requires-Dist: v3io-frames~=0.10.16; python_version < "3.11"
|
|
26
|
+
Requires-Dist: v3io-frames~=0.13.11; python_version >= "3.11"
|
|
25
27
|
Requires-Dist: GitPython>=3.1.41,~=3.1
|
|
26
28
|
Requires-Dist: aiohttp~=3.11
|
|
27
29
|
Requires-Dist: aiohttp-retry~=2.9
|
|
@@ -38,31 +40,30 @@ Requires-Dist: tabulate~=0.8.6
|
|
|
38
40
|
Requires-Dist: v3io~=0.7.0
|
|
39
41
|
Requires-Dist: pydantic>=1.10.15
|
|
40
42
|
Requires-Dist: mergedeep~=1.3
|
|
41
|
-
Requires-Dist: v3io-frames~=0.10.14; python_version < "3.11"
|
|
42
|
-
Requires-Dist: v3io-frames>=0.13.0; python_version >= "3.11"
|
|
43
43
|
Requires-Dist: semver~=3.0
|
|
44
44
|
Requires-Dist: dependency-injector~=4.41
|
|
45
|
-
Requires-Dist: fsspec
|
|
45
|
+
Requires-Dist: fsspec<=2025.7.0,>=2025.5.1
|
|
46
46
|
Requires-Dist: v3iofs~=0.1.17
|
|
47
|
-
Requires-Dist: storey~=1.10.
|
|
47
|
+
Requires-Dist: storey~=1.10.16
|
|
48
48
|
Requires-Dist: inflection~=0.5.0
|
|
49
49
|
Requires-Dist: python-dotenv~=1.0
|
|
50
50
|
Requires-Dist: setuptools>=75.2
|
|
51
51
|
Requires-Dist: deprecated~=1.2
|
|
52
52
|
Requires-Dist: jinja2>=3.1.6,~=3.1
|
|
53
53
|
Requires-Dist: orjson<4,>=3.9.15
|
|
54
|
-
Requires-Dist: mlrun-pipelines-kfp-common~=0.5.
|
|
55
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
54
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.5.9
|
|
55
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8
|
|
56
56
|
Requires-Dist: docstring_parser~=0.16
|
|
57
57
|
Requires-Dist: aiosmtplib~=3.0
|
|
58
|
+
Requires-Dist: deepdiff<9.0.0,>=8.6.1
|
|
58
59
|
Provides-Extra: s3
|
|
59
60
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "s3"
|
|
60
61
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "s3"
|
|
61
|
-
Requires-Dist: s3fs
|
|
62
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "s3"
|
|
62
63
|
Provides-Extra: azure-blob-storage
|
|
63
64
|
Requires-Dist: msrest~=0.6.21; extra == "azure-blob-storage"
|
|
64
65
|
Requires-Dist: azure-core~=1.24; extra == "azure-blob-storage"
|
|
65
|
-
Requires-Dist: adlfs==
|
|
66
|
+
Requires-Dist: adlfs==2024.12.0; extra == "azure-blob-storage"
|
|
66
67
|
Requires-Dist: pyopenssl>=23; extra == "azure-blob-storage"
|
|
67
68
|
Provides-Extra: azure-key-vault
|
|
68
69
|
Requires-Dist: azure-identity~=1.5; extra == "azure-key-vault"
|
|
@@ -77,7 +78,7 @@ Requires-Dist: google-cloud-storage==2.14.0; extra == "google-cloud"
|
|
|
77
78
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "google-cloud"
|
|
78
79
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "google-cloud"
|
|
79
80
|
Requires-Dist: google-cloud==0.34; extra == "google-cloud"
|
|
80
|
-
Requires-Dist: gcsfs
|
|
81
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "google-cloud"
|
|
81
82
|
Provides-Extra: kafka
|
|
82
83
|
Requires-Dist: kafka-python~=2.1.0; extra == "kafka"
|
|
83
84
|
Requires-Dist: avro~=1.11; extra == "kafka"
|
|
@@ -90,13 +91,13 @@ Requires-Dist: databricks-sdk~=0.20.0; extra == "databricks-sdk"
|
|
|
90
91
|
Provides-Extra: sqlalchemy
|
|
91
92
|
Requires-Dist: sqlalchemy~=2.0; extra == "sqlalchemy"
|
|
92
93
|
Provides-Extra: dask
|
|
93
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "dask"
|
|
94
|
-
Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "dask"
|
|
95
94
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "dask"
|
|
95
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "dask"
|
|
96
96
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "dask"
|
|
97
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "dask"
|
|
97
98
|
Provides-Extra: alibaba-oss
|
|
98
|
-
Requires-Dist: ossfs==
|
|
99
|
-
Requires-Dist: oss2==2.18.
|
|
99
|
+
Requires-Dist: ossfs==2025.5.0; extra == "alibaba-oss"
|
|
100
|
+
Requires-Dist: oss2==2.18.4; extra == "alibaba-oss"
|
|
100
101
|
Provides-Extra: tdengine
|
|
101
102
|
Requires-Dist: taos-ws-py==0.3.2; extra == "tdengine"
|
|
102
103
|
Provides-Extra: snowflake
|
|
@@ -104,7 +105,7 @@ Requires-Dist: snowflake-connector-python~=3.7; extra == "snowflake"
|
|
|
104
105
|
Provides-Extra: dev-postgres
|
|
105
106
|
Requires-Dist: pytest-mock-resources[postgres]~=2.12; extra == "dev-postgres"
|
|
106
107
|
Provides-Extra: kfp18
|
|
107
|
-
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]
|
|
108
|
+
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]~=0.5.8; extra == "kfp18"
|
|
108
109
|
Provides-Extra: api
|
|
109
110
|
Requires-Dist: uvicorn~=0.32.1; extra == "api"
|
|
110
111
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "api"
|
|
@@ -112,7 +113,7 @@ Requires-Dist: apscheduler<4,>=3.11; extra == "api"
|
|
|
112
113
|
Requires-Dist: objgraph~=3.6; extra == "api"
|
|
113
114
|
Requires-Dist: igz-mgmt~=0.4.1; extra == "api"
|
|
114
115
|
Requires-Dist: humanfriendly~=10.0; extra == "api"
|
|
115
|
-
Requires-Dist: fastapi~=0.
|
|
116
|
+
Requires-Dist: fastapi~=0.120.0; extra == "api"
|
|
116
117
|
Requires-Dist: sqlalchemy~=2.0; extra == "api"
|
|
117
118
|
Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "api"
|
|
118
119
|
Requires-Dist: pymysql~=1.1; extra == "api"
|
|
@@ -122,22 +123,21 @@ Requires-Dist: timelength~=1.1; extra == "api"
|
|
|
122
123
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
|
|
123
124
|
Requires-Dist: aiosmtplib~=3.0; extra == "api"
|
|
124
125
|
Requires-Dist: pydantic<2,>=1; extra == "api"
|
|
125
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
126
|
-
Requires-Dist: grpcio~=1.70.0; extra == "api"
|
|
126
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8; extra == "api"
|
|
127
127
|
Provides-Extra: all
|
|
128
|
-
Requires-Dist: adlfs==
|
|
128
|
+
Requires-Dist: adlfs==2024.12.0; extra == "all"
|
|
129
129
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "all"
|
|
130
130
|
Requires-Dist: avro~=1.11; extra == "all"
|
|
131
131
|
Requires-Dist: azure-core~=1.24; extra == "all"
|
|
132
132
|
Requires-Dist: azure-identity~=1.5; extra == "all"
|
|
133
133
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "all"
|
|
134
134
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "all"
|
|
135
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "all"
|
|
135
136
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
136
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "all"
|
|
137
137
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "all"
|
|
138
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "all"
|
|
138
139
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
139
|
-
Requires-Dist:
|
|
140
|
-
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "all"
|
|
140
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "all"
|
|
141
141
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "all"
|
|
142
142
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
|
|
143
143
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "all"
|
|
@@ -146,29 +146,29 @@ Requires-Dist: graphviz~=0.20.0; extra == "all"
|
|
|
146
146
|
Requires-Dist: kafka-python~=2.1.0; extra == "all"
|
|
147
147
|
Requires-Dist: mlflow~=2.22; extra == "all"
|
|
148
148
|
Requires-Dist: msrest~=0.6.21; extra == "all"
|
|
149
|
-
Requires-Dist: oss2==2.18.
|
|
150
|
-
Requires-Dist: ossfs==
|
|
149
|
+
Requires-Dist: oss2==2.18.4; extra == "all"
|
|
150
|
+
Requires-Dist: ossfs==2025.5.0; extra == "all"
|
|
151
151
|
Requires-Dist: plotly~=5.23; extra == "all"
|
|
152
152
|
Requires-Dist: pyopenssl>=23; extra == "all"
|
|
153
153
|
Requires-Dist: redis~=4.3; extra == "all"
|
|
154
|
-
Requires-Dist: s3fs
|
|
154
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "all"
|
|
155
155
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "all"
|
|
156
156
|
Requires-Dist: sqlalchemy~=2.0; extra == "all"
|
|
157
157
|
Requires-Dist: taos-ws-py==0.3.2; extra == "all"
|
|
158
158
|
Provides-Extra: complete
|
|
159
|
-
Requires-Dist: adlfs==
|
|
159
|
+
Requires-Dist: adlfs==2024.12.0; extra == "complete"
|
|
160
160
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete"
|
|
161
161
|
Requires-Dist: avro~=1.11; extra == "complete"
|
|
162
162
|
Requires-Dist: azure-core~=1.24; extra == "complete"
|
|
163
163
|
Requires-Dist: azure-identity~=1.5; extra == "complete"
|
|
164
164
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete"
|
|
165
165
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete"
|
|
166
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "complete"
|
|
166
167
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
167
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete"
|
|
168
168
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete"
|
|
169
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "complete"
|
|
169
170
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
170
|
-
Requires-Dist:
|
|
171
|
-
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete"
|
|
171
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete"
|
|
172
172
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete"
|
|
173
173
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete"
|
|
174
174
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete"
|
|
@@ -177,17 +177,17 @@ Requires-Dist: graphviz~=0.20.0; extra == "complete"
|
|
|
177
177
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete"
|
|
178
178
|
Requires-Dist: mlflow~=2.22; extra == "complete"
|
|
179
179
|
Requires-Dist: msrest~=0.6.21; extra == "complete"
|
|
180
|
-
Requires-Dist: oss2==2.18.
|
|
181
|
-
Requires-Dist: ossfs==
|
|
180
|
+
Requires-Dist: oss2==2.18.4; extra == "complete"
|
|
181
|
+
Requires-Dist: ossfs==2025.5.0; extra == "complete"
|
|
182
182
|
Requires-Dist: plotly~=5.23; extra == "complete"
|
|
183
183
|
Requires-Dist: pyopenssl>=23; extra == "complete"
|
|
184
184
|
Requires-Dist: redis~=4.3; extra == "complete"
|
|
185
|
-
Requires-Dist: s3fs
|
|
185
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete"
|
|
186
186
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete"
|
|
187
187
|
Requires-Dist: sqlalchemy~=2.0; extra == "complete"
|
|
188
188
|
Requires-Dist: taos-ws-py==0.3.2; extra == "complete"
|
|
189
189
|
Provides-Extra: complete-api
|
|
190
|
-
Requires-Dist: adlfs==
|
|
190
|
+
Requires-Dist: adlfs==2024.12.0; extra == "complete-api"
|
|
191
191
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete-api"
|
|
192
192
|
Requires-Dist: aiosmtplib~=3.0; extra == "complete-api"
|
|
193
193
|
Requires-Dist: alembic~=1.14; extra == "complete-api"
|
|
@@ -198,36 +198,35 @@ Requires-Dist: azure-identity~=1.5; extra == "complete-api"
|
|
|
198
198
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete-api"
|
|
199
199
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete-api"
|
|
200
200
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "complete-api"
|
|
201
|
+
Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "complete-api"
|
|
201
202
|
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
202
|
-
Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
|
|
203
203
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete-api"
|
|
204
|
+
Requires-Dist: distributed==2024.8; python_version >= "3.11" and extra == "complete-api"
|
|
204
205
|
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
205
|
-
Requires-Dist:
|
|
206
|
-
Requires-Dist:
|
|
207
|
-
Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete-api"
|
|
206
|
+
Requires-Dist: fastapi~=0.120.0; extra == "complete-api"
|
|
207
|
+
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete-api"
|
|
208
208
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
|
|
209
209
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete-api"
|
|
210
210
|
Requires-Dist: google-cloud-storage==2.14.0; extra == "complete-api"
|
|
211
211
|
Requires-Dist: google-cloud==0.34; extra == "complete-api"
|
|
212
212
|
Requires-Dist: graphviz~=0.20.0; extra == "complete-api"
|
|
213
|
-
Requires-Dist: grpcio~=1.70.0; extra == "complete-api"
|
|
214
213
|
Requires-Dist: humanfriendly~=10.0; extra == "complete-api"
|
|
215
214
|
Requires-Dist: igz-mgmt~=0.4.1; extra == "complete-api"
|
|
216
215
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
|
|
217
216
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
|
|
218
217
|
Requires-Dist: mlflow~=2.22; extra == "complete-api"
|
|
219
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.
|
|
218
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8; extra == "complete-api"
|
|
220
219
|
Requires-Dist: msrest~=0.6.21; extra == "complete-api"
|
|
221
220
|
Requires-Dist: objgraph~=3.6; extra == "complete-api"
|
|
222
|
-
Requires-Dist: oss2==2.18.
|
|
223
|
-
Requires-Dist: ossfs==
|
|
221
|
+
Requires-Dist: oss2==2.18.4; extra == "complete-api"
|
|
222
|
+
Requires-Dist: ossfs==2025.5.0; extra == "complete-api"
|
|
224
223
|
Requires-Dist: plotly~=5.23; extra == "complete-api"
|
|
225
224
|
Requires-Dist: psycopg2-binary~=2.9; extra == "complete-api"
|
|
226
225
|
Requires-Dist: pydantic<2,>=1; extra == "complete-api"
|
|
227
226
|
Requires-Dist: pymysql~=1.1; extra == "complete-api"
|
|
228
227
|
Requires-Dist: pyopenssl>=23; extra == "complete-api"
|
|
229
228
|
Requires-Dist: redis~=4.3; extra == "complete-api"
|
|
230
|
-
Requires-Dist: s3fs
|
|
229
|
+
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete-api"
|
|
231
230
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete-api"
|
|
232
231
|
Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "complete-api"
|
|
233
232
|
Requires-Dist: sqlalchemy~=2.0; extra == "complete-api"
|
|
@@ -328,7 +327,7 @@ inferring results using one or more models, and driving actions.
|
|
|
328
327
|
**Docs:**
|
|
329
328
|
[Serving gen AI models](https://docs.mlrun.org/en/stable/genai/deployment/genai_serving.html), [GPU utilization](https://docs.mlrun.org/en/stable/genai/deployment/gpu_utilization.html), [Gen AI realtime serving graph](https://docs.mlrun.org/en/stable/genai/deployment/genai_serving_graph.html)
|
|
330
329
|
**Tutorial:**
|
|
331
|
-
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/
|
|
330
|
+
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/genai-01-basic-tutorial.html)
|
|
332
331
|
**Demos:**
|
|
333
332
|
[Call center demo](https://github.com/mlrun/demo-call-center), [Build & deploy custom(fine-tuned)LLM models and applications](https://github.com/mlrun/demo-llm-tuning/blob/main), [Interactive bot demo using LLMs](https://github.com/mlrun/demo-llm-bot/blob/main)
|
|
334
333
|
**Video:**
|
|
@@ -343,7 +342,7 @@ Collect production data, metadata, and metrics to tune the model and application
|
|
|
343
342
|
**Docs:**
|
|
344
343
|
[Model monitoring <monitoring](https://docs.mlrun.org/en/stable/concepts/monitoring.html), [Alerts and notifications](https://docs.mlrun.org/en/stable/concepts/alerts-notifications.html)
|
|
345
344
|
**Tutorials:**
|
|
346
|
-
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/
|
|
345
|
+
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/genai-01-basic-tutorial.html), [Model monitoring using LLM](https://docs.mlrun.org/en/stable/tutorials/genai-02-monitoring-llm.html)
|
|
347
346
|
**Demo:**
|
|
348
347
|
[Build & deploy custom (fine-tuned) LLM models and applications](https://github.com/mlrun/demo-llm-tuning/blob/main)
|
|
349
348
|
|
|
@@ -1,36 +1,35 @@
|
|
|
1
|
-
mlrun/__init__.py,sha256=
|
|
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=7t7F5jsPI1rO78-VzZv3q6QvzTIV6CZPZEQAJTmKwtM,73477
|
|
4
4
|
mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
|
|
5
|
-
mlrun/execution.py,sha256=
|
|
5
|
+
mlrun/execution.py,sha256=Ozu8SjO-nQ6l5vHwqrTQjmP6koMpUqNQpp6qn6jvhVE,58802
|
|
6
6
|
mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
|
|
7
|
-
mlrun/k8s_utils.py,sha256=
|
|
7
|
+
mlrun/k8s_utils.py,sha256=zIacVyvsXrXVO-DdxAoGQOGEDWOGJEFJzYPhPVnn3z8,24548
|
|
8
8
|
mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
|
|
9
|
-
mlrun/model.py,sha256=
|
|
9
|
+
mlrun/model.py,sha256=flea-6ktoUqHp5HtMV8HZVotUl6Mm2kIcPHtVNLHXKk,89287
|
|
10
10
|
mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
|
|
11
|
-
mlrun/run.py,sha256=
|
|
12
|
-
mlrun/secrets.py,sha256=
|
|
11
|
+
mlrun/run.py,sha256=6JH8dhiXmHdNrMu3tWRdoofJClAuuwz2swQYH5_o8Xg,49787
|
|
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
|
|
15
|
-
mlrun/api/schemas/__init__.py,sha256=b8pOb-hPeojIisSSiy5zwMh-uZAebyB2mAnmGGLe5Sc,13919
|
|
16
15
|
mlrun/artifacts/__init__.py,sha256=ZrEUNto7tGdnBGteCp9zOyO8b78z7O3xgcpzUt9UHE4,1240
|
|
17
16
|
mlrun/artifacts/base.py,sha256=6x_2KPMNOciiNNUsiKgJ-b6ejxAHm_Ro22xODLoTc44,28559
|
|
18
17
|
mlrun/artifacts/dataset.py,sha256=bhb5Kfbs8P28yjnpN76th5lLEUl5nAqD4VqVzHEVPrM,16421
|
|
19
|
-
mlrun/artifacts/document.py,sha256=
|
|
18
|
+
mlrun/artifacts/document.py,sha256=VYoWcFUB45B-z_nhbedFCpiorZsDBxkTNRLWjYvri0Q,17585
|
|
20
19
|
mlrun/artifacts/helpers.py,sha256=ejTEC9vkI2w5FHn5Gopw3VEIxuni0bazWUnR6BBWZfU,1662
|
|
21
|
-
mlrun/artifacts/llm_prompt.py,sha256=
|
|
20
|
+
mlrun/artifacts/llm_prompt.py,sha256=pshXzYXPDBAe6C0vecn9MyRNyPdxrah3c80oZUKkYWA,9840
|
|
22
21
|
mlrun/artifacts/manager.py,sha256=_cDNCS7wwmFIsucJ2uOgHxZQECmIGb8Wye64b6oLgKU,16642
|
|
23
|
-
mlrun/artifacts/model.py,sha256=
|
|
22
|
+
mlrun/artifacts/model.py,sha256=9yU9NZlxxY_ifSyXOgMnPi_RMDmawY9A-rLi-_VJs4c,25662
|
|
24
23
|
mlrun/artifacts/plots.py,sha256=wmaxVXiAPSCyn3M7pIlcBu9pP3O8lrq0Ewx6iHRDF9s,4238
|
|
25
24
|
mlrun/common/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
26
|
-
mlrun/common/constants.py,sha256=
|
|
25
|
+
mlrun/common/constants.py,sha256=BbKFJN6EoFSOmUmvos20ZAty8hWtwG0quTrfbLzrWO4,4294
|
|
27
26
|
mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
|
|
28
|
-
mlrun/common/secrets.py,sha256=
|
|
27
|
+
mlrun/common/secrets.py,sha256=VdvEg2r_DwqdLGfNxkSRLhQqH_yI88xi7rE7GsaH3UY,5941
|
|
29
28
|
mlrun/common/types.py,sha256=1gxThbmC0Vd0U1ffIkEwz4T4S7JOgHt70rvw8TCO21c,1073
|
|
30
29
|
mlrun/common/db/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
31
30
|
mlrun/common/db/dialects.py,sha256=QN9bx7CTo32IIdJ2J3ZrsX8IUdp_BPxBtl0LyjMEC9g,868
|
|
32
31
|
mlrun/common/formatters/__init__.py,sha256=au7S3M3wa9964RpQhFSvflk5-i5SWMeb3kek8Gvt4kg,889
|
|
33
|
-
mlrun/common/formatters/artifact.py,sha256=
|
|
32
|
+
mlrun/common/formatters/artifact.py,sha256=JRs1B3nEvTdn4h69FLHjZZY_Dy40E9-BgvxfjcL_DKU,1503
|
|
34
33
|
mlrun/common/formatters/base.py,sha256=85vQ0t4ZfqCs8b8QV1RLfRcEvANztKvTvsa__sD3zTo,4099
|
|
35
34
|
mlrun/common/formatters/feature_set.py,sha256=SmSSiNYXZtmzQDCvQJhIpArtjOInmDN0g1xFqrDdWsw,1534
|
|
36
35
|
mlrun/common/formatters/function.py,sha256=H8bHilWSn1NXm5WWlFH2dx8slomCGm3e8ghsmWOOh48,1493
|
|
@@ -39,13 +38,13 @@ mlrun/common/formatters/pipeline.py,sha256=bMjW0lDZWozuq4B3WtzZtXncvKHcPF7cdN_Ym
|
|
|
39
38
|
mlrun/common/formatters/project.py,sha256=4cxC5B6PKvpL2SYxxqg9vpEhoaWtart6iCIr2A85lE0,2100
|
|
40
39
|
mlrun/common/formatters/run.py,sha256=LlqhhVY4dAp5y17k_sWBtHaJogdNdtJWF0iO9sX-bUw,1059
|
|
41
40
|
mlrun/common/model_monitoring/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
42
|
-
mlrun/common/model_monitoring/helpers.py,sha256=
|
|
41
|
+
mlrun/common/model_monitoring/helpers.py,sha256=lrUw6UKUbCh17f7aOOFljDHFfxYN5ih8nW5sz_90IHk,6237
|
|
43
42
|
mlrun/common/runtimes/constants.py,sha256=CGMHE2gdsNHXNsa-u3eL0o8sQmDs6PN5FLpMlCDClns,12218
|
|
44
|
-
mlrun/common/schemas/__init__.py,sha256=
|
|
43
|
+
mlrun/common/schemas/__init__.py,sha256=oEG9cIcDxzrTVrjDRuYBTSsEOK0ifFVdQp-D1EUkIDY,5517
|
|
45
44
|
mlrun/common/schemas/alert.py,sha256=u6INAHBhQIfm-mMsGqDJo1_JDN6gOuWZa-8fOU-aOUE,10182
|
|
46
45
|
mlrun/common/schemas/api_gateway.py,sha256=bgC3vXbyb1SVwsSZkLXtEoQLCe_QDKpIhAVX3X_HWW4,7126
|
|
47
46
|
mlrun/common/schemas/artifact.py,sha256=JojMRRa4n0Rge2olGOpUyp348hkTGsMEnvUBRSoo4oE,4310
|
|
48
|
-
mlrun/common/schemas/auth.py,sha256=
|
|
47
|
+
mlrun/common/schemas/auth.py,sha256=Xu_D1xMyaUARelSMAdeisSqPleiceMZrxlrGl-4zgUM,7039
|
|
49
48
|
mlrun/common/schemas/background_task.py,sha256=nE4Y_0uceSHfuYwGjOEklnQqlH3kJ8GG3tP81pn-3YU,1839
|
|
50
49
|
mlrun/common/schemas/client_spec.py,sha256=-8fYRjcded-e0xqAEEd3LsXtgvk1hv1MKYmtu2zdpcc,2874
|
|
51
50
|
mlrun/common/schemas/clusterization_spec.py,sha256=fBhXFnaXXo_Wy96Y9SVofuFjTSn7uQGFnLd0uaKDWT0,893
|
|
@@ -55,41 +54,41 @@ mlrun/common/schemas/datastore_profile.py,sha256=jDva-_XTCU0EyExs5uB2PVR7-Tj4g4Z
|
|
|
55
54
|
mlrun/common/schemas/events.py,sha256=LjAU7t-aNhkECbF_o2mzXiZ5mn4299d-_HOd20Xv6iQ,1025
|
|
56
55
|
mlrun/common/schemas/feature_store.py,sha256=Kz7AWQ1RCPA8sTL9cGRZnfUBhWf4MX_5yyYswtCOcCk,4802
|
|
57
56
|
mlrun/common/schemas/frontend_spec.py,sha256=tR8k78cppYK-X8kCWe0mz1gk8yqpsn2IxM3QmBdTJs8,2622
|
|
58
|
-
mlrun/common/schemas/function.py,sha256=
|
|
57
|
+
mlrun/common/schemas/function.py,sha256=BUHenAK6r_mWtDrBWE42xPJU8zh8ng5Usj7GmB_SAcU,5108
|
|
59
58
|
mlrun/common/schemas/http.py,sha256=KozLgGV1vpNXQ8Qptr_Zm6BEbc2VcU42hSphe_ffe_A,704
|
|
60
|
-
mlrun/common/schemas/hub.py,sha256=
|
|
59
|
+
mlrun/common/schemas/hub.py,sha256=K6Z9RHeCFXRWDyhtmc2UF4SNl2uwmJk0Pe4BqrZgLVw,4275
|
|
61
60
|
mlrun/common/schemas/k8s.py,sha256=YgyDK7KNt29GHCOxd1vw-jnl_757cIPLzViCTNT1Zcc,1403
|
|
62
61
|
mlrun/common/schemas/memory_reports.py,sha256=Q6w7xofQlMD-iqjE8uK9yU5ijLPkht_EsXJCMad_TQo,899
|
|
63
62
|
mlrun/common/schemas/notification.py,sha256=Q-tBaU_V7YZiuj3ankuACf3_-hb874_osxq0eaW90Ww,5549
|
|
64
63
|
mlrun/common/schemas/object.py,sha256=9g2bK3KUXmzhaGavbmpVf6rxDhquYogp8bb12dzP4XE,1982
|
|
65
64
|
mlrun/common/schemas/pagination.py,sha256=8NEmiIkCXw5_sv-lE0MWgWz-WpxhSSn-vBtbPDBOGXc,899
|
|
66
65
|
mlrun/common/schemas/partition.py,sha256=8T-1nfA-SdzkS8dv48NaYHVEUQOcZpaxE7mWrD8Ra68,6357
|
|
67
|
-
mlrun/common/schemas/pipeline.py,sha256=
|
|
66
|
+
mlrun/common/schemas/pipeline.py,sha256=0hG2Nb__VdQBXK2dKgSCX5u_a7Cv8qQQwon3WzygeHg,997
|
|
68
67
|
mlrun/common/schemas/project.py,sha256=9O9Wa2PkRy74WzwiLd7A6jBXf4FJxQMJj9wh2VpsZao,6138
|
|
69
68
|
mlrun/common/schemas/regex.py,sha256=r-phg_9ge1lFraPCQd_wpnYGQ1oOCj3xChycJxZtIQY,775
|
|
70
69
|
mlrun/common/schemas/runs.py,sha256=yKY29ByTS4SruWQyPpDNFGulMrcT9Ms-3lnwBUDp3us,751
|
|
71
70
|
mlrun/common/schemas/runtime_resource.py,sha256=TybJmCHJXmm1z3s5J1dd89TeFE6lG5t7vjcrf1R9YfE,1568
|
|
72
71
|
mlrun/common/schemas/schedule.py,sha256=L7z9Lp06-xmFmdp0q5PypCU_DCl6zZIyQTVoJa01gfM,4291
|
|
73
72
|
mlrun/common/schemas/secret.py,sha256=Td2UAeWHSAdA4nIP3rQv_PIVKVqcBnCnK6xjr528tS8,1486
|
|
74
|
-
mlrun/common/schemas/serving.py,sha256
|
|
73
|
+
mlrun/common/schemas/serving.py,sha256=4ek9JZDagkdeXyfkX6P6xp4deUNSf_kqXUaXcKSuv-g,1391
|
|
75
74
|
mlrun/common/schemas/tag.py,sha256=1wqEiAujsElojWb3qmuyfcaLFjXSNAAQdafkDx7fkn0,891
|
|
76
|
-
mlrun/common/schemas/workflow.py,sha256=
|
|
77
|
-
mlrun/common/schemas/model_monitoring/__init__.py,sha256=
|
|
78
|
-
mlrun/common/schemas/model_monitoring/constants.py,sha256=
|
|
79
|
-
mlrun/common/schemas/model_monitoring/functions.py,sha256=
|
|
75
|
+
mlrun/common/schemas/workflow.py,sha256=Y-FHJnxs5c86yetuOAPdEJPkne__tLPCxjSXSb4lrjo,2541
|
|
76
|
+
mlrun/common/schemas/model_monitoring/__init__.py,sha256=ndeGXCJTE_GvMSb1FfQ5fXvhs0I8nO_yWy1UBSZIifY,1956
|
|
77
|
+
mlrun/common/schemas/model_monitoring/constants.py,sha256=GimtHVQmMkCh4e5Fy0YLeeMWP8D5uCvVcWdpM63SPJg,13906
|
|
78
|
+
mlrun/common/schemas/model_monitoring/functions.py,sha256=Ej8ChjmMZq1HP32THNABoktQHN1mdlkSqKbofxu10i4,2536
|
|
80
79
|
mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
|
|
81
|
-
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=
|
|
80
|
+
mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=aevkfKWRbRj2cxabeUrVka49lJ2SRDA7I8rD-Fihr2Q,13648
|
|
82
81
|
mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
|
|
83
82
|
mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
|
|
84
83
|
mlrun/data_types/infer.py,sha256=F_dW7oR6jrhdONzTl4ngeGh9x7twHdpUJBd2xMVA1Vw,6476
|
|
85
84
|
mlrun/data_types/spark.py,sha256=I5JC887dT9RGs5Tqz5zaRxlCMyhMeFmwuNbExQoyW0E,9625
|
|
86
85
|
mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI,11429
|
|
87
|
-
mlrun/datastore/__init__.py,sha256=
|
|
86
|
+
mlrun/datastore/__init__.py,sha256=LAAqChT1ydUpQ9f8PpAMXb20xjpr1kMMx74ZvtyiTp4,6097
|
|
88
87
|
mlrun/datastore/alibaba_oss.py,sha256=E0t0-e9Me2t2Mux2LWdC9riOG921TgNjhoy897JJX7o,4932
|
|
89
|
-
mlrun/datastore/azure_blob.py,sha256=
|
|
88
|
+
mlrun/datastore/azure_blob.py,sha256=LQZ3p0MEe1G5oNwCUo5xA4_xLhykMtnlV0aA5tWuzdA,17978
|
|
90
89
|
mlrun/datastore/base.py,sha256=yLdnFCL2k_rcasdbxXjnQr7Lwm-A79LnW9AITtn9-p4,25450
|
|
91
|
-
mlrun/datastore/datastore.py,sha256=
|
|
92
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
90
|
+
mlrun/datastore/datastore.py,sha256=F9NdQFwyAHgjKFSQ1mcLZBuxNqXXesNMjtIVj03L5Gk,13422
|
|
91
|
+
mlrun/datastore/datastore_profile.py,sha256=K2MrA0KjznkoWci5ua6L_k1rjMGBfCsQFAql-Iwok0M,24680
|
|
93
92
|
mlrun/datastore/dbfs_store.py,sha256=CJwst1598qxiu63-Qa0c3e5E8LjeCv1XbMyWI7A6irY,6560
|
|
94
93
|
mlrun/datastore/filestore.py,sha256=OcykjzhbUAZ6_Cb9bGAXRL2ngsOpxXSb4rR0lyogZtM,3773
|
|
95
94
|
mlrun/datastore/google_cloud_storage.py,sha256=NREwZT7BCI0HfmOGkjpy5S3psiL_rgQSi43MaazJcKk,8711
|
|
@@ -97,28 +96,30 @@ mlrun/datastore/hdfs.py,sha256=NhxvPojQQDEm0xzB6RcvnD4uLZOxfHHKYWV4gwzG7D4,1928
|
|
|
97
96
|
mlrun/datastore/inmem.py,sha256=IsM83nn-3CqmGdLzim7i9ZmJwG6ZGhBZGN6_hszWZnE,2951
|
|
98
97
|
mlrun/datastore/redis.py,sha256=yzkVU8c9glXsjVW48RXKzEXaHPrCfQFHabFa4SJ0pN0,5567
|
|
99
98
|
mlrun/datastore/remote_client.py,sha256=235UhdsSu31s95EEEICJYHnjj2GadR7wZ6tiDAAJ1gs,2370
|
|
100
|
-
mlrun/datastore/s3.py,sha256=
|
|
99
|
+
mlrun/datastore/s3.py,sha256=crFn_f_Q5K1iGIkEGDHjJ7RPOb-itri9CPnuOfIjEwQ,10591
|
|
101
100
|
mlrun/datastore/snowflake_utils.py,sha256=KBbIN8REEuQyk1tVIW33rpwORzbC0Wmj0pm43h-dInA,1481
|
|
102
101
|
mlrun/datastore/sources.py,sha256=98jazPqOvEz49aeVuKilXbBCeaZnQvaKbZXmkrPgePA,49066
|
|
103
102
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
104
103
|
mlrun/datastore/spark_utils.py,sha256=dn0RWpYzee-M8UZw-NVuHAdqlNAZ7VO-fNtI8ZiDkyM,2864
|
|
105
104
|
mlrun/datastore/store_resources.py,sha256=s2794zqkzy_mjRMvRedDNs_tycTLoF8wxTqsWRQphCE,6839
|
|
106
|
-
mlrun/datastore/storeytargets.py,sha256=
|
|
105
|
+
mlrun/datastore/storeytargets.py,sha256=c1NRT_dfwlwjY8O8KnD_8PKaRRng5YctlAZS4U4xpZs,6454
|
|
107
106
|
mlrun/datastore/targets.py,sha256=8dRnLy1wBYJbVyommYkpGeztdT1CsfFHZY6Zh7o8X-Q,79165
|
|
108
|
-
mlrun/datastore/utils.py,sha256=
|
|
107
|
+
mlrun/datastore/utils.py,sha256=0EMNZpRHOi8zQBsE3rAe_7JmPojVc3-mIY_1n5SBkJI,12288
|
|
109
108
|
mlrun/datastore/v3io.py,sha256=sMn5473k_bXyIJovNf0rahbVHRmO0YPdOwIhbs06clg,8201
|
|
110
109
|
mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
|
|
111
110
|
mlrun/datastore/model_provider/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
112
|
-
mlrun/datastore/model_provider/
|
|
113
|
-
mlrun/datastore/model_provider/
|
|
111
|
+
mlrun/datastore/model_provider/huggingface_provider.py,sha256=VKK5-EWtLiq7VSrOPttNkSBIkTeq2YLx5_xNTNarjWo,16314
|
|
112
|
+
mlrun/datastore/model_provider/mock_model_provider.py,sha256=uIgGP3yZtLDLS-2WMyH20SGfrpodpyxyIw4WYTpHhUg,3059
|
|
113
|
+
mlrun/datastore/model_provider/model_provider.py,sha256=en0tlQjztFKNyeGYUP8GqsPNsJnZYh3jq8GT7TJrBWE,14096
|
|
114
|
+
mlrun/datastore/model_provider/openai_provider.py,sha256=FH-5tdUOPcJHJXePO_gB7X0TJnv74e-lPjgp58-OzTA,15565
|
|
114
115
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
115
116
|
mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
|
|
116
117
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
117
118
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
118
|
-
mlrun/db/base.py,sha256=
|
|
119
|
+
mlrun/db/base.py,sha256=8K0KlVfsGce1LgoB7pVOQCmQ2ceBnDz13PJlba1xuSw,32461
|
|
119
120
|
mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
|
|
120
|
-
mlrun/db/httpdb.py,sha256=
|
|
121
|
-
mlrun/db/nopdb.py,sha256=
|
|
121
|
+
mlrun/db/httpdb.py,sha256=QLQDhzALh6NQdpzTSw9H9XfQR9NFvnG1qct9N2dLtsk,239271
|
|
122
|
+
mlrun/db/nopdb.py,sha256=gi6O0ZSxC3PhRBeIjTTL1rIDVHp4GhJLlD1PM1I17Gs,28827
|
|
122
123
|
mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
|
|
123
124
|
mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
|
|
124
125
|
mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
|
|
@@ -218,41 +219,44 @@ mlrun/frameworks/xgboost/__init__.py,sha256=NyFRxu5v5z8oegbJP05PFUmfJL3I3JeN1PYH
|
|
|
218
219
|
mlrun/frameworks/xgboost/mlrun_interface.py,sha256=KINOf0udbY75raTewjEFGNlIRyE0evpoJAWQrSVu17Y,877
|
|
219
220
|
mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsgAkHanD25pU2c,11663
|
|
220
221
|
mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
|
|
222
|
+
mlrun/hub/__init__.py,sha256=50cXcEk8i5G8KQ-nzF6iZDkMbXd-zMNd8nQZ7y7KTVI,620
|
|
223
|
+
mlrun/hub/module.py,sha256=ZVZB8hsd5tEaRLM-mMsnw1yZx6acNrpTyGBl8EJ4nhU,7269
|
|
221
224
|
mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
|
|
222
|
-
mlrun/launcher/base.py,sha256=
|
|
225
|
+
mlrun/launcher/base.py,sha256=IgBE-ZS1ZiGzucg5SElGtO4qOB0cqYQfGtZTcRc2S3Y,17378
|
|
223
226
|
mlrun/launcher/client.py,sha256=cl40ZdF2fU1QbUKdl4Xnucb1u2h-8_dn095qIUyxbuM,6402
|
|
224
227
|
mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
|
|
225
|
-
mlrun/launcher/local.py,sha256=
|
|
228
|
+
mlrun/launcher/local.py,sha256=sBpVxNoVLiPGDam_PFLJUb0vvKAWjMgqNY0A_RiR0hQ,12218
|
|
226
229
|
mlrun/launcher/remote.py,sha256=zFXE52Cq_7EkC8lfNKT0ceIbye0CfFiundF7O1YU4Xw,7810
|
|
227
230
|
mlrun/model_monitoring/__init__.py,sha256=qDQnncjya9XPTlfvGyfWsZWiXc-glGZrrNja-5QmCZk,782
|
|
228
|
-
mlrun/model_monitoring/api.py,sha256=
|
|
229
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
231
|
+
mlrun/model_monitoring/api.py,sha256=yxADX4V7rNPgh2Zh95hIDtWuhkinItay-SfMwm9bqGY,27783
|
|
232
|
+
mlrun/model_monitoring/controller.py,sha256=2XOkOZRB03K9ph6TH-ICspHga-GQOURL0C8-0GTHaTY,43961
|
|
230
233
|
mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
|
|
231
|
-
mlrun/model_monitoring/helpers.py,sha256=
|
|
232
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
233
|
-
mlrun/model_monitoring/writer.py,sha256=
|
|
234
|
-
mlrun/model_monitoring/applications/__init__.py,sha256=
|
|
234
|
+
mlrun/model_monitoring/helpers.py,sha256=50oFqgIc5xFHYPIVgq3M-Gbr7epqAI5NgHmvOeMy52U,24667
|
|
235
|
+
mlrun/model_monitoring/stream_processing.py,sha256=bryYO3D0cC10MAQ-liHxUZ79MrL-VFXCb7KNyj6bl-8,34655
|
|
236
|
+
mlrun/model_monitoring/writer.py,sha256=l2D_5Ms5Wq5jfyQRVJbGBBRTMLjMmIAxwPeHWmrc9Kg,16382
|
|
237
|
+
mlrun/model_monitoring/applications/__init__.py,sha256=BwlmRELlFJf2b2YMyv5kUSHNe8--OyqWhDgRlT8a_8g,779
|
|
235
238
|
mlrun/model_monitoring/applications/_application_steps.py,sha256=t9LDIqQUGE10cyjyhlg0QqN1yVx0apD1HpERYLJfm8U,7409
|
|
236
|
-
mlrun/model_monitoring/applications/base.py,sha256=
|
|
237
|
-
mlrun/model_monitoring/applications/context.py,sha256=
|
|
239
|
+
mlrun/model_monitoring/applications/base.py,sha256=Bd8bD2kJlS4ZaGAkj88o4iwRjXIE76gYdhXqAjXfUCk,51344
|
|
240
|
+
mlrun/model_monitoring/applications/context.py,sha256=oBYtCoMG6jvOowrPPDogZ_IjWaPIZ-Jqj5IdUlSzEzY,17040
|
|
238
241
|
mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
|
|
239
|
-
mlrun/model_monitoring/applications/results.py,sha256=
|
|
242
|
+
mlrun/model_monitoring/applications/results.py,sha256=LfBQOmkpKGvVGNrcj5QiXsRIG2IRgcv_Xqe4QJBmauk,5699
|
|
240
243
|
mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
|
|
241
244
|
mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
|
|
242
245
|
mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
|
|
243
|
-
mlrun/model_monitoring/db/_schedules.py,sha256=
|
|
244
|
-
mlrun/model_monitoring/db/_stats.py,sha256=
|
|
246
|
+
mlrun/model_monitoring/db/_schedules.py,sha256=CJm4ulHFeE2Jxl4TcDMkvDAFfkb4D9Kd7UEzSAe2PNM,11902
|
|
247
|
+
mlrun/model_monitoring/db/_stats.py,sha256=aZZqaOV9eRSp9aDrlxmFOiGtYGHejLTGgp3Ff0NGs1Y,6982
|
|
245
248
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=4S86V_Ot_skE16SLkw0WwsaAUB0ECH6SoJdp-TIu6s8,4645
|
|
246
|
-
mlrun/model_monitoring/db/tsdb/base.py,sha256=
|
|
249
|
+
mlrun/model_monitoring/db/tsdb/base.py,sha256=WLlz2j01OceE6S0JetWIZykZFEhx4tFfl1fnqFWiJx4,33909
|
|
247
250
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
248
251
|
mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
|
|
249
|
-
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=
|
|
252
|
+
mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=TuWuaCZw8sV1gSwN2BPmW8Gzwe3dsRN__KkJB9lum00,13116
|
|
250
253
|
mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Uadj0UvAmln2MxDWod-kAzau1uNlqZh981rPhbUH_5M,2857
|
|
251
254
|
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py,sha256=dtkaHaWKWERPXylEWMECeetwrz3rWl0P43AADcTjlls,9330
|
|
252
|
-
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=
|
|
255
|
+
mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=H-J-ycHf0-53KKGNos0s5FuUTdz5h5Zd7GJMD8T-v9E,54488
|
|
256
|
+
mlrun/model_monitoring/db/tsdb/tdengine/writer_graph_steps.py,sha256=zMof6hUr0dsyor73pnOWkJP62INAvslHU0nUklbT-3w,2053
|
|
253
257
|
mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
|
|
254
|
-
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=
|
|
255
|
-
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=
|
|
258
|
+
mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=sNQFj6qyJx5eSBKRC3gyTc1cfh1l2IkRpPtuZwtzCW0,6844
|
|
259
|
+
mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=a98w3TX42t7mNuEu6RFNQUdKGN8t4BWwDVthN9AKv3k,66579
|
|
256
260
|
mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
257
261
|
mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
|
|
258
262
|
mlrun/package/__init__.py,sha256=v7VDyK9kDOOuDvFo4oiGV2fx-vM1KL7fdN9pGLakhUQ,7008
|
|
@@ -272,24 +276,24 @@ mlrun/package/utils/_pickler.py,sha256=nyEubm6jze22zLuoQjOqode_FkfQMTOKaWLQ0ES2N
|
|
|
272
276
|
mlrun/package/utils/_supported_format.py,sha256=tuHLPyahFitxoQkZ5dC0dymwc5zxCMVW-_yqa6LSgUY,2356
|
|
273
277
|
mlrun/package/utils/log_hint_utils.py,sha256=oFUrzcJ-AHocXSGIiMP6Yq3IYBgUfnrB-ri7EmXMDvg,3695
|
|
274
278
|
mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ipfuscA8MLU,14694
|
|
275
|
-
mlrun/platforms/__init__.py,sha256=
|
|
276
|
-
mlrun/platforms/iguazio.py,sha256=
|
|
279
|
+
mlrun/platforms/__init__.py,sha256=QgtpAt1lpfTKk0mLtesB1P8szK9cpNDPeYzu2qDbPCM,3580
|
|
280
|
+
mlrun/platforms/iguazio.py,sha256=32_o95Ntx9z3ciowt2NcnX7tAiLBwX3VB0mbTQ-KrIQ,13848
|
|
277
281
|
mlrun/projects/__init__.py,sha256=hdCOA6_fp8X4qGGGT7Bj7sPbkM1PayWuaVZL0DkpuZw,1240
|
|
278
|
-
mlrun/projects/operations.py,sha256=
|
|
279
|
-
mlrun/projects/pipelines.py,sha256=
|
|
280
|
-
mlrun/projects/project.py,sha256=
|
|
281
|
-
mlrun/runtimes/__init__.py,sha256=
|
|
282
|
-
mlrun/runtimes/base.py,sha256=
|
|
283
|
-
mlrun/runtimes/daskjob.py,sha256=
|
|
282
|
+
mlrun/projects/operations.py,sha256=Oo7h0TMztI_RVmj0rQxNS1igS_c94HpQZwMIFjiWt0E,21038
|
|
283
|
+
mlrun/projects/pipelines.py,sha256=ZOfuIEHOXfuc4qAkuWvbWhCjP6kqpLkv-yBBaY9RXhg,52219
|
|
284
|
+
mlrun/projects/project.py,sha256=asDcSEVz26DhaeSO8ZK-r-zGHzOfvAhC6sSdk4HJqsY,258178
|
|
285
|
+
mlrun/runtimes/__init__.py,sha256=NSIk1xlUduSY3ZZ2tLmXegw1Z1im5_KjtbmsL874Z6s,9829
|
|
286
|
+
mlrun/runtimes/base.py,sha256=CFiKLDXsRzjOEqnGOUjB-1dnKjBkNdHAVAw4GOloyjQ,38914
|
|
287
|
+
mlrun/runtimes/daskjob.py,sha256=IN6gKKrmCIjWooj5FgFm-pAb2i7ra1ERRzClfu_rYGI,20102
|
|
284
288
|
mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
|
|
285
289
|
mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
|
|
286
290
|
mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
|
|
287
291
|
mlrun/runtimes/kubejob.py,sha256=wadCzmSgjv9OU_Ax8CQNHfXLo0v-ev9ZGHUFGcNc9Qw,8577
|
|
288
|
-
mlrun/runtimes/local.py,sha256=
|
|
289
|
-
mlrun/runtimes/mounts.py,sha256=
|
|
290
|
-
mlrun/runtimes/pod.py,sha256=
|
|
292
|
+
mlrun/runtimes/local.py,sha256=sbIFQdU-GBfAwESJGU06hiqXUiwjP6IVvbCieIPGQn4,22311
|
|
293
|
+
mlrun/runtimes/mounts.py,sha256=fc3iYXjlnJZbm0PcCTrGBFQJ548WtFGnepK-pc4wSAM,19441
|
|
294
|
+
mlrun/runtimes/pod.py,sha256=HIEG2p5laAjDPlOFS9jcw3lugzddRDuvG0124MPalq4,59891
|
|
291
295
|
mlrun/runtimes/remotesparkjob.py,sha256=BalAea66GleaKeoYTw6ZL1Qr4wf1yRxfgk1-Fkc9Pqg,7864
|
|
292
|
-
mlrun/runtimes/utils.py,sha256=
|
|
296
|
+
mlrun/runtimes/utils.py,sha256=b0T5Qm0WmbHk_I4d14ikzhhjymjIVedaifBi-ymKwOc,17733
|
|
293
297
|
mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
|
|
294
298
|
mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=ufjcLKA5E6FSDF5CXm5l8uP_mUSFppwr5krLHln1kAU,2243
|
|
295
299
|
mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=ceX0umkNMHvxuXZic4QulWOfJyhPKHVo3T-oPhKTO8Y,12874
|
|
@@ -297,27 +301,28 @@ mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=jD1T36pRmSFRGgJVGRzcc
|
|
|
297
301
|
mlrun/runtimes/mpijob/__init__.py,sha256=6sUPQRFwigi4mqjDVZmRE-qgaLw2ILY5NbneVUuMKto,947
|
|
298
302
|
mlrun/runtimes/mpijob/abstract.py,sha256=QjAG4OZ6JEQ58w5-qYNd6hUGwvaW8ynLtlr9jNfAHIk,9408
|
|
299
303
|
mlrun/runtimes/mpijob/v1.py,sha256=zSlRkiWHz4B3yht66sVf4mlfDs8YT9EnP9DfBLn5VNs,3372
|
|
300
|
-
mlrun/runtimes/nuclio/__init__.py,sha256=
|
|
304
|
+
mlrun/runtimes/nuclio/__init__.py,sha256=osOVMN9paIOuUoOTizmkxMb_OXRP-SlPwXHJSSYK_wk,834
|
|
301
305
|
mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
|
|
302
|
-
mlrun/runtimes/nuclio/function.py,sha256=
|
|
306
|
+
mlrun/runtimes/nuclio/function.py,sha256=yL6PVyddDFEhXxY93g8YiywBERi-oqlpEw8IE3BVGmQ,56006
|
|
303
307
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
304
|
-
mlrun/runtimes/nuclio/serving.py,sha256=
|
|
308
|
+
mlrun/runtimes/nuclio/serving.py,sha256=Cs_Wq6RyTcEuLa45wlbPsovRlTxHr6jc98_gTx-B7z4,39139
|
|
305
309
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
306
|
-
mlrun/runtimes/nuclio/application/application.py,sha256=
|
|
310
|
+
mlrun/runtimes/nuclio/application/application.py,sha256=PVeFau_3geo7pndK99mID_9C9ecJcglUFHPQ1rCAWFA,33994
|
|
307
311
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
|
|
308
312
|
mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
|
|
309
313
|
mlrun/runtimes/sparkjob/spark3job.py,sha256=3dW7RG2T58F2dsUw0TsRvE3SIFcekx3CerLdcaG1f50,41458
|
|
310
314
|
mlrun/serving/__init__.py,sha256=nriJAcVn5aatwU03T7SsE6ngJEGTxr3wIGt4WuvCCzY,1392
|
|
311
315
|
mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
|
|
312
|
-
mlrun/serving/remote.py,sha256=
|
|
313
|
-
mlrun/serving/routers.py,sha256=
|
|
314
|
-
mlrun/serving/server.py,sha256=
|
|
316
|
+
mlrun/serving/remote.py,sha256=p29CBtKwbW_l8BzmNg3Uy__0eMf7_OubTMzga_S3EOA,22089
|
|
317
|
+
mlrun/serving/routers.py,sha256=pu5jlSLI4Ml68YP_FMFDhhwPfLcT6lRu5yL5QDgXPHQ,52889
|
|
318
|
+
mlrun/serving/server.py,sha256=UIQON9ytG_4VUa4cMWZ8AxxBzGjBrhFhkC-FrvAHa_o,42593
|
|
315
319
|
mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
|
|
316
|
-
mlrun/serving/states.py,sha256=
|
|
317
|
-
mlrun/serving/
|
|
320
|
+
mlrun/serving/states.py,sha256=jjkh1cOm66dIpBdRg4ZV8tcCOYEXSu0eJr64pewT78M,140919
|
|
321
|
+
mlrun/serving/steps.py,sha256=zbMgJnu-m4n7vhFRgZkCMMifIsCya-TzAj3Gjc-Fgnc,2193
|
|
322
|
+
mlrun/serving/system_steps.py,sha256=BDCJn73h7cUT5AoSSm25Fjg4WwzcEpMQp-ZjMw9ogEc,20025
|
|
318
323
|
mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
|
|
319
324
|
mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
|
|
320
|
-
mlrun/serving/v2_serving.py,sha256=
|
|
325
|
+
mlrun/serving/v2_serving.py,sha256=FbN5QAurWL_KoKMUgRLV7b227PpnvntY5tPNE36J42E,25270
|
|
321
326
|
mlrun/track/__init__.py,sha256=yVXbT52fXvGKRlc_ByHqIVt7-9L3DRE634RSeQwgXtU,665
|
|
322
327
|
mlrun/track/tracker.py,sha256=CyTU6Qd3_5GGEJ_hpocOj71wvV65EuFYUjaYEUKAL6Q,3575
|
|
323
328
|
mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
|
|
@@ -328,30 +333,30 @@ mlrun/utils/async_http.py,sha256=8Olx8TNNeXB07nEGwlqhEgFgnFAD71vBU_bqaA9JW-w,122
|
|
|
328
333
|
mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
|
|
329
334
|
mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
|
|
330
335
|
mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
|
|
331
|
-
mlrun/utils/helpers.py,sha256=
|
|
336
|
+
mlrun/utils/helpers.py,sha256=95nTQRqqsWeDzt19AEvz2pAkbEOfamvWg1es4cC6_us,87120
|
|
332
337
|
mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
|
|
333
|
-
mlrun/utils/logger.py,sha256=
|
|
338
|
+
mlrun/utils/logger.py,sha256=uaCgI_ezzaXf7nJDCy-1Nrjds8vSXqDbzmjmb3IyCQo,14864
|
|
334
339
|
mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
|
|
335
340
|
mlrun/utils/retryer.py,sha256=SHddxyNdUjIyvNJ3idTDyBzXARihCSuo3zWlZj6fqB0,7852
|
|
336
341
|
mlrun/utils/singleton.py,sha256=fNOfAUtha6OPCV_M1umWnGD0iabnnRwBke9otIspv30,868
|
|
337
342
|
mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
|
|
338
343
|
mlrun/utils/vault.py,sha256=-36b_PG0Fk9coPJiX6F704NF1nmKDdCH9Bg17wep88w,10446
|
|
339
344
|
mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
|
|
340
|
-
mlrun/utils/notifications/notification_pusher.py,sha256=
|
|
345
|
+
mlrun/utils/notifications/notification_pusher.py,sha256=tspup8ZNUggLxx4No2da9EY7GwHsihY33A8oN_tHKpk,27356
|
|
341
346
|
mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
|
|
342
|
-
mlrun/utils/notifications/notification/base.py,sha256
|
|
347
|
+
mlrun/utils/notifications/notification/base.py,sha256=xrKdA5-a6eGWXogmSAtgJS0cKqb6znh4M-EpuYhziX0,5967
|
|
343
348
|
mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
|
|
344
|
-
mlrun/utils/notifications/notification/git.py,sha256=
|
|
349
|
+
mlrun/utils/notifications/notification/git.py,sha256=JKAiEfs5qOMn0IeU__AzdQ4u6GctMzu1xMauNJ4wdUw,6311
|
|
345
350
|
mlrun/utils/notifications/notification/ipython.py,sha256=9uZvI1uOLFaNuAsfJPXmL3l6dOzFoWdBK5GYNYFAfks,2282
|
|
346
351
|
mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAqp1vij7C6aRJ9h2mgs,6012
|
|
347
|
-
mlrun/utils/notifications/notification/slack.py,sha256=
|
|
348
|
-
mlrun/utils/notifications/notification/webhook.py,sha256=
|
|
352
|
+
mlrun/utils/notifications/notification/slack.py,sha256=wSu_7W0EnGLBNwIgWCYEeTP8j9SPAMPDBnfUcPnVZYA,7299
|
|
353
|
+
mlrun/utils/notifications/notification/webhook.py,sha256=FM5-LQAKAVJKp37MRzR3SsejalcnpM6r_9Oe7znxZEA,5313
|
|
349
354
|
mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
|
|
350
|
-
mlrun/utils/version/version.json,sha256=
|
|
355
|
+
mlrun/utils/version/version.json,sha256=fAI-FagIXnD82p5G3ICb-ZrXbFD8-CH5raNMjQt3Z2s,90
|
|
351
356
|
mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
|
|
352
|
-
mlrun-1.10.
|
|
353
|
-
mlrun-1.10.
|
|
354
|
-
mlrun-1.10.
|
|
355
|
-
mlrun-1.10.
|
|
356
|
-
mlrun-1.10.
|
|
357
|
-
mlrun-1.10.
|
|
357
|
+
mlrun-1.10.0rc42.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
|
|
358
|
+
mlrun-1.10.0rc42.dist-info/METADATA,sha256=vFTpws3Dl-ChZhEp4yb3BDw4LFCZd_BV7yvAJG_nKjA,26104
|
|
359
|
+
mlrun-1.10.0rc42.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
360
|
+
mlrun-1.10.0rc42.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
361
|
+
mlrun-1.10.0rc42.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
362
|
+
mlrun-1.10.0rc42.dist-info/RECORD,,
|