The one-line version: the price of intelligence fell again at both ends of the market, and one bill came due. On July 30, OpenAI cut GPT-5.6 Luna by ~80% (now $0.20/$1.20 per million tokens) and Terra by ~20%; on July 31, DeepSeek open-weighted a million-token, MIT-licensed model; on August 4, operational-agent startup HappyRobot raised $150M at a $1.2B valuation; and on August 5, Anthropic retired claude-opus-4-1 from its first-party API — so any code still pinning it broke yesterday. If you build alone: your inputs got cheaper, your open-weight options got stronger, and your maintenance list got one line longer.

1. OpenAI cut GPT-5.6 by up to 80% — mid-tier inference is suddenly cheap#

On July 30, 2026, OpenAI cut API prices on the two cheaper tiers of its GPT-5.6 family — the lineup it launched July 9. The Luna tier dropped roughly 80%, to $0.20 per million input tokens and $1.20 per million output (from about $1/$6). The Terra tier dropped about 20%, to $2/$12. The flagship Sol tier held at $5/$30 (OpenAI; CNBC). OpenAI called it advancing the price-performance frontier. The market read it more plainly: pricing power is eroding under pressure from cheap open-weight models, and the cheaper tiers are where the pressure lands first (VentureBeat).

What it means for you: a capable mid-tier model just got roughly 5x cheaper per token, overnight, with no code change required. Anything you shelved because the token math didn't work — an always-on monitoring agent, bulk classification, RAG over a large corpus, a summarize-everything feature — is worth re-pricing today. Pull last month's usage, recompute the unit economics at the new Luna rate, and re-benchmark it against whatever you're currently paying. Just remember the standing caveat: a cheap tier that's strong on single-shot tasks can still degrade in a long agent loop, so instrument before you migrate a multi-step workflow — that's exactly the trap we mapped in why cheap models fail silently in long agent loops.

2. DeepSeek open-weighted a million-token model under MIT#

On July 31, 2026, DeepSeek released DeepSeek-V4-Flash-0731 on Hugging Face under the MIT license (MarkTechPost; Hugging Face). It's a Mixture-of-Experts model — reported at roughly 284B total parameters with about 13B active per token — carrying a 1M-token context window and re-post-trained for agentic and coding work, which DeepSeek says beats its earlier V4-Pro preview on its own agentic benchmarks. Treat the exact parameter and benchmark figures as reported by launch-week write-ups rather than independently audited until you read the model card.

What it means for you: MIT is the headline. It permits commercial use, modification, and self-hosting with essentially no usage restrictions — you hold the model, not a metered key that a vendor can reprice or retire. The practical catch is size: a model this large needs real accelerators to run yourself, so most solo builders will still rent it through an inference provider (our GPU-rental price map shows what that costs). But the licensing floor matters — build on an MIT million-token model and no one can pull it out from under you. Pair this with story 1 and the pattern is clear: closed mid-tier prices are collapsing because open weights like this exist.

3. HappyRobot raised $150M at a $1.2B valuation — the money is on operational agents#

On August 4, 2026, HappyRobot — an enterprise AI-agent company founded in Madrid and backed early by Y Combinator — raised a $150M Series C at a $1.2B valuation, led by Prysm Capital and co-led by Eurazeo, with a16z, Base10, and Y Combinator re-upping (BusinessWire; Fortune). The company builds agents that run operational workflows — it started in logistics, with customers reported to include DHL and Uber, and is now expanding into insurance, energy, telecom, and airlines. It reported more than 5x revenue growth since its Series B and more than 150% net dollar retention.

What it means for you: this is the clearest signal yet that capital is chasing agents that do operational work, not chatbots — and it comes with real revenue multiples attached, not just a demo. If you build agentic tooling, HappyRobot's numbers are a useful yardstick for what investors now expect a fundable agent company to look like: a specific operational job, a customer whose costs you measurably lower, and retention that expands. It's also a reminder that the winning path isn't always San Francisco — this is a Madrid-founded, YC-backed company that reached a unicorn valuation by owning a workflow. That's the same "own the vertical" bet we traced across July's agent-funding wave.

4. The housekeeping: your Opus 4.1 calls stopped answering#

The least glamorous story is the one most likely to break your product this week. Per Anthropic's deprecation docs, claude-opus-4-1-20250805 was retired on August 5, 2026 on the first-party API — requests to that model string now fail (it survives on Amazon Bedrock and Google Cloud). The recommended replacement is claude-opus-4-8 (Anthropic).

Two more dates from the same page: legacy Workbench and the experimental prompt-tools endpoints are set to retire August 17, and on Opus 4.7 and later, the temperature, top_p, and top_k sampling parameters are deprecated — set them to a non-default value and you get a 400 error. Separately, the Model Context Protocol finalized its 2026-07-28 spec, which moves to a stateless request/response core and removes the initialize handshake and Mcp-Session-Id header; if you maintain an MCP server or client, that's a migration too (MCP, which we broke down in what breaks in the stateless MCP core).

What it means for you: this is the maintenance tax on building atop a fast-moving platform, and it hits solo builders hardest — you set a model string in a cron job months ago and forgot it. Two moves: grep your codebase and your third-party integrations for any pinned model string, and check the Anthropic Console usage export to see if any key is still calling the retired model. Then adopt the habit that makes this a non-event — keep one short, current list of every model string and API version your stack depends on, so the next scheduled retirement is a one-line edit, not an outage. We walked the mechanics in two August deadlines that raise your agent bill.

The founder read#

Four stories, one shape: price and access are falling at both ends of the market while the maintenance tax rises in the middle. OpenAI cutting mid-tier inference 80% and DeepSeek shipping an MIT million-token model are the same force from two directions — raw intelligence is racing to the floor, and open weights keep the closed labs honest. HappyRobot's raise says the value has migrated up the stack, from the model to the agent that does a specific operational job. And the Opus 4.1 retirement is the reminder that you don't control the platform you build on. So build like it: treat models as cheap, swappable inputs, put your scarce hours into the workflow and the wedge no lab will ship, and keep a current list of every dependency that can be retired out from under you.