zenml-nightly 0.80.0.dev20250326__py3-none-any.whl → 0.80.0.dev20250328__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/cli/project.py +41 -4
- zenml/client.py +7 -2
- zenml/config/global_config.py +15 -15
- zenml/integrations/databricks/__init__.py +6 -3
- zenml/integrations/deepchecks/__init__.py +5 -2
- zenml/integrations/evidently/__init__.py +5 -2
- zenml/integrations/facets/__init__.py +5 -2
- zenml/integrations/feast/__init__.py +4 -2
- zenml/integrations/great_expectations/__init__.py +4 -2
- zenml/integrations/huggingface/__init__.py +4 -2
- zenml/integrations/integration.py +6 -1
- zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py +1 -1
- zenml/integrations/langchain/materializers/openai_embedding_materializer.py +5 -9
- zenml/integrations/langchain/materializers/vector_store_materializer.py +3 -7
- zenml/integrations/llama_index/materializers/document_materializer.py +2 -6
- zenml/integrations/llama_index/materializers/gpt_index_materializer.py +2 -7
- zenml/integrations/mlflow/__init__.py +15 -4
- zenml/integrations/seldon/__init__.py +4 -2
- zenml/integrations/tensorboard/__init__.py +3 -1
- zenml/integrations/tensorflow/__init__.py +4 -3
- zenml/integrations/whylogs/__init__.py +4 -2
- zenml/models/v2/core/user.py +17 -0
- zenml/utils/requirements_utils.py +12 -3
- zenml/zen_server/routers/users_endpoints.py +169 -173
- zenml/zen_server/template_execution/utils.py +14 -5
- zenml/zen_stores/base_zen_store.py +46 -14
- zenml/zen_stores/migrations/versions/1f1105204aaf_add_user_default_project.py +51 -0
- zenml/zen_stores/rest_zen_store.py +1 -3
- zenml/zen_stores/schemas/user_schemas.py +11 -0
- zenml/zen_stores/sql_zen_store.py +1 -5
- {zenml_nightly-0.80.0.dev20250326.dist-info → zenml_nightly-0.80.0.dev20250328.dist-info}/METADATA +1 -1
- {zenml_nightly-0.80.0.dev20250326.dist-info → zenml_nightly-0.80.0.dev20250328.dist-info}/RECORD +36 -35
- {zenml_nightly-0.80.0.dev20250326.dist-info → zenml_nightly-0.80.0.dev20250328.dist-info}/LICENSE +0 -0
- {zenml_nightly-0.80.0.dev20250326.dist-info → zenml_nightly-0.80.0.dev20250328.dist-info}/WHEEL +0 -0
- {zenml_nightly-0.80.0.dev20250326.dist-info → zenml_nightly-0.80.0.dev20250328.dist-info}/entry_points.txt +0 -0
@@ -4369,8 +4369,6 @@ class RestZenStore(BaseZenStore):
|
|
4369
4369
|
CredentialsNotValid: if the request fails due to invalid
|
4370
4370
|
client credentials.
|
4371
4371
|
"""
|
4372
|
-
params = {k: str(v) for k, v in params.items()} if params else {}
|
4373
|
-
|
4374
4372
|
self.session.headers.update(
|
4375
4373
|
{source_context.name: source_context.get().value}
|
4376
4374
|
)
|
@@ -4396,7 +4394,7 @@ class RestZenStore(BaseZenStore):
|
|
4396
4394
|
self.session.request(
|
4397
4395
|
method,
|
4398
4396
|
url,
|
4399
|
-
params=params,
|
4397
|
+
params=params if params else {},
|
4400
4398
|
verify=self.config.verify_ssl,
|
4401
4399
|
timeout=timeout or self.config.http_timeout,
|
4402
4400
|
**kwargs,
|
@@ -34,6 +34,7 @@ from zenml.models import (
|
|
34
34
|
)
|
35
35
|
from zenml.utils.time_utils import utc_now
|
36
36
|
from zenml.zen_stores.schemas.base_schemas import NamedSchema
|
37
|
+
from zenml.zen_stores.schemas.schema_utils import build_foreign_key_field
|
37
38
|
|
38
39
|
if TYPE_CHECKING:
|
39
40
|
from zenml.zen_stores.schemas import (
|
@@ -83,6 +84,15 @@ class UserSchema(NamedSchema, table=True):
|
|
83
84
|
is_admin: bool = Field(default=False)
|
84
85
|
user_metadata: Optional[str] = Field(nullable=True)
|
85
86
|
|
87
|
+
default_project_id: Optional[UUID] = build_foreign_key_field(
|
88
|
+
source=__tablename__,
|
89
|
+
target="project",
|
90
|
+
source_column="default_project_id",
|
91
|
+
target_column="id",
|
92
|
+
ondelete="SET NULL",
|
93
|
+
nullable=True,
|
94
|
+
)
|
95
|
+
|
86
96
|
stacks: List["StackSchema"] = Relationship(back_populates="user")
|
87
97
|
components: List["StackComponentSchema"] = Relationship(
|
88
98
|
back_populates="user",
|
@@ -299,6 +309,7 @@ class UserSchema(NamedSchema, table=True):
|
|
299
309
|
created=self.created,
|
300
310
|
updated=self.updated,
|
301
311
|
is_admin=self.is_admin,
|
312
|
+
default_project_id=self.default_project_id,
|
302
313
|
),
|
303
314
|
metadata=metadata,
|
304
315
|
)
|
@@ -8804,11 +8804,7 @@ class SqlZenStore(BaseZenStore):
|
|
8804
8804
|
# We pass the zenml_schemas module as the globals dict to
|
8805
8805
|
# _evaluate, because this is where the schema classes are
|
8806
8806
|
# defined
|
8807
|
-
if sys.version_info
|
8808
|
-
# For Python versions <3.9, leave out the third parameter to
|
8809
|
-
# _evaluate
|
8810
|
-
target_schema = schema_ref._evaluate(vars(zenml_schemas), {})
|
8811
|
-
elif sys.version_info >= (3, 12, 4):
|
8807
|
+
if sys.version_info >= (3, 12, 4):
|
8812
8808
|
target_schema = schema_ref._evaluate(
|
8813
8809
|
vars(zenml_schemas), {}, recursive_guard=frozenset()
|
8814
8810
|
)
|
{zenml_nightly-0.80.0.dev20250326.dist-info → zenml_nightly-0.80.0.dev20250328.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=mZbp26e6VxV3bgT7JnLKRQOEASov0tJg3ZWrdZnKGa0,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
|
@@ -42,7 +42,7 @@ zenml/cli/login.py,sha256=-tPuTaWctRDkWZOcY4Af2uens6_oEWFkehl8ITeKFHk,38836
|
|
42
42
|
zenml/cli/model.py,sha256=7lmeMLwD3BIWaw_P3WBFRe42Twfvb11K67p_xmvRWH0,22817
|
43
43
|
zenml/cli/model_registry.py,sha256=zzxWXXFhKu2B1Wp0u7prKVnN1ftM-JdGdQwlD-5G-QM,20786
|
44
44
|
zenml/cli/pipeline.py,sha256=Vlz1OgGb1Ep-4Ekgd-Wz5SmieWigfx56i8wA5BGl228,19222
|
45
|
-
zenml/cli/project.py,sha256=
|
45
|
+
zenml/cli/project.py,sha256=oo9rxjwcX9Mi-0ZtiTMOoajQ8JrEkl23BcNFZxjfhj0,6536
|
46
46
|
zenml/cli/secret.py,sha256=zwt07v0xoIf_dLf-qY5CFdbKepBEuwmXD2HIMcLe_xU,20164
|
47
47
|
zenml/cli/served_model.py,sha256=3w1UcAbg6Geu37fr7ej1_81GBCt3fF7j3Ge799YE4Mc,14974
|
48
48
|
zenml/cli/server.py,sha256=EmElo8MlPujj15waddSN7wb7M7vu0HCfkIFgILGLL6Q,26130
|
@@ -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=6Bv2-gqkHC8DdUT4b_HL6pgGMErY8lwjuJb-eHgPTJA,86383
|
57
57
|
zenml/cli/version.py,sha256=nm1iSU_1V6-MUwpMKeXcwFhLYGUMLswvQL67cEuCpxA,3635
|
58
|
-
zenml/client.py,sha256=
|
58
|
+
zenml/client.py,sha256=l8nHsajF_Ctn3ne4unrn7OHW-VG4OKOKObt-POYFZzE,292402
|
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
|
@@ -68,7 +68,7 @@ zenml/config/build_configuration.py,sha256=Jsng7ebpeaRbzXlbszU-uYkaVihgQ4OrD839y
|
|
68
68
|
zenml/config/compiler.py,sha256=pBRJRAzjHloYShJiknDugbH5FGiit5G1o2IJ2dnE9-E,23318
|
69
69
|
zenml/config/constants.py,sha256=QvSgMwXWxtspcJ45CrFDP1ZY3w6gS3bIhXLOtIDAbZA,713
|
70
70
|
zenml/config/docker_settings.py,sha256=KTUR9FaRn3ivcagzFgpLe4eev8fvd5Wq1oV8wGNMB-g,13322
|
71
|
-
zenml/config/global_config.py,sha256=
|
71
|
+
zenml/config/global_config.py,sha256=3w2PLnbfmu6qUdJ1LIn1cdmylSy7VhB2pG1_sxbOPjQ,29556
|
72
72
|
zenml/config/pipeline_configurations.py,sha256=f6mxkTFCCKhGXSPgNQ2JUdBzfL2m_VYuRxWG-OKx54M,3751
|
73
73
|
zenml/config/pipeline_run_configuration.py,sha256=uWTD4778HcCjDpPSfGmBlVqddxTq4cq1_du5kQIIGBA,2263
|
74
74
|
zenml/config/pipeline_spec.py,sha256=uWpiIfznJvXAiKs1yMIUDT1h1tYEFNO-RDVTYcIv9CE,2821
|
@@ -195,7 +195,7 @@ zenml/integrations/comet/experiment_trackers/comet_experiment_tracker.py,sha256=
|
|
195
195
|
zenml/integrations/comet/flavors/__init__.py,sha256=x-XK-YwHMxz3zZPoIXo3X5vq_5VYUJAnsIoEX_ZooOU,883
|
196
196
|
zenml/integrations/comet/flavors/comet_experiment_tracker_flavor.py,sha256=Rkk1UtEVY2MQBKbUHKxYQpDTWndkOYF8KuKuMGZAb24,3706
|
197
197
|
zenml/integrations/constants.py,sha256=hbRRrkXz4qBFFZOl81G_2u7O-gWLU8DTSy43HlyUDUY,2071
|
198
|
-
zenml/integrations/databricks/__init__.py,sha256=
|
198
|
+
zenml/integrations/databricks/__init__.py,sha256=8iVVrH0rZZBGRu4ZTFoSeCdIBu0WlUg9pLXMShifW54,2561
|
199
199
|
zenml/integrations/databricks/flavors/__init__.py,sha256=S-BZ3R9iKGOw-aUltR8I0ULEe2-LKGTIZhQv9TlnXfk,1122
|
200
200
|
zenml/integrations/databricks/flavors/databricks_model_deployer_flavor.py,sha256=eDyYVqO2x1A9qgGICKJx5Z3qiUuTMfW9R3NZUO8OiRk,3591
|
201
201
|
zenml/integrations/databricks/flavors/databricks_orchestrator_flavor.py,sha256=j4l5CK7MGEcSTUM179Iig_Lp-RmaR7bYCr9lBdV4NHg,5216
|
@@ -208,7 +208,7 @@ zenml/integrations/databricks/services/__init__.py,sha256=Sve9TXrgzs7PH_rFq4ReqA
|
|
208
208
|
zenml/integrations/databricks/services/databricks_deployment.py,sha256=RM2aIiOvoafoYmZXJ7oa2qKskW5QjT8C2gP8ZY40ZUs,14568
|
209
209
|
zenml/integrations/databricks/utils/__init__.py,sha256=yujBPgdRCo_7dnl3osKvv9gwKtxMJlzShD4nTWJu_mw,657
|
210
210
|
zenml/integrations/databricks/utils/databricks_utils.py,sha256=Zy0VJlyI_riUrg3aKXz4m_UlUCxi8xni3TuFk2zn5G8,2967
|
211
|
-
zenml/integrations/deepchecks/__init__.py,sha256=
|
211
|
+
zenml/integrations/deepchecks/__init__.py,sha256=kocih5929Db0nMK3j4sXawsqipSIA3xtOgtYKaJziWU,3323
|
212
212
|
zenml/integrations/deepchecks/data_validators/__init__.py,sha256=i7QKjkqoUSFGg_l7JuVbnHFs5uxOKRcSp0s3apwF2RM,835
|
213
213
|
zenml/integrations/deepchecks/data_validators/deepchecks_data_validator.py,sha256=kKp8O7SmPrk2Rqq4KX6MjtrNyPYZfrRhBYI9DO7jpec,21443
|
214
214
|
zenml/integrations/deepchecks/flavors/__init__.py,sha256=TkUMrj_WWzGiPqc4GxCYjE-80AQyYhYDUBoqZ9fWTOc,819
|
@@ -230,7 +230,7 @@ zenml/integrations/discord/flavors/discord_alerter_flavor.py,sha256=9hX7R7dfxSwi
|
|
230
230
|
zenml/integrations/discord/steps/__init__.py,sha256=stSDntUMzrHzwMJm1V1-jm7otII7uW6Fxj7qYB7MWrc,663
|
231
231
|
zenml/integrations/discord/steps/discord_alerter_ask_step.py,sha256=puBERGjhpBRaift8GCygAgnjgZHbeqclRywxJjjjEG8,2553
|
232
232
|
zenml/integrations/discord/steps/discord_alerter_post_step.py,sha256=te4M4Q47e1nShPHLLv414bjDuG_r7XCxDUbLgwGXEtI,2283
|
233
|
-
zenml/integrations/evidently/__init__.py,sha256=
|
233
|
+
zenml/integrations/evidently/__init__.py,sha256=ZNbkmtHPsk4qs4AColYU9a2VN8oV5XPtUrmb78UTDg0,3185
|
234
234
|
zenml/integrations/evidently/column_mapping.py,sha256=slZwGaArhYZNZnXfwYFXZEt7bqq2jswvb1vwkedvGRE,3555
|
235
235
|
zenml/integrations/evidently/data_validators/__init__.py,sha256=7H1HCXAefk-asnSAYqfud-l17rsBFfhCrgps2abhmFY,830
|
236
236
|
zenml/integrations/evidently/data_validators/evidently_data_validator.py,sha256=V34Nze3Mi4JpTlJJQf-i582WxAZrg5-yAv1HcUf7ULE,10316
|
@@ -241,14 +241,14 @@ zenml/integrations/evidently/steps/__init__.py,sha256=ilbOiPjIDO_O0x7QS8fae4qqfx
|
|
241
241
|
zenml/integrations/evidently/steps/evidently_report.py,sha256=iNV3qobh6WMYDBPc6kvRgrtKnrQsk5HpBU3Q0-hXyiU,4242
|
242
242
|
zenml/integrations/evidently/steps/evidently_test.py,sha256=pnSyH8pZx8NqgRNHyvYgWt8MRz7wtXmujgDqZKlDuBI,4133
|
243
243
|
zenml/integrations/evidently/tests.py,sha256=mOjeX3gBwRaUR0Q9yqzqJQ9KJczkfXeATqrysMmoI9k,12324
|
244
|
-
zenml/integrations/facets/__init__.py,sha256=
|
244
|
+
zenml/integrations/facets/__init__.py,sha256=eqzzIAtYaSoDjbb8WPR-CrEOK7-2_uQYwKUDL8iyE-0,1817
|
245
245
|
zenml/integrations/facets/materializers/__init__.py,sha256=SALIcweWCvMst3phqCEM8wII8o_AQBjuBhC8fKE7weA,776
|
246
246
|
zenml/integrations/facets/materializers/facets_materializer.py,sha256=HQeYEmFeW8vGv-2Lyzv5MkK-FUQf5UC_wGpTbdCacQo,2553
|
247
247
|
zenml/integrations/facets/materializers/stats.html,sha256=xssmMSfg1MWAyGFIY8kKe7BDOL1vMZWf5H6nbvNvLwg,1284
|
248
248
|
zenml/integrations/facets/models.py,sha256=1BuF2Hwr3alvUo6fULz2O8QPTCGifaY7TppM1ripFMc,1217
|
249
249
|
zenml/integrations/facets/steps/__init__.py,sha256=MNjm54V903woZy_7mw-hvelGVRUXci6YE7WEsFfNRpk,1031
|
250
250
|
zenml/integrations/facets/steps/facets_visualization_steps.py,sha256=MOaDFcJDy1UM3qlHVJ3ZjD8KPhUYeyrJZrzr5tQzgtg,2373
|
251
|
-
zenml/integrations/feast/__init__.py,sha256=
|
251
|
+
zenml/integrations/feast/__init__.py,sha256=vElbJ3NCZMpcp72-FIe9G4siJbGy3to3g8Jr6941Mzw,2355
|
252
252
|
zenml/integrations/feast/feature_stores/__init__.py,sha256=Wi3NBBBPJg6CjgtxmBjoU86k_ALypwFV6aP15oQpPfE,1269
|
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
|
@@ -285,7 +285,7 @@ zenml/integrations/github/plugins/github_webhook_event_source_flavor.py,sha256=j
|
|
285
285
|
zenml/integrations/gitlab/__init__.py,sha256=dxo7rxGj-w8ZLgjx9xlDGOSBfGmQylUAROmeabQkUp8,964
|
286
286
|
zenml/integrations/gitlab/code_repositories/__init__.py,sha256=Ds7NL6tCqLApRsOgvUofEq3Ms2No5_Z095uvi1gLVIk,817
|
287
287
|
zenml/integrations/gitlab/code_repositories/gitlab_code_repository.py,sha256=QLiDTHHZBblpWg1y6DmV2bsuxFs5FNOo9E903yLlGbs,6532
|
288
|
-
zenml/integrations/great_expectations/__init__.py,sha256=
|
288
|
+
zenml/integrations/great_expectations/__init__.py,sha256=x6L4OokAE_Q0sC1vgZGi1X705AJIe_TNpdAEVKAvgFU,2546
|
289
289
|
zenml/integrations/great_expectations/data_validators/__init__.py,sha256=Z16qmLfUoataEABQ6Ec-HSLM_a9VRALHFa4OoAyozIk,857
|
290
290
|
zenml/integrations/great_expectations/data_validators/ge_data_validator.py,sha256=qp2ZFqQiYPszRc6vGhZhK22GEHhGoTQ0Y9u0trXNQyg,21404
|
291
291
|
zenml/integrations/great_expectations/flavors/__init__.py,sha256=lkal-p48HAEKb9Ib9UHEG8skC55zOuMu4LVWMTIkS3E,950
|
@@ -297,7 +297,7 @@ zenml/integrations/great_expectations/steps/__init__.py,sha256=OGsp32yJs9GItypFR
|
|
297
297
|
zenml/integrations/great_expectations/steps/ge_profiler.py,sha256=ea6WLF1B8pvkGe-dBaAX3tNV2W8mVhUhk6WQpKgqKEA,2141
|
298
298
|
zenml/integrations/great_expectations/steps/ge_validator.py,sha256=kdFzhkzJtQZGOul8E8BE5_315mYGvMuDINYagPflKVk,2946
|
299
299
|
zenml/integrations/great_expectations/utils.py,sha256=4DXjAfsKUVcp_lSGAPiAsAI-WLNjr_DLMsGJOYGkSjE,3138
|
300
|
-
zenml/integrations/huggingface/__init__.py,sha256=
|
300
|
+
zenml/integrations/huggingface/__init__.py,sha256=3peCx0igFtgqXppRdTq48CZDaqLgKk_wpDzxNbQYwpc,2660
|
301
301
|
zenml/integrations/huggingface/flavors/__init__.py,sha256=NXMxZXrS7fHdZnz1G_Sf83k4zkE84C5UoYJzxXSY-R0,970
|
302
302
|
zenml/integrations/huggingface/flavors/huggingface_model_deployer_flavor.py,sha256=QITTxFrpKu5JNH29A_riAWiC0-gY3qcxGWQf__0aQII,4032
|
303
303
|
zenml/integrations/huggingface/materializers/__init__.py,sha256=HoiSCzfMTxtcvkDBconFm_-pdGZXzXDelkuPtcrJIgA,1267
|
@@ -320,7 +320,7 @@ zenml/integrations/hyperai/orchestrators/__init__.py,sha256=kSYpMZPEWwNu2vxoOC6P
|
|
320
320
|
zenml/integrations/hyperai/orchestrators/hyperai_orchestrator.py,sha256=lL_IeqIx7ygE9R8HJ5YAcmdCH8q6xQpys0705U55QIw,20123
|
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
|
-
zenml/integrations/integration.py,sha256=
|
323
|
+
zenml/integrations/integration.py,sha256=ljUK2GHy-LNqsdloOvf8mIfUQsqoi0yBJYocMyS-DX8,6879
|
324
324
|
zenml/integrations/kaniko/__init__.py,sha256=fw6TdTcoU_JphrORv4pwsb7G6lu5537peIoPJdLv_NU,1341
|
325
325
|
zenml/integrations/kaniko/flavors/__init__.py,sha256=PpI7yUpjgLwwAi1ma5uTGihG4zUWxURiRTpHoHEXBIw,865
|
326
326
|
zenml/integrations/kaniko/flavors/kaniko_image_builder_flavor.py,sha256=iRICgO_f9RF1XOp7bO8qjmHm83v2NYqoJWorHZKhVzE,5080
|
@@ -338,7 +338,7 @@ zenml/integrations/kubernetes/flavors/kubernetes_orchestrator_flavor.py,sha256=0
|
|
338
338
|
zenml/integrations/kubernetes/flavors/kubernetes_step_operator_flavor.py,sha256=ILN-H4cl7z3i4ltb4UBs55wbtIo871b4ib28pYkQoyQ,5605
|
339
339
|
zenml/integrations/kubernetes/orchestrators/__init__.py,sha256=TJID3OTieZBox36WpQpzD0jdVRA_aZVcs_bNtfXS8ik,811
|
340
340
|
zenml/integrations/kubernetes/orchestrators/kube_utils.py,sha256=roAYEGTvjnjCERCbjnN2o4v6kL_2xKI-eFnhiRBs1oY,14759
|
341
|
-
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=
|
341
|
+
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator.py,sha256=GsOyxmDW6BUNSowK-vWCVXxsO-P7xROtIB9vmP3l1Kg,24810
|
342
342
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint.py,sha256=T8r6k9sRBl_0PvsiG-k56gT9uG9VB4YxYrIoiGQZ4IM,7721
|
343
343
|
zenml/integrations/kubernetes/orchestrators/kubernetes_orchestrator_entrypoint_configuration.py,sha256=Y7uGU8eksMluGyXYsf688CwpiXwI_W6WYLscYwRZXRY,2494
|
344
344
|
zenml/integrations/kubernetes/orchestrators/manifest_utils.py,sha256=Owyuz5Iix-QvCnKObC6xhcuQtNG_ik-8Vbdmk13eWfc,12557
|
@@ -361,8 +361,8 @@ zenml/integrations/label_studio/steps/label_studio_standard_steps.py,sha256=k7UT
|
|
361
361
|
zenml/integrations/langchain/__init__.py,sha256=RDju0RHH6vDypHSYQlTTyNXjbn8ss03Y8woMWMD-z2A,1368
|
362
362
|
zenml/integrations/langchain/materializers/__init__.py,sha256=ouU6MDX_gZc0FVgNK8xO6F7B2XOEikrevQEZpdYyaOM,1037
|
363
363
|
zenml/integrations/langchain/materializers/document_materializer.py,sha256=86-V8ADkT0laE8ZvQyj8v9EbxHeeQ9PbiQq06OhMmdo,2287
|
364
|
-
zenml/integrations/langchain/materializers/openai_embedding_materializer.py,sha256=
|
365
|
-
zenml/integrations/langchain/materializers/vector_store_materializer.py,sha256=
|
364
|
+
zenml/integrations/langchain/materializers/openai_embedding_materializer.py,sha256=E-QmQnFh1c3lusEDuqKc1rSUM1uzEzEFwR_sA9PYZuU,1958
|
365
|
+
zenml/integrations/langchain/materializers/vector_store_materializer.py,sha256=IZH0R1Fd4ANXCECWb69_h83IuHOrDDL1oL7-Z1sSTR0,1167
|
366
366
|
zenml/integrations/lightgbm/__init__.py,sha256=AVR8PFl9sAnXTeho0XDtJkdAmDjQaFgJcQnEPAj2x-U,1121
|
367
367
|
zenml/integrations/lightgbm/materializers/__init__.py,sha256=9tUTAisuFmR2-B4E-3l23Ab_sy8Jw6AAKUkG3pnd6ZI,929
|
368
368
|
zenml/integrations/lightgbm/materializers/lightgbm_booster_materializer.py,sha256=PmEoSOhR1Lj23DgbumiiTlbySAB7bmepLNsQ4fNM_-g,2313
|
@@ -377,9 +377,9 @@ zenml/integrations/lightning/orchestrators/lightning_orchestrator_entrypoint_con
|
|
377
377
|
zenml/integrations/lightning/orchestrators/utils.py,sha256=XbBYYnmfNCnoja4InAbt_UL5hzk2fcQcvpX8dQtm2rc,2058
|
378
378
|
zenml/integrations/llama_index/__init__.py,sha256=go2bEZ1dzjUtgFWb22op3MABRBLezyDyeJ5BnH9AjTw,1310
|
379
379
|
zenml/integrations/llama_index/materializers/__init__.py,sha256=OEtWarp07nDpbSnV5Y9f8Gk1-Ufa7AINiz4e7H22rDQ,963
|
380
|
-
zenml/integrations/llama_index/materializers/document_materializer.py,sha256=
|
381
|
-
zenml/integrations/llama_index/materializers/gpt_index_materializer.py,sha256=
|
382
|
-
zenml/integrations/mlflow/__init__.py,sha256=
|
380
|
+
zenml/integrations/llama_index/materializers/document_materializer.py,sha256=NqSEP4YbaAr8har4dGFARG7EX2Tr_Gky4-sEsKGwFAE,2355
|
381
|
+
zenml/integrations/llama_index/materializers/gpt_index_materializer.py,sha256=4CL9f_kGrK8zAlo4K03xKOomZRNd3SQeISwLOG7J1G4,4774
|
382
|
+
zenml/integrations/mlflow/__init__.py,sha256=TgCTmNZBbxGB2nIKmuuB676FN6m4X6TChMfkPLg3J-A,4207
|
383
383
|
zenml/integrations/mlflow/experiment_trackers/__init__.py,sha256=foDnjpi4vkH9adjaA01c-utb0mRYybQfdR75PDK9CAQ,775
|
384
384
|
zenml/integrations/mlflow/experiment_trackers/mlflow_experiment_tracker.py,sha256=OhvcZgGfawv_sN4zs1I68jFgvWmrPTfC7gQ-Ldj8PHY,14315
|
385
385
|
zenml/integrations/mlflow/flavors/__init__.py,sha256=hMKgndBdmMghG9d3o4sJNVXG4mrZiTcA6hBeL0BirOY,1305
|
@@ -458,7 +458,7 @@ zenml/integrations/s3/utils.py,sha256=SpKUUzrd4W3GWqxF09nVrN7k_ntsM8-fhSONqthYSy
|
|
458
458
|
zenml/integrations/scipy/__init__.py,sha256=sF15qDLRfx-DzTfzBYWxH4ln0VxXFebsiYlBHdPN9rk,1060
|
459
459
|
zenml/integrations/scipy/materializers/__init__.py,sha256=LfPq9Vp4vulN7r8jCoQLq54O8oSW8DvFSoKGcOMAuL8,770
|
460
460
|
zenml/integrations/scipy/materializers/sparse_materializer.py,sha256=cfMocz21qLjFugXoEE4WNMvSYPoHjCIgxIsj-uFMn9A,2324
|
461
|
-
zenml/integrations/seldon/__init__.py,sha256=
|
461
|
+
zenml/integrations/seldon/__init__.py,sha256=BbGgdPpt0s_WOf0Skey0n3Yp9bBaqoGNHXhQlTg4JmQ,2466
|
462
462
|
zenml/integrations/seldon/constants.py,sha256=aXoj4RGKCskWn4Jw7uQ9JuJj0L7qmeijP2apjEGP2yg,742
|
463
463
|
zenml/integrations/seldon/custom_deployer/__init__.py,sha256=Kg1On05d0f4-b4H6xVCmV9EjwQKrXA5UJMSg4M9LdAY,768
|
464
464
|
zenml/integrations/seldon/custom_deployer/zenml_custom_model.py,sha256=faYykqsqE7NZj50BAmvi-wNJUOgaahPULtS-QPmkac8,6246
|
@@ -532,12 +532,12 @@ zenml/integrations/tekton/flavors/__init__.py,sha256=-S5XuwcZKWyGb9tVfl_gEFJj1KS
|
|
532
532
|
zenml/integrations/tekton/flavors/tekton_orchestrator_flavor.py,sha256=XgFgzJUlje9J1o5zwBvs_ycpgQjGdi50KZFA9_tT0vc,8268
|
533
533
|
zenml/integrations/tekton/orchestrators/__init__.py,sha256=yCJEM-PCechO4DF_YQeg82y76nwBKeXTy_SIXRWX2DE,811
|
534
534
|
zenml/integrations/tekton/orchestrators/tekton_orchestrator.py,sha256=aL0v_vYuwiAW3OKzXDdB_qdOqBFS2pC0sjKl2xewGVw,35572
|
535
|
-
zenml/integrations/tensorboard/__init__.py,sha256=
|
535
|
+
zenml/integrations/tensorboard/__init__.py,sha256=mrzcQooqOlOYrzGLyZxxn1VPl99ot9Usg75akPC0Uc0,1612
|
536
536
|
zenml/integrations/tensorboard/services/__init__.py,sha256=Y-YVPLxJkFSpXNDZSk8gEBISsXJGk_DgGIyVIIFIa40,798
|
537
537
|
zenml/integrations/tensorboard/services/tensorboard_service.py,sha256=OgIO0UTndzGqiDz_OJjCzm9zHa0F0P7kjxzrz83U77g,4434
|
538
538
|
zenml/integrations/tensorboard/visualizers/__init__.py,sha256=7uSvIoQxAfo7bhkH3Sf2TLrzBccueL9h3mRZGasrNoQ,835
|
539
539
|
zenml/integrations/tensorboard/visualizers/tensorboard_visualizer.py,sha256=z1-lz3T2tp0T8JM3JxQCcYZXYH29Vg7bkSdxk5uu1ok,8471
|
540
|
-
zenml/integrations/tensorflow/__init__.py,sha256=
|
540
|
+
zenml/integrations/tensorflow/__init__.py,sha256=JUDCmkSorUPSowJ5Wd3qWBEByPWLWf9IrlXUOjrTDnI,2320
|
541
541
|
zenml/integrations/tensorflow/materializers/__init__.py,sha256=iQVlAHAqdD6ItJlJyIsfamY3aF3_vU22qFNuyLMTIF0,906
|
542
542
|
zenml/integrations/tensorflow/materializers/keras_materializer.py,sha256=8MY6nIY3O86Y7eiHMo8udrQgAd-ZqUNnYvRU3GnczyA,3044
|
543
543
|
zenml/integrations/tensorflow/materializers/tf_dataset_materializer.py,sha256=O2TAXT8zbar5Lq1lVJMAlLO0mhJe-PoRuEOLUpux-zs,2630
|
@@ -554,7 +554,7 @@ zenml/integrations/wandb/experiment_trackers/__init__.py,sha256=8nFyyvh-PTF5d9Zf
|
|
554
554
|
zenml/integrations/wandb/experiment_trackers/wandb_experiment_tracker.py,sha256=GV5zDPgj6Dh3ho2MMUC1Da1ezPrNtr4RE9tisWGde00,5749
|
555
555
|
zenml/integrations/wandb/flavors/__init__.py,sha256=b4oJHyCdMN98XB-8S-Pnv39HA-oXQWpup6eZmCmIAEY,894
|
556
556
|
zenml/integrations/wandb/flavors/wandb_experiment_tracker_flavor.py,sha256=2Sszs0E8-AfMrVwdVSsVRBA85OdttSYx7jb69WxpMs0,4854
|
557
|
-
zenml/integrations/whylogs/__init__.py,sha256=
|
557
|
+
zenml/integrations/whylogs/__init__.py,sha256=PROjw-4-SDSpzxfoqxKud8vGnJm-HsrWxMumjGQuF3M,2423
|
558
558
|
zenml/integrations/whylogs/constants.py,sha256=Txs7qQjmj4vuoqC6rJvoBJ-4yv41CrapExG0_5TvEpw,752
|
559
559
|
zenml/integrations/whylogs/data_validators/__init__.py,sha256=cLblrK_3Hckc_p8YjqJir28V9Nx_-pFPEIknjodQNQQ,820
|
560
560
|
zenml/integrations/whylogs/data_validators/whylogs_data_validator.py,sha256=LH8ltRjWL8S_cuZcv41X87O9IcSr1iowz5EhvicMd_0,6103
|
@@ -662,7 +662,7 @@ zenml/models/v2/core/tag.py,sha256=eS9Xzuay91OURfKfNa_fE1CtGmlmPkFDIr6T_QWFZ34,7
|
|
662
662
|
zenml/models/v2/core/tag_resource.py,sha256=H7CPj9oaUpym8vSkwuYSJ6_rWfHMEKVRedPw2kyxmII,2640
|
663
663
|
zenml/models/v2/core/trigger.py,sha256=L6-pzWPM2HFsfA6-6rM1XeHx4UChZrIY58G6ZG1PA10,12782
|
664
664
|
zenml/models/v2/core/trigger_execution.py,sha256=WMYifA3nFKjVXLhx_cg4yMEjGDGo5a8PkV32CzRFhlc,3377
|
665
|
-
zenml/models/v2/core/user.py,sha256=
|
665
|
+
zenml/models/v2/core/user.py,sha256=Y7Qbe3JSeeovp5x3JOekWu9itX406GB2VHjOvBSNouc,14435
|
666
666
|
zenml/models/v2/misc/__init__.py,sha256=knhroJ2h0uHBCGzAiBBGJEiuhEA3cwI6XYBRIyXdbkQ,613
|
667
667
|
zenml/models/v2/misc/auth_models.py,sha256=j31CQt9qfH20tyCjY0depqbKP0YZEewcgGKrixqBUbg,3688
|
668
668
|
zenml/models/v2/misc/build_item.py,sha256=66Fywatv8bDY86pf0k530fsHTk_L4IkHL6uJL7-6dAo,1938
|
@@ -786,7 +786,7 @@ zenml/utils/pagination_utils.py,sha256=TufckOqOKeDPwE3ySefL05zOzGUUA2Fqx_QFVhE2s
|
|
786
786
|
zenml/utils/pipeline_docker_image_builder.py,sha256=QOZV_AYFbUtcfJZGNO7pH2_EoXyRqs9GZF_hTeoqW5E,25036
|
787
787
|
zenml/utils/proxy_utils.py,sha256=fgRlLa9pfXJDoxtB31_YP7DClOMQLek_nMmM0et6i3w,7241
|
788
788
|
zenml/utils/pydantic_utils.py,sha256=oQcxY4VXuVY3n632atlvdmi12EYcSQ1xZuQJY3Je-sA,16592
|
789
|
-
zenml/utils/requirements_utils.py,sha256=
|
789
|
+
zenml/utils/requirements_utils.py,sha256=JqVChflTQwBMByRtKfsS3dV91QeWbdGYefcEBkTKXGk,2605
|
790
790
|
zenml/utils/secret_utils.py,sha256=gEvqnhzAZwPO6mdOQWvioeH-xLoSObfaNRzt17N8zyU,5965
|
791
791
|
zenml/utils/server_utils.py,sha256=RzXeBcA0a-YdFX4BP9jSmLQ383uIj8SxbnXWBRjcfG4,1740
|
792
792
|
zenml/utils/settings_utils.py,sha256=lAK13CiDCDkcLygizDbWB9q-9ukteVBJPypzFCrne9k,4631
|
@@ -1056,17 +1056,17 @@ zenml/zen_server/routers/steps_endpoints.py,sha256=By-9_VKrJeSo6UUqrggDhGKtrnhxi
|
|
1056
1056
|
zenml/zen_server/routers/tag_resource_endpoints.py,sha256=AdmbujrwKK6arnSx2VHpJWbZXnlviGlay7LCov4x9Fc,3203
|
1057
1057
|
zenml/zen_server/routers/tags_endpoints.py,sha256=lRjnMaJOdTnooMHoQYIViKfgu32cMq7rI3Lyeaxq4QI,4467
|
1058
1058
|
zenml/zen_server/routers/triggers_endpoints.py,sha256=5fb0EITa3bs--AtKQRQZ5QswHu4pb37OrG5y0OlnGXE,9983
|
1059
|
-
zenml/zen_server/routers/users_endpoints.py,sha256=
|
1059
|
+
zenml/zen_server/routers/users_endpoints.py,sha256=b1zZRbVJF8MT3XjwAwj7FJ0scplnQuNT4AzmbCU8PcU,24344
|
1060
1060
|
zenml/zen_server/routers/webhook_endpoints.py,sha256=KOJsuykv_TMjL3oEItpC4OWWP75p-OEvVjRSUBd5Mro,3983
|
1061
1061
|
zenml/zen_server/secure_headers.py,sha256=glh6QujnjyeoH1_FK-tAS-105G-qKS_34AqSzqJ6TRc,4182
|
1062
1062
|
zenml/zen_server/template_execution/__init__.py,sha256=79knXLKfegsvVSVSWecpqrepq6iAavTUA4hKuiDk-WE,613
|
1063
1063
|
zenml/zen_server/template_execution/runner_entrypoint_configuration.py,sha256=Y8aYJhqqs8Kv8I1q-dM1WemS5VBIfyoaaYH_YkzC7iY,1541
|
1064
|
-
zenml/zen_server/template_execution/utils.py,sha256=
|
1064
|
+
zenml/zen_server/template_execution/utils.py,sha256=M8PLq34g3tNNozC0q4Xf0efknq7OIVLl0AvJ0jbbwKg,16700
|
1065
1065
|
zenml/zen_server/template_execution/workload_manager_interface.py,sha256=CL9c7z8ajuZE01DaHmdCDCZmsroDcTarvN-nE8jv6qQ,2590
|
1066
1066
|
zenml/zen_server/utils.py,sha256=Jc2Q4UBaYG2ruHdsN9JmbOWfWU_eWD9wTBBEgcGAbqg,17439
|
1067
1067
|
zenml/zen_server/zen_server_api.py,sha256=ALyv5096frXXRNySegEtsmkDbHLLqHd402bbQI7RnII,17941
|
1068
1068
|
zenml/zen_stores/__init__.py,sha256=6LTgH6XwDeDxKqVJ1JTfGhmS8II1NLopPloINGmdyI0,691
|
1069
|
-
zenml/zen_stores/base_zen_store.py,sha256=
|
1069
|
+
zenml/zen_stores/base_zen_store.py,sha256=UtclHihv9-YA0vgbznh8Hp7Rpuivw8ZF7J7oPUM-IuY,17290
|
1070
1070
|
zenml/zen_stores/migrations/README.md,sha256=x04jsb6EOP6PBEGMQlDELiqKEham2O-iztAs9AylMFc,4898
|
1071
1071
|
zenml/zen_stores/migrations/__init__.py,sha256=N9CHfdz0AZ6KniQ450VCIV3H0CuWtx83AloYy82woho,657
|
1072
1072
|
zenml/zen_stores/migrations/alembic.py,sha256=JDqx7Md6DxnHtP3xrZG1I0cNv6NyTR0oO3tPRUPaS2I,7455
|
@@ -1173,6 +1173,7 @@ zenml/zen_stores/migrations/versions/1ac1b9c04da1_make_secrets_values_optional.p
|
|
1173
1173
|
zenml/zen_stores/migrations/versions/1cb6477f72d6_move_artifact_save_type.py,sha256=sv2-qjqwVifEiJr1IRERmqBVPaOB1BEkJLyOfJXOyHk,3151
|
1174
1174
|
zenml/zen_stores/migrations/versions/1d74e596abb8_add_run_once_start_time_to_schedule.py,sha256=GIGHE1qkwjske0vtc7XsVBRlIr7A2XKf1-tsfxrov94,1032
|
1175
1175
|
zenml/zen_stores/migrations/versions/1d8f30c54477_migrate_to_new_.py,sha256=ICZLr5MsjGqOnMWwG8W6ixKq3OX2rfs3XkXRzHhSUnA,4200
|
1176
|
+
zenml/zen_stores/migrations/versions/1f1105204aaf_add_user_default_project.py,sha256=vN-MvyhO-W9D7NVcwaU6_p0JA3MVdl2l-yrntDcnahM,1427
|
1176
1177
|
zenml/zen_stores/migrations/versions/1f9d1cd00b90_add_unique_name_constraints.py,sha256=NSjB4G94c7akAAKT3PpBVKvJHuGMWKob60lPxF65LoA,8044
|
1177
1178
|
zenml/zen_stores/migrations/versions/248dfd320b68_update_size_of_flavor_config_schema.py,sha256=rdHrVpqtRtVPzOUawWXx7SrBfv8tog-uXJQr_k4r4_0,1229
|
1178
1179
|
zenml/zen_stores/migrations/versions/25155145c545_separate_actions_and_triggers.py,sha256=T1A3e0YAtSIdGFmJUjUSfp6f8v82T91XHT-kziui4N4,7588
|
@@ -1262,7 +1263,7 @@ zenml/zen_stores/migrations/versions/f3b3964e3a0f_add_oauth_devices.py,sha256=2C
|
|
1262
1263
|
zenml/zen_stores/migrations/versions/f49904a80aa7_increase_length_of_artifact_table_sources.py,sha256=kLgfDUnQdAb5_SyFx3VKXDLC0YbuBKf9iXRDNeBin7Q,1618
|
1263
1264
|
zenml/zen_stores/migrations/versions/f76a368a25a5_add_stack_description.py,sha256=u8fRomaasFeGhxvM2zU-Ab-AEpVsWm5zRcixxKFXdRw,904
|
1264
1265
|
zenml/zen_stores/migrations/versions/fbd7f18ced1e_increase_step_run_field_lengths.py,sha256=kn-ng5EHe_mmLfffIFbz7T59z-to3oMx8III_4wOsz4,1956
|
1265
|
-
zenml/zen_stores/rest_zen_store.py,sha256=
|
1266
|
+
zenml/zen_stores/rest_zen_store.py,sha256=usxuHjZV2uz16BPFyrBjwdxtVzuxquZX8xmXCwRv0s8,158070
|
1266
1267
|
zenml/zen_stores/schemas/__init__.py,sha256=4EXqExiVyxdnGxhQ_Hz79mOdRuMD0LsGlw0PaP2Ef6o,4333
|
1267
1268
|
zenml/zen_stores/schemas/action_schemas.py,sha256=2OiUiskFSg5qXGxA6AFq71bWzUczxA563LGFokLZmac,6456
|
1268
1269
|
zenml/zen_stores/schemas/api_key_schemas.py,sha256=0pK7b9HlJuQL3DuKT4eGjFb87tyd4x-E2VyxJLpRv3o,7459
|
@@ -1294,7 +1295,7 @@ zenml/zen_stores/schemas/stack_schemas.py,sha256=SkMspxsnR420KU4mZlulPbEOR4DMSRy
|
|
1294
1295
|
zenml/zen_stores/schemas/step_run_schemas.py,sha256=NuJtCXZ_Zacz4_X7GZ5PQ-fLpzVBhnhScGx2fBqAlDg,16333
|
1295
1296
|
zenml/zen_stores/schemas/tag_schemas.py,sha256=GMKdyT5pZb977vscOW41N2beVt-IHcELSiSSIBHqlUI,6377
|
1296
1297
|
zenml/zen_stores/schemas/trigger_schemas.py,sha256=IOfd6enpAr9mwN5p4KbA2jvQEHlMEUXDXAMqIULS4lc,10711
|
1297
|
-
zenml/zen_stores/schemas/user_schemas.py,sha256=
|
1298
|
+
zenml/zen_stores/schemas/user_schemas.py,sha256=wLSHtfjjrYBWnX_PXv5KPz_DRdheTxZVjcgBe-cP__c,11497
|
1298
1299
|
zenml/zen_stores/schemas/utils.py,sha256=82-LQj1EV4jp69kKE2GolQw_zTDBvAkyA4cHDaSIj6U,4160
|
1299
1300
|
zenml/zen_stores/secrets_stores/__init__.py,sha256=VGMVerFv3xUWxnp5X_bHyQJwGCeN7BTovUDwho_w-4w,651
|
1300
1301
|
zenml/zen_stores/secrets_stores/aws_secrets_store.py,sha256=o2kftfG0nr6oTodEDHWYvSK6zKbs1WGfqgMd5bJ4k0k,13799
|
@@ -1305,11 +1306,11 @@ zenml/zen_stores/secrets_stores/hashicorp_secrets_store.py,sha256=NfW1EHIA99lseb
|
|
1305
1306
|
zenml/zen_stores/secrets_stores/secrets_store_interface.py,sha256=Q2Jbnt2Pp7NGlR-u1YBfRZV2g8su2Fd0ArBMdksAE-Q,2819
|
1306
1307
|
zenml/zen_stores/secrets_stores/service_connector_secrets_store.py,sha256=S87ne23D08PAwtfRVlVnBn8R0ilTpEh6r8blauNV5WQ,6941
|
1307
1308
|
zenml/zen_stores/secrets_stores/sql_secrets_store.py,sha256=nEO0bAPlULBLxLVk-UTRIZiUeVpATggo8qCsKmgEU1E,8788
|
1308
|
-
zenml/zen_stores/sql_zen_store.py,sha256=
|
1309
|
+
zenml/zen_stores/sql_zen_store.py,sha256=ldyC1uhMnmX5ojnqY9d_L2S-iC-eaNUwsexTkdPtqr4,440204
|
1309
1310
|
zenml/zen_stores/template_utils.py,sha256=GWBP5QEOyvhzndS_MLPmvh28sQaOPpPoZFXCIX9CRL4,9065
|
1310
1311
|
zenml/zen_stores/zen_store_interface.py,sha256=fF_uL_FplnvGvM5o3jOQ8i1zHXhuhKLL2n4nvIKSR7E,92090
|
1311
|
-
zenml_nightly-0.80.0.
|
1312
|
-
zenml_nightly-0.80.0.
|
1313
|
-
zenml_nightly-0.80.0.
|
1314
|
-
zenml_nightly-0.80.0.
|
1315
|
-
zenml_nightly-0.80.0.
|
1312
|
+
zenml_nightly-0.80.0.dev20250328.dist-info/LICENSE,sha256=wbnfEnXnafPbqwANHkV6LUsPKOtdpsd-SNw37rogLtc,11359
|
1313
|
+
zenml_nightly-0.80.0.dev20250328.dist-info/METADATA,sha256=MKLrA8iy_dTx1-m3g0XGojTifiA-Y933rfnggW8kgSg,24227
|
1314
|
+
zenml_nightly-0.80.0.dev20250328.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
1315
|
+
zenml_nightly-0.80.0.dev20250328.dist-info/entry_points.txt,sha256=QK3ETQE0YswAM2mWypNMOv8TLtr7EjnqAFq1br_jEFE,43
|
1316
|
+
zenml_nightly-0.80.0.dev20250328.dist-info/RECORD,,
|
{zenml_nightly-0.80.0.dev20250326.dist-info → zenml_nightly-0.80.0.dev20250328.dist-info}/LICENSE
RENAMED
File without changes
|
{zenml_nightly-0.80.0.dev20250326.dist-info → zenml_nightly-0.80.0.dev20250328.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|