When AI platforms wind down, it’s not the models that people miss first — it’s the memory: saved prompts, references, and creator trails that anchor a workflow. A recent community report spotlights a very specific pain point with Sora’s sunset flow that should make every developer and product manager pause.
What’s being reported, in plain facts
- A former Sora web user (now a ChatGPT Plus subscriber) says the current Sora sunset page only shows an Export button and provides no route to the old Likes/Favorites library.
- The available export reportedly includes content the user created, but does not include Likes/Favorites.
- Before shutdown, Sora’s interface exposed distinct sections: My Media, Export files, and separate Likes/Favorites.
- The Likes/Favorites library contained curated references, visible prompts, creator details, images, and videos collected over years.
- The user asks OpenAI for a time-limited recovery path until September 24, 2026 (the date the remaining Sora API service is scheduled to end):
- Option 1: Temporary read-only access for verified former users; all generation/write disabled.
- Option 2: A structured export of Likes/Favorites metadata (IDs, URLs, creator names, timestamps, and visible prompts where permissible).
- They cite precedent: from April 3–29, 2026, Sora reportedly allowed read-only viewing/downloading while generation was disabled.
- Separate backups were lost; the Likes/Favorites library may be the only chance to restore years of inspiration and prompt history.
- The user has contacted OpenAI’s privacy team but hasn’t received a substantive response about Likes/Favorites access.
- They’re asking whether others faced the same loss and if any recovery method or official guidance exists before the 2026 deadline.
Why this matters for builders and power users
At AI Tech Inspire, we’ve seen this pattern across creative AI tools: the workflow exhaust — likes, bookmarks, captions, prompts, seeds, creator trails — becomes more valuable over time than the outputs themselves. It’s the connective tissue that helps engineers reproduce results, attribute ideas, and build systems on top of repeatable patterns. When that metadata disappears, reproducibility and research velocity drop.
Key takeaway: Treat curation metadata as first-class, portable data — not UI-only sugar.
For anyone building or relying on AI media systems (think text-to-video, image generation, audio diffusion), this is a reminder to design for graceful sunsets and robust data portability from day one. Benchmarks, demos, and “wow” clips are great, but the durable value lies in the prompts, settings, and provenance that let developers re-run, fine-tune, or compare results across engines like TensorFlow, PyTorch, and model families spanning GPT to Stable Diffusion.
The request on the table: a minimal, read-only bridge
The reported ask is modest and time-bound: allow former Sora users to view and export only what they curated, with generation fully disabled, or provide a structured dump of the associated metadata. From an engineering standpoint, this suggests a few practical patterns:
- Scope strictly to user-accessible public artifacts and prompts that were already visible in-app.
- Return a simple, legal-safe metadata envelope with pointers to media rather than re-serving full assets when rights are unclear.
- Disable all writes, likes, and re-publishes. Read-only should mean
HTTP 403on any mutating endpoint.
A minimal export schema could look like:
{
"favorite_id": "sora:fav:9d2a...",
"content_id": "sora:asset:a1b2...",
"type": "video",
"public_url": "https://.../watch/a1b2",
"creator": { "id": "sora:user:z7y8", "display_name": "CreatorName" },
"visible_prompt": "A rainy cyberpunk alley at night...",
"prompt_visibility": "public",
"created_at": "2024-03-10T11:22:33Z",
"favorited_at": "2025-07-04T08:15:00Z",
"notes": null
}
Even if content hosting is ephemeral, the combination of content_id, creator, visible_prompt, and timestamps would let users reconstruct context across platforms like Hugging Face, compare outputs in local pipelines with CUDA-accelerated runners, or re-implement workflows with open models.
Common constraints platforms face
In fairness, there are hard edges here:
- Rights and visibility: Some items in Likes/Favorites may have been removed, made private, or subject to takedowns.
- Ephemerality: If storage policies purged thumbnails or metadata, reconstructing a complete set could be technically non-trivial.
- Privacy: Creator identifiers and prompts can reveal sensitive context; exports must abide by prior visibility and consent.
- Support load: Even read-only portals create auth, rate-limiting, and abuse-prevention overhead near end-of-life.
These challenges are real — but they’re also the exact reasons to pre-plan a sunset protocol and automate export tooling. Successful examples in the open-source imaging world embed prompts and parameters directly in files (e.g., PNGInfo sidecar for Stable Diffusion), which makes portability nearly frictionless.
Design notes for teams sunsetting AI creative products
- Separate spaces: Treat user-generated assets, curated items (likes/favorites), and derived metadata as separate, exportable sets.
- Stable IDs: Keep opaque, stable identifiers for content and creators; never derive IDs from mutable slugs.
- Read-only mode flag: A global
READ_ONLY=trueswitch should disable writes across services by policy, not feature flags alone. - Export queues: Offer CSV/JSONL downloads with paginated manifests and signed URLs that can safely expire.
- Visibility rules baked-in: Export only what was user-visible at the time of curation; omit private data by default.
- Deadline clarity: Prominently display a cutoff date (e.g., September 24, 2026) with recurring in-product reminders.
Bringing this discipline to AI creative tools aligns them with mature ecosystems in PyTorch, TensorFlow, and MLOps platforms that treat metadata and lineage as essential parts of the product, not afterthoughts.
Practical steps users can take right now
- Request a data export focused on curation: Ask support or privacy channels specifically for a Likes/Favorites metadata export (IDs, URLs, creator names, timestamps, visible prompts). Precision helps.
- Document account proof: Keep screenshots of old navigation (if available) and any email receipts/notifications that reference favorites.
- Calendar the deadline: Put a recurring reminder ahead of September 24, 2026. If a window opens, you won’t want to miss it.
- Local archiving discipline: For future workflows, keep local manifests (
favorites.jsonl) with fields forcontent_id,url,prompt,creator, andtimestamp.
None of this guarantees recovery today — but it maximizes your chances if a read-only window or structured export becomes available.
What a low-risk recovery window could look like
- Auth: Verified sign-in for legacy accounts; MFA required.
- Scope: Only GET endpoints; POST/PUT/DELETE return
403. - Quota: Per-user rate limits and time-bound signed URLs.
- Fields:
content_id,public_url(if accessible),creator_display_name,visible_prompt,favorited_at,license_or_visibility. - Audit: Export logs retained until the final service date.
This approach would mirror earlier read-only periods reportedly used during Sora’s wind-down while minimizing operational blast radius.
The broader lesson for the AI stack
As generative media systems mature, data dignity — especially around curation — becomes table stakes. Engineers wouldn’t train a model without versioned datasets and lineage. Why let the user-facing curation graph vanish when it’s often the key to reproducibility across engines from GPT families to local pipelines running on CUDA?
Design for the end at the beginning. Exports and read-only sunsets aren’t “nice-to-haves” — they’re part of trustworthy product architecture.
AI Tech Inspire will keep watching this space. If a read-only recovery window appears — or if a structured export for Likes/Favorites becomes available — it would be a strong signal that AI platforms can sunset responsibly without stranding the creative and research memory users depend on.
Bottom line
There’s a clear, focused user request on the table: enable time-limited, read-only access or deliver a structured metadata export for Sora Likes/Favorites before September 24, 2026. It’s pragmatic, bounded, and aligned with prior read-only behavior. For builders of AI tools, it’s a timely reminder to elevate curation metadata to a first-class export pathway — the difference between a product that merely impresses and one that users can rely on for years, even as features evolve or services sunset.
Recommended Resources
As an Amazon Associate, I earn from qualifying purchases.