
Noam Shazeer co-authored "Attention Is All You Need" in 2017. That paper introduced the Transformer architecture, which sits underneath every major AI model running today: GPT, Gemini, Claude, all of them. He then co-founded Character.AI, Google paid around $2.7 billion to bring him back as VP of Engineering and co-lead on Gemini in August 2024, and two years later he walked out the door to join OpenAI.
His title at OpenAI: Lead for Architecture Research. His mandate: design next-generation architectures beyond the current GPT line.
That's not a talent story. That's a directional signal.
What Actually Happened
On June 18, 2026, Shazeer announced he was leaving Google for OpenAI. Google had spent $2.7 billion to retain him (as part of a partnership deal that brought back his Character.AI co-founder Daniel De Freitas alongside him) less than two years prior. They paid that to keep him. He left anyway.
The same week, Google also lost a prominent researcher to Anthropic. Two of the most cited AI architects leaving for competitors in three days is not coincidence.
Why This Title Matters More Than the Move
"Lead for Architecture Research" is deliberate and specific. Shazeer is not going to OpenAI to fine-tune prompts or ship product features. He's going there to rethink the underlying structure of how large models are built.
The Transformer has proven remarkably durable. It scales. Throw more compute and data at it and performance keeps improving. But if you work with these systems day to day, you hit structural limits pretty quickly.
The most visible one: attention is O(n squared) in sequence length. At 128k or 200k tokens, you're burning significant compute just on the attention step itself. Efficient attention variants like Flash Attention help, but they're patches on the underlying design, not a rethink of it.
There's also a subtler issue. You can give a model a million-token context window, but how it actually uses that context is constrained by the architecture. Information flows through a fixed-width residual stream at each layer. The model has to compress what it's seen into a finite representation. Shazeer has spent years watching where exactly that wall appears in Gemini.
The mixture-of-experts work he's closely associated with, including the Switch Transformer and elements of Gemini's architecture, is itself already a departure from vanilla dense transformers. MoE activates only a fraction of parameters per token. Efficient, but also a signal that "one big dense transformer" is not the end state.
What a New Architecture Would Mean for Builders

The API interface won't change. Whether a model runs on a transformer, a state space model, a hybrid architecture, or something that hasn't been published yet, you'll still send a list of messages and get tokens back. The contract at the API boundary is stable.
What changes is the capability profile underneath it.
If a new architecture handles long contexts more efficiently, the tradeoffs you currently accept get renegotiated. The aggressive chunking, the summarization pipelines, the retrieval-before-inference steps you've built to work around context limits: some of that might stop being necessary. Or the model's ability to actually reason over a long document (not just attend to it) improves enough to change what you build.
The agentic case is where this matters most. Multi-step tasks where the model needs to track state across many steps are where transformer limits are most visible today. A better architectural fit for that pattern would change the economics of building agents substantially. I haven't run this at scale with non-transformer architectures, but the theoretical argument is solid.
The practical implication: don't hard-code assumptions about context window tradeoffs or attention costs into your architecture. Keep those as configuration. The model behind your API call will look different in 18 months.
What Google's Loss Tells You
Google spent $2.7 billion to retain Shazeer. He stayed two years, worked on one of the most capable model families in the world, and then chose a competitor. That tells you something, even if you can't know exactly what.
One reading: OpenAI offered the freedom to do fundamental research without the constraints of a product line that ships quarterly. Another reading: he believes the next foundational bet in AI will be made at OpenAI. Both of those readings matter for how you think about which lab to watch most closely over the next few years.
The institutional knowledge Shazeer carries about what works at scale, where efficiency gains are most likely to come from, what Google tried that didn't pan out: none of that is in any published paper. OpenAI now has it. That's the part that's hard to undo.
Comments
Post a Comment