mlrun 1.10.0rc16__py3-none-any.whl → 1.10.1rc4__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 (101) 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 +34 -21
  21. mlrun/datastore/__init__.py +11 -3
  22. mlrun/datastore/azure_blob.py +162 -47
  23. mlrun/datastore/base.py +265 -7
  24. mlrun/datastore/datastore.py +10 -5
  25. mlrun/datastore/datastore_profile.py +61 -5
  26. mlrun/datastore/model_provider/huggingface_provider.py +367 -0
  27. mlrun/datastore/model_provider/mock_model_provider.py +87 -0
  28. mlrun/datastore/model_provider/model_provider.py +211 -74
  29. mlrun/datastore/model_provider/openai_provider.py +243 -71
  30. mlrun/datastore/s3.py +24 -2
  31. mlrun/datastore/store_resources.py +4 -4
  32. mlrun/datastore/storeytargets.py +2 -3
  33. mlrun/datastore/utils.py +15 -3
  34. mlrun/db/base.py +27 -19
  35. mlrun/db/httpdb.py +57 -48
  36. mlrun/db/nopdb.py +25 -10
  37. mlrun/execution.py +55 -13
  38. mlrun/hub/__init__.py +15 -0
  39. mlrun/hub/module.py +181 -0
  40. mlrun/k8s_utils.py +105 -16
  41. mlrun/launcher/base.py +13 -6
  42. mlrun/launcher/local.py +2 -0
  43. mlrun/model.py +9 -3
  44. mlrun/model_monitoring/api.py +66 -27
  45. mlrun/model_monitoring/applications/__init__.py +1 -1
  46. mlrun/model_monitoring/applications/base.py +388 -138
  47. mlrun/model_monitoring/applications/context.py +2 -4
  48. mlrun/model_monitoring/applications/results.py +4 -7
  49. mlrun/model_monitoring/controller.py +239 -101
  50. mlrun/model_monitoring/db/_schedules.py +36 -13
  51. mlrun/model_monitoring/db/_stats.py +4 -3
  52. mlrun/model_monitoring/db/tsdb/base.py +29 -9
  53. mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +4 -5
  54. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +154 -50
  55. mlrun/model_monitoring/db/tsdb/tdengine/writer_graph_steps.py +51 -0
  56. mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +17 -4
  57. mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +245 -51
  58. mlrun/model_monitoring/helpers.py +28 -5
  59. mlrun/model_monitoring/stream_processing.py +45 -14
  60. mlrun/model_monitoring/writer.py +220 -1
  61. mlrun/platforms/__init__.py +3 -2
  62. mlrun/platforms/iguazio.py +7 -3
  63. mlrun/projects/operations.py +16 -11
  64. mlrun/projects/pipelines.py +2 -2
  65. mlrun/projects/project.py +157 -69
  66. mlrun/run.py +97 -20
  67. mlrun/runtimes/__init__.py +18 -0
  68. mlrun/runtimes/base.py +14 -6
  69. mlrun/runtimes/daskjob.py +1 -0
  70. mlrun/runtimes/local.py +5 -2
  71. mlrun/runtimes/mounts.py +20 -2
  72. mlrun/runtimes/nuclio/__init__.py +1 -0
  73. mlrun/runtimes/nuclio/application/application.py +147 -17
  74. mlrun/runtimes/nuclio/function.py +72 -27
  75. mlrun/runtimes/nuclio/serving.py +102 -20
  76. mlrun/runtimes/pod.py +213 -21
  77. mlrun/runtimes/utils.py +49 -9
  78. mlrun/secrets.py +54 -13
  79. mlrun/serving/remote.py +79 -6
  80. mlrun/serving/routers.py +23 -41
  81. mlrun/serving/server.py +230 -40
  82. mlrun/serving/states.py +605 -232
  83. mlrun/serving/steps.py +62 -0
  84. mlrun/serving/system_steps.py +136 -81
  85. mlrun/serving/v2_serving.py +9 -10
  86. mlrun/utils/helpers.py +215 -83
  87. mlrun/utils/logger.py +3 -1
  88. mlrun/utils/notifications/notification/base.py +18 -0
  89. mlrun/utils/notifications/notification/git.py +2 -4
  90. mlrun/utils/notifications/notification/mail.py +38 -15
  91. mlrun/utils/notifications/notification/slack.py +2 -4
  92. mlrun/utils/notifications/notification/webhook.py +2 -5
  93. mlrun/utils/notifications/notification_pusher.py +1 -1
  94. mlrun/utils/version/version.json +2 -2
  95. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/METADATA +51 -50
  96. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/RECORD +100 -95
  97. mlrun/api/schemas/__init__.py +0 -259
  98. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/WHEEL +0 -0
  99. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/entry_points.txt +0 -0
  100. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/licenses/LICENSE +0 -0
  101. {mlrun-1.10.0rc16.dist-info → mlrun-1.10.1rc4.dist-info}/top_level.txt +0 -0
