179 questions
No questions match those filters.
Your GenAI app worked great for 6 months, then started...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansA GenAI system that was stable for months and then breaks almost never breaks because the code changed — it breaks because something in the environment around it changed while the code stayed still. The most common culprit is a provider updating the underlying model without you knowing, since an unpinned model alias can silently point to a different snapshot with different behavior tomorrow than it had yesterday.
The rest of the usual suspects follow the same shape: real user queries gradually drifting away from what the system was originally tuned against, stale or duplicate documents accumulating in a vector store over months of additions, small prompt edits made incrementally by different people that each seemed safe in isolation, or a library version bump that quietly changed how something downstream behaves. None of these show up as an error — they show up as a slow, confusing decline.
A travel booking chatbot’s prompt worked flawlessly for eight months, then started dropping a field from its JSON output after the underlying model provider pushed an update — the team hadn’t pinned to a specific model snapshot. The fix, and the habit worth carrying forward, is to always pin exact model versions in production and run a regression suite against every prompt or dependency change before it ships.