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.

Files changed (150) hide show
  1. mlrun/__init__.py +3 -2
  2. mlrun/__main__.py +0 -4
  3. mlrun/artifacts/dataset.py +2 -2
  4. mlrun/artifacts/plots.py +1 -1
  5. mlrun/{model_monitoring/db/tsdb/tdengine → auth}/__init__.py +2 -3
  6. mlrun/auth/nuclio.py +89 -0
  7. mlrun/auth/providers.py +429 -0
  8. mlrun/auth/utils.py +415 -0
  9. mlrun/common/constants.py +7 -0
  10. mlrun/common/model_monitoring/helpers.py +41 -4
  11. mlrun/common/runtimes/constants.py +28 -0
  12. mlrun/common/schemas/__init__.py +13 -3
  13. mlrun/common/schemas/alert.py +2 -2
  14. mlrun/common/schemas/api_gateway.py +3 -0
  15. mlrun/common/schemas/auth.py +10 -10
  16. mlrun/common/schemas/client_spec.py +4 -0
  17. mlrun/common/schemas/constants.py +25 -0
  18. mlrun/common/schemas/frontend_spec.py +1 -8
  19. mlrun/common/schemas/function.py +24 -0
  20. mlrun/common/schemas/hub.py +3 -2
  21. mlrun/common/schemas/model_monitoring/__init__.py +1 -1
  22. mlrun/common/schemas/model_monitoring/constants.py +2 -2
  23. mlrun/common/schemas/secret.py +17 -2
  24. mlrun/common/secrets.py +95 -1
  25. mlrun/common/types.py +10 -10
  26. mlrun/config.py +53 -15
  27. mlrun/data_types/infer.py +2 -2
  28. mlrun/datastore/__init__.py +2 -3
  29. mlrun/datastore/base.py +274 -10
  30. mlrun/datastore/datastore.py +1 -1
  31. mlrun/datastore/datastore_profile.py +49 -17
  32. mlrun/datastore/model_provider/huggingface_provider.py +6 -2
  33. mlrun/datastore/model_provider/model_provider.py +2 -2
  34. mlrun/datastore/model_provider/openai_provider.py +2 -2
  35. mlrun/datastore/s3.py +15 -16
  36. mlrun/datastore/sources.py +1 -1
  37. mlrun/datastore/store_resources.py +4 -4
  38. mlrun/datastore/storeytargets.py +16 -10
  39. mlrun/datastore/targets.py +1 -1
  40. mlrun/datastore/utils.py +16 -3
  41. mlrun/datastore/v3io.py +1 -1
  42. mlrun/db/base.py +36 -12
  43. mlrun/db/httpdb.py +316 -101
  44. mlrun/db/nopdb.py +29 -11
  45. mlrun/errors.py +4 -2
  46. mlrun/execution.py +11 -12
  47. mlrun/feature_store/api.py +1 -1
  48. mlrun/feature_store/common.py +1 -1
  49. mlrun/feature_store/feature_vector_utils.py +1 -1
  50. mlrun/feature_store/steps.py +8 -6
  51. mlrun/frameworks/_common/utils.py +3 -3
  52. mlrun/frameworks/_dl_common/loggers/logger.py +1 -1
  53. mlrun/frameworks/_dl_common/loggers/tensorboard_logger.py +2 -1
  54. mlrun/frameworks/_ml_common/loggers/mlrun_logger.py +1 -1
  55. mlrun/frameworks/_ml_common/utils.py +2 -1
  56. mlrun/frameworks/auto_mlrun/auto_mlrun.py +4 -3
  57. mlrun/frameworks/lgbm/mlrun_interfaces/mlrun_interface.py +2 -1
  58. mlrun/frameworks/onnx/dataset.py +2 -1
  59. mlrun/frameworks/onnx/mlrun_interface.py +2 -1
  60. mlrun/frameworks/pytorch/callbacks/logging_callback.py +5 -4
  61. mlrun/frameworks/pytorch/callbacks/mlrun_logging_callback.py +2 -1
  62. mlrun/frameworks/pytorch/callbacks/tensorboard_logging_callback.py +2 -1
  63. mlrun/frameworks/pytorch/utils.py +2 -1
  64. mlrun/frameworks/sklearn/metric.py +2 -1
  65. mlrun/frameworks/tf_keras/callbacks/logging_callback.py +5 -4
  66. mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py +2 -1
  67. mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py +2 -1
  68. mlrun/hub/__init__.py +37 -0
  69. mlrun/hub/base.py +142 -0
  70. mlrun/hub/module.py +67 -76
  71. mlrun/hub/step.py +113 -0
  72. mlrun/launcher/base.py +2 -1
  73. mlrun/launcher/local.py +2 -1
  74. mlrun/model.py +12 -2
  75. mlrun/model_monitoring/__init__.py +0 -1
  76. mlrun/model_monitoring/api.py +2 -2
  77. mlrun/model_monitoring/applications/base.py +20 -6
  78. mlrun/model_monitoring/applications/context.py +1 -0
  79. mlrun/model_monitoring/controller.py +7 -17
  80. mlrun/model_monitoring/db/_schedules.py +2 -16
  81. mlrun/model_monitoring/db/_stats.py +2 -13
  82. mlrun/model_monitoring/db/tsdb/__init__.py +9 -7
  83. mlrun/model_monitoring/db/tsdb/base.py +2 -4
  84. mlrun/model_monitoring/db/tsdb/preaggregate.py +234 -0
  85. mlrun/model_monitoring/db/tsdb/stream_graph_steps.py +63 -0
  86. mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_metrics_queries.py +414 -0
  87. mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_predictions_queries.py +376 -0
  88. mlrun/model_monitoring/db/tsdb/timescaledb/queries/timescaledb_results_queries.py +590 -0
  89. mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_connection.py +434 -0
  90. mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_connector.py +541 -0
  91. mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_operations.py +808 -0
  92. mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_schema.py +502 -0
  93. mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_stream.py +163 -0
  94. mlrun/model_monitoring/db/tsdb/timescaledb/timescaledb_stream_graph_steps.py +60 -0
  95. mlrun/model_monitoring/db/tsdb/timescaledb/utils/timescaledb_dataframe_processor.py +141 -0
  96. mlrun/model_monitoring/db/tsdb/timescaledb/utils/timescaledb_query_builder.py +585 -0
  97. mlrun/model_monitoring/db/tsdb/timescaledb/writer_graph_steps.py +73 -0
  98. mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +4 -6
  99. mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +147 -79
  100. mlrun/model_monitoring/features_drift_table.py +2 -1
  101. mlrun/model_monitoring/helpers.py +2 -1
  102. mlrun/model_monitoring/stream_processing.py +18 -16
  103. mlrun/model_monitoring/writer.py +4 -3
  104. mlrun/package/__init__.py +2 -1
  105. mlrun/platforms/__init__.py +0 -44
  106. mlrun/platforms/iguazio.py +1 -1
  107. mlrun/projects/operations.py +11 -10
  108. mlrun/projects/project.py +81 -82
  109. mlrun/run.py +4 -7
  110. mlrun/runtimes/__init__.py +2 -204
  111. mlrun/runtimes/base.py +89 -21
  112. mlrun/runtimes/constants.py +225 -0
  113. mlrun/runtimes/daskjob.py +4 -2
  114. mlrun/runtimes/databricks_job/databricks_runtime.py +2 -1
  115. mlrun/runtimes/mounts.py +5 -0
  116. mlrun/runtimes/nuclio/__init__.py +12 -8
  117. mlrun/runtimes/nuclio/api_gateway.py +36 -6
  118. mlrun/runtimes/nuclio/application/application.py +200 -32
  119. mlrun/runtimes/nuclio/function.py +154 -49
  120. mlrun/runtimes/nuclio/serving.py +55 -42
  121. mlrun/runtimes/pod.py +59 -10
  122. mlrun/secrets.py +46 -2
  123. mlrun/serving/__init__.py +2 -0
  124. mlrun/serving/remote.py +5 -5
  125. mlrun/serving/routers.py +3 -3
  126. mlrun/serving/server.py +46 -43
  127. mlrun/serving/serving_wrapper.py +6 -2
  128. mlrun/serving/states.py +554 -207
  129. mlrun/serving/steps.py +1 -1
  130. mlrun/serving/system_steps.py +42 -33
  131. mlrun/track/trackers/mlflow_tracker.py +29 -31
  132. mlrun/utils/helpers.py +89 -16
  133. mlrun/utils/http.py +9 -2
  134. mlrun/utils/notifications/notification/git.py +1 -1
  135. mlrun/utils/notifications/notification/mail.py +39 -16
  136. mlrun/utils/notifications/notification_pusher.py +2 -2
  137. mlrun/utils/version/version.json +2 -2
  138. mlrun/utils/version/version.py +3 -4
  139. {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/METADATA +39 -49
  140. {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/RECORD +144 -130
  141. mlrun/db/auth_utils.py +0 -152
  142. mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +0 -343
  143. mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py +0 -75
  144. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connection.py +0 -281
  145. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +0 -1368
  146. mlrun/model_monitoring/db/tsdb/tdengine/writer_graph_steps.py +0 -51
  147. {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/WHEEL +0 -0
  148. {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/entry_points.txt +0 -0
  149. {mlrun-1.10.0rc40.dist-info → mlrun-1.11.0rc16.dist-info}/licenses/LICENSE +0 -0
  150. {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.10.0rc40
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.9, <3.12
20
+ Requires-Python: >=3.11, <3.12
22
21
  Description-Content-Type: text/markdown
23
22
  License-File: LICENSE
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"
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.11.2
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.10.16
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.5.9
55
- Requires-Dist: mlrun-pipelines-kfp-v1-8~=0.5.8
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~=2023.12.1; python_version < "3.11" and extra == "dask"
95
- Requires-Dist: dask==2024.8; python_version >= "3.11" and extra == "dask"
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: tdengine
102
- Requires-Dist: taos-ws-py==0.3.2; extra == "tdengine"
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.5.8; extra == "kfp18"
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.1; extra == "api"
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.5.8; extra == "api"
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; python_version >= "3.11" and extra == "all"
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; python_version >= "3.11" and extra == "all"
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; python_version >= "3.11" and extra == "complete"
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; python_version >= "3.11" and extra == "complete"
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; python_version >= "3.11" and extra == "complete-api"
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; python_version >= "3.11" and extra == "complete-api"
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.1; extra == "complete-api"
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: mlflow~=2.22; extra == "complete-api"
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 [**Installation and setup guide**](https://docs.mlrun.org/en/stable/install.html), or read about the [**MLRun Architecture**](https://docs.mlrun.org/en/stable/architecture.html).
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), [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)
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/genai_01_basic_tutorial.html)
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), [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)
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/genai_01_basic_tutorial.html), [Model monitoring using LLM](https://docs.mlrun.org/en/stable/tutorials/genai-02-monitoring-llm.html)
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
- [Build & deploy custom (fine-tuned) LLM models and applications](https://github.com/mlrun/demo-llm-tuning/blob/main)
337
+ [Banking agent demo](https://github.com/mlrun/demo-banking-agent)
348
338
 
349
339
 
350
340
  <a id="mlops-tasks"></a>