Original Reddit post

I keep noticing a pattern in how AI deployments fail in actual businesses, and it has almost nothing to do with model quality. The model is usually fine. What kills it is that the world the model was given changes, and nobody owns keeping its knowledge current. A system gets deployed knowing the business’s rules, prices, hours, policies. Then reality drifts: a price changes, a policy gets dropped, an exception appears. The model still answers confidently, just wrong now. And confident-and-wrong erodes trust faster than “I don’t know” ever could. The failure is invisible until someone complains. What makes this hard is that a lot of the relevant knowledge doesn’t live in any system you can sync from. It lives in someone’s head (“we stopped doing that last month”). Pulling from a database only helps when the database is maintained, and pulling from a stale one is arguably worse, because the answer now looks authoritative. A framing I’ve found useful: stale data is a tractable engineering problem (sync it, version it, flag contradictions), but absent data, knowledge that was never written down anywhere, is a behavior-change problem, and pretending the second is the first is how deployments quietly die. A few things I’m genuinely unsure about and curious how others see: • Is “silent drift” (behavior changes but nothing loudly contradicts the old rule) solvable beyond human spot-checks, or is the realistic answer just shortening the loop between a human noticing and the system updating? • Does deploying an agent actually create pressure to maintain the source of truth, because failures finally become attributable, rather than depending on it already being maintained? • For anyone working on this in production: do you treat the deployed model as a finished product or as an ongoing operational service that needs an owner? Not claiming answers here, just that the interesting problems in applied AI seem to be organizational and epistemic more than they are about the model. submitted by /u/No-Zone-5060

Originally posted by u/No-Zone-5060 on r/ArtificialInteligence