DISPATCH

Everything that mattered in AI, one page a week.

Most AI news does not survive the week. This is the part that did — the releases, the research, and the shifts that actually change how we build. Designed & built to keep you up to date with things in AI without needing to be unemployed. Just refresh Saturday morning and review the last week's dispatch.

90 DISPATCHESWRITTEN EVERY FRIDAYNEXT UPDATE IN

DISPATCH 14

WEEK OF MAR 29 – APR 4, 2025

OpenAI promised open weights and closed $40B the same day Anthropic raised its own bar

The largest private fundraise in history came with a governance condition attached. Anthropic quietly tightened its scaling policy on the same day, and every major coding tool shipped an agent mode.

OpenAI closed $40 billion at a $300 billion post-money valuation, and $30 billion of it is contingent on the company completing a for-profit conversion by the end of the year. Wealthy as it looks, that makes a corporate restructuring the load-bearing document underneath OpenAI's entire 2025 roadmap — pricing, model access and Stargate capacity all sit downstream of a conversion two state attorneys general can block.

Anthropic published version 2.1 of its Responsible Scaling Policy the same day, adding a CBRN capability threshold and splitting its AI R&D thresholds into two levels. And the agent harness stopped being a product and became a default: GitHub put agent mode and MCP support in front of every VS Code user, Cognition cut Devin's entry price from $500 a month to $20, and Amazon shipped its first browser agent.

FRI · Apr 4, 2025agent-harnessmcptoolinggithubmicrosoft

Agent mode with MCP support rolls out to every VS Code user as Microsoft turns 50

On Microsoft's 50th anniversary, GitHub began rolling agent mode — plus Model Context Protocol support — out to all VS Code users in Stable, and published an open-source local GitHub MCP server so any MCP-capable LLM client can call GitHub tooling. Agent mode runs multi-step tasks: it reads the workspace, proposes edits, runs terminal commands it asks you to approve, watches compile and lint output, and self-corrects until the task completes. Tool surface is now three-way — built-in VS Code tools, MCP servers, and VS Code extensions that contribute language-model tools — configured through .vscode/mcp.json with ${env:...} input variables instead of hard-coded secrets.

GitHub also made Anthropic, Google and OpenAI models generally available inside Copilot and introduced a new Copilot Pro+ tier metered by premium requests, with allowances beginning May 5, 2025. Satya Nadella's keynote added a Code Review Agent and a multi-agent framework in Azure AI Foundry, alongside red-teaming agents and code-vulnerability tooling.

Agent mode with MCP support rolls out to every VS Code user as Microsoft turns 50
GitHub

WHY IT MATTERS

MCP went from an Anthropic-specific integration to a first-class transport inside the world's most-used editor in about four months. If you maintain a dev tool, a design system, or internal infrastructure, the cheapest distribution channel for it is now an MCP server — and the attack surface moved with it: tool descriptions and tool responses arrive in the model context from third parties, so an MCP server you did not write can carry instructions the agent treats as trusted.

THU · Apr 3, 2025agent-harnesspricingcoding-agentscognition

Devin 2.0 cuts the autonomous coding agent from $500/month to a $20 entry point

Cognition shipped Devin 2.0, an agent-native IDE with interactive planning, answers about a codebase that cite files, and generated code wikis — and dropped the entry price from the $500-per-month team plan Devin launched on to $20, then pay-as-you-go. The $20 buys 9 ACUs (Agent Compute Units) at $2.25 each, and Cognition prices roughly 15 minutes of active Devin work at 1 ACU, so the entry tier is about 2.25 hours of agent work before metering; ACUs are more expensive per unit on the cheap plan than they were on the $500 subscription, where they cost $2.

The price cut came weeks after Cognition reportedly raised hundreds of millions, and into a field where GitHub Copilot agent mode, AWS Kiro and Q Developer, Windsurf and Magic's models all compete on the same autonomous-coding pitch. The bet is that a low floor converts trials, with the real margin sitting in compute credits rather than seat fees.

Devin 2.0 cuts the autonomous coding agent from $500/month to a $20 entry point
cdn.sanity.io

WHY IT MATTERS

