The new update destroyed all previous system prompts!

It seems that a few days ago when “Gemini 2.0 Flash (Image Generation) Experimental
gemini-2.0-flash-exp-image-generation, alias that points to gemini-2.0-flash-exp” got released, it got automatically applied to all models, destroying all prompts in the process:

3 Likes

Had the same problem

All prompts are stored in your GDrive/AI Studio/ folder. So when a new model replaces the old one, all you need to do is:

  1. Temporarily disable auto-saving in AI Studio’s settings to prevent it from accidentally overwriting your conversation file.
  2. Back up all conversations from the GDrive/AI Studio/ folder.
  3. Open the files with any editor that supports JSON schema (Notepad++, VS Code, etc).
  4. Find the “systemInstruction” field - this is where your system prompt is stored.

The only downside of this approach is that the data is stored in raw format, so you’ll need to clean it up by removing “\n” 's characters and reformatting it.

Many thanks for your detailed answer.