Run a template

Run a template

This is a ZenML Pro only feature. Please sign up here get access.

Run a template in code

from zenml.client import Client

template = Client().get_run_template(<NAME_OR_ID>)
config = template.config_template
# Optionally modify the config here

Client().trigger_pipeline(
    template_id=template.id,
    run_configuration=config,
)
ZenML Scarf

Last updated