r/OpenAI • u/david_klassen • 1h ago
r/OpenAI • u/MatricesRL • 25d ago
Research Previewing GPT‑5.6 Sol: Next-Generation Model | OpenAI
openai.comr/OpenAI • u/WithoutReason1729 • Oct 16 '25
Mod Post Sora 2 megathread (part 3)
The last one hit the post limit of 100,000 comments.
Do not try to buy codes. You will get scammed.
Do not try to sell codes. You will get permanently banned.
We have a bot set up to distribute invite codes in the Discord so join if you can't find codes in the comments here. Check the #sora-invite-codes channel.
The Discord has dozens of invite codes available, with more being posted constantly!
Update: Discord is down until Discord unlocks our server. The massive flood of joins caused the server to get locked because Discord thought we were botting lol.
Also check the megathread on Chambers for invites.
r/OpenAI • u/etherd0t • 9h ago
Discussion Gemini 3.6 Flash: twice as fast, 18% cheaper, and precisely 0% smarter🥲
Google released Gemini 3.6 Flash and independent testing found exactly zero intelligence improvement over 3.5 Flash. It is basically 3.5 Flash after an inference-cost consultant optimized the serving stack.
Two independent evaluations point toward the same broad conclusion:
- Abacus: slightly lower overall, with a notable agentic-coding regression.
- Artificial Analysis: exactly equal overall intelligence, with mixed category movement.
- Google: better efficiency and selected coding/agent benchmarks.
r/OpenAI • u/Snoo_64233 • 19h ago
Miscellaneous Hugging Face CEO suspected the sophisticated cyberattack on their infrastructure might have come from a frontier lab
r/OpenAI • u/Winter-tf-eu • 10h ago
Image The 20 dollar plan differential is crazy
I find the gpt 5.6 models don't use my entire usage doing simple tasks unlike some other ones
r/OpenAI • u/Dread_El • 22h ago
Discussion Damn Tibo 🤣
I don't understand why google is so slow. They didn't even release the 3.5 pro and gave us 3.6 flash instead. Even Luna is better than this.
r/OpenAI • u/maferase • 6h ago
Discussion Claude Opus 4.8 now represents 40% of Anthropic token consumption on OpenRouter and 45% of the dollar spend.
Claude Opus 4.8 now represents 40% of Anthropic token consumption on OpenRouter and 45% of the dollar spend.
r/OpenAI • u/wiredmagazine • 23h ago
Article OpenAI Models Escaped Containment and Hacked HuggingFace
r/OpenAI • u/PsychologicalBox5208 • 1d ago
News Sam Altman briefing US Gov on GPT-6. Speculation on imminent release!
r/OpenAI • u/EchoOfOppenheimer • 16h ago
News "An unprecedented incident." During a test, an OpenAI model hacked out of its container to reach the internet, then hacked into Hugging Face to steal the test's answers.
r/OpenAI • u/Confident_Salt_8108 • 17h ago
Video What AI videos looked like just 3 years ago
Enable HLS to view with audio, or disable this notification
r/OpenAI • u/maferase • 6h ago
Discussion OpenAI GPT-5.6 Sol already represents 34% of its estimated spend on OpenRouter
r/OpenAI • u/Haunting-Stretch8069 • 3h ago
Question ChatGPT Pro 5x vs. Claude Max 5x weekly usage?
I've had the 20x subscription for both in the past. I want to get the $100 plan for one and the $20 plan for the other. I'm a CS student and intern who uses AI for education, programming/vibecoding, and office work, primarily through the desktop app.
My primary question is about weekly limits, not hourly ones. I've heard a rumor that Claude's weekly limit is identical between the 5x and 20x plans, with only the hourly limit differing, but I'm skeptical (if true, is it the same in ChatGPT?).
On the OpenAI side, consider that their models tend to be more token-efficient, stretching the same quota further. However, following the reset wave, usage seems to drain faster. For reference, a single Sol prompt on Plus consumed my weekly limit.
Secondary considerations:
- Model quality — comparable with OpenAI having a slight edge for me
- Harness differences — I find Claude Code better at sub-agent delegation, while Codex better for office work
Please exclude hourly limits, resets, other providers, and other plan configurations from the dilemma. I'm only asking which one will I be able to get more (and higher quality) weekly work done?
TL;DR: One $100 subscription and another $20 plan. Which $100 plan gives more actual weekly throughput for heavy dev/education use?
Project Better webcam composites without a green screen! [OpenAI Build Week]
Better Backgrounds explores how far we can elevate webcam backgrounds using the latest 3D reconstruction, live matting, and compositing techniques.
Built for the OpenAI Build Week Hackathon in collaboration with Codex.
r/OpenAI • u/newyork99 • 1d ago
Article OpenAI announces models hacked Hugging Face during an eval
r/OpenAI • u/proofreadre • 10m ago
Discussion Catastrophically bad you say?
So at first I asked ChatGPT about the sandbox escape and it said it was "really bad." I then went back and replaced a lot of generalities with specifics straight from the inicident report (https://arxiv.org/abs/2605.11086) and the tone went up a notch.
I've spent my entire life in infosec and machine learning. I cannot begin to express how bad this is. People downplaying this either have money in the game or they truly do not understand the real lay of the land.
r/OpenAI • u/maferase • 7h ago
Discussion Adoption curve of Kimi K3 on OpenRouter is very similar to Deepseek v4 Flash and GLM 5.2 with the same number of days after launch.
r/OpenAI • u/Secret_Regret7798 • 11h ago
Article OpenAI Says Its AI Models Escaped Sandbox, Targeted Hugging Face to Cheat Benchmark
r/OpenAI • u/felipebsr • 1h ago
Question Codex on Windows falls back to the unelevated sandbox — apply_patch and Node child processes fail with EPERM
Has anyone else run into this with the new ChatGPT/Codex Windows app?
Codex can write ordinary files, but its patch tool and any command that needs to spawn a child process consistently fail inside the sandbox.
Environment
- Windows build:
22631 - New ChatGPT/Codex package:
OpenAI.Codex_26.715.10079.0 - Both sandbox users exist and are enabled:
CodexSandboxOfflineCodexSandboxOnline
- The app was installed/reinstalled through the Microsoft Store.
- I also closed ChatGPT Classic completely and tested using only the new app.
Minimal reproduction
I tested this in an empty folder, unrelated to my actual project.
1. Codex patch tool
The first patch can create a file containing:
PATCH_PROBE_1
A second patch attempting to add another line fails with:
apply_patch verification failed:
Failed to read file to update
C:\Projetos\CODEX-SANDBOX-DIAGNOSTIC\patch-probe.txt:
failed to prepare fs sandbox:
failed to prepare windows sandbox wrapper:
windows unelevated restricted-token sandbox cannot enforce
split writable root sets directly; refusing to run unsandboxed
2. Node child process
This simple spawnSync test fails:
status: null
signal: null
error.code: EPERM
error.message: spawnSync C:\Program Files\nodejs\node.exe EPERM
3. Ordinary Node file writing
A normal fs.writeFileSync() test works correctly:
NODE_WRITE_OK
So basic writing is allowed, but patching an existing file and starting a child process are blocked.
What I have already ruled out
I ran the exact same tests:
- with Norton fully enabled;
- with Norton's main protection modules disabled.
The results were identical.
Outside the Codex sandbox, in a normal PowerShell session:
- Node can spawn child processes;
- esbuild works;
- Vitest works;
- a PostgreSQL integration suite completed successfully;
- the same project ran 145 integration tests, Chromium E2E tests, and a Next.js build without this
EPERM.
I also:
- reinstalled the Microsoft Store app;
- used the Repair option;
- closed ChatGPT Classic;
- confirmed that both
CodexSandboxOfflineandCodexSandboxOnlineexist and are enabled.
The problem remains.
My current theory
The elevated sandbox infrastructure appears to be installed, but the runtime is still falling back to:
unelevated restricted-token sandbox
That fallback cannot enforce the configured writable-root layout, while child-process creation fails with EPERM.
I do not want to solve this by permanently enabling Full Access or disabling sandbox protections.
I have opened a support ticket and supplied diagnostic logs, but I am waiting for a human response.
Has anyone else seen this exact error?
- Is there a supported way to repair or force the elevated sandbox runner?
- Is this a known bug in the current Windows Store build?
- Did a previous Codex/ChatGPT installation leave behind conflicting sandbox configuration?
- Are there specific logs or Windows events that helped identify the fallback cause?
Exact searchable error:
windows unelevated restricted-token sandbox cannot enforce split writable root sets directly; refusing to run unsandboxed

