Skip to content
Preptima

LLMOps & Deployment interview questions

Versioning prompts as artefacts, canarying a model change, tracing and cost observability, and surviving a provider deprecation.

3 questions in Generative AI & Large Language Models.

medium2

mediumConceptDesign

How do you ship a change to a production prompt safely?

Treat the prompt as a versioned artefact under review, run your eval set in CI against a pinned model version, canary on a slice of traffic with the version recorded per request, and keep rollback a config change rather than a deploy. Pinning is what makes a regression attributable to your edit.

4 minmid, senior, staff
mediumConceptDesign

What do you instrument and alert on for an LLM feature running in production?

Trace every request with prompt and model versions, token counts and cost, then add sampled groundedness grading, refusal and retry rates, validation failures and implicit user signals. Alert on countable rates, because an averaged quality score moves too little and too late to page anyone.

5 minmid, senior, staff

hard1