zenml-nightly 0.82.1.dev20250521__py3-none-any.whl → 0.82.1.dev20250524__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.
- zenml/VERSION +1 -1
- zenml/client.py +6 -2
- zenml/config/build_configuration.py +7 -0
- zenml/config/docker_settings.py +25 -0
- zenml/config/server_config.py +7 -0
- zenml/constants.py +1 -0
- zenml/enums.py +1 -0
- zenml/environment.py +12 -0
- zenml/integrations/gcp/__init__.py +1 -1
- zenml/integrations/gcp/service_connectors/gcp_service_connector.py +12 -11
- zenml/integrations/hyperai/orchestrators/hyperai_orchestrator.py +1 -1
- zenml/integrations/kubernetes/orchestrators/kube_utils.py +16 -12
- zenml/materializers/built_in_materializer.py +9 -3
- zenml/zen_server/cloud_utils.py +45 -21
- zenml/zen_server/routers/actions_endpoints.py +6 -6
- zenml/zen_server/routers/artifact_endpoint.py +6 -6
- zenml/zen_server/routers/artifact_version_endpoints.py +11 -11
- zenml/zen_server/routers/auth_endpoints.py +4 -3
- zenml/zen_server/routers/code_repositories_endpoints.py +6 -6
- zenml/zen_server/routers/devices_endpoints.py +6 -6
- zenml/zen_server/routers/event_source_endpoints.py +6 -6
- zenml/zen_server/routers/flavors_endpoints.py +7 -7
- zenml/zen_server/routers/logs_endpoints.py +2 -2
- zenml/zen_server/routers/model_versions_endpoints.py +13 -13
- zenml/zen_server/routers/models_endpoints.py +6 -6
- zenml/zen_server/routers/pipeline_builds_endpoints.py +5 -5
- zenml/zen_server/routers/pipeline_deployments_endpoints.py +6 -6
- zenml/zen_server/routers/pipelines_endpoints.py +7 -7
- zenml/zen_server/routers/plugin_endpoints.py +3 -3
- zenml/zen_server/routers/projects_endpoints.py +7 -7
- zenml/zen_server/routers/run_metadata_endpoints.py +2 -2
- zenml/zen_server/routers/run_templates_endpoints.py +7 -7
- zenml/zen_server/routers/runs_endpoints.py +11 -11
- zenml/zen_server/routers/schedule_endpoints.py +6 -6
- zenml/zen_server/routers/secrets_endpoints.py +8 -8
- zenml/zen_server/routers/server_endpoints.py +13 -9
- zenml/zen_server/routers/service_accounts_endpoints.py +12 -12
- zenml/zen_server/routers/service_connectors_endpoints.py +13 -13
- zenml/zen_server/routers/service_endpoints.py +6 -6
- zenml/zen_server/routers/stack_components_endpoints.py +18 -9
- zenml/zen_server/routers/stack_deployment_endpoints.py +4 -4
- zenml/zen_server/routers/stacks_endpoints.py +6 -6
- zenml/zen_server/routers/steps_endpoints.py +8 -8
- zenml/zen_server/routers/tag_resource_endpoints.py +5 -5
- zenml/zen_server/routers/tags_endpoints.py +6 -6
- zenml/zen_server/routers/triggers_endpoints.py +9 -9
- zenml/zen_server/routers/users_endpoints.py +12 -12
- zenml/zen_server/routers/webhook_endpoints.py +2 -2
- zenml/zen_server/utils.py +72 -33
- zenml/zen_server/zen_server_api.py +211 -55
- zenml/zen_stores/rest_zen_store.py +40 -11
- zenml/zen_stores/sql_zen_store.py +79 -2
- {zenml_nightly-0.82.1.dev20250521.dist-info → zenml_nightly-0.82.1.dev20250524.dist-info}/METADATA +1 -1
- {zenml_nightly-0.82.1.dev20250521.dist-info → zenml_nightly-0.82.1.dev20250524.dist-info}/RECORD +57 -57
- {zenml_nightly-0.82.1.dev20250521.dist-info → zenml_nightly-0.82.1.dev20250524.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.82.1.dev20250521.dist-info → zenml_nightly-0.82.1.dev20250524.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.82.1.dev20250521.dist-info → zenml_nightly-0.82.1.dev20250524.dist-info}/entry_points.txt +0 -0
@@ -14,6 +14,7 @@
|
|
14
14
|
"""SQL Zen Store implementation."""
|
15
15
|
|
16
16
|
import base64
|
17
|
+
import inspect
|
17
18
|
import json
|
18
19
|
import logging
|
19
20
|
import math
|
@@ -21,6 +22,7 @@ import os
|
|
21
22
|
import random
|
22
23
|
import re
|
23
24
|
import sys
|
25
|
+
import threading
|
24
26
|
import time
|
25
27
|
from collections import defaultdict
|
26
28
|
from datetime import datetime
|
@@ -58,7 +60,7 @@ from pydantic import (
|
|
58
60
|
field_validator,
|
59
61
|
model_validator,
|
60
62
|
)
|
61
|
-
from sqlalchemy import func
|
63
|
+
from sqlalchemy import QueuePool, func
|
62
64
|
from sqlalchemy.engine import URL, Engine, make_url
|
63
65
|
from sqlalchemy.exc import (
|
64
66
|
ArgumentError,
|
@@ -66,6 +68,7 @@ from sqlalchemy.exc import (
|
|
66
68
|
)
|
67
69
|
from sqlalchemy.orm import Mapped, noload
|
68
70
|
from sqlalchemy.util import immutabledict
|
71
|
+
from sqlmodel import Session as SqlModelSession
|
69
72
|
|
70
73
|
# Important to note: The select function of SQLModel works slightly differently
|
71
74
|
# from the select function of sqlalchemy. If you input only one entity on the
|
@@ -74,7 +77,6 @@ from sqlalchemy.util import immutabledict
|
|
74
77
|
# the tuple. While this is convenient in most cases, in unique cases like using
|
75
78
|
# the "add_columns" functionality, one might encounter unexpected results.
|
76
79
|
from sqlmodel import (
|
77
|
-
Session,
|
78
80
|
SQLModel,
|
79
81
|
and_,
|
80
82
|
col,
|
@@ -412,6 +414,81 @@ def exponential_backoff_with_jitter(
|
|
412
414
|
return random.uniform(0, exponential_backoff)
|
413
415
|
|
414
416
|
|
417
|
+
class Session(SqlModelSession):
|
418
|
+
"""Session subclass that automatically tracks duration and calling context."""
|
419
|
+
|
420
|
+
def __enter__(self) -> "Session":
|
421
|
+
"""Enter the context manager.
|
422
|
+
|
423
|
+
Returns:
|
424
|
+
The SqlModel session.
|
425
|
+
"""
|
426
|
+
if logger.isEnabledFor(logging.DEBUG):
|
427
|
+
# Get the request ID from the current thread object
|
428
|
+
self.request_id = threading.current_thread().name
|
429
|
+
|
430
|
+
# Get SQLAlchemy connection pool info
|
431
|
+
assert isinstance(self.bind, Engine)
|
432
|
+
assert isinstance(self.bind.pool, QueuePool)
|
433
|
+
checked_out_connections = self.bind.pool.checkedout()
|
434
|
+
available_connections = self.bind.pool.checkedin()
|
435
|
+
overflow = self.bind.pool.overflow()
|
436
|
+
|
437
|
+
# Look up the stack to find the SQLZenStore method
|
438
|
+
for frame in inspect.stack():
|
439
|
+
if "self" in frame.frame.f_locals:
|
440
|
+
instance = frame.frame.f_locals["self"]
|
441
|
+
if isinstance(instance, SqlZenStore):
|
442
|
+
self.caller_method = (
|
443
|
+
f"{instance.__class__.__name__}.{frame.function}"
|
444
|
+
)
|
445
|
+
break
|
446
|
+
else:
|
447
|
+
self.caller_method = "unknown"
|
448
|
+
|
449
|
+
logger.debug(
|
450
|
+
f"[{self.request_id}] SQL STATS - "
|
451
|
+
f"'{self.caller_method}' started [ conn(active): "
|
452
|
+
f"{checked_out_connections} conn(idle): "
|
453
|
+
f"{available_connections} conn(overflow): {overflow} ]"
|
454
|
+
)
|
455
|
+
|
456
|
+
self.start_time = time.time()
|
457
|
+
|
458
|
+
return super().__enter__()
|
459
|
+
|
460
|
+
def __exit__(
|
461
|
+
self,
|
462
|
+
exc_type: Optional[Any],
|
463
|
+
exc_val: Optional[Any],
|
464
|
+
exc_tb: Optional[Any],
|
465
|
+
) -> None:
|
466
|
+
"""Exit the context manager.
|
467
|
+
|
468
|
+
Args:
|
469
|
+
exc_type: The exception type.
|
470
|
+
exc_val: The exception value.
|
471
|
+
exc_tb: The exception traceback.
|
472
|
+
"""
|
473
|
+
if logger.isEnabledFor(logging.DEBUG):
|
474
|
+
duration = (time.time() - self.start_time) * 1000
|
475
|
+
|
476
|
+
# Get SQLAlchemy connection pool info
|
477
|
+
assert isinstance(self.bind, Engine)
|
478
|
+
assert isinstance(self.bind.pool, QueuePool)
|
479
|
+
checked_out_connections = self.bind.pool.checkedout()
|
480
|
+
available_connections = self.bind.pool.checkedin()
|
481
|
+
overflow = self.bind.pool.overflow()
|
482
|
+
logger.debug(
|
483
|
+
f"[{self.request_id}] SQL STATS - "
|
484
|
+
f"'{self.caller_method}' completed in "
|
485
|
+
f"{duration:.2f}ms [ conn(active): "
|
486
|
+
f"{checked_out_connections} conn(idle): "
|
487
|
+
f"{available_connections} conn(overflow): {overflow} ]"
|
488
|
+
)
|
489
|
+
super().__exit__(exc_type, exc_val, exc_tb)
|
490
|
+
|
491
|
+
|
415
492
|
class SQLDatabaseDriver(StrEnum):
|
416
493
|
"""SQL database drivers supported by the SQL ZenML store."""
|
417
494
|
|
{zenml_nightly-0.82.1.dev20250521.dist-info → zenml_nightly-0.82.1.dev20250524.dist-info}/RECORD
RENAMED
@@ -1,5 +1,5 @@
|
|
1
1
|
zenml/README.md,sha256=827dekbOWAs1BpW7VF1a4d7EbwPbjwccX-2zdXBENZo,1777
|
2
|
-
zenml/VERSION,sha256=
|
2
|
+
zenml/VERSION,sha256=MexsT1YdyW8E4qM4hiGrG8oqIdUf48PHwk4-TGyiebg,19
|
3
3
|
zenml/__init__.py,sha256=CKEyepFK-7akXYiMrNVh92Nb01Cjs23w4_YyI6sgdc8,2242
|
4
4
|
zenml/actions/__init__.py,sha256=mrt6wPo73iKRxK754_NqsGyJ3buW7RnVeIGXr1xEw8Y,681
|
5
5
|
zenml/actions/base_action.py,sha256=UcaHev6BTuLDwuswnyaPjdA8AgUqB5xPZ-lRtuvf2FU,25553
|
@@ -55,7 +55,7 @@ zenml/cli/text_utils.py,sha256=bY1GIjoULt1cW2FyrPlMoAXNS2R7cSOjDFEZQqrpVQ8,3553
|
|
55
55
|
zenml/cli/user_management.py,sha256=sNnhaUxH-cHecbZBR1L0mEU0TnLNZHzI6ZBCUSQa7OY,13078
|
56
56
|
zenml/cli/utils.py,sha256=vMAb9f6GDfNVGmZWOz9UOyPRpKI3KfnYpRl_w9YUBNE,86501
|
57
57
|
zenml/cli/version.py,sha256=nm1iSU_1V6-MUwpMKeXcwFhLYGUMLswvQL67cEuCpxA,3635
|
58
|
-
zenml/client.py,sha256=
|
58
|
+
zenml/client.py,sha256=aCj2HEE6M724js6t4QJQq1S9R6C-_hxQe4UMUN0gjbw,293202
|
59
59
|
zenml/client_lazy_loader.py,sha256=MOBgS1ITYqGvPUnWQ6edn9s8Hr_72YfWbwEIfHKUr9g,7104
|
60
60
|
zenml/code_repositories/__init__.py,sha256=W5bDfzAG8OXIKZSV1L-VHuzMcSCYa9qzTdPb3jqfyYw,920
|
61
61
|
zenml/code_repositories/base_code_repository.py,sha256=Id6VjbUu8N3ZpNvBGhOgbahtoMiCAtYXed3G7YQ_iAc,5225
|
@@ -64,10 +64,10 @@ zenml/code_repositories/git/local_git_repository_context.py,sha256=hfX7zVDQ27Le0
|
|
64
64
|
zenml/code_repositories/local_repository_context.py,sha256=1VyiYkJBDVg0iGusgRQDToGRPJuu9lx7jTBDpplukDg,2816
|
65
65
|
zenml/config/__init__.py,sha256=DZEic7euSbwI9Yb3FMRQhTgfhqz-C6OdAiYmOb0-opI,1519
|
66
66
|
zenml/config/base_settings.py,sha256=itoLqc1cOwEYhgSGdZmSKSaBevQkvYH7NQh7PUamazc,1700
|
67
|
-
zenml/config/build_configuration.py,sha256=
|
67
|
+
zenml/config/build_configuration.py,sha256=jGGNwP0Cb7a80JXArNxDgxzxl9ytSZRtv-WW7_psLbM,6870
|
68
68
|
zenml/config/compiler.py,sha256=bK3LCDkrFc9SapJYH-vuQZ_o8scHNs-FdC5DblIUU4U,23024
|
69
69
|
zenml/config/constants.py,sha256=QvSgMwXWxtspcJ45CrFDP1ZY3w6gS3bIhXLOtIDAbZA,713
|
70
|
-
zenml/config/docker_settings.py,sha256=
|
70
|
+
zenml/config/docker_settings.py,sha256=WhoocDGn9cegEd4mKb_oo7pZ87sXZ0NvqkOVnWK8CY4,17985
|
71
71
|
zenml/config/global_config.py,sha256=ZD3WodfcWMBJZOl1FNn3ztzwilGDDv9EKdHClLqSO8s,29562
|
72
72
|
zenml/config/pipeline_configurations.py,sha256=7trCbElpqGGgawii2FrdLW8fKaAWCR8jACkNqdG_vcQ,3983
|
73
73
|
zenml/config/pipeline_run_configuration.py,sha256=Y9C5mVUH-w4gc1w1PCQFpjEmfBBpSMvb8riA_sL78hY,2311
|
@@ -77,7 +77,7 @@ zenml/config/retry_config.py,sha256=4UH1xqw0G6fSEbXSNKfmiFEkwadxQef9BGMe3JBm6NI,
|
|
77
77
|
zenml/config/schedule.py,sha256=-83j99U9OyiG7E322XWA7QvuLSwQzF21whwpeiF0b30,5348
|
78
78
|
zenml/config/secret_reference_mixin.py,sha256=YvY68MTd1gE23IVprf0BLkNn62hoxcvb5nqGgc8jMkU,5871
|
79
79
|
zenml/config/secrets_store_config.py,sha256=y05zqyQhr_DGrs3IfBGa_FRoZ043hSYRT5wzrx-zHTU,2818
|
80
|
-
zenml/config/server_config.py,sha256=
|
80
|
+
zenml/config/server_config.py,sha256=DYYQ10HddkvlCWobBpwpg8ggO6imMZCnfFxzqlkQg_U,32336
|
81
81
|
zenml/config/settings_resolver.py,sha256=PR9BRm_x1dy7nVKa9UqpeFdck8IEATSW6aWT8FKd-DI,4278
|
82
82
|
zenml/config/source.py,sha256=RzUw8lin8QztUjz-AdoCzVM5Om_cSSPuroaPx-qAO4w,8226
|
83
83
|
zenml/config/step_configurations.py,sha256=vjGtCoHneUJeaMkTiuzl7TTPBO94MefxNlFIAL1l5rU,13038
|
@@ -85,7 +85,7 @@ zenml/config/step_run_info.py,sha256=KiVRSTtKmZ1GbvseDTap2imr7XwMHD3jSFVpyLNEK1I
|
|
85
85
|
zenml/config/store_config.py,sha256=Cla5p5dTB6nNlo8_OZDs9hod5hspi64vxwtZj882XgU,3559
|
86
86
|
zenml/config/strict_base_model.py,sha256=t_ULrtJF2eW7TgyYBRobl1fscwwIZXATYky8ER97ev4,860
|
87
87
|
zenml/console.py,sha256=hj_KerPQKwnyKACj0ehSqUQX0mGVCJBKE1QvCt6ik3A,1160
|
88
|
-
zenml/constants.py,sha256=
|
88
|
+
zenml/constants.py,sha256=O8b67hvsObx42r2REHA_X4XqDwqm_Hcsq7hv6q96HDs,16650
|
89
89
|
zenml/container_registries/__init__.py,sha256=ZSPbBIOnzhg88kQSpYgKe_POLuru14m629665-kAVAA,2200
|
90
90
|
zenml/container_registries/azure_container_registry.py,sha256=t1sfDa94Vzbyqtb1iPFNutJ2EXV5_p9CUNITasoiQ70,2667
|
91
91
|
zenml/container_registries/base_container_registry.py,sha256=-9RIkD6oXNPaU59R3PB_PtyCqsFoLPLSn5xYZmEmzbc,8915
|
@@ -100,8 +100,8 @@ zenml/entrypoints/base_entrypoint_configuration.py,sha256=t7sU2MEEPVomX9dZCpPhk1
|
|
100
100
|
zenml/entrypoints/entrypoint.py,sha256=XNgXBCMKoidmP0_AYgMpqo-neG8Y8jG0rj43ofTDZ9E,2033
|
101
101
|
zenml/entrypoints/pipeline_entrypoint_configuration.py,sha256=To-vTP29qAE36ndJDF1fRw9wL2Nk2bsBuO-ayAwvSmo,1646
|
102
102
|
zenml/entrypoints/step_entrypoint_configuration.py,sha256=fJuTvJnGuhKc60CH1VMQL5EHomGXkYZulv6pVgd9M6w,7316
|
103
|
-
zenml/enums.py,sha256=
|
104
|
-
zenml/environment.py,sha256=
|
103
|
+
zenml/enums.py,sha256=xXp6VkaY03NlGKEBs9Bf7oVfUrtESECmhkQYAaKRS5g,11239
|
104
|
+
zenml/environment.py,sha256=_iS9o4rTxRCjLocSw_LEe9pZ9jfyMhXBY47LIUF3VCI,12255
|
105
105
|
zenml/event_hub/__init__.py,sha256=-fD9mPOslf4J-_XFBPp5gYlPz7-6ZaAKHa5jxf_nyAo,757
|
106
106
|
zenml/event_hub/base_event_hub.py,sha256=PqKrnvOye0UUS3s09zGgjI5dtj0IwzEBDbavA_PgfZQ,6579
|
107
107
|
zenml/event_hub/event_hub.py,sha256=e1eCRB1qAabOFIx2OJCAoNqN1QQIW0CSTukiWuGMOi8,6502
|
@@ -253,7 +253,7 @@ zenml/integrations/feast/feature_stores/__init__.py,sha256=Wi3NBBBPJg6CjgtxmBjoU
|
|
253
253
|
zenml/integrations/feast/feature_stores/feast_feature_store.py,sha256=jV6WznuKT3y1aikI3OEwoI8r_l8bEu5waX0LKePPuU8,5880
|
254
254
|
zenml/integrations/feast/flavors/__init__.py,sha256=gbCZ4tKgLZSI4-gzOCR2xihiPNmpe-lMUxwvMrhYL-w,858
|
255
255
|
zenml/integrations/feast/flavors/feast_feature_store_flavor.py,sha256=E0k2iwgNti8lOVr9W8n2nTVQQf2wSeJWeaQD1vwAIbU,3060
|
256
|
-
zenml/integrations/gcp/__init__.py,sha256=
|
256
|
+
zenml/integrations/gcp/__init__.py,sha256=9o7TXcQlNebImis821VXcOVFxKau86mbQ7H8d8e6mIw,2984
|
257
257
|
zenml/integrations/gcp/artifact_stores/__init__.py,sha256=zYQkZBI4-COGX-E0NS7G-hLT88wbQBnYY6Oh1gruSRs,798
|
258
258
|
zenml/integrations/gcp/artifact_stores/gcp_artifact_store.py,sha256=XfSIJ4HtsZvaUrUtzXvUp7QHr3WbgVDNsz7_q1h-DCo,10988
|
259
259
|
zenml/integrations/gcp/constants.py,sha256=ZBQS_ZEjerUrJq-hH3UusgZAvB45FLgxNv11TSt3qhw,1334
|
@@ -271,7 +271,7 @@ zenml/integrations/gcp/image_builders/gcp_image_builder.py,sha256=5T6BXsHxLhvp1B
|
|
271
271
|
zenml/integrations/gcp/orchestrators/__init__.py,sha256=6xLFJKZKQk73fHPF-XdpbQO87zjQNGTsNHjJjLfG_Kg,805
|
272
272
|
zenml/integrations/gcp/orchestrators/vertex_orchestrator.py,sha256=qoMCr36buZUz0y4CyTFQde3RDslkaGLAG0FjXc0XEPU,42100
|
273
273
|
zenml/integrations/gcp/service_connectors/__init__.py,sha256=fdydawaor8KAtMYvRZieiTuA1i5QATxXXgI-yV1lsn8,788
|
274
|
-
zenml/integrations/gcp/service_connectors/gcp_service_connector.py,sha256=
|
274
|
+
zenml/integrations/gcp/service_connectors/gcp_service_connector.py,sha256=9u-vEHbmSyN5IGwYI8v39TcFZg5ObgkxlbwSPz-e5zE,95018
|
275
275
|
zenml/integrations/gcp/step_operators/__init__.py,sha256=iPkob2LtPIQ-OHszhbNz_ojhoovL6SprmTx37It4EJ8,808
|
276
276
|
zenml/integrations/gcp/step_operators/vertex_step_operator.py,sha256=X8CCniyAo7NHiy3Mv_YSKQ4Hw3UYMXob6B3uWKsCJ-0,13567
|
277
277
|
zenml/integrations/gcp/vertex_custom_job_parameters.py,sha256=B5RLkw7KDOi4ZfWHFnC6TGLphXMzToMjROxszCEAS9c,3676
|
@@ -317,7 +317,7 @@ zenml/integrations/hyperai/__init__.py,sha256=6ed5rgRgiRr2Ksi3DDFUaNQwPkCfE4BRSn
|
|
317
317
|
zenml/integrations/hyperai/flavors/__init__.py,sha256=PUGBPmQ7y3H7QU2zAj7Ri0rrUBbOWnM_L59AIVWUYwU,800
|
318
318
|
zenml/integrations/hyperai/flavors/hyperai_orchestrator_flavor.py,sha256=erjbYJ5E3qkifyGd_ArtbY1JdfyOEz4vgl9QrZK0R9Y,5578
|
319
319
|
zenml/integrations/hyperai/orchestrators/__init__.py,sha256=kSYpMZPEWwNu2vxoOC6PeyQ9RLzsPAgTHxL35K36MiE,784
|
320
|
-
zenml/integrations/hyperai/orchestrators/hyperai_orchestrator.py,sha256=
|
320
|
+
zenml/integrations/hyperai/orchestrators/hyperai_orchestrator.py,sha256=6Z4GAXfkC2Ia4czQrgCy85xuocC9TYXTLmaNP8xxv_s,20287
|
321
321
|
zenml/integrations/hyperai/service_connectors/__init__.py,sha256=oHuCNC09z5C7Wlb3vV1d4zJjftttHg364eoEBVRDOdo,803
|
322
322
|
zenml/integrations/hyperai/service_connectors/hyperai_service_connector.py,sha256=7Ql5cVoSY3SE4j7uzeVi5TWuoKFDvsHFTn72k9_wPUY,13400
|
323
323
|
zenml/integrations/integration.py,sha256=ljUK2GHy-LNqsdloOvf8mIfUQsqoi0yBJYocMyS-DX8,6879
|
@@ -337,7 +337,7 @@ zenml/integrations/kubernetes/flavors/__init__.py,sha256=a5gU45qCj3FkLwl_uVjlIkL
|
|
337
337
|
zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py,sha256=JH_Kxfh1eoiSlz-OpixJ6itEsDiGPvbkA5_PffMTa54,10215
|
338
338
|
zenml/integrations/kubernetes/flavors/kubernetes_step_operator_flavor.py,sha256=xFO7cSusji-mgbRrt4mU29gdyC9iEjEHKtomdFLp9mM,6265
|
339
339
|
zenml/integrations/kubernetes/orchestrators/__init__.py,sha256=TJID3OTieZBox36WpQpzD0jdVRA_aZVcs_bNtfXS8ik,811
|
340
|
-
zenml/integrations/kubernetes/orchestrators/kube_utils.py,sha256=
|
340
|
+
zenml/integrations/kubernetes/orchestrators/kube_utils.py,sha256=N66GH5ac22Xm_A3nr162kbFBhMeypSFaQjOQRHlGXIQ,18942
|
341
341
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=qubV13fSGE_vo8wSzIfcp66McclLw-zDtmB4yCCaS08,25974
|
342
342
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint.py,sha256=Nd1YZsP6FZ4LTpoeFIM3YlFUugHX7F9axb7U9ZgGNdQ,12692
|
343
343
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint_configuration.py,sha256=KjHfQK9VQEQkkkM2i9w51AzqolgIU01M5dgb2YGamvY,2754
|
@@ -596,7 +596,7 @@ zenml/login/server_info.py,sha256=-_sK2L-curHdzUv1JDOwF6GoEeAXT5vFZN0J-5Ug4wU,16
|
|
596
596
|
zenml/login/web_login.py,sha256=Kq_fA9UQEravB2DtAkMmNvDttk8xppnxV617tCYUl6U,9186
|
597
597
|
zenml/materializers/__init__.py,sha256=C3lZaTmIFxwIPwCKF8oLQUkLaX2o7Dbj9hvYVFrSzt8,1758
|
598
598
|
zenml/materializers/base_materializer.py,sha256=M4hwkw7PB0LskCE92r-S35011l7DlFemit-EuUCW3Nc,14002
|
599
|
-
zenml/materializers/built_in_materializer.py,sha256=
|
599
|
+
zenml/materializers/built_in_materializer.py,sha256=HgcCHg3GpuQ4t-jecYcdg0kldUfLeUJvIpm8-wcS11I,17189
|
600
600
|
zenml/materializers/cloudpickle_materializer.py,sha256=x8a6jEMTky6N2YVHiwrnGWSfVJUpiy-4kQsD2Aqj_E0,4837
|
601
601
|
zenml/materializers/materializer_registry.py,sha256=ic-aWhJ2Ex9F_rml2dDVAxhRfW3nd71QMxzfTPP6BIM,4002
|
602
602
|
zenml/materializers/numpy_materializer.py,sha256=OLcHF9Z0tAqQ_U8TraA0vGmZjHoT7eT_XevncIutt0M,1715
|
@@ -805,7 +805,7 @@ zenml/utils/yaml_utils.py,sha256=RvEr-N84wwG1Aq8rfdPAP7lev_SEaSQlqcL9fB_vHk8,584
|
|
805
805
|
zenml/zen_server/__init__.py,sha256=WyltI9TzFW2mEHZVOs6alLWMCQrrZaFALtrQXs83STA,1355
|
806
806
|
zenml/zen_server/auth.py,sha256=sJ_UAG58Qa0sUx8P1QkWmwp5zfAafFnm8WBHAOnPi4w,40070
|
807
807
|
zenml/zen_server/cache.py,sha256=Tc4TSugmsU1bhThxlYfE8rv0KmltIX1CcVHgzrJ0Eus,6633
|
808
|
-
zenml/zen_server/cloud_utils.py,sha256=
|
808
|
+
zenml/zen_server/cloud_utils.py,sha256=vKsjWadgPctZDtfeG9qJC-5gKOir_tZsglYMBkC8QqU,11874
|
809
809
|
zenml/zen_server/csrf.py,sha256=Jsbi_IKriWCOuquSYTOEWqSXiGORJATIhR5Wrkm4XzQ,2684
|
810
810
|
zenml/zen_server/dashboard/assets/404-_AtuLtaX.js,sha256=Y2jAo7K2feru-k7QcMxjnfUNkDrO7xv341YyKKpjZiU,1033
|
811
811
|
zenml/zen_server/dashboard/assets/@radix-C7hRs6Kx.js,sha256=cNA9UX8LGrKUQubGrls3E3Wq1fCrlK51W14yh22FE_U,296700
|
@@ -1027,47 +1027,47 @@ zenml/zen_server/rbac/rbac_sql_zen_store.py,sha256=ZBjAbCUlhMsp8GZiIkULl2ztJ8K2W
|
|
1027
1027
|
zenml/zen_server/rbac/utils.py,sha256=09r1dSZ04hcag21rg6Ug2fMCdYfNjSBnx_W8C336GzE,24254
|
1028
1028
|
zenml/zen_server/rbac/zenml_cloud_rbac.py,sha256=L1Tio4IcNNxNWnVpAqBWYgdVfrqR20ddvdhWAo1i3f4,6055
|
1029
1029
|
zenml/zen_server/routers/__init__.py,sha256=ViyAhWL-ogHxE9wBvB_iMcur5H1NRVrzXkpogVY7FBA,641
|
1030
|
-
zenml/zen_server/routers/actions_endpoints.py,sha256
|
1031
|
-
zenml/zen_server/routers/artifact_endpoint.py,sha256=
|
1032
|
-
zenml/zen_server/routers/artifact_version_endpoints.py,sha256=
|
1033
|
-
zenml/zen_server/routers/auth_endpoints.py,sha256=
|
1034
|
-
zenml/zen_server/routers/code_repositories_endpoints.py,sha256=
|
1035
|
-
zenml/zen_server/routers/devices_endpoints.py,sha256=
|
1036
|
-
zenml/zen_server/routers/event_source_endpoints.py,sha256
|
1037
|
-
zenml/zen_server/routers/flavors_endpoints.py,sha256=
|
1038
|
-
zenml/zen_server/routers/logs_endpoints.py,sha256=
|
1039
|
-
zenml/zen_server/routers/model_versions_endpoints.py,sha256=
|
1040
|
-
zenml/zen_server/routers/models_endpoints.py,sha256=
|
1041
|
-
zenml/zen_server/routers/pipeline_builds_endpoints.py,sha256=
|
1042
|
-
zenml/zen_server/routers/pipeline_deployments_endpoints.py,sha256=
|
1043
|
-
zenml/zen_server/routers/pipelines_endpoints.py,sha256=
|
1044
|
-
zenml/zen_server/routers/plugin_endpoints.py,sha256=
|
1045
|
-
zenml/zen_server/routers/projects_endpoints.py,sha256=
|
1046
|
-
zenml/zen_server/routers/run_metadata_endpoints.py,sha256=
|
1047
|
-
zenml/zen_server/routers/run_templates_endpoints.py,sha256=
|
1048
|
-
zenml/zen_server/routers/runs_endpoints.py,sha256=
|
1049
|
-
zenml/zen_server/routers/schedule_endpoints.py,sha256=
|
1050
|
-
zenml/zen_server/routers/secrets_endpoints.py,sha256=
|
1051
|
-
zenml/zen_server/routers/server_endpoints.py,sha256=
|
1052
|
-
zenml/zen_server/routers/service_accounts_endpoints.py,sha256=
|
1053
|
-
zenml/zen_server/routers/service_connectors_endpoints.py,sha256=
|
1054
|
-
zenml/zen_server/routers/service_endpoints.py,sha256=
|
1055
|
-
zenml/zen_server/routers/stack_components_endpoints.py,sha256=
|
1056
|
-
zenml/zen_server/routers/stack_deployment_endpoints.py,sha256=
|
1057
|
-
zenml/zen_server/routers/stacks_endpoints.py,sha256=
|
1058
|
-
zenml/zen_server/routers/steps_endpoints.py,sha256=
|
1059
|
-
zenml/zen_server/routers/tag_resource_endpoints.py,sha256=
|
1060
|
-
zenml/zen_server/routers/tags_endpoints.py,sha256=
|
1061
|
-
zenml/zen_server/routers/triggers_endpoints.py,sha256=
|
1062
|
-
zenml/zen_server/routers/users_endpoints.py,sha256
|
1063
|
-
zenml/zen_server/routers/webhook_endpoints.py,sha256=
|
1030
|
+
zenml/zen_server/routers/actions_endpoints.py,sha256=-zzeTawwTrkWOnp8ltrGS_tUnWnyiXMFNaBRXI3zddk,9500
|
1031
|
+
zenml/zen_server/routers/artifact_endpoint.py,sha256=d-5yPQO4N9O2W97j0f_5fghNThnNe0izT9WpZLaJyuA,5054
|
1032
|
+
zenml/zen_server/routers/artifact_version_endpoints.py,sha256=1M1DpSFEDBDUVAd69eXf6Y-2vCiq8_MN5gi5nu0f3Iw,11397
|
1033
|
+
zenml/zen_server/routers/auth_endpoints.py,sha256=QInOg3IPn2ErzccmOLw8xJQd-jtyVR2VFZ9D-virM0U,22386
|
1034
|
+
zenml/zen_server/routers/code_repositories_endpoints.py,sha256=BEjnbUbH2CM7q-VfrKES-d3ngSipnvfTuvAsd88yRCo,6554
|
1035
|
+
zenml/zen_server/routers/devices_endpoints.py,sha256=ehOVJZwXYtZZh6VeXcUlhOgPq0yoZk2-mumKEeOn6Do,10629
|
1036
|
+
zenml/zen_server/routers/event_source_endpoints.py,sha256=-H5li0QTviGA2vFD6yW1N580KCuB9JFvosiXIdB0N_4,10242
|
1037
|
+
zenml/zen_server/routers/flavors_endpoints.py,sha256=S3RqxH68ytKlB8nLJooFpjb2RGNJa2xfPSz9zuYkS3Q,5364
|
1038
|
+
zenml/zen_server/routers/logs_endpoints.py,sha256=55nWKudfsE86xGKUf-XcG35EWldb8TSMEyEM1IRcr5Q,1905
|
1039
|
+
zenml/zen_server/routers/model_versions_endpoints.py,sha256=4gKbJC_vSYY6JZfJfmqDB0zwUM40vMGmLhrzznbTpko,15652
|
1040
|
+
zenml/zen_server/routers/models_endpoints.py,sha256=fF7q3znX5KaQiMtFK32yq4CeMASf7lt_ygl2QeNDzVo,5758
|
1041
|
+
zenml/zen_server/routers/pipeline_builds_endpoints.py,sha256=oYMIiGRGmWgF467YcvupGJvmkUHiygsYjl1lxk0D7RE,5398
|
1042
|
+
zenml/zen_server/routers/pipeline_deployments_endpoints.py,sha256=tY48uFvzlU2tJRG-QRHAe7HB6iYTB5881SMdaPQvVDI,9612
|
1043
|
+
zenml/zen_server/routers/pipelines_endpoints.py,sha256=Nnh5jPLF3hV-muRPQMt_8j9dBmjOloT6a4o29PBTQj0,7873
|
1044
|
+
zenml/zen_server/routers/plugin_endpoints.py,sha256=vyKKQIiLSzC5WkZoQdzS7sU-qYFSGn-fwCt917RxX_M,3278
|
1045
|
+
zenml/zen_server/routers/projects_endpoints.py,sha256=uL7oK8_0-H2nhjvPYHfYPvJOU4id7-n81MwjiSzHToE,8555
|
1046
|
+
zenml/zen_server/routers/run_metadata_endpoints.py,sha256=hUatO7c6LUBHpMDZYgDqiUbVUSBpt6-ZxaSC9eAaF9I,3688
|
1047
|
+
zenml/zen_server/routers/run_templates_endpoints.py,sha256=7MZjreJikAcwGfUmSbw4dunZISSKlf1iy33oYsXYXRI,8560
|
1048
|
+
zenml/zen_server/routers/runs_endpoints.py,sha256=CTLrVvYdcnbVgv04WpiJGervAI7nGiFn8MCpTdqDvJk,12774
|
1049
|
+
zenml/zen_server/routers/schedule_endpoints.py,sha256=m8TVhncapdtQqPm5EEm7CAeGr_i_0Tqa61EA8p1bIl4,5860
|
1050
|
+
zenml/zen_server/routers/secrets_endpoints.py,sha256=VgepInQHZXt-d8IAinftHs1n9il6hTD1qca6w5Pnnsk,9302
|
1051
|
+
zenml/zen_server/routers/server_endpoints.py,sha256=Aci-7TB5VZylmasEYc2tVpG7Npgtp6Dj56nrmy7mMmc,8133
|
1052
|
+
zenml/zen_server/routers/service_accounts_endpoints.py,sha256=q-vFzzYYorqaOPUnESQU06h2I-BaZvIyPxCAhQ4gLPw,12086
|
1053
|
+
zenml/zen_server/routers/service_connectors_endpoints.py,sha256=CkwhnNI49_64lqG7aWHtyE41iqKlY-lumiOrWU7aDU0,17570
|
1054
|
+
zenml/zen_server/routers/service_endpoints.py,sha256=37CY-22h4hTscEkBByKJqdHcOWsP2lTGAiY2WgBPB0w,5566
|
1055
|
+
zenml/zen_server/routers/stack_components_endpoints.py,sha256=MBQ3iz29WN1n9T_BLpd2BtWxWoLIBP6QT7BfaAkGEMY,8580
|
1056
|
+
zenml/zen_server/routers/stack_deployment_endpoints.py,sha256=r7N4UaDAwj9ACYfdyUofRHpNPRrzWl-vmGoSErN9oYI,5381
|
1057
|
+
zenml/zen_server/routers/stacks_endpoints.py,sha256=ci-WZ774Q2T3-XN6cZARJ95wmRUW2-W1mh7gKlbNE54,7527
|
1058
|
+
zenml/zen_server/routers/steps_endpoints.py,sha256=KZpVsEsycLMmiEGnwT2EkmQvaTIIyL4QOUJBXMu7NSo,8239
|
1059
|
+
zenml/zen_server/routers/tag_resource_endpoints.py,sha256=54HBt31whSj7wjzhw9Xzb6aJLBDVPd5iyg5fJ2Ej5qU,3268
|
1060
|
+
zenml/zen_server/routers/tags_endpoints.py,sha256=H0aXms8iAkcxo9lsBwpDrVhJnY5n2cqBd3Iz1OI8r_k,4545
|
1061
|
+
zenml/zen_server/routers/triggers_endpoints.py,sha256=Z9ry01MMpCZ2wcjcvJjnEu1eDhkcGACKuBL_F9m8smI,10100
|
1062
|
+
zenml/zen_server/routers/users_endpoints.py,sha256=-0wjKK0LYOUY7gmmbTRU1AHIej99dRvy3TI0bsGk9hQ,24687
|
1063
|
+
zenml/zen_server/routers/webhook_endpoints.py,sha256=4Ca6k_qyE5lZpflEqV0P4mcuXnhlW9N-YemZIwchRJg,4009
|
1064
1064
|
zenml/zen_server/secure_headers.py,sha256=glh6QujnjyeoH1_FK-tAS-105G-qKS_34AqSzqJ6TRc,4182
|
1065
1065
|
zenml/zen_server/template_execution/__init__.py,sha256=79knXLKfegsvVSVSWecpqrepq6iAavTUA4hKuiDk-WE,613
|
1066
1066
|
zenml/zen_server/template_execution/runner_entrypoint_configuration.py,sha256=Y8aYJhqqs8Kv8I1q-dM1WemS5VBIfyoaaYH_YkzC7iY,1541
|
1067
1067
|
zenml/zen_server/template_execution/utils.py,sha256=CiN7d8jCUTV5oKuoNF9Z_eDkitZrhL6V_Tz4CjU7em8,19410
|
1068
1068
|
zenml/zen_server/template_execution/workload_manager_interface.py,sha256=CL9c7z8ajuZE01DaHmdCDCZmsroDcTarvN-nE8jv6qQ,2590
|
1069
|
-
zenml/zen_server/utils.py,sha256=
|
1070
|
-
zenml/zen_server/zen_server_api.py,sha256=
|
1069
|
+
zenml/zen_server/utils.py,sha256=roJuND2KMVPue7fztVOKn4Tvoj1bvQ54TFpXgIa78Y0,20474
|
1070
|
+
zenml/zen_server/zen_server_api.py,sha256=Bhdn2AwGINEpKJiTL3QpC0EK8pvgGNK1IZNJr6E6ijE,23229
|
1071
1071
|
zenml/zen_stores/__init__.py,sha256=6LTgH6XwDeDxKqVJ1JTfGhmS8II1NLopPloINGmdyI0,691
|
1072
1072
|
zenml/zen_stores/base_zen_store.py,sha256=AplsW2NR-G9_CU54XvNTQJo4W0KJ5TJV22cjKW4n2BY,16124
|
1073
1073
|
zenml/zen_stores/migrations/README.md,sha256=x04jsb6EOP6PBEGMQlDELiqKEham2O-iztAs9AylMFc,4898
|
@@ -1273,7 +1273,7 @@ zenml/zen_stores/migrations/versions/f49904a80aa7_increase_length_of_artifact_ta
|
|
1273
1273
|
zenml/zen_stores/migrations/versions/f76a368a25a5_add_stack_description.py,sha256=u8fRomaasFeGhxvM2zU-Ab-AEpVsWm5zRcixxKFXdRw,904
|
1274
1274
|
zenml/zen_stores/migrations/versions/fbd7f18ced1e_increase_step_run_field_lengths.py,sha256=kn-ng5EHe_mmLfffIFbz7T59z-to3oMx8III_4wOsz4,1956
|
1275
1275
|
zenml/zen_stores/migrations/versions/ff538a321a92_migrate_onboarding_state.py,sha256=gsUFLJQ32_o9U35JCVqkqJVVk-zfq3yel25hXhzVFm4,3829
|
1276
|
-
zenml/zen_stores/rest_zen_store.py,sha256=
|
1276
|
+
zenml/zen_stores/rest_zen_store.py,sha256=ljz1iIc8szDh1dlX1129Q817gcDBuzFzQnw6hkSMYCg,159628
|
1277
1277
|
zenml/zen_stores/schemas/__init__.py,sha256=4EXqExiVyxdnGxhQ_Hz79mOdRuMD0LsGlw0PaP2Ef6o,4333
|
1278
1278
|
zenml/zen_stores/schemas/action_schemas.py,sha256=sv2J2TP12MeyGPQR2JsOPIivbPQ5OImg64exYS7CZBM,6496
|
1279
1279
|
zenml/zen_stores/schemas/api_key_schemas.py,sha256=0pK7b9HlJuQL3DuKT4eGjFb87tyd4x-E2VyxJLpRv3o,7459
|
@@ -1316,11 +1316,11 @@ zenml/zen_stores/secrets_stores/hashicorp_secrets_store.py,sha256=5err1a-TrV3SR5
|
|
1316
1316
|
zenml/zen_stores/secrets_stores/secrets_store_interface.py,sha256=Q2Jbnt2Pp7NGlR-u1YBfRZV2g8su2Fd0ArBMdksAE-Q,2819
|
1317
1317
|
zenml/zen_stores/secrets_stores/service_connector_secrets_store.py,sha256=S87ne23D08PAwtfRVlVnBn8R0ilTpEh6r8blauNV5WQ,6941
|
1318
1318
|
zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=LPFW757WCJLP1S8vrvjsrl2Tf1yo281xUTjSBsos4qk,8788
|
1319
|
-
zenml/zen_stores/sql_zen_store.py,sha256=
|
1319
|
+
zenml/zen_stores/sql_zen_store.py,sha256=jsx_1_MJZE4dnNXxj8bAMX8pT5JfoJliADSBF9n6kJc,444809
|
1320
1320
|
zenml/zen_stores/template_utils.py,sha256=GbJ7LgGVYHSCKPEA8RNTxPoVTWqpC77F_lGzjJ4O1Fw,9220
|
1321
1321
|
zenml/zen_stores/zen_store_interface.py,sha256=fF_uL_FplnvGvM5o3jOQ8i1zHXhuhKLL2n4nvIKSR7E,92090
|
1322
|
-
zenml_nightly-0.82.1.
|
1323
|
-
zenml_nightly-0.82.1.
|
1324
|
-
zenml_nightly-0.82.1.
|
1325
|
-
zenml_nightly-0.82.1.
|
1326
|
-
zenml_nightly-0.82.1.
|
1322
|
+
zenml_nightly-0.82.1.dev20250524.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1323
|
+
zenml_nightly-0.82.1.dev20250524.dist-info/METADATA,sha256=OFFcRSYChQvW4vCBOO5FJDfx8UkZbhmq9DKwtmBN2s0,24317
|
1324
|
+
zenml_nightly-0.82.1.dev20250524.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
1325
|
+
zenml_nightly-0.82.1.dev20250524.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1326
|
+
zenml_nightly-0.82.1.dev20250524.dist-info/RECORD,,
|
{zenml_nightly-0.82.1.dev20250521.dist-info → zenml_nightly-0.82.1.dev20250524.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.82.1.dev20250521.dist-info → zenml_nightly-0.82.1.dev20250524.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|