BriefTechNews

OpenAI Tests Pay-Per-Result Pricing as EU Hits ChatGPT with DSA Rules

8 min read · 16 sources

TL;DR
  • OpenAI began letting select major customers pay only when AI completes a job, shifting from token-based billing.
  • The European Commission classified ChatGPT, Reddit, and Roblox as very large online platforms under the DSA, with fines up to 6% of global revenue.
  • Sony, EMI, and Warner Chappell sued Anthropic, citing staff chats praising piracy and alleging illegal torrenting of books with song lyrics.
  • Google's TimesFM-3, a 330M-parameter model pretrained on 1 trillion time points, enables zero-shot multivariate forecasting.
  • The Department of War launched ChatGPT Mil on GenAI.mil, accredited for CUI at IL5, for over 3 million personnel.

OpenAI is quietly rewriting how enterprise AI gets billed. The company has started letting a limited number of its largest customers pay only when its AI actually completes a job - outcome-based pricing, not token-based. Terms, customers, and prices are undisclosed, but the direction is clear: failed attempts no longer cost money. That’s a direct reversal of consumption-based pricing, where an action that fails still bills. Intercom already charges $0.99 per resolved conversation; Zendesk bills for “Verified Resolutions.” OpenAI is now following that playbook at the frontier.

The shift matters because it changes what “value” means in AI procurement. Token-based pricing makes accounting hard - you pay for attempts, not results. Outcome-based pricing forces the vendor to eat the cost of failure. For engineers, that means the economic risk of a flaky agent moves from the customer to the provider. Expect more labs to adopt this as a competitive lever, especially as enterprise buyers standardize on one or two named vendors.

OpenAI’s $1 billion ads run rate came less than 200 days after launch, signaling rapid monetization of its consumer base.

Solaris Generates Interactive Interfaces Frame by Frame

Source: runway.com ↗

Runway introduced Solaris, an Interface World Model that generates real-time interactive interfaces frame by frame as users interact with it. Solaris handles rendering and interactions jointly - every frame and every response to user input is generated without an intermediate representation like code. That eliminates the traditional pipeline of design → code → render.

The implications are broad. Websites, apps, and other online interfaces can be built by describing what you want, not by writing markup. Solaris can also train agents in much more dynamic environments than static, coded interfaces. For developers, this is a different paradigm: the interface is no longer a fixed artifact but a live output of the model. The tradeoff is control - you’re trusting the model to produce consistent, correct interactions every frame.

OpenClaw 2.0 Ships After 16,000 Pull Requests

Source: openclaw.ai ↗

OpenClaw released version 2.0, its largest update to date. The effort started as a simplification of installation and a rebuild of the browser experience, then expanded into a broader overhaul. The release incorporates more than 16,000 pull requests spanning memory, skills, models, automations, apps, plugins, and security.

That scale - roughly 50% of all pull requests ever merged into the project - took nearly two months to stabilize. The result is a major overhaul of the agent framework, focused on getting a useful agent running faster and making it more accessible. For teams already on OpenClaw, this is a big jump; for newcomers, the simplified install path lowers the barrier to entry.

Google's TimesFM-3 Does Zero-Shot Multivariate Forecasting

Source: research.google ↗

Google Research released TimesFM-3, a 330M-parameter time-series foundation model pretrained on more than 1 trillion time points. The key addition: zero-shot forecasting across multiple targets, with support for historical and known-future covariates - no task-specific fine-tuning required. Previous TimesFM versions were limited to univariate forecasting.

That’s a meaningful upgrade for domains like retail, finance, and observability, where multiple correlated series need to be predicted together. You can now point the model at several related time series and get joint forecasts out of the box. The tradeoff is the usual one for foundation models: you trade fine-tuning control for convenience. But for teams that need fast, accurate multivariate forecasts without building custom models, this is a strong default.

A Portable File Format for Agent Memory

Source: calpaterson.com ↗

Cal Paterson proposes “memoryfields,” a portable file format for agent memory. The idea: store memory as a zip file containing Markdown files, with optional YAML metadata and a SQLite vector index. That treats memory as inspectable data, not as a proprietary retrieval pipeline or a complex stack requiring pgvector and Neo4j.

The argument is that existing memory systems are either tied to a specific harness or strip information from its context. Memoryfields keeps everything in plain files you can read, edit, and version. For engineers, that means debugging an agent’s memory becomes as simple as opening a Markdown file. It’s a vastly simpler alternative to the heavyweight vector-store approaches that dominate the space right now.

diffium-db Shows Live Diffs of What Agents Do to Your Database

Source: denislavgavrilov.com ↗

Denislav Gavrilov built diffium-db, a terminal UI that provides a live diff of what agents, migrations, or anyone else does to a Postgres database. It watches tables, views, materialized views, enums, functions, and rows, re-reading the database once a second to show changes since a baseline. Four commands - watch, snapshot, baselines, and diff - cover the workflow, with --exit-code available to fail CI jobs.

