← Back to blogΒ·TrendsΒ·6 min read

OpenAI's Astra Solved Ten Open Math Problems for $2,000, ChatGPT Health Went Live for Every US Adult, and a 3x-Cheaper Video Model Shipped in a Week

An internal OpenAI model published ten machine-checked proofs to problems that had been open for a decade, ChatGPT Health rolled out to all US adults with a sandboxed memory store separate from the rest of the app, and MiniMax released an omni-modal video model that undercut incumbent pricing by roughly 3x. Here is what each shift means for what you build next.

By Maya Brennan Β· Writer, Smillee AI
August 4, 2026

Three releases from the last two weeks point in the same direction from different angles: reasoning models are starting to produce work that checks itself, chat products are learning to wall off sensitive domains instead of pretending one memory store fits every use case, and multimodal generation keeps getting cheap enough to bolt onto a chat interface without a pricing conversation. None of these are benchmark bumps β€” they're architecture decisions other teams just made in public. Here's what happened, and what's worth checking against your own stack.

1. A Model Solved Ten Open Math Problems and Proved It Without Asking You to Trust It

On August 1, OpenAI announced that an internal version of its next model, Astra, solved ten problems in mathematics and theoretical computer science that had been open for at least a decade β€” including a construction proving non-sofic groups exist, improved sphere-packing bounds, and a superexponential lower bound for multicolor Ramsey numbers that resolves a specific ErdΕ‘s problem. The notable part isn't the difficulty ranking, it's the receipts: OpenAI published a 249-page manuscript alongside machine-checkable Lean 4 certificates for every result, and the GitHub repository reports a "sorry" count of zero β€” meaning no step in any proof was left unverified or asserted on faith. Total compute cost for all ten solutions was roughly $2,000 at API rates.

The detail worth sitting with is the "sorry" count, not the price tag. A model claiming it solved a hard problem is a benchmark score; a model producing an artifact a separate, deterministic proof checker can verify independently is a different category of trust β€” the output doesn't ask you to believe the model, it asks you to run a checker. That pattern generalizes past pure math: anywhere your pipeline currently accepts a model's claim at face value, the question worth asking is whether there's a cheap, independent verifier you could be running instead.

const modelClaim = {
  output: 'proof of theorem X',
  trustMechanism: 'ask the model if it's confident', // status quo for most LLM outputs
};
const verifiedClaim = {
  output: 'proof of theorem X',
  trustMechanism: 'independent checker returns pass/fail', // what Astra shipped
};
// The gap between these two isn't model quality β€” it's whether an
// artifact exists that something other than the model can grade.

If your system has a step where "the model says it's done" is the only signal you have, this is a reasonable week to ask whether a cheap deterministic check β€” a linter, a schema validator, a unit test, a second model doing pure verification β€” could replace that trust with a pass/fail.

2. ChatGPT Health Went Live for Every US Adult β€” and Kept Its Memory in a Different Room

OpenAI made ChatGPT Health available to all US-based users 18 and older across every plan, expanding from the narrower rollout it started with in July. The feature lets users connect Apple Health and supported medical records β€” including from US hospital systems, One Medical, or Function Health β€” so ChatGPT can pull medications, lab results, recent visits, and activity data into a conversation. OpenAI says it worked with more than 260 physicians on safety and escalation behavior. The architectural choice is the part worth noting for builders: health conversations, connected data, and uploaded files live in a sandboxed environment separate from the rest of ChatGPT, with their own memory store, so information shared in a health conversation isn't supposed to feed back into a user's regular chat history.

This is a bet that a single shared memory store β€” the default architecture for most consumer chat products β€” doesn't hold up once a product spans domains with different sensitivity, retention, and disclosure requirements. A grocery-list request and a lab-result conversation have no business sharing a context window, let alone a long-term memory index that later conversations can silently draw from.

// Single shared memory: simplest to build, wrong once domains diverge
const memory = { store: 'global', scope: 'all-conversations' };

// Domain-isolated memory: what ChatGPT Health shipped
const healthMemory = { store: 'health-sandbox', scope: 'health-conversations-only' };
const generalMemory = { store: 'global', scope: 'general-conversations' };
// A user's medication list should never be retrievable context
// for "help me plan a birthday party."

