ZenML
Framework-agnostic MLOps framework — build portable, production-ready ML pipelines that run anywhere.
ZenML
ZenML is an extensible, open-source MLOps framework for building portable, production-ready machine learning pipelines. It provides a pipeline abstraction that is agnostic to the underlying infrastructure — the same pipeline code runs on a local laptop, Airflow, Kubeflow, Vertex AI, SageMaker, or Azure ML without changes.
Key Features
- Infrastructure agnostic: run pipelines locally or on 50+ integrations (Kubeflow, Airflow, Vertex, SageMaker, Azure ML)
- Stack concept: decouple ML code from infrastructure config (orchestrator + artifact store + model deployer)
- Artifact versioning: automatic tracking of all data artifacts and model versions
- Step caching: skip already-run steps for faster iterations
- Built-in integrations: MLflow, W&B, evidently, Seldon, BentoML, Great Expectations
- ZenML Pro for team dashboards and managed infrastructure
Quick Start
from zenml import pipeline, step
@step
def load_data() -> pd.DataFrame:
return pd.read_csv("data.csv")
@step
def train_model(data: pd.DataFrame) -> Any:
model = RandomForestClassifier()
model.fit(data.drop("label", axis=1), data["label"])
return model
@pipeline
def training_pipeline():
data = load_data()
train_model(data)
training_pipeline()
Install via ai-supply
npx ai-supply add zenml-mlops-framework
Curated mirror of the open-source ZenML (Apache-2.0). Get it from the source.
Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.
Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).
The same gate an agent runs before installing (POST /api/v1/trust/zenml-mlops-framework/check). Click a policy:
Consume ZenML programmatically. Authenticate with an API key or session — see Authorize an agent.
# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/zenml-mlops-framework
# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/zenml-mlops-framework/check \
-H "Content-Type: application/json" \
-d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'
# CLI
npx ai-supply add zenml-mlops-framework
# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/zenml-mlops-framework/install \
-H "Authorization: Bearer $AIM_KEY"
# MCP tool
install_listing({ "slug": "zenml-mlops-framework" })OpenAPI spec →Curated mirror — latest upstream source. See the repository for tagged releases.