On January 14, 2026, OpenAI announced a multiyear partnership with Cerebras Systems for 750 megawatts of computing power, a deal Bloomberg and CNBC reported as worth more than $10 billion. OpenAI plans to use Cerebras hardware to get faster response times when running its models, with the capacity built in stages through 2028 and hosted by Cerebras. The agreement made low-latency inference, not just raw training scale, an explicit priority in OpenAI's infrastructure strategy.
Key Facts#
- Announced: January 14, 2026, by OpenAI and Cerebras.
- Capacity: 750 MW of computing power from Cerebras hardware.
- Value: More than $10 billion, according to Bloomberg and CNBC.
- Timeline: Built in multiple stages through 2028, according to Bloomberg.
- Hosting: Cerebras hosts the infrastructure and supplies it to OpenAI as a compute provider.
- Purpose: Faster response times when running AI models. Both companies framed the partnership around high-speed inference.
- Speed claim: Cerebras says its wafer-scale systems can deliver responses up to 15 times faster than GPU-based systems. That is a vendor claim.
What Happened#
The deal made Cerebras one of OpenAI's compute suppliers. Unlike agreements aimed at adding general capacity, this one was explicitly about serving models quickly. According to Bloomberg, OpenAI will use Cerebras as a source of computing to get faster response times, and the systems will be hosted by Cerebras rather than installed in OpenAI's own facilities. The Register summarized the practical effect in its headline: OpenAI would serve ChatGPT on Cerebras hardware.
Cerebras presented the agreement as a way to bring high-speed inference to the mainstream. Its chips take an unusual form. Rather than cutting a silicon wafer into many GPU-sized dies, Cerebras builds a single wafer-scale processor, which it says lets its systems generate responses far faster than GPU clusters for many workloads.
The size of the deal was notable for a company of Cerebras's scale. CNBC reported that it came ahead of the chipmaker's planned initial public offering, which made the contract an important signal to prospective investors that Cerebras's architecture had won a flagship customer.
Background#
OpenAI had spent the previous year assembling an unusually broad set of compute suppliers. It announced its Stargate infrastructure project with partners including Oracle and SoftBank in January 2025, and later reached large agreements with NVIDIA, AMD and Broadcom. CNBC noted two days after the Cerebras announcement that the deal added a new name to that roster. The strategy spreads OpenAI's bets across GPUs, custom accelerators and now wafer-scale inference hardware, which reduces dependence on any single supplier.
The focus on latency reflects how AI products changed during 2025. Reasoning models and coding agents make many sequential model calls, and each call's latency adds up. A user waiting on an agent that makes dozens of calls feels every second, so faster tokens per second and quicker first responses translate directly into better products. Specialized inference hardware is one way to buy that speed without waiting for the next GPU generation.
Why It Matters for Developers#
For developers, the practical question is not which chip runs a request but how fast and how reliably responses arrive. Deals like this one are why providers can offer faster tiers or lower latency for specific models. .NET teams should measure latency the way users experience it, which means time to first token and total streaming time rather than just the average request duration. A small helper built on IChatClient makes those measurements easy to collect:
using System.Diagnostics;
using Microsoft.Extensions.AI;
static async Task<(TimeSpan FirstToken, TimeSpan Total)> MeasureLatencyAsync(
IChatClient client, string prompt, CancellationToken ct = default)
{
List<ChatMessage> messages = [new(ChatRole.User, prompt)];
var stopwatch = Stopwatch.StartNew();
TimeSpan? firstToken = null;
await foreach (var update in client.GetStreamingResponseAsync(messages, cancellationToken: ct))
{
firstToken ??= stopwatch.Elapsed;
}
return (firstToken ?? stopwatch.Elapsed, stopwatch.Elapsed);
}Some guidance follows:
- Stream responses in interactive features. Streaming shows progress as soon as the first tokens arrive, which matters more to perceived speed than total generation time. Our Microsoft.Extensions.AI guide covers streaming with
IChatClient. - Budget latency for agents. When an agent chains many calls, multiply per-call latency by the expected number of steps. Faster inference tiers can be worth paying for in these flows even when they cost more per token, and our AI agent patterns guide covers designs that reduce the number of sequential calls.
- Record latency as telemetry. Capture time to first token and total duration per model and route, so you can compare providers and tiers with real data. Our LLM observability and cost guide shows how with OpenTelemetry.
- Keep the provider swappable. The official OpenAI .NET library and the
IChatClientabstraction let you move latency-sensitive traffic to a different model or tier without rewriting application logic.
What's Next#
The capacity arrives in stages through 2028, so developers should expect gradual rather than immediate changes in which OpenAI models or tiers benefit. How OpenAI exposes the speed, whether through specific fast models, premium tiers or general improvements in ChatGPT and the API, will determine how visible the deal is to developers.
Open questions include how much of OpenAI's inference will ultimately run on non-GPU hardware, how Cerebras's claimed speed advantage holds up on the largest models, and how the economics compare with GPU capacity from OpenAI's other suppliers. For the chip industry, the deal is also a test of whether specialized inference architectures can win large, long-term contracts alongside GPUs.
Sources#
- OpenAI: OpenAI partners with Cerebras
- Cerebras: OpenAI partners with Cerebras to bring high-speed inference to the mainstream
- Bloomberg: OpenAI signs $10 billion deal with Cerebras for AI computing
- CNBC: Cerebras scores OpenAI deal worth over $10 billion ahead of AI chipmaker's IPO
- CNBC: OpenAI chip deal with Cerebras adds to roster of Nvidia, AMD, Broadcom