The problem it solves is real: you often don’t know what a migration or an agent’s actions actually did to the database. diffium-db gives you real-time visibility, one pane showing what changed and another showing the change itself. For teams running AI agents against production databases, this is a practical safety tool.

OpenAI's Outcome-Based Pricing Test

Source: thenextweb.com ↗

The Next Web reports that OpenAI has begun testing outcome-based pricing with a limited number of select major accounts. The terms, customers, and prices are unknown - OpenAI hasn’t announced the test publicly. The move follows industry pressure to move away from token-based pricing, which makes accounting difficult, toward paying for results.

This is a structural shift. Token-based pricing bills for attempts; outcome-based pricing bills for completions. That changes the risk profile for enterprises - a failed agent run costs nothing. It also forces OpenAI to eat the cost of its own model failures. Expect this to spread if the test proves sustainable.

Sony Sues Anthropic Over Alleged Training Data Piracy

Source: arstechnica.com ↗

Ars Technica reports that Sony, EMI, and Warner Chappell filed a lawsuit against Anthropic, alleging its training data included “thousands upon thousands” of their copyrighted musical compositions. The suit cites internal staff chats extolling piracy, including one saying “Zlibrary my beloved.” It claims Anthropic co-founder Benjamin Mann personally used BitTorrent to download and upload millions of pirated books from Library Genesis, and that CEO Dario Amodei approved the torrenting.

Anthropic denies using the pirated material to train its commercial models, but publishers believe they can prove otherwise. The suit also argues that Anthropic’s $1.5 billion settlement with authors isn’t enough to deter its conduct. For engineers, this is a stark reminder that training data provenance is a legal liability - and internal chats can become evidence.

ChatGPT, Reddit, and Roblox Face EU's Toughest Online Safety Rules

Source: arstechnica.com ↗

Ars Technica reports that the European Commission has classified ChatGPT, Reddit, and Roblox as “very large online platforms” under the EU Digital Services Act (DSA). All three surpassed 45 million EU users, triggering the designation. They must now remove illegal content and protect minors, with potential fines of up to 6% of global revenue for non-compliance.

The move expands the DSA’s reach into generative AI, following an existing investigation into X’s Grok. For engineers, this means new technical obligations around content moderation and user safety in the EU. Compliance isn’t optional - the fines are substantial, and the technical work to meet the requirements will be nontrivial.

Google Prototypes AI Rooms for Gemini Enterprise

Source: testingcatalog.com ↗

TestingCatalog reports that Google is prototyping “Rooms” for Gemini Enterprise. A room would be a shared workspace where teams collaborate with Gemini around a specific objective - defined by a goal, a playbook, and a knowledge base. It could evolve from the existing “Projects” feature, positioning Gemini closer to project management software than a simple assistant.

That’s a signal of where Google is taking Gemini Enterprise: an agentic workplace platform, not just a chatbot. For teams, it means AI collaboration becomes structured around objectives rather than ad-hoc prompts. The question is whether Rooms will ship with enough integration depth to be genuinely useful.

Instinct Makes the Consumer Agent Feel Real

Source: x.com ↗

Sytaylor on X describes Instinct, a personal AI agent you text or voicenote. It remembers your life’s context and uses websites and apps to get things done. The author highlights how it successfully moved a restaurant booking twice based on vague instructions - and other users have used it for negotiating bills and booking appointments.

The argument is that Instinct feels like a real product, not a project. That’s the inflection point consumer agents have been chasing: natural interaction, persistent memory, and real-world action. For engineers, it demonstrates a new interaction pattern - text or voice, not dashboards - that could become the standard for personal AI.

ChatGPT Ads Hits $1B Revenue Run Rate

Source: openai.com ↗

OpenAI said ChatGPT Ads reached a $1 billion annualized revenue run rate less than 200 days after launch. That’s a fast ramp for an advertising product attached to a consumer AI assistant. The number signals that ads inside ChatGPT are monetizing - and that OpenAI’s consumer business is diversifying beyond subscriptions.

Department of War Launches ChatGPT Mil on GenAI.mil

Source: x.com ↗

The Department of War launched OpenAI’s ChatGPT Mil on its GenAI.mil platform. Accredited for Controlled Unclassified Information (CUI) at Impact Level 5 (IL5), it’s designed for secure enterprise use and supports document-heavy work like planning, policy, and logistics. The deployment scales to over 3 million personnel and establishes a multi-model ecosystem.

For engineers, this is a major government deployment of a frontier AI model. Security accreditation at IL5 is a high bar, and the integration work to scale to millions of users is substantial. It also signals that government agencies are moving beyond pilots into production AI deployments.

Get the brief

Liked this one? The rest of today's stack — AI, crypto, fintech, infra — lands in your inbox tomorrow morning. Five minutes, no hype.

About Me Author

My name is

BriefTechNews

A daily digest of what actually moved in AI, tech, crypto and fintech, assembled and written with AI, and reviewed before it publishes. Read More
Tags

You May Also Like