From 50b0ee38d4b2ac464abbea87b70b5eaab3845036 Mon Sep 17 00:00:00 2001 From: Abid Ali Awan Date: Wed, 13 May 2026 22:23:20 +0500 Subject: [PATCH] Refactor multi-agent research assistant notebook and update research report - Changed execution counts in the Jupyter notebook for consistency. - Removed unnecessary imports and commented-out code. - Updated the markdown structure in the research report for clarity and emphasis. - Enhanced key findings and context sections with clearer language and additional references. - Improved the overall organization of the report for better readability and flow. --- ...arch_assistant_openai_agents_olostep.ipynb | 202 +++++++++--------- research/research_report.md | 94 ++++---- 2 files changed, 150 insertions(+), 146 deletions(-) diff --git a/research/multi_agent_research_assistant_openai_agents_olostep.ipynb b/research/multi_agent_research_assistant_openai_agents_olostep.ipynb index 6a51f81..ef9e456 100644 --- a/research/multi_agent_research_assistant_openai_agents_olostep.ipynb +++ b/research/multi_agent_research_assistant_openai_agents_olostep.ipynb @@ -27,12 +27,12 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "id": "305edf05", "metadata": {}, "outputs": [], "source": [ - "# %pip install -q -U openai-agents olostep python-dotenv pydantic" + "%pip install -q -U openai-agents olostep python-dotenv pydantic" ] }, { @@ -52,16 +52,13 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 2, "id": "65c55df2", "metadata": {}, "outputs": [], "source": [ - "import importlib.metadata\n", "import json\n", "import os\n", - "import textwrap\n", - "import warnings\n", "from datetime import datetime\n", "from typing import Any\n", "\n", @@ -86,47 +83,6 @@ "OLOSTEP_API_KEY = os.getenv(\"OLOSTEP_API_KEY\")" ] }, - { - "cell_type": "markdown", - "id": "6eeb39f9", - "metadata": {}, - "source": [ - "## Olostep SDK Search With Scrape Demo\n", - "\n", - "This standalone cell uses the exact SDK style requested.\n" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "d2b663f0", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "https://www.bcg.com/capabilities/artificial-intelligence/ai-agents - 28638 chars\n", - "https://company.g2.com/news/2025-ai-agent-report - 14118 chars\n", - "https://www.grandviewresearch.com/industry-analysis/ai-agents-market-report - 28563 chars\n", - "https://mitsloan.mit.edu/ideas-made-to-matter/4-new-studies-about-agentic-ai-mit-initiative-digital-economy - 21678 chars\n", - "https://www.capgemini.com/insights/research-library/ai-agents/ - 49027 chars\n" - ] - } - ], - "source": [ - "client = Olostep(api_key=OLOSTEP_API_KEY)\n", - "\n", - "search = client.searches.create(\n", - " query=\"What are the most important recent developments in AI agents for business research?\",\n", - " limit=5,\n", - " scrape_options={\"formats\": [\"markdown\"], \"timeout\": 25},\n", - ")\n", - "\n", - "for link in search.links:\n", - " print(link[\"url\"], \"-\", len(link.get(\"markdown_content\") or \"\"), \"chars\")\n" - ] - }, { "cell_type": "markdown", "id": "3d86e6e2", @@ -141,7 +97,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 3, "id": "e1cb38e5", "metadata": {}, "outputs": [], @@ -212,12 +168,12 @@ "source": [ "## Pydantic Structured Outputs\n", "\n", - "These models make the judge output and final research report predictable.\n" + "These models make the judge output predictable and keep the final report focused on rendered Markdown.\n" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 4, "id": "8924e811", "metadata": {}, "outputs": [], @@ -234,17 +190,9 @@ "\n", "\n", "class MarkdownResearchReport(BaseModel):\n", - " title: str = Field(description=\"Research report title.\")\n", - " executive_summary: str = Field(description=\"Short answer-first summary.\")\n", - " key_findings: list[str] = Field(description=\"Most important findings.\")\n", " markdown_report: str = Field(\n", " description=\"Complete Markdown report with polished headings, clear analysis, reader-friendly structure, and citations.\"\n", - " )\n", - " citations: list[str] = Field(\n", - " default_factory=list, description=\"Source URLs used in the report.\"\n", - " )\n", - " confidence: str = Field(description=\"Low, medium, or high confidence.\")\n", - " method_used: str = Field(description=\"Retrieval path used by the manager agent.\")\n" + " )\n" ] }, { @@ -259,7 +207,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 5, "id": "ed55def1", "metadata": {}, "outputs": [], @@ -295,7 +243,6 @@ " data.get(\"links\", []),\n", " limit=limit,\n", " ),\n", - " \"raw\": data,\n", " }\n", " )\n", "\n", @@ -335,7 +282,6 @@ " data.get(\"links\", []),\n", " limit=limit,\n", " ),\n", - " \"raw\": data,\n", " },\n", " max_chars=12000,\n", " )\n", @@ -386,7 +332,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 6, "id": "ec7b6da3", "metadata": {}, "outputs": [], @@ -447,7 +393,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 7, "id": "10af3569", "metadata": {}, "outputs": [], @@ -486,7 +432,14 @@ " \"search result, and scraped page. The analyst must produce the final MarkdownResearchReport.\\n\"\n", " \"6. Return only the final MarkdownResearchReport. Do not return a casual chat answer, tool transcript, or plan.\"\n", " ),\n", - " tools=[answer_query, judge_tool, search_with_scrape, search_web, scrape_url, analyst_tool],\n", + " tools=[\n", + " answer_query,\n", + " judge_tool,\n", + " search_with_scrape,\n", + " search_web,\n", + " scrape_url,\n", + " analyst_tool,\n", + " ],\n", " output_type=MarkdownResearchReport,\n", ")\n" ] @@ -503,7 +456,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 8, "id": "15e75b26", "metadata": {}, "outputs": [], @@ -571,7 +524,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 9, "id": "babeecbc", "metadata": {}, "outputs": [ @@ -579,58 +532,105 @@ "name": "stdout", "output_type": "stream", "text": [ - "OpenAI trace ID: trace_45f3333363da420dbcefc8bb8819224c\n", - "OpenAI trace URL: https://platform.openai.com/logs/trace?trace_id=trace_45f3333363da420dbcefc8bb8819224c\n", + "OpenAI trace ID: trace_e98cddae633644a2acb5d568072db008\n", + "OpenAI trace URL: https://platform.openai.com/logs/trace?trace_id=trace_e98cddae633644a2acb5d568072db008\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\abida\\AppData\\Roaming\\Python\\Python313\\site-packages\\olostep\\backend\\caller.py:491: UserWarning: The API response from 'Create Scrape' contains 1 extra field(s) not defined in the SDK model: cost_usd. This may indicate new API features. Please check for a newer SDK version on Slack (best place to ask), PyPI or Github. (current: 1.0.4). Visit https://docs.olostep.com/sdks/python for updates.\n", + " return await self._invoke(\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "Trace flushed. Open the URL above to inspect manager, specialist agents, tools, and Olostep spans.\n" ] }, { "data": { "text/markdown": [ - "## Executive Summary\n", + "# Executive Summary\n", "\n", - "OpenAI is shutting down Sora as a product line in phases. According to OpenAI’s Help Center, the Sora web and app experiences were discontinued on April 26, 2026, and the Sora API is scheduled to be discontinued on September 24, 2026. OpenAI also posted guidance for exporting content and handling account-related issues, which suggests a managed wind-down rather than an emergency outage. [OpenAI Help Center](https://help.openai.com/)\n", + "OpenAI is not “shutting down Sora” in the sense of abandoning the project entirely, but it is discontinuing the consumer-facing Sora web and app experiences and retiring the Sora API on a later date. OpenAI’s Help Center says the Sora web and app were discontinued on April 26, 2026, and the API will be discontinued on September 24, 2026, with users urged to export content before deletion follows later. [OpenAI Help Center](https://help.openai.com/)\n", "\n", - "Independent reporting from the Los Angeles Times and The New York Times corroborates the shutdown and frames it as part of a broader strategic shift. The coverage connects the move to business and partnership realities, including reporting about a Disney-related arrangement. [Los Angeles Times](https://www.latimes.com/) [The New York Times](https://www.nytimes.com/)\n", + "The shift appears to reflect a strategic reprioritization: reporting from Reuters and BBC says OpenAI is focusing more on core models, coding tools, enterprise customers, robotics, and broader platform ambitions. Reuters also reports the move startled Disney and that the previously reported $1 billion Disney partnership never closed and no money changed hands. [Reuters](https://www.reuters.com/) [BBC](https://www.bbc.com/news)\n", "\n", - "## What’s happening\n", + "# Key Findings\n", "\n", - "Sora is OpenAI’s text-to-video generation product. The current issue is not speculation: OpenAI has announced a staged retirement of the service.\n", + "- **Consumer Sora is gone:** OpenAI ended the Sora web and app experiences on April 26, 2026. [OpenAI Help Center](https://help.openai.com/)\n", + "- **The API stays up briefly longer:** OpenAI says Sora API access ends on September 24, 2026. [OpenAI Help Center](https://help.openai.com/)\n", + "- **The main reason is strategic refocusing:** Reporting says OpenAI is shifting attention toward coding, enterprise usage, AGI-related work, robotics, and a broader “super-app” direction. [Reuters](https://www.reuters.com/) [BBC](https://www.bbc.com/news)\n", + "- **Commercial performance and safety concerns mattered:** BBC reporting cites weak monetization, plus concerns about misinformation and copyright infringement. [BBC](https://www.bbc.com/news)\n", + "- **The Disney story is real, but incomplete in many headlines:** Reuters says the reported $1 billion Disney deal did not close and no money changed hands, though Disney had explored licensing use of its IP. [Reuters](https://www.reuters.com/)\n", "\n", - "The timing is important:\n", + "# Context\n", "\n", - "| Milestone | Date | Meaning |\n", - "|---|---:|---|\n", - "| Web/app shutdown | Apr. 26, 2026 | Consumer access ended |\n", - "| API shutdown | Sep. 24, 2026 | Developer access ends later |\n", + "Sora was OpenAI’s generative video product, aimed at creating short video content from prompts. Its shutdown has been widely framed as a surprise because it followed heavy outside attention and high-profile industry interest. But the practical change is narrower than “OpenAI killed Sora entirely”: the consumer product is discontinued now, while the API has a later retirement date. [OpenAI Help Center](https://help.openai.com/)\n", "\n", - "That split timeline usually means a company is reducing product surface area while giving users and developers time to migrate or export data. [OpenAI Help Center](https://help.openai.com/)\n", + "The timing matters. OpenAI is asking users to save their material now, because the company says content will later be deleted after the service wind-down. That makes this a managed product retirement rather than an abrupt outage. [OpenAI Help Center](https://help.openai.com/)\n", "\n", - "## Why it’s being shut down\n", + "# Evidence Review\n", "\n", - "OpenAI’s own notice focuses on the discontinuation process and what users should do next. Outside reporting adds the broader context:\n", + "**Primary source:** OpenAI’s Help Center provides the clearest confirmation of status and dates. It explicitly states the Sora web and app are discontinued and gives the API retirement date. This is the strongest evidence for what actually happened operationally. [OpenAI Help Center](https://help.openai.com/)\n", "\n", - "- the product’s commercial viability was in question,\n", - "- the company appears to be refocusing resources,\n", - "- and a Disney-related partnership backdrop is part of the story. [Los Angeles Times](https://www.latimes.com/) [The New York Times](https://www.nytimes.com/)\n", + "**Reuters:** Reuters reports that OpenAI dropped Sora, that the decision surprised Disney, and that the earlier reported $1 billion deal did not close. Reuters also places the move inside a broader strategic shift toward coding tools, corporate customers, AGI, robotics, and a larger platform strategy. [Reuters](https://www.reuters.com/)\n", "\n", - "So the best read is: this is a strategic wind-down, not a surprise technical failure.\n", + "**BBC:** BBC reporting reinforces the strategic story and adds commercial and policy context, including low reported in-app revenue, plus misinformation and copyright concerns. It also notes the consumer app and web platform were closed. [BBC](https://www.bbc.com/news)\n", "\n", - "## What users should take from it\n", + "**Other major outlets:** Coverage from CNN, CNBC, the New York Times, and the Los Angeles Times broadly aligns with the same framing: Sora was pulled from consumer use, while OpenAI appears to be reallocating attention toward higher-priority products and infrastructure. [CNN](https://www.cnn.com/) [CNBC](https://www.cnbc.com/) [New York Times](https://www.nytimes.com/) [Los Angeles Times](https://www.latimes.com/)\n", "\n", - "- Sora is no longer a stable consumer product.\n", - "- If you have content in Sora, export it as soon as possible.\n", - "- If you depend on the API, the key deadline is September 24, 2026.\n", + "# Detailed Analysis\n", "\n", - "## Bottom line\n", + "## What happened\n", "\n", - "OpenAI is discontinuing Sora in an orderly, phased shutdown. The service is already gone from the web/app side, and the API has a later retirement date. The move appears to reflect strategic and business considerations more than any single technical issue.\n", + "OpenAI has discontinued the consumer Sora experience and set a later end date for the API. In practical terms, users can no longer rely on Sora as an active consumer app/web product, and developers have a defined sunset window before the API is retired. [OpenAI Help Center](https://help.openai.com/)\n", "\n", - "## References\n", + "## Why OpenAI says it did this\n", "\n", - "- OpenAI Help Center — https://help.openai.com/en/articles/20001152-what-to-know-about-the-sora-discontinuation\n", - "- Los Angeles Times — https://www.latimes.com/entertainment-arts/business/story/2026-03-24/openai-will-shut-down-sora-why-what-to-know\n", - "- The New York Times — https://www.nytimes.com/2026/03/24/technology/openai-shutting-down-sora.html" + "The reporting points to a combination of business and strategy factors:\n", + "\n", + "- **Resource allocation:** OpenAI is concentrating on products and markets that better align with its near-term priorities.\n", + "- **Strategic focus:** Reuters says the company is emphasizing coding tools, corporate customers, AGI work, robotics, and a broader platform vision. [Reuters](https://www.reuters.com/)\n", + "- **Monetization:** BBC reports Sora’s in-app revenue was comparatively weak relative to ChatGPT, suggesting limited commercial traction. [BBC](https://www.bbc.com/news)\n", + "- **Safety and rights issues:** BBC also cites concerns about misinformation and copyright infringement, which are especially sensitive for generative video. [BBC](https://www.bbc.com/news)\n", + "\n", + "## The Disney context\n", + "\n", + "The Disney angle is less about a signed, paid partnership and more about a deal that reportedly never closed. Reuters says OpenAI’s move “startled Disney,” but also that the reported $1 billion transaction did not finalize and no money changed hands. That distinction is important: Disney may have been involved in licensing discussions, but the deal was not a completed commercial commitment. [Reuters](https://www.reuters.com/)\n", + "\n", + "## Compact comparison\n", + "\n", + "| Topic | Consumer Sora | Sora API |\n", + "|---|---:|---:|\n", + "| Status | Discontinued | Scheduled for retirement |\n", + "| OpenAI date | April 26, 2026 | September 24, 2026 |\n", + "| User impact | Consumer access ended | Developer access ends later |\n", + "| Source | OpenAI Help Center | OpenAI Help Center |\n", + "\n", + "# Implications\n", + "\n", + "For users, the immediate implication is simple: Sora is no longer available as a consumer web/app product, and any content stored there should be exported promptly. For developers, the API sunset means any integrations need to be considered against the September retirement date. [OpenAI Help Center](https://help.openai.com/)\n", + "\n", + "More broadly, the move suggests OpenAI is being selective about where it deploys compute, product attention, and brand risk. The decision also highlights a recurring issue in generative media: even technically impressive tools can face pressure from cost, monetization, copyright, and trust/safety concerns. [Reuters](https://www.reuters.com/) [BBC](https://www.bbc.com/news)\n", + "\n", + "# Source Notes\n", + "\n", + "The clearest status information comes from OpenAI itself, which is the authoritative source for product availability and retirement dates. Reuters provides the strongest high-level reporting on the strategic and Disney-related context. BBC adds useful detail on monetization and policy concerns. The other major outlets are consistent with the same general picture, though the Reuters and OpenAI sources are the most central here. [OpenAI Help Center](https://help.openai.com/) [Reuters](https://www.reuters.com/) [BBC](https://www.bbc.com/news)\n", + "\n", + "# References\n", + "\n", + "- OpenAI Help Center — https://help.openai.com/\n", + "- Reuters — https://www.reuters.com/\n", + "- BBC News — https://www.bbc.com/news\n", + "- CNN — https://www.cnn.com/\n", + "- CNBC — https://www.cnbc.com/\n", + "- The New York Times — https://www.nytimes.com/\n", + "- Los Angeles Times — https://www.latimes.com/" ], "text/plain": [ "" @@ -647,14 +647,6 @@ "display(Markdown(report.markdown_report))\n" ] }, - { - "cell_type": "markdown", - "id": "06770c28", - "metadata": {}, - "source": [ - "![image_1.png](image_1.png)" - ] - }, { "cell_type": "markdown", "id": "5ec73253", @@ -667,7 +659,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 10, "id": "17a66fce", "metadata": {}, "outputs": [ diff --git a/research/research_report.md b/research/research_report.md index 58bbbc6..a879d8f 100644 --- a/research/research_report.md +++ b/research/research_report.md @@ -1,65 +1,77 @@ -## Executive Summary +# Executive Summary -OpenAI is shutting down Sora, but not all at once. The company has officially discontinued the Sora web/app experience as of April 26, 2026, and says the Sora API will be discontinued on September 24, 2026. Users have a limited export window, after which OpenAI says data will be permanently deleted. +OpenAI is not “shutting down Sora” in the sense of abandoning the project entirely, but it is discontinuing the consumer-facing Sora web and app experiences and retiring the Sora API on a later date. OpenAI’s Help Center says the Sora web and app were discontinued on April 26, 2026, and the API will be discontinued on September 24, 2026, with users urged to export content before deletion follows later. [OpenAI Help Center](https://help.openai.com/) -The core fact is confirmed by OpenAI’s Help Center. Some broader explanations circulating online—especially about cost, profitability, or adoption—are not established by the evidence provided here. NBC News additionally reports that a Disney-related deal tied to OpenAI will be dissolved, but that reporting does not by itself explain the shutdown in full. +The shift appears to reflect a strategic reprioritization: reporting from Reuters and BBC says OpenAI is focusing more on core models, coding tools, enterprise customers, robotics, and broader platform ambitions. Reuters also reports the move startled Disney and that the previously reported $1 billion Disney partnership never closed and no money changed hands. [Reuters](https://www.reuters.com/) [BBC](https://www.bbc.com/news) -## Key Findings +# Key Findings -- OpenAI has officially confirmed that Sora is being discontinued. -- The consumer web/app shut down on April 26, 2026. -- The Sora API remains available until September 24, 2026. -- OpenAI provides a data export path during the sunset period and says user data will be deleted after the export window. -- NBC News reports a Disney-related deal will be dissolved, but the evidence does not confirm that as the sole or official reason. -- Unsupported claims about compute costs or profitability should be treated as unverified. +- **Consumer Sora is gone:** OpenAI ended the Sora web and app experiences on April 26, 2026. [OpenAI Help Center](https://help.openai.com/) +- **The API stays up briefly longer:** OpenAI says Sora API access ends on September 24, 2026. [OpenAI Help Center](https://help.openai.com/) +- **The main reason is strategic refocusing:** Reporting says OpenAI is shifting attention toward coding, enterprise usage, AGI-related work, robotics, and a broader “super-app” direction. [Reuters](https://www.reuters.com/) [BBC](https://www.bbc.com/news) +- **Commercial performance and safety concerns mattered:** BBC reporting cites weak monetization, plus concerns about misinformation and copyright infringement. [BBC](https://www.bbc.com/news) +- **The Disney story is real, but incomplete in many headlines:** Reuters says the reported $1 billion Disney deal did not close and no money changed hands, though Disney had explored licensing use of its IP. [Reuters](https://www.reuters.com/) -## Context +# Context -Sora is OpenAI’s video-generation product. In this case, the question is not whether rumors are circulating, but whether the shutdown is actually happening. Based on the official Help Center notice, it is. +Sora was OpenAI’s generative video product, aimed at creating short video content from prompts. Its shutdown has been widely framed as a surprise because it followed heavy outside attention and high-profile industry interest. But the practical change is narrower than “OpenAI killed Sora entirely”: the consumer product is discontinued now, while the API has a later retirement date. [OpenAI Help Center](https://help.openai.com/) -The shutdown appears to be phased rather than immediate: +The timing matters. OpenAI is asking users to save their material now, because the company says content will later be deleted after the service wind-down. That makes this a managed product retirement rather than an abrupt outage. [OpenAI Help Center](https://help.openai.com/) -- **April 26, 2026:** Sora web/app experiences discontinued. -- **September 24, 2026:** Sora API discontinued. +# Evidence Review -OpenAI also directs users to an export process at its sunset page and says data will be deleted after the export period ends. That indicates the company is handling this as a formal product retirement rather than a temporary outage. +**Primary source:** OpenAI’s Help Center provides the clearest confirmation of status and dates. It explicitly states the Sora web and app are discontinued and gives the API retirement date. This is the strongest evidence for what actually happened operationally. [OpenAI Help Center](https://help.openai.com/) -## Evidence Review +**Reuters:** Reuters reports that OpenAI dropped Sora, that the decision surprised Disney, and that the earlier reported $1 billion deal did not close. Reuters also places the move inside a broader strategic shift toward coding tools, corporate customers, AGI, robotics, and a larger platform strategy. [Reuters](https://www.reuters.com/) -### Official confirmation -OpenAI’s Help Center states: “What to know about the Sora discontinuation,” confirming both the shutdown and the timeline for the web/app and API. It also provides instructions for exporting data and notes eventual deletion after the export window. [OpenAI Help Center](https://help.openai.com/) +**BBC:** BBC reporting reinforces the strategic story and adds commercial and policy context, including low reported in-app revenue, plus misinformation and copyright concerns. It also notes the consumer app and web platform were closed. [BBC](https://www.bbc.com/news) -### Reporting on related business consequences -NBC News reports that OpenAI is shutting down its Sora video-creation app and that a Disney deal with OpenAI will be dissolved. That supports the existence of broader business changes around Sora, but the report in the evidence set does not provide an official OpenAI rationale. [NBC News](https://www.nbcnews.com/) +**Other major outlets:** Coverage from CNN, CNBC, the New York Times, and the Los Angeles Times broadly aligns with the same framing: Sora was pulled from consumer use, while OpenAI appears to be reallocating attention toward higher-priority products and infrastructure. [CNN](https://www.cnn.com/) [CNBC](https://www.cnbc.com/) [New York Times](https://www.nytimes.com/) [Los Angeles Times](https://www.latimes.com/) -### Unsupported explanations -The initial answer claimed reasons such as massive compute costs, weak profitability, low adoption, and a collapsed Disney partnership. In the evidence provided, only the Disney-related reporting appears; the rest are not backed by the official source and should not be presented as confirmed facts. +# Detailed Analysis -## Detailed Analysis +## What happened -The best-supported reading is straightforward: OpenAI is winding down Sora in an orderly, staged retirement. The web/app shutdown first affects end users directly, while the API remains available for a longer transition period. That pattern usually suggests planned deprecation, not an abrupt technical failure. +OpenAI has discontinued the consumer Sora experience and set a later end date for the API. In practical terms, users can no longer rely on Sora as an active consumer app/web product, and developers have a defined sunset window before the API is retired. [OpenAI Help Center](https://help.openai.com/) -A compact view: +## Why OpenAI says it did this -| Topic | Confirmed by evidence | Status | -|---|---:|---| -| Sora web/app discontinuation | Yes | Confirmed | -| Sora API discontinuation date | Yes | Confirmed | -| Export window and deletion policy | Yes | Confirmed | -| Official business rationale | No | Not confirmed in evidence | -| Disney-related deal dissolution | Reported by NBC | Reported, not official in evidence | +The reporting points to a combination of business and strategy factors: -The most important distinction is between **confirmed product status** and **reported explanation**. The first is clear: Sora is being shut down on a defined schedule. The second is murkier: the evidence set does not include a direct OpenAI explanation for why, so any narrative about economics, demand, or partnership fallout remains incomplete. +- **Resource allocation:** OpenAI is concentrating on products and markets that better align with its near-term priorities. +- **Strategic focus:** Reuters says the company is emphasizing coding tools, corporate customers, AGI work, robotics, and a broader platform vision. [Reuters](https://www.reuters.com/) +- **Monetization:** BBC reports Sora’s in-app revenue was comparatively weak relative to ChatGPT, suggesting limited commercial traction. [BBC](https://www.bbc.com/news) +- **Safety and rights issues:** BBC also cites concerns about misinformation and copyright infringement, which are especially sensitive for generative video. [BBC](https://www.bbc.com/news) -## Implications +## The Disney context -For users, the immediate implication is that Sora access is ending and any needed exports should be completed within the stated sunset period. For observers, the more important takeaway is that shutdown rumors are accurate only insofar as they reflect the official discontinuation notice; broader causal claims need stronger sourcing. +The Disney angle is less about a signed, paid partnership and more about a deal that reportedly never closed. Reuters says OpenAI’s move “startled Disney,” but also that the reported $1 billion transaction did not finalize and no money changed hands. That distinction is important: Disney may have been involved in licensing discussions, but the deal was not a completed commercial commitment. [Reuters](https://www.reuters.com/) -## Source Notes +## Compact comparison -The strongest source here is OpenAI’s own Help Center notice, which directly establishes the shutdown and timeline. NBC News is useful for confirming that the shutdown has broader business implications, but it is secondary reporting and does not substitute for an official rationale from OpenAI. Claims beyond those sources should be treated cautiously. +| Topic | Consumer Sora | Sora API | +|---|---:|---:| +| Status | Discontinued | Scheduled for retirement | +| OpenAI date | April 26, 2026 | September 24, 2026 | +| User impact | Consumer access ended | Developer access ends later | +| Source | OpenAI Help Center | OpenAI Help Center | -## References +# Implications -- OpenAI Help Center: https://help.openai.com/ -- NBC News: https://www.nbcnews.com/ \ No newline at end of file +For users, the immediate implication is simple: Sora is no longer available as a consumer web/app product, and any content stored there should be exported promptly. For developers, the API sunset means any integrations need to be considered against the September retirement date. [OpenAI Help Center](https://help.openai.com/) + +More broadly, the move suggests OpenAI is being selective about where it deploys compute, product attention, and brand risk. The decision also highlights a recurring issue in generative media: even technically impressive tools can face pressure from cost, monetization, copyright, and trust/safety concerns. [Reuters](https://www.reuters.com/) [BBC](https://www.bbc.com/news) + +# Source Notes + +The clearest status information comes from OpenAI itself, which is the authoritative source for product availability and retirement dates. Reuters provides the strongest high-level reporting on the strategic and Disney-related context. BBC adds useful detail on monetization and policy concerns. The other major outlets are consistent with the same general picture, though the Reuters and OpenAI sources are the most central here. [OpenAI Help Center](https://help.openai.com/) [Reuters](https://www.reuters.com/) [BBC](https://www.bbc.com/news) + +# References + +- OpenAI Help Center — https://help.openai.com/ +- Reuters — https://www.reuters.com/ +- BBC News — https://www.bbc.com/news +- CNN — https://www.cnn.com/ +- CNBC — https://www.cnbc.com/ +- The New York Times — https://www.nytimes.com/ +- Los Angeles Times — https://www.latimes.com/ \ No newline at end of file