Noetic.
Design
UI/UX (Product Design)Web DesignCorporate Web Design
Development
Custom Software Development (CRM)Mobile & App DevelopmentStart-up MVP DevelopmentSaaS Development
AI & Automation
AI Agents & AutomationGenerative AI & LLM AppsAI Chatbots & Assistants
See all complete solutions
Case Studies About us Contact us Blog Whitepapers
Start a Conversation
Services
Design
UI/UX (Product Design)Web DesignCorporate Web Design
Development
Custom Software Development (CRM)Mobile & App DevelopmentStart-up MVP DevelopmentSaaS Development
AI & Automation
AI Agents & AutomationGenerative AI & LLM AppsAI Chatbots & Assistants
Case Studies About us Contact us Blog Whitepapers Start a Conversation
HomeChecklist
Free · No email required

The 30-point production-readiness checklist.

What I check before I will call an AI system ready for real users. Six areas, thirty checks, drawn from the failure modes that actually show up once a demo meets production traffic. Free, no email required.

Download PDF Read it here

No form, no gate. The whole checklist is on this page — the PDF is only there if you want it on paper.

On this page
  • 01 · Retrieval
  • 02 · Evaluation
  • 03 · Cost & latency
  • 04 · Observability
  • 05 · Safety & failure modes
  • 06 · Operations & handover

Thirty checks across six areas. If you can tick fewer than twenty-five, you have a launch risk rather than a launch date.

01

Retrieval

Most "the model is wrong" bugs are retrieval bugs wearing a costume.

  1. 01

    Chunking was chosen by measurement, not by default

    You tested at least two chunk sizes and overlaps against a labelled query set, and you can say how much the winner won by.

  2. 02

    Retrieval is measured separately from generation

    Recall@k and precision exist for the retriever alone, so a bad answer can be traced to the wrong document rather than blamed on the model.

  3. 03

    The index rebuild is reproducible and versioned

    Rebuilding from source yields the same index, the embedding model is pinned, and you can roll back without re-ingesting everything.

  4. 04

    Metadata filtering happens before the vector search, not after

    Tenant, permission and date filters are applied in the query itself, so a user can never retrieve a chunk they are not entitled to see.

  5. 05

    There is a defined answer for "it is not in the corpus"

    Low-relevance retrievals are detected and the system says it does not know, rather than passing weak context along and letting the model improvise.

02

Evaluation

If you cannot measure a regression, you will ship one and hear about it from a customer.

  1. 06

    A labelled evaluation set exists, and it predates the fix you are shipping

    Held out, written from real user queries, and not generated by the same model you are testing.

  2. 07

    Every prompt change runs the eval suite before merge

    Automated in CI with a pass threshold, so a one-word prompt edit cannot silently regress the whole system.

  3. 08

    At least one metric is something a user would recognise

    Task success or answer correctness — not only cosine similarity, BLEU, or another number that moves without the product improving.

  4. 09

    LLM-as-judge is calibrated against human labels

    You have measured how often the judge agrees with human raters on a sample, so you know the error bars on your own scoreboard.

  5. 10

    Regression failures are diffable

    When the suite fails you can see the exact input, the previous output and the new output side by side, without re-running anything by hand.

03

Cost & latency

A system that works but costs more than it earns is not in production, it is in trouble.

  1. 11

    You know the cost per request, not just the monthly bill

    Broken down across model calls, retrieval and re-ranking, so you know which component to attack first.

  2. 12

    Token growth has a ceiling

    Context assembly runs to a hard budget, so a long conversation or an oversized document cannot quietly triple the unit cost.

  3. 13

    Caching exists wherever the traffic is repetitive

    Prompt or semantic caching is in place and you track the hit rate, because an uninstrumented cache is a guess.

  4. 14

    p95 latency is a tracked objective, not an anecdote

    Measured end to end, including retrieval and time-to-first-token, on the same percentile you would defend in a customer meeting.

  5. 15

    There is a cheaper fallback path and you know its quality cost

    The smaller model has been run against the eval suite, so degrading under load is a decision rather than a surprise.

04

Observability

You will be asked why it said that. You need to be able to answer.

  1. 16

    Every generation is traced end to end

    One request id links retrieval, prompt, model, token counts, latency and output into a single record you can pull up.

  2. 17

    Prompts and outputs are logged under a retention and redaction policy

    You can debug a complaint from last Tuesday without holding personal data you were never supposed to keep.

  3. 18

    You can answer "what changed?" in under five minutes

    Model version, prompt version and index version are stamped on every trace, so a quality cliff has a suspect list.

  4. 19

    User feedback joins back to the trace

    A thumbs-down resolves to the exact request that caused it, rather than to a date and a vague description.

  5. 20

    Alerts fire on quality, not only uptime

    Refusal rate, empty-retrieval rate and schema-validation failures are alarmed — a system can be fully available and completely wrong.

05

Safety & failure modes

Assume the input is hostile and the provider is down. Both will be true eventually.

  1. 21

    Prompt injection is tested, not assumed handled

    You keep an adversarial input set, including injections that arrive inside retrieved documents rather than from the user.

  2. 22

    Untrusted content cannot reach a privileged tool

    Any tool call with a side effect is gated by validation or explicit confirmation, so a retrieved document cannot trigger an action.

  3. 23

    Output is validated against a schema before it reaches another system

    Structured output is parsed and rejected on failure, never passed downstream on the assumption that it parsed correctly.

  4. 24

    Rate limits and spend caps exist per tenant

    One enthusiastic customer, or one retry loop, cannot exhaust the budget for everyone else.

  5. 25

    There is a documented degradation path

    When the provider is slow or unavailable the product does something defined and tested, rather than hanging until the request times out.

06

Operations & handover

The system is not ready if it only runs while one person is awake.

  1. 26

    Someone other than the author can ship a prompt change

    Prompts are versioned in the repository, reviewed, and released like code rather than edited live in a console.

  2. 27

    The runbook covers the three most likely failures

    Provider outage, stale index and quality regression, each with a named owner and a first step.

  3. 28

    Provider keys rotate without a redeploy

    Secrets live in a secret store, scoped per environment, so rotating one is a routine operation rather than a release.

  4. 29

    There is a staging environment with realistic data

    Evaluation and manual QA run somewhere that is not production, against data shaped like the real thing.

  5. 30

    The team can explain the system without you

    Architecture, the decisions behind it and the known trade-offs are written down, including what you deliberately chose not to build.

Who wrote this

Nitish Kumar

I make AI systems survive contact with real users. This checklist is the short version of what I look for in a production-readiness review.

Work with me nitish@nits.dev LinkedIn
Noetic.

The complete business transformation partner.

Book intro call
Company
  • About us
  • Contact us
  • Careers
Free tools
  • Cost Estimator
  • ROI Calculator
  • Automation Finder
  • Stack Recommender
  • All tools →
Subsidiaries
  • Ideople
  • Ad Kompas
Information
  • Terms of Use
  • Privacy Policy
Follow us
  • Noetic IT Services Pvt. Ltd.
  • CIN: U72900MH2013PTC335572
© 2025 Noetic IT Services Pvt. Ltd. All rights reserved. noeticitservices.com