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.

Files changed (98) hide show
  1. mlrun/__init__.py +22 -2
  2. mlrun/artifacts/document.py +6 -1
  3. mlrun/artifacts/llm_prompt.py +21 -15
  4. mlrun/artifacts/model.py +3 -3
  5. mlrun/common/constants.py +9 -0
  6. mlrun/common/formatters/artifact.py +1 -0
  7. mlrun/common/model_monitoring/helpers.py +86 -0
  8. mlrun/common/schemas/__init__.py +2 -0
  9. mlrun/common/schemas/auth.py +2 -0
  10. mlrun/common/schemas/function.py +10 -0
  11. mlrun/common/schemas/hub.py +30 -18
  12. mlrun/common/schemas/model_monitoring/__init__.py +2 -0
  13. mlrun/common/schemas/model_monitoring/constants.py +30 -6
  14. mlrun/common/schemas/model_monitoring/functions.py +13 -4
  15. mlrun/common/schemas/model_monitoring/model_endpoints.py +11 -0
  16. mlrun/common/schemas/pipeline.py +1 -1
  17. mlrun/common/schemas/serving.py +3 -0
  18. mlrun/common/schemas/workflow.py +1 -0
  19. mlrun/common/secrets.py +22 -1
  20. mlrun/config.py +32 -10
  21. mlrun/datastore/__init__.py +11 -3
  22. mlrun/datastore/azure_blob.py +162 -47
  23. mlrun/datastore/datastore.py +9 -4
  24. mlrun/datastore/datastore_profile.py +61 -5
  25. mlrun/datastore/model_provider/huggingface_provider.py +363 -0
  26. mlrun/datastore/model_provider/mock_model_provider.py +87 -0
  27. mlrun/datastore/model_provider/model_provider.py +211 -74
  28. mlrun/datastore/model_provider/openai_provider.py +243 -71
  29. mlrun/datastore/s3.py +24 -2
  30. mlrun/datastore/storeytargets.py +2 -3
  31. mlrun/datastore/utils.py +15 -3
  32. mlrun/db/base.py +27 -19
  33. mlrun/db/httpdb.py +57 -48
  34. mlrun/db/nopdb.py +25 -10
  35. mlrun/execution.py +55 -13
  36. mlrun/hub/__init__.py +15 -0
  37. mlrun/hub/module.py +181 -0
  38. mlrun/k8s_utils.py +105 -16
  39. mlrun/launcher/base.py +13 -6
  40. mlrun/launcher/local.py +2 -0
  41. mlrun/model.py +9 -3
  42. mlrun/model_monitoring/api.py +66 -27
  43. mlrun/model_monitoring/applications/__init__.py +1 -1
  44. mlrun/model_monitoring/applications/base.py +372 -136
  45. mlrun/model_monitoring/applications/context.py +2 -4
  46. mlrun/model_monitoring/applications/results.py +4 -7
  47. mlrun/model_monitoring/controller.py +239 -101
  48. mlrun/model_monitoring/db/_schedules.py +36 -13
  49. mlrun/model_monitoring/db/_stats.py +4 -3
  50. mlrun/model_monitoring/db/tsdb/base.py +29 -9
  51. mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +4 -5
  52. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +154 -50
  53. mlrun/model_monitoring/db/tsdb/tdengine/writer_graph_steps.py +51 -0
  54. mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +17 -4
  55. mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +245 -51
  56. mlrun/model_monitoring/helpers.py +28 -5
  57. mlrun/model_monitoring/stream_processing.py +45 -14
  58. mlrun/model_monitoring/writer.py +220 -1
  59. mlrun/platforms/__init__.py +3 -2
  60. mlrun/platforms/iguazio.py +7 -3
  61. mlrun/projects/operations.py +6 -1
  62. mlrun/projects/pipelines.py +2 -2
  63. mlrun/projects/project.py +128 -45
  64. mlrun/run.py +94 -17
  65. mlrun/runtimes/__init__.py +18 -0
  66. mlrun/runtimes/base.py +14 -6
  67. mlrun/runtimes/daskjob.py +1 -0
  68. mlrun/runtimes/local.py +5 -2
  69. mlrun/runtimes/mounts.py +20 -2
  70. mlrun/runtimes/nuclio/__init__.py +1 -0
  71. mlrun/runtimes/nuclio/application/application.py +147 -17
  72. mlrun/runtimes/nuclio/function.py +70 -27
  73. mlrun/runtimes/nuclio/serving.py +85 -4
  74. mlrun/runtimes/pod.py +213 -21
  75. mlrun/runtimes/utils.py +49 -9
  76. mlrun/secrets.py +54 -13
  77. mlrun/serving/remote.py +79 -6
  78. mlrun/serving/routers.py +23 -41
  79. mlrun/serving/server.py +211 -40
  80. mlrun/serving/states.py +536 -156
  81. mlrun/serving/steps.py +62 -0
  82. mlrun/serving/system_steps.py +136 -81
  83. mlrun/serving/v2_serving.py +9 -10
  84. mlrun/utils/helpers.py +212 -82
  85. mlrun/utils/logger.py +3 -1
  86. mlrun/utils/notifications/notification/base.py +18 -0
  87. mlrun/utils/notifications/notification/git.py +2 -4
  88. mlrun/utils/notifications/notification/slack.py +2 -4
  89. mlrun/utils/notifications/notification/webhook.py +2 -5
  90. mlrun/utils/notifications/notification_pusher.py +1 -1
  91. mlrun/utils/version/version.json +2 -2
  92. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/METADATA +44 -45
  93. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/RECORD +97 -92
  94. mlrun/api/schemas/__init__.py +0 -259
  95. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/WHEEL +0 -0
  96. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/entry_points.txt +0 -0
  97. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.0rc42.dist-info}/licenses/LICENSE +0 -0
  98. {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.0rc16
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<1.27,>=1.26.9
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<2024.7,>=2023.9.2
45
+ Requires-Dist: fsspec<=2025.7.0,>=2025.5.1
46
46
  Requires-Dist: v3iofs~=0.1.17
47
- Requires-Dist: storey~=1.10.8
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.8
55
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.7
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<2024.7,>=2023.9.2; extra == "s3"
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==2023.9.0; extra == "azure-blob-storage"
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<2024.7,>=2023.9.2; extra == "google-cloud"
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==2023.12.0; extra == "alibaba-oss"
99
- Requires-Dist: oss2==2.18.1; extra == "alibaba-oss"
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]>=0.5.0; python_version < "3.11" and extra == "kfp18"
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.115.6; extra == "api"
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.7; extra == "api"
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==2023.9.0; extra == "all"
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: distributed~=2024.12.1; python_version >= "3.11" and extra == "all"
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.1; extra == "all"
150
- Requires-Dist: ossfs==2023.12.0; extra == "all"
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<2024.7,>=2023.9.2; extra == "all"
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==2023.9.0; extra == "complete"
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: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete"
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.1; extra == "complete"
181
- Requires-Dist: ossfs==2023.12.0; extra == "complete"
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<2024.7,>=2023.9.2; extra == "complete"
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==2023.9.0; extra == "complete-api"
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: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
206
- Requires-Dist: fastapi~=0.115.6; extra == "complete-api"
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.7; extra == "complete-api"
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.1; extra == "complete-api"
223
- Requires-Dist: ossfs==2023.12.0; extra == "complete-api"
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<2024.7,>=2023.9.2; extra == "complete-api"
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/genai_01_basic_tutorial.html)
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/genai_01_basic_tutorial.html), [Model monitoring using LLM](https://docs.mlrun.org/en/stable/tutorials/genai-02-monitoring-llm.html)
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=Y_AFhZV1hEx4vfiO-cyjup0aLGcp6R0SeL75GqLFQrc,7514
1
+ mlrun/__init__.py,sha256=acM2jRv7RCvBROwucuC01Rf_HdvV3xUPtJlQtX_01MY,8076
2
2
  mlrun/__main__.py,sha256=wQNaxW7QsqFBtWffnPkw-497fnpsrQzUnscBQQAP_UM,48364
3
- mlrun/config.py,sha256=_-WgQPZeSbvd51ndG9qFAaV6TXdDaEgZa9W9B0Imvq8,72399
3
+ mlrun/config.py,sha256=7t7F5jsPI1rO78-VzZv3q6QvzTIV6CZPZEQAJTmKwtM,73477
4
4
  mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
5
- mlrun/execution.py,sha256=dJ4PFwg5AlDHbCL2Q9dVDjWA_i64UTq2qBiF8kTU9tw,56922
5
+ mlrun/execution.py,sha256=Ozu8SjO-nQ6l5vHwqrTQjmP6koMpUqNQpp6qn6jvhVE,58802
6
6
  mlrun/features.py,sha256=jMEXo6NB36A6iaxNEJWzdtYwUmglYD90OIKTIEeWhE8,15841
7
- mlrun/k8s_utils.py,sha256=mMnGyouHoJC93ZD2KGf9neJM1pD7mR9IXLnHOEwYVTQ,21469
7
+ mlrun/k8s_utils.py,sha256=zIacVyvsXrXVO-DdxAoGQOGEDWOGJEFJzYPhPVnn3z8,24548
8
8
  mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
9
- mlrun/model.py,sha256=wHtM8LylSOEFk6Hxl95CVm8DOPhofjsANYdIvKHH6dw,88956
9
+ mlrun/model.py,sha256=flea-6ktoUqHp5HtMV8HZVotUl6Mm2kIcPHtVNLHXKk,89287
10
10
  mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
11
- mlrun/run.py,sha256=_ban8NoNWfQHps3QIVyWh_Hn2S6usNrFBTUMObaeueo,46904
12
- mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
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=p5HsWdmIIJ0NahS7y3EEQN2tfHtUrUmUG-8BEEyi_Jc,17373
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=mwImD34RAXp2lC5YEUfjD_iwuQr705ZjOHbDtMh4JVI,9555
20
+ mlrun/artifacts/llm_prompt.py,sha256=pshXzYXPDBAe6C0vecn9MyRNyPdxrah3c80oZUKkYWA,9840
22
21
  mlrun/artifacts/manager.py,sha256=_cDNCS7wwmFIsucJ2uOgHxZQECmIGb8Wye64b6oLgKU,16642
23
- mlrun/artifacts/model.py,sha256=8EVaD70SOkTohQIWqkDk0MEwskdofxs3wJTgspa2sho,25615
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=bkWWccWZJHB08mkSrrnWuCFXZWdNKf4Q9SwuLowQrVM,4059
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=8g9xtIw-9DGcwiZRT62a5ozSQM-aYo8yK5Ghey9WM0g,5179
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=NT2RPfReUGWVQ-Rhv1zexgXfLuKI5FvtneJDhihZK5g,1462
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=AkuHz4u318MEP4ebxmNWlNXh6HiNLrI5oF7QvJiJkYc,2707
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=Mx_N6UtivKP-FQeIvVu6n0unkT7w461lahyNJbaOL_I,5468
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=t8mEHc3MXNsAeKuv3khDwxitrwW0s7kbBSuhFKXXH7Y,6879
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=HMBZFf46foDWnycciG1a4HASBbmnRDSlDRsREfa5Tog,4881
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=zYupE3yBKlVEAhHNb4rn9g5T63sekRUnI4Ql3v4a_c4,4118
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=lzaNHudyOiSMpNsoKoNMZhJJa2R4wdA4TR8A98L_yIo,996
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=-3U45YLtmVWMZrx4R8kaPgFGoJ4JmD7RE3nydpYNTz8,1359
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=GS6RNp66v7iV2flBMXZs4R5mQr15KJx6PMXFlAjyOmc,2496
77
- mlrun/common/schemas/model_monitoring/__init__.py,sha256=lQkWiDZagEmZd7pNE_-ySVJEzTjEzH-JS6OKZPmJiVk,1907
78
- mlrun/common/schemas/model_monitoring/constants.py,sha256=yjTaSGiRs0zYIE20QSuJuMNnS5iuJpnV1wBiq7leVpg,13238
79
- mlrun/common/schemas/model_monitoring/functions.py,sha256=GpfSGp05D87wEKemECD3USL368pvnAM2WfS-nef5qOg,2210
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=aCrVqgoJsUEwvDJ84YFabDSy78CHcVBV3b0RdWj4JUw,13250
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=UKGHkUfj5A9dqTiOeW4UScvwv0vq91NS_xs3-_QA7Jk,5869
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=3LG7tOTwT97ZFBmyq-sfAIe5_SkuFgisRQtipv4kKUw,12779
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=IbAUi2GZesWcmqPimURZD9iP5GpCB8se7GYA9afkAjA,13236
92
- mlrun/datastore/datastore_profile.py,sha256=fRR01v9mqC40UML49-6rdx-28b2FaRLj7iZeWJgSiT0,22842
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=EOLBQ0-_whkkN00rURATpOWuRzJavIdHdNfet9-RGBw,9709
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=TvHbY3XS0qOg8ImXW1ET61UnjUPcYJbfSGAga3vgC-o,6492
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=7qhGMRos-IgV2o-dywWbMvCGQDlbRs_CZcwfvTxZTvw,11798
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/model_provider.py,sha256=eDkTdwFsVxSFzTkYUwyXfl34d5IIulcQrLRjxWM2BFc,7911
113
- mlrun/datastore/model_provider/openai_provider.py,sha256=KmuE9i3EbeOc7QACvFLwnU2n3i_PmIw429BaZC0Y9Zw,8463
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=afej-ZtJiBBv0MtZx2B1MH1ZRXno4s94aL_Qs5u-WCA,32044
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=MiXRygol2qMIMVLDOB89pouR8oICDaR510rVpZtPc4w,239160
121
- mlrun/db/nopdb.py,sha256=kRWKEEI9LUskI3mp2ofTdAWVLov-99-nSMdaqhi3XT8,28194
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=6T17geeplFgYL2Suu4xo5crN_s9JETtr1m0ael8dIYk,17225
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=3gv-IQYoIChSmRaZ0vLUh0Tu26oLMCx9GbBYh4fWygQ,12161
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=lAsUp-gzqw8D1cpHVGA2_nPMYn5R4jdxk9UaGOiQ8fE,25945
229
- mlrun/model_monitoring/controller.py,sha256=CQxK9Sq5k8XonvVBQnSimakpTwMMAyqT5mOaG534MaM,37660
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=0xhIYKzhaBrgyjLiA_ekCZsXzi3GBXpLyG40Bhj-PTY,23596
232
- mlrun/model_monitoring/stream_processing.py,sha256=Gu3TQzYoNjbreZYI73-F49QpYrod9RZOyGSgininBsA,33373
233
- mlrun/model_monitoring/writer.py,sha256=rGRFzSOkqZWvD3Y6sVk2H1Gepfnkzkp9ce00PsApTLo,8288
234
- mlrun/model_monitoring/applications/__init__.py,sha256=MaH_n4GiqqQvSkntM5yQ7_FCANtM_IfgK-IJTdo4G_E,757
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=nkJK0X3-7xEjcWGjtfLmvMomi5F14mmWs_M0_L8op5o,40547
237
- mlrun/model_monitoring/applications/context.py,sha256=fAGFNCyNhSnVJPSIeJxv-XmEL2JhDmjK5Ouog9qyvdc,17035
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=_qmj6TWT0SR2bi7gUyRKBU418eGgGoLW2_hTJ7S-ock,5782
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=bTLwP9yxLuXu1BaJdp3al1PT5Bx_yj-2cKwBrrwbL8g,11010
244
- mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
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=vOoAlKxBsVfHBv6XCLOMoVRV6CQMfngD-3UlTNcl_yw,33012
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=hra2hhQ31fMlDNQlzjFfdfYT11vMTqpqOH1P0qGjdlk,13008
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=JMzv444vRzw6Vmk5Hlq06B5Hzb0Kur0aRDYGaV2F2h8,49727
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=_-zo9relCDtjGgievxAcAP9gVN9nDWs8BzGtFwTjb9M,6284
255
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=0lCR277nlU3X2mLMe_t2yaS9XCtioqdOzW2-OBhbQUc,58688
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=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
276
- mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
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=Rc__P5ucNAY2G-lHc2LrnZs15PUbNFt8-NqNNT2Bjpk,20623
279
- mlrun/projects/pipelines.py,sha256=nGDzBABEOqoe9sWbax4SfF8CVLgrvK0NLWBadzEthVE,52219
280
- mlrun/projects/project.py,sha256=B2KCd5bAGMeHOGhEdVr5NKtTOigL6O-A-Bbs2FLvokY,253884
281
- mlrun/runtimes/__init__.py,sha256=8cqrYKy1a0_87XG7V_p96untQ4t8RocadM4LVEEN1JM,9029
282
- mlrun/runtimes/base.py,sha256=FVEooeQMpwxIK2iW1R0FNbC5P1sZ_efKtJcsdNSYNmc,38266
283
- mlrun/runtimes/daskjob.py,sha256=kR5sDQtXtXY_VGn5Y3mapjEEB5P6Lj30pSrPe1DqsAg,20077
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=R72VdrXnFdAhLsKJiWPOcfsi4jS-W5E1FnkT2Xllt8M,22150
289
- mlrun/runtimes/mounts.py,sha256=2dkoktm3TXHe4XHmRhvC0UfvWzq2vy_13MeaW7wgyPo,18735
290
- mlrun/runtimes/pod.py,sha256=AlA8B8OhyhZyP-C8Gvik_RxoVZsGSXgA7kZado82AQo,52253
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=ofHEOPiMVpQmgxnDhzpHoXBIS97q7QVHiN-UxVSMZkQ,16158
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=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
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=07_ypKlvWRb4ckpc_xjKjGR_7EnsRnJV_w80DvEsJcU,54523
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=OadofTgla-1HoupdEbiOdgNbqE6LmFcCVOaffBjAByI,35383
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=v8ph54xYi8oAZXM-zbaD6KqG2r2Y6BNyBqlfs-1cPy0,29069
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=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
313
- mlrun/serving/routers.py,sha256=SmBOlHn7rT2gWTa-W8f16UB0UthgIFc4D1cPOZAA9ss,54003
314
- mlrun/serving/server.py,sha256=aFhPlIauww1e2OleZdrQxRiqMmEsoHEdTSujnAZeNe4,35202
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=ZKhlPRlyvbRaGqNueR74IP3q7n8_k-4lYzq0QhPp88Q,124767
317
- mlrun/serving/system_steps.py,sha256=G-vFdFXGDMZECasT831GxAayitCORNfpxPPRgK5a86w,17960
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=257LVOvWxV0KjeY0-Kxro6YgKmPu2QzNne2IORlXi5E,25434
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=ympa9GWzF_NMNemKSas29s8I0-2seHGhfErFT1b-6tY,82419
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=RG0m1rx6gfkJ-2C1r_p41MMpPiaDYqaYM2lYHDlNZEU,14767
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=82UjmO4CI6ujt8_P04ftY3oBd4hUiYLxlMckJBuqs2U,27358
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=-9e3XqUixrWwImnTGrIL4enJRSIUP9gMrJVxwaLqeXc,5403
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=t2lqRrPRBO4awf_uhxJreH9CpcbYSH8T3CvHtwspHkE,6306
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=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
348
- mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
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=yzjgOoSOXuxZFECc2IfKerszx07aKIlhF7wENYuFF_E,90
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.0rc16.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
353
- mlrun-1.10.0rc16.dist-info/METADATA,sha256=U1uo_EFf7k8D102Lq0z_EQ1K2AOCjwU5iNQuLVvCVjM,26195
354
- mlrun-1.10.0rc16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
355
- mlrun-1.10.0rc16.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
356
- mlrun-1.10.0rc16.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
357
- mlrun-1.10.0rc16.dist-info/RECORD,,
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,,