Drag each answer to line up with its matching prompt
DevOps
Application code commits and container images
MLOps
Prompt templates managed in a registry independently of code deploys
LLMOps
Trained model weights plus the dataset and training code that produced them
DataOps
Prompt diffs, retrieval indexes, tool definitions, routing rules, and rarely a fine-tune
PromptOps
ETL pipeline DAGs and data quality contracts on tables
DevOps ships code, MLOps ships trained models, LLMOps ships prompts and orchestration around third-party models, DataOps ships data pipelines, PromptOps ships registry-managed prompt templates inside the LLMOps umbrella.
Imagine five teams at a factory that all ship something different. The carpenters ship furniture (code). The chefs ship trained recipes after testing them with real ingredients (trained models). The catering coordinators ship the menu cards and table arrangements that go in front of a third-party kitchen (prompts and orchestration). The supply chain team ships pallets of ingredients and the schedule for moving them (data pipelines). The menu writers are a smaller specialty inside the coordinators, just focused on perfecting the menu cards (prompt templates). Each team has a primary deliverable; calling all of them by the same name hides what each one is actually responsible for.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
The discipline and artifact taxonomy is more than terminology; it determines who owns the deploy pipeline, who is on-call for incidents in each layer, and what audit trails the team needs to maintain. Confusing the disciplines (or collapsing all of them into a single ops team) leads to gaps in audit, missed deploy gates, and confused incident response.
This card walks through what each of the five disciplines uniquely owns, how they share infrastructure while differing in artifact lifecycle, and why the split matters in practice for any organization running LLM-augmented systems at production scale.
DevOps and DataOps as the foundation
DevOps and DataOps are the foundational layers that LLMOps and MLOps both depend on.
DevOps ships application code. The artifact is a commit that becomes a container image that gets deployed via CI/CD to a runtime environment. The pipeline is well-established: unit tests, integration tests, build, push, deploy, smoke tests. The audit trail is git commits plus deploy logs. On-call covers application incidents, platform outages, and infrastructure failures. Tools include GitHub Actions, ArgoCD, Kubernetes, Terraform, Datadog, PagerDuty.
DataOps ships ETL pipeline DAGs and data-quality contracts. The artifact is the transformation logic that moves data between systems plus the contracts that gate downstream consumers from broken upstream data. Pipelines are usually built in Airflow, Dagster, or Prefect; quality contracts are enforced via Great Expectations, Soda, or dbt tests. The audit trail is DAG run history plus contract test results. On-call covers pipeline failures, data-quality breaches, and freshness violations.
Both disciplines are mature, have well-established tooling, and are the upstream suppliers for MLOps and LLMOps. A production LLM application that has bad upstream data or fails to deploy its application code will not be saved by good prompt engineering.
Situations where this technique stops working.
2–4 min · Everything important, quickly.
Real products, models, and research that use this idea.
- Stripe's payments backend is DevOps territory: code, services, deploy pipelines, no models in the critical path.
- Spotify's recommendation system is MLOps: trained models retrained nightly on listening data with experiment tracking and held-out evals.
What an interviewer would ask next. Try answering before peeking at the approach.
QWhen does a team split LLMOps and MLOps into separate sub-teams?
When both have non-trivial production presence; the on-call surfaces, audit needs, and deploy cadences differ enough that one team carrying both gets pulled in two directions.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Collapsing all five into one operations team. The disciplines share infrastructure but the primary artifact and the deploy gate differ, which is why the deploy pipelines must too.
60 second bullets to scan on the way to the call.
DevOps primary artifact: application code
MLOps primary artifact: trained models with lineage
Primary sources. Browse if you want the original framing.
Same topic, related formats. Practice these next.