Agent pricing is converging on metered compute plus a near-zero entry fee, which changes how you budget: a seat is no longer a fixed line item, and a runaway agent loop is a variable cost on your card. The $2.25 per ACU figure is the number to anchor on — 15 minutes of active agent time for the price of a coffee is roughly an order of magnitude below human contractor rates, so the build-versus-agent call now turns on review time, not generation cost.

MON · Mar 31, 2025open-weightssafetypolicyopenaianthropic

OpenAI promises an open-weight reasoning model — the same day Anthropic adds a CBRN threshold to its scaling policy

Sam Altman said on X on March 31 that OpenAI is excited to release a powerful new open-weight language model with reasoning in the coming months — a reversal of the closed-by-default posture, reported by WIRED as a response to DeepSeek's R1 and the reach of Meta's Llama weights, and following Altman's own earlier admission that OpenAI sat on the wrong side of history over open models. OpenAI technical staff publicly added that the model must run on your own hardware, and a safety researcher said the company would test it against its Preparedness Framework and not release anything judged catastrophically risky. No parameter count, license or context window was disclosed; this is a commitment, not a release.

That same day, Anthropic published version 2.1 of its Responsible Scaling Policy, effective March 31. The revision added a new capability threshold for CBRN development — the point at which a model could substantially uplift a moderately resourced state program — split its AI R&D thresholds into two levels (fully automating entry-level AI research work, versus dramatically accelerating the rate of effective scaling), and committed to re-evaluating thresholds whenever it upgrades safeguards. It did not raise or lower Anthropic's existing ASL-3 protections.

WHY IT MATTERS

An open reasoning model from a frontier US lab is the single most decision-relevant thing that could happen to inference economics this year: it moves reasoning capability out of per-token API billing and onto hardware you control, which matters for regulated workloads, long agent loops and anything with a token bill that scales with usage. The contrast with Anthropic's same-day tightening is worth reading carefully — the framing of safety as a scaling gate that only closed labs can satisfy loses force when the weights ship, and the licensing terms of whatever OpenAI actually publishes will decide whether it is usable rather than merely open.

MON · Mar 31, 2025agentsbrowser-agentssdkamazon

Amazon enters browser agents with Nova Act, a research-preview SDK built around atomic commands

Amazon's AGI Lab in San Francisco released a research preview of the Amazon Nova Act SDK, a model trained to act inside a web browser. Rather than one long autonomous rollout, the SDK decomposes workflows into atomic commands — search, checkout, answer a question about what is on screen — that developers can annotate with constraints, interleave with Python for asserts, breakpoints and parallel thread pools, and mix with direct Playwright manipulation for steps like password entry. Amazon claims 0.939 on ScreenSpot Web Text against 0.900 for Claude 3.7 Sonnet and 0.883 for OpenAI's computer-use agent.

It ships as pip install nova-act with API keys from nova.amazon.com, alongside a new portal for the whole Nova family (text, Canvas images, Reel video), and The Verge notes the Nova lineup is positioned on price — Amazon claims at least 75 percent cheaper than comparable rivals. Nova Act already powers parts of the delayed Alexa+ upgrade, and Amazon's framing is deliberately narrow: short, reliable tasks with explicit human-in-the-loop handoffs rather than full autonomy.

WHY IT MATTERS

The interesting engineering claim is not the model, it is the reliability model: breaking agent work into small, testable, atomic commands with human intervention points is the opposite of the give-it-a-goal-and-hope pattern most harnesses shipped in 2025, and it maps onto how you would actually write tests for an agent. If your product has no API — internal admin panels, legacy vendor portals, a checkout you do not control — a browser harness priced on a commodity model is now a viable integration path rather than a research demo.

MON · Mar 31, 2025fundingcomputestargateopenai

OpenAI closes $40B at a $300B post-money valuation, with a for-profit conversion clause attached

OpenAI announced the largest private fundraising on record: $40 billion at a $300 billion post-money valuation, led by SoftBank, which committed $10 billion in mid-April and $30 billion in December, the second tranche contingent on OpenAI completing its conversion to a for-profit entity by the end of the year. SoftBank disclosed that its total investment could fall to as little as $20 billion if that restructuring does not happen; the remaining $10 billion comes from a syndicate including Microsoft, Coatue, Altimeter and Thrive. Roughly $18 billion is expected to fund OpenAI's commitment to Stargate, the SoftBank–OpenAI–Oracle data-center joint venture.

