mlrun 1.10.0rc40__py3-none-any.whl → 1.11.0rc16__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 +3 -2
- mlrun/__main__.py +0 -4
- mlrun/artifacts/dataset.py +2 -2
- mlrun/artifacts/plots.py +1 -1
- mlrun/{model_monitoring/db/tsdb/tdengine → auth}/__init__.py +2 -3
- mlrun/auth/nuclio.py +89 -0
- mlrun/auth/providers.py +429 -0
- mlrun/auth/utils.py +415 -0
- mlrun/common/constants.py +7 -0
- mlrun/common/model_monitoring/helpers.py +41 -4
- mlrun/common/runtimes/constants.py +28 -0
- mlrun/common/schemas/__init__.py +13 -3
- mlrun/common/schemas/alert.py +2 -2
- mlrun/common/schemas/api_gateway.py +3 -0
- mlrun/common/schemas/auth.py +10 -10
- mlrun/common/schemas/client_spec.py +4 -0
- mlrun/common/schemas/constants.py +25 -0
- mlrun/common/schemas/frontend_spec.py +1 -8
- mlrun/common/schemas/function.py +24 -0
- mlrun/common/schemas/hub.py +3 -2
- mlrun/common/schemas/model_monitoring/__init__.py +1 -1
- mlrun/common/schemas/model_monitoring/constants.py +2 -2
- mlrun/common/schemas/secret.py +17 -2
- mlrun/common/secrets.py +95 -1
- mlrun/common/types.py +10 -10
- mlrun/config.py +53 -15
- mlrun/data_types/infer.py +2 -2
- mlrun/datastore/__init__.py +2 -3
- mlrun/datastore/base.py +274 -10
- mlrun/datastore/datastore.py +1 -1
- mlrun/datastore/datastore_profile.py +49 -17
- mlrun/datastore/model_provider/huggingface_provider.py +6 -2
- mlrun/datastore/model_provider/model_provider.py +2 -2
- mlrun/datastore/model_provider/openai_provider.py +2 -2
- mlrun/datastore/s3.py +15 -16
- mlrun/datastore/sources.py +1 -1
- mlrun/datastore/store_resources.py +4 -4
- mlrun/datastore/storeytargets.py +16 -10
- mlrun/datastore/targets.py +1 -1
- mlrun/datastore/utils.py +16 -3
- mlrun/datastore/v3io.py +1 -1
- mlrun/db/base.py +36 -12
- mlrun/db/httpdb.py +316 -101
- mlrun/db/nopdb.py +29 -11
- mlrun/errors.py +4 -2
- mlrun/execution.py +11 -12
- mlrun/feature_store/api.py +1 -1
- mlrun/feature_store/common.py +1 -1
- mlrun/feature_store/feature_vector_utils.py +1 -1
- mlrun/feature_store/steps.py +8 -6
- mlrun/frameworks/_common/utils.py +3 -3
- mlrun/frameworks/_dl_common/loggers/logger.py +1 -1
- mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +2 -1
- mlrun/frameworks/_ml_common/loggers/mlrun_logger.py +1 -1
- mlrun/frameworks/_ml_common/utils.py +2 -1
- mlrun/frameworks/auto_mlrun/auto_mlrun.py +4 -3
- mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py +2 -1
- mlrun/frameworks/onnx/dataset.py +2 -1
- mlrun/frameworks/onnx/mlrun_interface.py +2 -1
- mlrun/frameworks/pytorch/callbacks/logging_callback.py +5 -4
- mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py +2 -1
- mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py +2 -1
- mlrun/frameworks/pytorch/utils.py +2 -1
- mlrun/frameworks/sklearn/metric.py +2 -1
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py +5 -4
- mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py +2 -1
- mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py +2 -1
- mlrun/hub/__init__.py +37 -0
- mlrun/hub/base.py +142 -0
- mlrun/hub/module.py +67 -76
- mlrun/hub/step.py +113 -0
- mlrun/launcher/base.py +2 -1
- mlrun/launcher/local.py +2 -1
- mlrun/model.py +12 -2
- mlrun/model_monitoring/__init__.py +0 -1
- mlrun/model_monitoring/api.py +2 -2
- mlrun/model_monitoring/applications/base.py +20 -6
- mlrun/model_monitoring/applications/context.py +1 -0
- mlrun/model_monitoring/controller.py +7 -17
- mlrun/model_monitoring/db/_schedules.py +2 -16
- mlrun/model_monitoring/db/_stats.py +2 -13
- mlrun/model_monitoring/db/tsdb/__init__.py +9 -7
- mlrun/model_monitoring/db/tsdb/base.py +2 -4
- mlrun/model_monitoring/db/tsdb/preaggregate.py +234 -0
- mlrun/model_monitoring/db/tsdb/stream_graph_steps.py +63 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_metrics_queries.py +414 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_predictions_queries.py +376 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_results_queries.py +590 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_connection.py +434 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_connector.py +541 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_operations.py +808 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_schema.py +502 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_stream.py +163 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_stream_graph_steps.py +60 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/utils/timescaledb_dataframe_processor.py +141 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/utils/timescaledb_query_builder.py +585 -0
- mlrun/model_monitoring/db/tsdb/timescaledb/writer_graph_steps.py +73 -0
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +4 -6
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +147 -79
- mlrun/model_monitoring/features_drift_table.py +2 -1
- mlrun/model_monitoring/helpers.py +2 -1
- mlrun/model_monitoring/stream_processing.py +18 -16
- mlrun/model_monitoring/writer.py +4 -3
- mlrun/package/__init__.py +2 -1
- mlrun/platforms/__init__.py +0 -44
- mlrun/platforms/iguazio.py +1 -1
- mlrun/projects/operations.py +11 -10
- mlrun/projects/project.py +81 -82
- mlrun/run.py +4 -7
- mlrun/runtimes/__init__.py +2 -204
- mlrun/runtimes/base.py +89 -21
- mlrun/runtimes/constants.py +225 -0
- mlrun/runtimes/daskjob.py +4 -2
- mlrun/runtimes/databricks_job/databricks_runtime.py +2 -1
- mlrun/runtimes/mounts.py +5 -0
- mlrun/runtimes/nuclio/__init__.py +12 -8
- mlrun/runtimes/nuclio/api_gateway.py +36 -6
- mlrun/runtimes/nuclio/application/application.py +200 -32
- mlrun/runtimes/nuclio/function.py +154 -49
- mlrun/runtimes/nuclio/serving.py +55 -42
- mlrun/runtimes/pod.py +59 -10
- mlrun/secrets.py +46 -2
- mlrun/serving/__init__.py +2 -0
- mlrun/serving/remote.py +5 -5
- mlrun/serving/routers.py +3 -3
- mlrun/serving/server.py +46 -43
- mlrun/serving/serving_wrapper.py +6 -2
- mlrun/serving/states.py +554 -207
- mlrun/serving/steps.py +1 -1
- mlrun/serving/system_steps.py +42 -33
- mlrun/track/trackers/mlflow_tracker.py +29 -31
- mlrun/utils/helpers.py +89 -16
- mlrun/utils/http.py +9 -2
- mlrun/utils/notifications/notification/git.py +1 -1
- mlrun/utils/notifications/notification/mail.py +39 -16
- mlrun/utils/notifications/notification_pusher.py +2 -2
- mlrun/utils/version/version.json +2 -2
- mlrun/utils/version/version.py +3 -4
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/METADATA +39 -49
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/RECORD +144 -130
- mlrun/db/auth_utils.py +0 -152
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +0 -343
- mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +0 -75
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py +0 -281
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +0 -1368
- mlrun/model_monitoring/db/tsdb/tdengine/writer_graph_steps.py +0 -51
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/WHEEL +0 -0
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/entry_points.txt +0 -0
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/licenses/LICENSE +0 -0
- {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.11.0rc16
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -13,24 +13,22 @@ Classifier: Operating System :: POSIX :: Linux
|
|
|
13
13
|
Classifier: Operating System :: Microsoft :: Windows
|
|
14
14
|
Classifier: Operating System :: MacOS
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
17
|
Classifier: Programming Language :: Python
|
|
19
18
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
19
|
Classifier: Topic :: Software Development :: Libraries
|
|
21
|
-
Requires-Python: >=3.
|
|
20
|
+
Requires-Python: >=3.11, <3.12
|
|
22
21
|
Description-Content-Type: text/markdown
|
|
23
22
|
License-File: LICENSE
|
|
24
|
-
Requires-Dist: urllib3
|
|
25
|
-
Requires-Dist: v3io-frames~=0.
|
|
26
|
-
Requires-Dist: v3io-frames~=0.13.11; python_version >= "3.11"
|
|
23
|
+
Requires-Dist: urllib3~=2.6
|
|
24
|
+
Requires-Dist: v3io-frames~=0.13.11
|
|
27
25
|
Requires-Dist: GitPython>=3.1.41,~=3.1
|
|
28
26
|
Requires-Dist: aiohttp~=3.11
|
|
29
27
|
Requires-Dist: aiohttp-retry~=2.9
|
|
30
28
|
Requires-Dist: click~=8.1
|
|
31
29
|
Requires-Dist: nest-asyncio~=1.0
|
|
32
30
|
Requires-Dist: ipython~=8.10
|
|
33
|
-
Requires-Dist: nuclio-jupyter~=0.
|
|
31
|
+
Requires-Dist: nuclio-jupyter~=0.13.0
|
|
34
32
|
Requires-Dist: numpy<1.27.0,>=1.26.4
|
|
35
33
|
Requires-Dist: pandas<2.2,>=1.2
|
|
36
34
|
Requires-Dist: pyarrow<18,>=10.0
|
|
@@ -44,18 +42,19 @@ Requires-Dist: semver~=3.0
|
|
|
44
42
|
Requires-Dist: dependency-injector~=4.41
|
|
45
43
|
Requires-Dist: fsspec<=2025.7.0,>=2025.5.1
|
|
46
44
|
Requires-Dist: v3iofs~=0.1.17
|
|
47
|
-
Requires-Dist: storey~=1.
|
|
45
|
+
Requires-Dist: storey~=1.11.5
|
|
48
46
|
Requires-Dist: inflection~=0.5.0
|
|
49
47
|
Requires-Dist: python-dotenv~=1.0
|
|
50
48
|
Requires-Dist: setuptools>=75.2
|
|
51
49
|
Requires-Dist: deprecated~=1.2
|
|
52
50
|
Requires-Dist: jinja2>=3.1.6,~=3.1
|
|
53
51
|
Requires-Dist: orjson<4,>=3.9.15
|
|
54
|
-
Requires-Dist: mlrun-pipelines-kfp-common~=0.
|
|
55
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.
|
|
52
|
+
Requires-Dist: mlrun-pipelines-kfp-common~=0.6.0
|
|
53
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.6.0
|
|
56
54
|
Requires-Dist: docstring_parser~=0.16
|
|
57
55
|
Requires-Dist: aiosmtplib~=3.0
|
|
58
56
|
Requires-Dist: deepdiff<9.0.0,>=8.6.1
|
|
57
|
+
Requires-Dist: pyjwt~=2.10
|
|
59
58
|
Provides-Extra: s3
|
|
60
59
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "s3"
|
|
61
60
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "s3"
|
|
@@ -84,34 +83,32 @@ Requires-Dist: kafka-python~=2.1.0; extra == "kafka"
|
|
|
84
83
|
Requires-Dist: avro~=1.11; extra == "kafka"
|
|
85
84
|
Provides-Extra: redis
|
|
86
85
|
Requires-Dist: redis~=4.3; extra == "redis"
|
|
87
|
-
Provides-Extra: mlflow
|
|
88
|
-
Requires-Dist: mlflow~=2.22; extra == "mlflow"
|
|
89
86
|
Provides-Extra: databricks-sdk
|
|
90
87
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "databricks-sdk"
|
|
91
88
|
Provides-Extra: sqlalchemy
|
|
92
89
|
Requires-Dist: sqlalchemy~=2.0; extra == "sqlalchemy"
|
|
93
90
|
Provides-Extra: dask
|
|
94
|
-
Requires-Dist: dask
|
|
95
|
-
Requires-Dist:
|
|
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"
|
|
91
|
+
Requires-Dist: dask==2024.8; extra == "dask"
|
|
92
|
+
Requires-Dist: distributed==2024.8; extra == "dask"
|
|
98
93
|
Provides-Extra: alibaba-oss
|
|
99
94
|
Requires-Dist: ossfs==2025.5.0; extra == "alibaba-oss"
|
|
100
95
|
Requires-Dist: oss2==2.18.4; extra == "alibaba-oss"
|
|
101
|
-
Provides-Extra:
|
|
102
|
-
Requires-Dist:
|
|
96
|
+
Provides-Extra: timescaledb
|
|
97
|
+
Requires-Dist: psycopg[binary,pool]~=3.2; extra == "timescaledb"
|
|
103
98
|
Provides-Extra: snowflake
|
|
104
99
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "snowflake"
|
|
105
100
|
Provides-Extra: dev-postgres
|
|
106
101
|
Requires-Dist: pytest-mock-resources[postgres]~=2.12; extra == "dev-postgres"
|
|
107
102
|
Provides-Extra: kfp18
|
|
108
|
-
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]~=0.
|
|
103
|
+
Requires-Dist: mlrun_pipelines_kfp_v1_8[kfp]~=0.6.0; extra == "kfp18"
|
|
104
|
+
Provides-Extra: mlflow
|
|
105
|
+
Requires-Dist: mlflow~=3.0; extra == "mlflow"
|
|
109
106
|
Provides-Extra: api
|
|
110
107
|
Requires-Dist: uvicorn~=0.32.1; extra == "api"
|
|
111
108
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "api"
|
|
112
109
|
Requires-Dist: apscheduler<4,>=3.11; extra == "api"
|
|
113
110
|
Requires-Dist: objgraph~=3.6; extra == "api"
|
|
114
|
-
Requires-Dist: igz-mgmt~=0.4.
|
|
111
|
+
Requires-Dist: igz-mgmt~=0.4.2; extra == "api"
|
|
115
112
|
Requires-Dist: humanfriendly~=10.0; extra == "api"
|
|
116
113
|
Requires-Dist: fastapi~=0.120.0; extra == "api"
|
|
117
114
|
Requires-Dist: sqlalchemy~=2.0; extra == "api"
|
|
@@ -123,7 +120,7 @@ Requires-Dist: timelength~=1.1; extra == "api"
|
|
|
123
120
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "api"
|
|
124
121
|
Requires-Dist: aiosmtplib~=3.0; extra == "api"
|
|
125
122
|
Requires-Dist: pydantic<2,>=1; extra == "api"
|
|
126
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.
|
|
123
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.6.0; extra == "api"
|
|
127
124
|
Provides-Extra: all
|
|
128
125
|
Requires-Dist: adlfs==2024.12.0; extra == "all"
|
|
129
126
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "all"
|
|
@@ -132,11 +129,9 @@ Requires-Dist: azure-core~=1.24; extra == "all"
|
|
|
132
129
|
Requires-Dist: azure-identity~=1.5; extra == "all"
|
|
133
130
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "all"
|
|
134
131
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "all"
|
|
135
|
-
Requires-Dist: dask==2024.8;
|
|
136
|
-
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
132
|
+
Requires-Dist: dask==2024.8; extra == "all"
|
|
137
133
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "all"
|
|
138
|
-
Requires-Dist: distributed==2024.8;
|
|
139
|
-
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "all"
|
|
134
|
+
Requires-Dist: distributed==2024.8; extra == "all"
|
|
140
135
|
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "all"
|
|
141
136
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "all"
|
|
142
137
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "all"
|
|
@@ -144,17 +139,16 @@ Requires-Dist: google-cloud-storage==2.14.0; extra == "all"
|
|
|
144
139
|
Requires-Dist: google-cloud==0.34; extra == "all"
|
|
145
140
|
Requires-Dist: graphviz~=0.20.0; extra == "all"
|
|
146
141
|
Requires-Dist: kafka-python~=2.1.0; extra == "all"
|
|
147
|
-
Requires-Dist: mlflow~=2.22; extra == "all"
|
|
148
142
|
Requires-Dist: msrest~=0.6.21; extra == "all"
|
|
149
143
|
Requires-Dist: oss2==2.18.4; extra == "all"
|
|
150
144
|
Requires-Dist: ossfs==2025.5.0; extra == "all"
|
|
151
145
|
Requires-Dist: plotly~=5.23; extra == "all"
|
|
146
|
+
Requires-Dist: psycopg[binary,pool]~=3.2; extra == "all"
|
|
152
147
|
Requires-Dist: pyopenssl>=23; extra == "all"
|
|
153
148
|
Requires-Dist: redis~=4.3; extra == "all"
|
|
154
149
|
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "all"
|
|
155
150
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "all"
|
|
156
151
|
Requires-Dist: sqlalchemy~=2.0; extra == "all"
|
|
157
|
-
Requires-Dist: taos-ws-py==0.3.2; extra == "all"
|
|
158
152
|
Provides-Extra: complete
|
|
159
153
|
Requires-Dist: adlfs==2024.12.0; extra == "complete"
|
|
160
154
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete"
|
|
@@ -163,11 +157,9 @@ Requires-Dist: azure-core~=1.24; extra == "complete"
|
|
|
163
157
|
Requires-Dist: azure-identity~=1.5; extra == "complete"
|
|
164
158
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete"
|
|
165
159
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete"
|
|
166
|
-
Requires-Dist: dask==2024.8;
|
|
167
|
-
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
160
|
+
Requires-Dist: dask==2024.8; extra == "complete"
|
|
168
161
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete"
|
|
169
|
-
Requires-Dist: distributed==2024.8;
|
|
170
|
-
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete"
|
|
162
|
+
Requires-Dist: distributed==2024.8; extra == "complete"
|
|
171
163
|
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete"
|
|
172
164
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete"
|
|
173
165
|
Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete"
|
|
@@ -175,17 +167,16 @@ Requires-Dist: google-cloud-storage==2.14.0; extra == "complete"
|
|
|
175
167
|
Requires-Dist: google-cloud==0.34; extra == "complete"
|
|
176
168
|
Requires-Dist: graphviz~=0.20.0; extra == "complete"
|
|
177
169
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete"
|
|
178
|
-
Requires-Dist: mlflow~=2.22; extra == "complete"
|
|
179
170
|
Requires-Dist: msrest~=0.6.21; extra == "complete"
|
|
180
171
|
Requires-Dist: oss2==2.18.4; extra == "complete"
|
|
181
172
|
Requires-Dist: ossfs==2025.5.0; extra == "complete"
|
|
182
173
|
Requires-Dist: plotly~=5.23; extra == "complete"
|
|
174
|
+
Requires-Dist: psycopg[binary,pool]~=3.2; extra == "complete"
|
|
183
175
|
Requires-Dist: pyopenssl>=23; extra == "complete"
|
|
184
176
|
Requires-Dist: redis~=4.3; extra == "complete"
|
|
185
177
|
Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete"
|
|
186
178
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete"
|
|
187
179
|
Requires-Dist: sqlalchemy~=2.0; extra == "complete"
|
|
188
|
-
Requires-Dist: taos-ws-py==0.3.2; extra == "complete"
|
|
189
180
|
Provides-Extra: complete-api
|
|
190
181
|
Requires-Dist: adlfs==2024.12.0; extra == "complete-api"
|
|
191
182
|
Requires-Dist: aiobotocore<2.16,>=2.5.0; extra == "complete-api"
|
|
@@ -198,11 +189,9 @@ Requires-Dist: azure-identity~=1.5; extra == "complete-api"
|
|
|
198
189
|
Requires-Dist: azure-keyvault-secrets~=4.2; extra == "complete-api"
|
|
199
190
|
Requires-Dist: boto3<1.36,>=1.28.0; extra == "complete-api"
|
|
200
191
|
Requires-Dist: dask-kubernetes~=0.11.0; extra == "complete-api"
|
|
201
|
-
Requires-Dist: dask==2024.8;
|
|
202
|
-
Requires-Dist: dask~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
192
|
+
Requires-Dist: dask==2024.8; extra == "complete-api"
|
|
203
193
|
Requires-Dist: databricks-sdk~=0.20.0; extra == "complete-api"
|
|
204
|
-
Requires-Dist: distributed==2024.8;
|
|
205
|
-
Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
|
|
194
|
+
Requires-Dist: distributed==2024.8; extra == "complete-api"
|
|
206
195
|
Requires-Dist: fastapi~=0.120.0; extra == "complete-api"
|
|
207
196
|
Requires-Dist: gcsfs<=2025.7.0,>=2025.5.1; extra == "complete-api"
|
|
208
197
|
Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
|
|
@@ -211,17 +200,17 @@ Requires-Dist: google-cloud-storage==2.14.0; extra == "complete-api"
|
|
|
211
200
|
Requires-Dist: google-cloud==0.34; extra == "complete-api"
|
|
212
201
|
Requires-Dist: graphviz~=0.20.0; extra == "complete-api"
|
|
213
202
|
Requires-Dist: humanfriendly~=10.0; extra == "complete-api"
|
|
214
|
-
Requires-Dist: igz-mgmt~=0.4.
|
|
203
|
+
Requires-Dist: igz-mgmt~=0.4.2; extra == "complete-api"
|
|
215
204
|
Requires-Dist: kafka-python~=2.1.0; extra == "complete-api"
|
|
216
205
|
Requires-Dist: memray~=1.12; sys_platform != "win32" and extra == "complete-api"
|
|
217
|
-
Requires-Dist:
|
|
218
|
-
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8; extra == "complete-api"
|
|
206
|
+
Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.6.0; extra == "complete-api"
|
|
219
207
|
Requires-Dist: msrest~=0.6.21; extra == "complete-api"
|
|
220
208
|
Requires-Dist: objgraph~=3.6; extra == "complete-api"
|
|
221
209
|
Requires-Dist: oss2==2.18.4; extra == "complete-api"
|
|
222
210
|
Requires-Dist: ossfs==2025.5.0; extra == "complete-api"
|
|
223
211
|
Requires-Dist: plotly~=5.23; extra == "complete-api"
|
|
224
212
|
Requires-Dist: psycopg2-binary~=2.9; extra == "complete-api"
|
|
213
|
+
Requires-Dist: psycopg[binary,pool]~=3.2; extra == "complete-api"
|
|
225
214
|
Requires-Dist: pydantic<2,>=1; extra == "complete-api"
|
|
226
215
|
Requires-Dist: pymysql~=1.1; extra == "complete-api"
|
|
227
216
|
Requires-Dist: pyopenssl>=23; extra == "complete-api"
|
|
@@ -230,7 +219,6 @@ Requires-Dist: s3fs<=2025.7.0,>=2025.5.1; extra == "complete-api"
|
|
|
230
219
|
Requires-Dist: snowflake-connector-python~=3.7; extra == "complete-api"
|
|
231
220
|
Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "complete-api"
|
|
232
221
|
Requires-Dist: sqlalchemy~=2.0; extra == "complete-api"
|
|
233
|
-
Requires-Dist: taos-ws-py==0.3.2; extra == "complete-api"
|
|
234
222
|
Requires-Dist: timelength~=1.1; extra == "complete-api"
|
|
235
223
|
Requires-Dist: uvicorn~=0.32.1; extra == "complete-api"
|
|
236
224
|
Dynamic: author
|
|
@@ -277,7 +265,7 @@ MLRun is an open source AI orchestration platform for quickly building and manag
|
|
|
277
265
|
MLRun significantly reduces engineering efforts, time to production, and computation resources.
|
|
278
266
|
With MLRun, you can choose any IDE on your local machine or on the cloud. MLRun breaks the silos between data, ML, software, and DevOps/MLOps teams, enabling collaboration and fast continuous improvements.
|
|
279
267
|
|
|
280
|
-
Get started with the MLRun [**Tutorials and Examples**](https://docs.mlrun.org/en/stable/tutorials/index.html) and the [**
|
|
268
|
+
Get started with the MLRun [**Tutorials and Examples**](https://docs.mlrun.org/en/stable/tutorials/index.html) and the [**Set up your client environment**](https://docs.mlrun.org/en/stable/setup-guide.md), or read about the [**MLRun Architecture**](https://docs.mlrun.org/en/stable/architecture.html).
|
|
281
269
|
|
|
282
270
|
This page explains how MLRun addresses the [**gen AI tasks**](#genai-tasks), [**MLOps tasks**](#mlops-tasks), and presents the [**MLRun core components**](#core-components).
|
|
283
271
|
|
|
@@ -298,8 +286,8 @@ Removing inappropriate data at an early stage saves resources that would otherwi
|
|
|
298
286
|
|
|
299
287
|
|
|
300
288
|
**Docs:**
|
|
301
|
-
[Using LLMs to process unstructured data](https://docs.mlrun.org/en/stable/genai/data-mgmt/unstructured-data.html)
|
|
302
|
-
[Vector databases](https://docs.mlrun.org/en/stable/genai/data-mgmt/vector-databases.html)
|
|
289
|
+
[Using LLMs to process unstructured data](https://docs.mlrun.org/en/stable/genai/data-mgmt/unstructured-data.html),
|
|
290
|
+
[Vector databases](https://docs.mlrun.org/en/stable/genai/data-mgmt/vector-databases.html),
|
|
303
291
|
[Guardrails for data management](https://docs.mlrun.org/en/stable/genai/data-mgmt/guardrails-data.html)
|
|
304
292
|
**Demo:**
|
|
305
293
|
[Call center demo](https://github.com/mlrun/demo-call-center)
|
|
@@ -313,7 +301,8 @@ preprocess (prepare) the data, run the training pipeline, and evaluate the model
|
|
|
313
301
|
**Docs:**
|
|
314
302
|
[Working with RAG](https://docs.mlrun.org/en/stable/genai/development/working-with-rag.html), [Evalating LLMs](https://docs.mlrun.org/en/stable/genai/development/evaluating-llms.html), [Fine tuning LLMS](https://docs.mlrun.org/en/stable/genai/development/fine-tuning-llms.html)
|
|
315
303
|
**Demos:**
|
|
316
|
-
[Call center demo](https://github.com/mlrun/demo-call-center),
|
|
304
|
+
[Call center demo](https://github.com/mlrun/demo-call-center),
|
|
305
|
+
[Banking agent demo](https://github.com/mlrun/demo-banking-agent)
|
|
317
306
|
**Video:**
|
|
318
307
|
[Call center](https://youtu.be/YycMbxRgLBA)
|
|
319
308
|
|
|
@@ -327,9 +316,10 @@ inferring results using one or more models, and driving actions.
|
|
|
327
316
|
**Docs:**
|
|
328
317
|
[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)
|
|
329
318
|
**Tutorial:**
|
|
330
|
-
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/
|
|
319
|
+
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/genai-01-basic-tutorial.html)
|
|
331
320
|
**Demos:**
|
|
332
|
-
[Call center demo](https://github.com/mlrun/demo-call-center),
|
|
321
|
+
[Call center demo](https://github.com/mlrun/demo-call-center),
|
|
322
|
+
[Banking agent demo](https://github.com/mlrun/demo-banking-agent)
|
|
333
323
|
**Video:**
|
|
334
324
|
[Call center](https://youtu.be/YycMbxRgLBA)
|
|
335
325
|
|
|
@@ -342,9 +332,9 @@ Collect production data, metadata, and metrics to tune the model and application
|
|
|
342
332
|
**Docs:**
|
|
343
333
|
[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)
|
|
344
334
|
**Tutorials:**
|
|
345
|
-
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/
|
|
335
|
+
[Deploy LLM using MLRun](https://docs.mlrun.org/en/stable/tutorials/genai-01-basic-tutorial.html), [Model monitoring using LLM](https://docs.mlrun.org/en/stable/tutorials/genai-02-monitoring-llm.html)
|
|
346
336
|
**Demo:**
|
|
347
|
-
[
|
|
337
|
+
[Banking agent demo](https://github.com/mlrun/demo-banking-agent)
|
|
348
338
|
|
|
349
339
|
|
|
350
340
|
<a id="mlops-tasks"></a>
|