OpenAI sets an end date for reusable prompts

The v1/prompts API is scheduled to shut down on November 30, pushing teams to version production prompts in code.

OpenAI says in its developer documentation that reusable prompt objects in the dashboard and API are being deprecated. Developers using them were notified on June 3, 2026: prompt creation is now de-emphasized in the platform, and the v1/prompts API together with reusable prompt objects is scheduled to shut down on November 30, 2026. The central fact is a migration timeline for teams that had moved part of their model instructions outside application code.

A reusable prompt is an instruction saved in the platform and called from an application, rather than text versioned in a software repository. The approach could be convenient: change an instruction without redeploying the app, share one template across several calls, or let product teams adjust an assistant’s behavior. OpenAI is now recommending the opposite for production work: store production prompts in application code. The documentation points to typed inputs, code review, tests and the normal deployment process as stronger ways to manage changes in model behavior. In other words, the prompt becomes part of the same change pipeline as the feature that depends on it.

The decision is technical, but it lands on a practical governance issue. In an AI application, a prompt is not just helper text. It can contain business rules, safety constraints, output formats and tone decisions. If it lives in a separate object that can be edited independently, it may move faster, but it can also drift away from the controls used for the rest of the software. Putting it back into code makes changes more visible, easier to review and easier to link to a specific application version. That does not make prompts automatically good, but it brings them closer to ordinary engineering practice.

For affected teams, the practical consequence is to treat November 30 as a real inventory deadline. They need to find calls to v1/prompts, move the content into code, add regression tests and make sure the people who edited those prompts still have a clear contribution path. The migration can also be a chance to remove duplicated instructions, document expected inputs more explicitly and decide which prompt changes require product, security or legal review. Teams that run regulated or customer-facing assistants should also check audit logs and rollback paths, because a prompt change can alter answers as materially as a code change. The wider signal is clear: as AI applications become critical software, OpenAI is pushing developers to manage model instructions as code, not as floating configuration.