OpenAI also said ChatGPT now has 500 million weekly users, up from 400 million a month earlier, and reports expectations of tripling revenue to $12.7 billion by year-end. SoftBank is financing the first tranche with borrowings from Mizuho and other lenders rather than cash.

WHY IT MATTERS

The deal is a compute financing story with a governance condition baked in: $30B of the $40B is contingent on a legal restructuring, so OpenAI's 2025 roadmap, pricing and model-access decisions now sit downstream of a corporate conversion that Microsoft's board and the California attorney general have to bless. For anyone building on OpenAI, that is the risk to price in — the capital, the Stargate capacity and the API roadmap are all tied to a conversion deadline that third parties can block.

DISPATCH 13

WEEK OF MAR 22 – 28, 2025

DeepSeek put frontier-class open weights on Hugging Face with no announcement — the same week ChatGPT's image model melted OpenAI's GPUs

V3-0324 appeared under MIT with no blog post and immediately became the strongest open-weight model on the board. Native image generation pulled about a million users in an hour, and OpenAI adopted the open standard a rival wrote.

The split in this week is almost too neat. On one side, DeepSeek quietly uploaded a 671-billion-parameter model to Hugging Face under MIT — no announcement, no technical report, no changelog — and independent evaluators found it had become the best open-weight model available, beating every closed non-reasoning model on a composite quality score. On the other, Sam Altman was asking users to chill on generating images because OpenAI's GPUs were melting.

In between, OpenAI adopted the Model Context Protocol, an open standard written by its competitor Anthropic, across the Agents SDK and promised it for the ChatGPT desktop app and Responses API. Three labs, three entirely different theories of where the moat lives — and this week they were all on display.

WED · Mar 26, 2025mcpopenaianthropicagentsstandardsinteroperability

OpenAI adopts MCP, the open agent standard written by its rival Anthropic

Sam Altman announced that OpenAI would add support for Anthropic's Model Context Protocol across its products, including the ChatGPT desktop app, calling it something people love. Support landed in the Agents SDK the same day, with the ChatGPT desktop app and Responses API to follow. Anthropic's chief product officer Mike Krieger welcomed it publicly, describing MCP as a thriving open standard with thousands of integrations.

MCP lets developers expose data sources as servers and connect apps and workflows as clients, giving models two-way access to the systems where data actually lives. Since Anthropic open-sourced it, Block, Apollo, Replit, Codeium and Sourcegraph had already added support.

OpenAI adopts MCP, the open agent standard written by its rival Anthropic
TechCrunch

WHY IT MATTERS

A genuinely rare event: the two leading US labs agreeing on shared plumbing for tool use. For anyone building agents, this removes the worst kind of bet — which lab's tool protocol to write against — and it means an MCP server you build is now usable by Claude, ChatGPT and a growing list of developer tools rather than being locked to one vendor. It also quietly sets the precedent that agent interoperability is being settled by open standards rather than by whoever has the largest install base, which is worth remembering the next time someone proposes a proprietary tool-calling format.

TUE · Mar 25, 2025openaiimage generationgpt-4ocomputecopyrightscale

GPT-4o generates images natively and the internet breaks — about a million users in an hour, then rate limits

OpenAI added native image generation to GPT-4o, replacing DALL-E 3 as ChatGPT's default image generator and reclassifying DALL-E as legacy. Rather than handing requests to a separate diffusion service, image output is produced by the same transformer that handles text and vision, which is why the model can follow detailed instructions, render legible text inside images, edit an existing picture, and hold visual consistency across a conversation in a way earlier tools could not.

The reaction was the story. Altman said roughly a million new users arrived in about an hour, against about five days for ChatGPT's first million in 2022 — 'biblical demand' of a kind he said he had never seen — and then asked users to ease off because the team needed sleep and the GPUs were melting. OpenAI temporarily delayed the free-tier rollout, throttled generation, and moved free users toward three generations per day. Usage roughly doubled in the weeks around the launch; Altman cited around 500 million weekly active users by April, against 400 million in February.

What went viral was a style: users redrew family photos and memes in the visual language of Studio Ghibli, which ignited a copyright and attribution argument within days. OpenAI added a refusal that triggers when a user attempts to generate an image in the style of a living artist, and critics resurfaced a 2016 clip of Hayao Miyazaki calling an AI-driven animation demo an insult to life itself. The feature also had a documented bug — the model struggled to render the word 'sexy women' at all, which Altman called a bug to be fixed.