@@ -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=ZA0emGsgvvZovD9iABSU34aD8Du0_VulIiDjiY5aoag,72871
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=oXmDAaPVt6HJhC-WzaZp_9kLKaX1L-OdTL1vLTqX7RA,49744
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
90
- 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
88
+ mlrun/datastore/azure_blob.py,sha256=LQZ3p0MEe1G5oNwCUo5xA4_xLhykMtnlV0aA5tWuzdA,17978
89
+ mlrun/datastore/base.py,sha256=-Xy83AZ1chjDmctu1C9EMplBBXdvc-GAju8mDav5sBA,34542
90
+ mlrun/datastore/datastore.py,sha256=2M7FKJng4CYM9Kmo7Q_hD55DDK7YtGldDeCS-MhLCJ4,13411
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
- mlrun/datastore/store_resources.py,sha256=s2794zqkzy_mjRMvRedDNs_tycTLoF8wxTqsWRQphCE,6839
106
- mlrun/datastore/storeytargets.py,sha256=TvHbY3XS0qOg8ImXW1ET61UnjUPcYJbfSGAga3vgC-o,6492
104
+ mlrun/datastore/store_resources.py,sha256=2vCPCFl1W6tNLnU0R9C0fjrS93X7aShaQt-lcEiAxmc,6843
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=i9Cg3uY8B0zKz-WjTxHdu-IpHsYRDTlxpyX6v9QrUxs,16444
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=J5ycSCEUA7GmvK7Sh6-giz1ARV9jtLP_rmCBobnsDC0,52015
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=zmVT9L7XvAQ37nF-WLMN4tuyfApSG9hCpfBlt3BVCBQ,21046
283
+ mlrun/projects/pipelines.py,sha256=ZOfuIEHOXfuc4qAkuWvbWhCjP6kqpLkv-yBBaY9RXhg,52219
284
+ mlrun/projects/project.py,sha256=39HaE7BeYXDRDWh71yCK1Y6Y5pYViqOkjKxnd8RtmqE,258135
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=hWV3UVY9kgoOF1WoVEtFQD5u063vkh-F60d0GA3eCX8,56203
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=-uGZrIZ5SzBnVnUH5BvFYPnXM5hOurvPQ74do_qcJzQ,39175
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=j1KsDPPD4m-gjidLWwy0UycbymzzczbvIrg0Y11DcHQ,43312
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=gVD6r8tfosQtv2KOT2cTU5uFeE-B9aI-EYvueVnxETM,140640
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=Z-wTyI1o63WCiOYbtzsU42On0Bk794ASxX7-n2AitUk,87310
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
- 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
351
+ mlrun/utils/notifications/notification/mail.py,sha256=dcEfi1jO4X3ExdrZs1ckLJnH01UcwU75Jzlg9LZCMfw,7080
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=ymiImbulnx1g_h9rLvjk9HZCLMuD8w-mjv-EpTOic9M,89
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.1rc4.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
358
+ mlrun-1.10.1rc4.dist-info/METADATA,sha256=VfxCDKAkgnnXjfzdW3mF75onp8Krw_gAeCf2YSaNsgA,25786
359
+ mlrun-1.10.1rc4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
360
+ mlrun-1.10.1rc4.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
361
+ mlrun-1.10.1rc4.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
362
+ mlrun-1.10.1rc4.dist-info/RECORD,,
@@ -1,259 +0,0 @@
1
- # Copyright 2023 Iguazio
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- """
16
- Schemas were moved to mlrun.common.schemas.
17
- For backwards compatibility reasons, we have left this folder untouched so that older version of mlrun would
18
- be able to migrate to newer version without having to upgrade into an intermediate version.
19
-
20
- The DeprecationHelper class is used to print a deprecation warning when the old import is used, and return the new
21
- schema.
22
- """
23
-
24
- import sys
25
- import warnings
26
-
27
- import mlrun.common.formatters
28
- import mlrun.common.schemas
29
- import mlrun.common.schemas.artifact as old_artifact
30
- import mlrun.common.schemas.auth as old_auth
31
- import mlrun.common.schemas.background_task as old_background_task
32
- import mlrun.common.schemas.client_spec as old_client_spec
33
- import mlrun.common.schemas.clusterization_spec as old_clusterization_spec
34
- import mlrun.common.schemas.constants as old_constants
35
- import mlrun.common.schemas.feature_store as old_feature_store
36
- import mlrun.common.schemas.frontend_spec as old_frontend_spec
37
- import mlrun.common.schemas.function as old_function
38
- import mlrun.common.schemas.http as old_http
39
- import mlrun.common.schemas.k8s as old_k8s
40
- import mlrun.common.schemas.memory_reports as old_memory_reports
41
- import mlrun.common.schemas.model_monitoring.grafana
42
- import mlrun.common.schemas.object as old_object
43
- import mlrun.common.schemas.pipeline as old_pipeline
44
- import mlrun.common.schemas.project as old_project
45
- import mlrun.common.schemas.runtime_resource as old_runtime_resource
46
- import mlrun.common.schemas.schedule as old_schedule
47
- import mlrun.common.schemas.secret as old_secret
48
- import mlrun.common.schemas.tag as old_tag
49
-
50
-
51
- class DeprecationHelper:
52
- """A helper class to deprecate old schemas"""
53
-
54
- def __init__(self, new_target, version="1.4.0"):
55
- self._new_target = new_target
56
- self._version = version
57
-
58
- def _warn(self):
59
- warnings.warn(
60
- f"mlrun.api.schemas.{self._new_target.__name__} is deprecated since version {self._version}, "
61
- f"Use mlrun.common.schemas.{self._new_target.__name__} instead.",
62
- FutureWarning,
63
- )
64
-
65
- def __call__(self, *args, **kwargs):
66
- self._warn()
67
- return self._new_target(*args, **kwargs)
68
-
69
- def __getattr__(self, attr):
70
- self._warn()
71
- return getattr(self._new_target, attr)
72
-
73
-
74
- # for backwards compatibility, we need to inject the old import path to `sys.modules`
75
- sys.modules["mlrun.api.schemas.artifact"] = old_artifact
76
- sys.modules["mlrun.api.schemas.auth"] = old_auth
77
- sys.modules["mlrun.api.schemas.background_task"] = old_background_task
78
- sys.modules["mlrun.api.schemas.client_spec"] = old_client_spec
79
- sys.modules["mlrun.api.schemas.clusterization_spec"] = old_clusterization_spec
80
- sys.modules["mlrun.api.schemas.constants"] = old_constants
81
- sys.modules["mlrun.api.schemas.feature_store"] = old_feature_store
82
- sys.modules["mlrun.api.schemas.frontend_spec"] = old_frontend_spec
83
- sys.modules["mlrun.api.schemas.function"] = old_function
84
- sys.modules["mlrun.api.schemas.http"] = old_http
85
- sys.modules["mlrun.api.schemas.k8s"] = old_k8s
86
- sys.modules["mlrun.api.schemas.memory_reports"] = old_memory_reports
87
- sys.modules["mlrun.api.schemas.object"] = old_object
88
- sys.modules["mlrun.api.schemas.pipeline"] = old_pipeline
89
- sys.modules["mlrun.api.schemas.project"] = old_project
90
- sys.modules["mlrun.api.schemas.runtime_resource"] = old_runtime_resource
91
- sys.modules["mlrun.api.schemas.schedule"] = old_schedule
92
- sys.modules["mlrun.api.schemas.secret"] = old_secret
93
- sys.modules["mlrun.api.schemas.tag"] = old_tag
94
-
95
- # The DeprecationHelper class is used to print a deprecation warning when the old import is used,
96
- # and return the new schema. This is done for backwards compatibility with mlrun.api.schemas.
97
- ArtifactCategories = DeprecationHelper(mlrun.common.schemas.ArtifactCategories)
98
- ArtifactIdentifier = DeprecationHelper(mlrun.common.schemas.ArtifactIdentifier)
99
- ArtifactsFormat = DeprecationHelper(mlrun.common.formatters.ArtifactFormat)
100
- AuthInfo = DeprecationHelper(mlrun.common.schemas.AuthInfo)
101
- AuthorizationAction = DeprecationHelper(mlrun.common.schemas.AuthorizationAction)
102
- AuthorizationResourceTypes = DeprecationHelper(
103
- mlrun.common.schemas.AuthorizationResourceTypes
104
- )
105
- AuthorizationVerificationInput = DeprecationHelper(
106
- mlrun.common.schemas.AuthorizationVerificationInput
107
- )
108
- Credentials = DeprecationHelper(mlrun.common.schemas.Credentials)
109
- ProjectsRole = DeprecationHelper(mlrun.common.schemas.ProjectsRole)
110
-
111
- BackgroundTask = DeprecationHelper(mlrun.common.schemas.BackgroundTask)
112
- BackgroundTaskMetadata = DeprecationHelper(mlrun.common.schemas.BackgroundTaskMetadata)
113
- BackgroundTaskSpec = DeprecationHelper(mlrun.common.schemas.BackgroundTaskSpec)
114
- BackgroundTaskState = DeprecationHelper(mlrun.common.schemas.BackgroundTaskState)
115
- BackgroundTaskStatus = DeprecationHelper(mlrun.common.schemas.BackgroundTaskStatus)
116
- ClientSpe = DeprecationHelper(mlrun.common.schemas.ClientSpec)
117
- ClusterizationSpec = DeprecationHelper(mlrun.common.schemas.ClusterizationSpec)
118
- WaitForChiefToReachOnlineStateFeatureFlag = DeprecationHelper(
119
- mlrun.common.schemas.WaitForChiefToReachOnlineStateFeatureFlag
120
- )
121
- APIStates = DeprecationHelper(mlrun.common.schemas.APIStates)
122
- ClusterizationRole = DeprecationHelper(mlrun.common.schemas.ClusterizationRole)
123
- DeletionStrategy = DeprecationHelper(mlrun.common.schemas.DeletionStrategy)
124
- FeatureStorePartitionByField = DeprecationHelper(
125
- mlrun.common.schemas.FeatureStorePartitionByField
126
- )
127
- HeaderNames = DeprecationHelper(mlrun.common.schemas.HeaderNames)
128
- LogsCollectorMode = DeprecationHelper(mlrun.common.schemas.LogsCollectorMode)
129
- OrderType = DeprecationHelper(mlrun.common.schemas.OrderType)
130
- PatchMode = DeprecationHelper(mlrun.common.schemas.PatchMode)
131
- RunPartitionByField = DeprecationHelper(mlrun.common.schemas.RunPartitionByField)
132
- SortField = DeprecationHelper(mlrun.common.schemas.SortField)
133
- EntitiesOutput = DeprecationHelper(mlrun.common.schemas.EntitiesOutput)
134
- Entity = DeprecationHelper(mlrun.common.schemas.Entity)
135
- EntityListOutput = DeprecationHelper(mlrun.common.schemas.EntityListOutput)
136
- EntityRecord = DeprecationHelper(mlrun.common.schemas.EntityRecord)
137
- Feature = DeprecationHelper(mlrun.common.schemas.Feature)
138
- FeatureListOutput = DeprecationHelper(mlrun.common.schemas.FeatureListOutput)
139
- FeatureRecord = DeprecationHelper(mlrun.common.schemas.FeatureRecord)
140
- FeatureSet = DeprecationHelper(mlrun.common.schemas.FeatureSet)
141
- FeatureSetDigestOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetDigestOutput)
142
- FeatureSetDigestSpec = DeprecationHelper(mlrun.common.schemas.FeatureSetDigestSpec)
143
- FeatureSetIngestInput = DeprecationHelper(mlrun.common.schemas.FeatureSetIngestInput)
144
- FeatureSetIngestOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetIngestOutput)
145
- FeatureSetRecord = DeprecationHelper(mlrun.common.schemas.FeatureSetRecord)
146
- FeatureSetsOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetsOutput)
147
- FeatureSetSpec = DeprecationHelper(mlrun.common.schemas.FeatureSetSpec)
148
- FeatureSetsTagsOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetsTagsOutput)
149
- FeaturesOutput = DeprecationHelper(mlrun.common.schemas.FeaturesOutput)
150
- FeatureVector = DeprecationHelper(mlrun.common.schemas.FeatureVector)
151
- FeatureVectorRecord = DeprecationHelper(mlrun.common.schemas.FeatureVectorRecord)
152
- FeatureVectorsOutput = DeprecationHelper(mlrun.common.schemas.FeatureVectorsOutput)
153
- FeatureVectorsTagsOutput = DeprecationHelper(
154
- mlrun.common.schemas.FeatureVectorsTagsOutput
155
- )
156
- AuthenticationFeatureFlag = DeprecationHelper(
157
- mlrun.common.schemas.AuthenticationFeatureFlag
158
- )
159
- FeatureFlags = DeprecationHelper(mlrun.common.schemas.FeatureFlags)
160
- FrontendSpec = DeprecationHelper(mlrun.common.schemas.FrontendSpec)
161
- NuclioStreamsFeatureFlag = DeprecationHelper(
162
- mlrun.common.schemas.NuclioStreamsFeatureFlag
163
- )
164
- PreemptionNodesFeatureFlag = DeprecationHelper(
165
- mlrun.common.schemas.PreemptionNodesFeatureFlag
166
- )
167
- ProjectMembershipFeatureFlag = DeprecationHelper(
168
- mlrun.common.schemas.ProjectMembershipFeatureFlag
169
- )
170
- FunctionState = DeprecationHelper(mlrun.common.schemas.FunctionState)
171
- PreemptionModes = DeprecationHelper(mlrun.common.schemas.PreemptionModes)
172
- SecurityContextEnrichmentModes = DeprecationHelper(
173
- mlrun.common.schemas.SecurityContextEnrichmentModes
174
- )
175
- HTTPSessionRetryMode = DeprecationHelper(mlrun.common.schemas.HTTPSessionRetryMode)
176
- NodeSelectorOperator = DeprecationHelper(mlrun.common.schemas.NodeSelectorOperator)
177
- Resources = DeprecationHelper(mlrun.common.schemas.Resources)
178
- ResourceSpec = DeprecationHelper(mlrun.common.schemas.ResourceSpec)
179
- IndexedHubSource = DeprecationHelper(mlrun.common.schemas.IndexedHubSource)
180
- HubCatalog = DeprecationHelper(mlrun.common.schemas.HubCatalog)
181
- HubItem = DeprecationHelper(mlrun.common.schemas.HubItem)
182
- HubObjectMetadata = DeprecationHelper(mlrun.common.schemas.HubObjectMetadata)
183
- HubSource = DeprecationHelper(mlrun.common.schemas.HubSource)
184
- HubSourceSpec = DeprecationHelper(mlrun.common.schemas.HubSourceSpec)
185
- last_source_index = DeprecationHelper(mlrun.common.schemas.last_source_index)
186
- MostCommonObjectTypesReport = DeprecationHelper(
187
- mlrun.common.schemas.MostCommonObjectTypesReport
188
- )
189
- ObjectTypeReport = DeprecationHelper(mlrun.common.schemas.ObjectTypeReport)
190
- Features = DeprecationHelper(mlrun.common.schemas.Features)
191
- FeatureValues = DeprecationHelper(mlrun.common.schemas.FeatureValues)
192
- GrafanaColumn = DeprecationHelper(
193
- mlrun.common.schemas.model_monitoring.grafana.GrafanaColumn
194
- )
195
-
196
- GrafanaNumberColumn = DeprecationHelper(
197
- mlrun.common.schemas.model_monitoring.grafana.GrafanaNumberColumn
198
- )
199
- GrafanaStringColumn = DeprecationHelper(
200
- mlrun.common.schemas.model_monitoring.grafana.GrafanaStringColumn
201
- )
202
- GrafanaTable = DeprecationHelper(
203
- mlrun.common.schemas.model_monitoring.grafana.GrafanaTable
204
- )
205
- ModelEndpoint = DeprecationHelper(mlrun.common.schemas.ModelEndpoint)
206
- ModelEndpointList = DeprecationHelper(mlrun.common.schemas.ModelEndpointList)
207
- ModelEndpointMetadata = DeprecationHelper(mlrun.common.schemas.ModelEndpointMetadata)
208
- ModelEndpointSpec = DeprecationHelper(mlrun.common.schemas.ModelEndpointSpec)
209
- ModelEndpointStatus = DeprecationHelper(mlrun.common.schemas.ModelEndpointStatus)
210
- NotificationSeverity = DeprecationHelper(mlrun.common.schemas.NotificationSeverity)
211
- NotificationStatus = DeprecationHelper(mlrun.common.schemas.NotificationStatus)
212
- ObjectKind = DeprecationHelper(mlrun.common.schemas.ObjectKind)
213
- ObjectMetadata = DeprecationHelper(mlrun.common.schemas.ObjectMetadata)
214
- ObjectSpec = DeprecationHelper(mlrun.common.schemas.ObjectSpec)
215
- ObjectStatus = DeprecationHelper(mlrun.common.schemas.ObjectStatus)
216
- PipelinesFormat = DeprecationHelper(mlrun.common.formatters.PipelineFormat)
217
- PipelinesOutput = DeprecationHelper(mlrun.common.schemas.PipelinesOutput)
218
- PipelinesPagination = DeprecationHelper(mlrun.common.schemas.PipelinesPagination)
219
- IguazioProject = DeprecationHelper(mlrun.common.schemas.IguazioProject)
220
- Project = DeprecationHelper(mlrun.common.schemas.Project)
221
- ProjectDesiredState = DeprecationHelper(mlrun.common.schemas.ProjectDesiredState)
222
- ProjectMetadata = DeprecationHelper(mlrun.common.schemas.ProjectMetadata)
223
- ProjectOwner = DeprecationHelper(mlrun.common.schemas.ProjectOwner)
224
- ProjectsFormat = DeprecationHelper(mlrun.common.formatters.ProjectFormat)
225
- ProjectsOutput = DeprecationHelper(mlrun.common.schemas.ProjectsOutput)
226
- ProjectSpec = DeprecationHelper(mlrun.common.schemas.ProjectSpec)
227
- ProjectState = DeprecationHelper(mlrun.common.schemas.ProjectState)
228
- ProjectStatus = DeprecationHelper(mlrun.common.schemas.ProjectStatus)
229
- ProjectSummariesOutput = DeprecationHelper(mlrun.common.schemas.ProjectSummariesOutput)
230
- ProjectSummary = DeprecationHelper(mlrun.common.schemas.ProjectSummary)
231
- GroupedByJobRuntimeResourcesOutput = DeprecationHelper(
232
- mlrun.common.schemas.GroupedByJobRuntimeResourcesOutput
233
- )
234
- GroupedByProjectRuntimeResourcesOutput = DeprecationHelper(
235
- mlrun.common.schemas.GroupedByProjectRuntimeResourcesOutput
236
- )
237
- KindRuntimeResources = DeprecationHelper(mlrun.common.schemas.KindRuntimeResources)
238
- ListRuntimeResourcesGroupByField = DeprecationHelper(
239
- mlrun.common.schemas.ListRuntimeResourcesGroupByField
240
- )
241
- RuntimeResource = DeprecationHelper(mlrun.common.schemas.RuntimeResource)
242
- RuntimeResources = DeprecationHelper(mlrun.common.schemas.RuntimeResources)
243
- RuntimeResourcesOutput = DeprecationHelper(mlrun.common.schemas.RuntimeResourcesOutput)
244
- ScheduleCronTrigger = DeprecationHelper(mlrun.common.schemas.ScheduleCronTrigger)
245
- ScheduleInput = DeprecationHelper(mlrun.common.schemas.ScheduleInput)
246
- ScheduleKinds = DeprecationHelper(mlrun.common.schemas.ScheduleKinds)
247
- ScheduleOutput = DeprecationHelper(mlrun.common.schemas.ScheduleOutput)
248
- ScheduleRecord = DeprecationHelper(mlrun.common.schemas.ScheduleRecord)
249
- SchedulesOutput = DeprecationHelper(mlrun.common.schemas.SchedulesOutput)
250
- ScheduleUpdate = DeprecationHelper(mlrun.common.schemas.ScheduleUpdate)
251
- AuthSecretData = DeprecationHelper(mlrun.common.schemas.AuthSecretData)
252
- SecretKeysData = DeprecationHelper(mlrun.common.schemas.SecretKeysData)
253
- SecretProviderName = DeprecationHelper(mlrun.common.schemas.SecretProviderName)
254
- SecretsData = DeprecationHelper(mlrun.common.schemas.SecretsData)
255
- UserSecretCreationRequest = DeprecationHelper(
256
- mlrun.common.schemas.UserSecretCreationRequest
257
- )
258
- Tag = DeprecationHelper(mlrun.common.schemas.Tag)
259
- TagObjects = DeprecationHelper(mlrun.common.schemas.TagObjects)