What is LLMOps, and how does it differ from MLOps?
LLMOps is the practice of running LLM-powered features in production: evaluation, prompt and model versioning, deployment, monitoring, cost control and safety.
What's different from classic MLOps:
- You usually don't own the model. The artifact you version is the prompt, tools and retrieval config — and the model can change under you.
- No accuracy metric. Outputs are free text, so you need LLM-judges, rubrics and human review instead of a validation score.
- Cost is per request, not per training run — and it scales with usage forever.
- Non-determinism is permanent — the same input can produce different output, so testing is statistical.
- New failure modes — hallucination, prompt injection, data leakage — that have no analogue in tabular ML.
What carries over: versioning, CI, staged rollout, monitoring, and a feedback loop from production into your dataset.