GPT-4o generates images natively and the internet breaks — about a million users in an hour, then rate limits
i.insider.com

WHY IT MATTERS

Two lessons worth keeping. The architecture one: image generation inside the main multimodal model is what makes conversational editing work, and it is the same direction Google took with Gemini 2.0 Flash two weeks earlier — native modality beats service handoff. The operational one: consumer generative AI demand can outrun provisioned capacity within hours, and the only response is rate limiting. Anyone designing a product on top of a shared image or video endpoint should assume their ceiling is set by someone else's GPU supply, and that a viral moment is a capacity incident rather than a growth event.

TUE · Mar 25, 2025googlegemini 2.5reasoninglong contextbenchmarkscoding

Google releases Gemini 2.5 Pro, a thinking model with a million-token context

Google put Gemini 2.5 Pro out as an experimental preview under the identifier gemini-2.5-pro-exp-03-25 and made it available to all Gemini users. It is a thinking model that reasons before responding, covers text, audio, images, video and code, and carries a 1M-token context window with a 64K-token output limit.

It arrived at the top of the leaderboards and stayed there for months. On the June 2025 model card, Gemini 2.5 Pro GA posts 88.0% on AIME 2025, 86.4% on GPQA Diamond, 82.2% on Aider Polyglot, 54.0% on SimpleQA and 82.0% on MMMU. The experimental 03-25 build alone scored 86.7% on AIME and 84.0% on GPQA Diamond at launch. Google said all new Gemini models would include reasoning by default.

WHY IT MATTERS

The month's second half was a straight race at the top of the reasoning tier, and Gemini 2.5 Pro made the strongest single showing — enough that developers described it as the best model for code within days, and the 1M context was real rather than nominal. Combined with Gemma 3 two weeks earlier, Google shipped both the strongest open model and the strongest closed model in the same month, which is the clearest illustration of the two-track strategy every major lab now runs: give away the weights that set your floor, sell the API that sets your ceiling.

MON · Mar 24, 2025open weightsdeepseekmitmoereasoningcostself-hosting

DeepSeek silently uploads V3-0324 under MIT and takes the open-weights crown

A file called DeepSeek-V3-0324 appeared on Hugging Face under DeepSeek's account with an MIT license and no accompanying announcement, technical report or changelog. Community members and benchmarking services found it within hours. It is a 671-billion-parameter mixture-of-experts model activating about 37 billion parameters per forward pass, keeping V3's multi-head latent attention, auxiliary-loss-free load balancing and multi-token prediction objective, with a 128K context window and a July 2024 knowledge cutoff.

The gains came from a better post-training pipeline rather than a new architecture, and they are large. MMLU-Pro rose from 75.9 to 81.2, GPQA from 59.1 to 68.4, AIME from 39.6 to 59, and LiveCodeBench from 39.2 to 49.2, with WebDev Arena improving by about 240 points and noticeably better front-end code and function calling. The license changed too: the original V3 shipped under DeepSeek's own license, while this checkpoint moved to MIT, the same terms as R1. Artificial Analysis flagged it as the first open-weight model to exceed all commercially available non-reasoning proprietary models on their composite quality score.

The release format is itself the statement. By uploading weights with no fanfare, DeepSeek bypassed the press cycle that Western labs build major launches around — and it did so weeks into a US debate in which OpenAI had accused DeepSeek to Congress of free-riding on the capabilities developed by American frontier labs.

WHY IT MATTERS

This is a headline release and should be read as one. A 671B MoE under MIT — permissive for commercial use, fine-tuning, redistribution and self-hosting — that outranks every closed non-reasoning model on an independent composite score is the clearest possible demonstration that open weights are not a tier behind. The cost floor consequence is the part that matters commercially: when frontier-adjacent capability is downloadable under MIT, the price any lab can charge for the non-reasoning tier is bounded by the cost of running it yourself. And the timing is the detail worth sitting with — the same quarter US labs were briefing Congress about distillation and free-riding, DeepSeek simply handed the weights over, which is a harder competitive move to argue against than any benchmark.

ARCHIVE

Go back in time

Every dispatch, newest first. Each week is written once and left as it was published.