If your chatbot handles more than one kind of data β€” support tickets and HR questions, code and legal advice, anything regulated alongside anything casual β€” a single memory index across all of it is a liability that gets easier to justify keeping and harder to unwind the longer it sits in production.

3. Multimodal Generation Got Cheap Enough to Stop Being a Feature Decision

MiniMax released H3 on July 31: an omni-modal generation model that takes text, image, video, and audio as unified input and returns 15-second, 2K video clips with native stereo audio. It ranks #1 in Video Editing and #2 in Text-to-Video on the independent Artificial Analysis leaderboard. API pricing landed at $0.13 per second β€” a full 15-second 2K clip runs about $1.95, roughly a third of what comparable incumbent video models charge, with open weights promised under a community license in the days following launch.

The part that matters for chat products isn't the video quality, it's that reference-driven generation β€” steering a result with up to nine reference images, three reference videos, and three reference audio clips β€” is now a first-class capability rather than a separate tool you'd bolt on. When multimodal generation is both this cheap and this composable, "should our chat interface support rich media generation" stops being a build-vs-buy roadmap decision and starts being closer to a pricing-tier decision.

// Worth re-checking whenever a multimodal model this much cheaper ships
const mediaGenCost = {
  perClip15s2K: 1.95, // MiniMax H3, down roughly 3x from prior incumbents
  integrationEffort: 'API call with reference inputs',
};
// A feature that used to need a dedicated video-gen vendor
// relationship may now clear the bar as a line item in your
// existing model router.

What This Means for Builders

None of this week's three stories is really about a leaderboard. Astra's zero-"sorry" proofs are a template for replacing "trust the model" with "run the checker" anywhere your pipeline currently can't tell a confident wrong answer from a right one. ChatGPT Health's sandboxed memory store is an admission that one memory index doesn't serve every domain a chat product touches, and a pattern worth stealing before a regulator makes you. And MiniMax H3's pricing says the cost floor under multimodal generation keeps dropping fast enough that "not yet" is a decision with a shrinking shelf life. Check your own stack against whichever of the three actually touches what you're shipping.

β€” Maya

Frequently asked questions

What did OpenAI's Astra model actually prove, and how was it verified?

On August 1, 2026, OpenAI announced that an internal version of its Astra model solved ten mathematics and theoretical computer science problems that had been open for at least a decade, including a construction proving non-sofic groups exist and a superexponential lower bound for multicolor Ramsey numbers resolving a specific ErdΕ‘s problem. OpenAI published a 249-page manuscript alongside machine-checkable Lean 4 certificates for every result on GitHub, with a "sorry" count of zero, meaning every step of every proof was formally verified by an independent checker rather than asserted by the model. Total compute cost across all ten solutions was roughly $2,000 at API rates.

How does ChatGPT Health handle user data differently from regular ChatGPT conversations?

ChatGPT Health, made available to all US-based users 18 and older across every plan, lets users connect Apple Health and supported medical records so ChatGPT can reference medications, lab results, and visit history in conversation. Health conversations, connected data, and uploaded files run in a sandboxed environment with its own separate memory store, distinct from the rest of ChatGPT β€” information shared in a health conversation isn't intended to feed back into a user's general chat history. OpenAI says it worked with more than 260 physicians on safety and escalation behavior for the feature.

What is MiniMax H3 and why is its pricing significant?

MiniMax H3, released July 31, 2026, is an omni-modal generation model that accepts text, image, video, and audio as unified input and produces 15-second, 2K video clips with native stereo audio, supporting up to nine reference images, three reference videos, and three reference audio clips to steer a single generation. It ranks #1 in Video Editing and #2 in Text-to-Video on the independent Artificial Analysis leaderboard. API pricing of $0.13 per second works out to about $1.95 for a 15-second 2K clip, roughly a third of comparable incumbent video model pricing, with open weights promised under a community license shortly after launch.

Maya Brennan
Writer, Smillee AI

I'm Maya β€” I write most of what you'll read here. I spent years as a copywriter before I got a little obsessed with what these AI tools can actually do, so now I spend my days poking at chatbots, breaking them, and writing up what's worth your time. Everything here is something I've actually tried. If a prompt didn't work for me, it doesn't make the cut.

Want to try any of this?

Smillee's free and there's no signup β€” open it and paste in whatever you're working on.

Start chatting β†’

More from the blog