Skip to main content
Browse all
WOWHOW/FIELD NOTES/AI FOR PROFESSIONALS·5 APRIL 2026·3 MIN READ

OpenAI’s next model ‘Spud’ pre-training completed March 24. Release is weeks away. Here’s what we know and how to not get caught in model-churn.

WW
WOWHOW
FOUNDER · 14YR SHIPPING
Published
5 April 2026
Reading
3 min · 602 words
TL;DR

OpenAI’s next model ‘Spud’ pre-training completed March 24. Release is weeks away. Here’s what we know and how to not get caught in model-churn.

Pre-Training Done. Release Imminent. What Do You Do?

OpenAI’s next major model — internally codenamed Spud — completed pre-training on March 24, 2026. Greg Brockman described it as carrying “two years of research” with a “big model feel” — OpenAI-speak for a genuine capability jump, not an incremental update. Polymarket currently gives it a 70% chance of public release by April 30, 2026.

The developer’s dilemma: do you build on today’s models and risk refactoring in six weeks? Or wait and miss your shipping window? We’ve thought about this carefully, and the answer is more nuanced than either option.

Where GPT-5.4 Stands Today

Model LiveCodeBench Context Price/MTok (in)
Gemini 3 Flash 90.8% 🥇 1M $0.075
Claude Sonnet 4.6 86.2% 200K $3.00
GPT-5.4 85.1% 128K $5.00

GPT-5.4 is not the best coding model available right now. It’s third on LiveCodeBench and the most expensive of the three. The reason developers still reach for it is ecosystem familiarity and predictable function calling for structured output workflows.

The Q2 2026 Model Bomb

Here’s what makes the wait-or-ship question harder: three frontier models are dropping simultaneously in Q2 2026.

  • GPT-5.5 Spud (OpenAI) — Pre-training done, release likely late April
  • Grok 5 (xAI) — Training cluster reached 200K H100 equivalent compute; Q2 timing plausible
  • DeepSeek V4 — Roadmap targets Q2 2026 with improved agentic capabilities

Three frontier releases in the same quarter. If you’re building model-coupled code, you’re about to have a difficult time regardless of which model you pick today.

The Right Answer: Build on Abstractions, Not Model Names

The developers not stressed about Spud already abstracted their model calls behind provider-agnostic interfaces. The tools that make this easy:

  • LiteLLM — Single Python client for OpenAI, Anthropic, Gemini, and 50+ other providers. Swap models by changing a string.
  • Vercel AI SDK — For TypeScript/Next.js shops, the cleanest abstraction. Provider-agnostic streaming, structured outputs, tool use.
  • LangChain — Heavier, but if you’re building complex chains or agents, the model-swap capability justifies the dependency.

The pattern: your code calls llm.complete(prompt, options) and a config file determines which provider and model executes. When Spud drops and you want to test it, you change one line in one config file.

5 Things to Do Before Spud Drops

  1. Benchmark your key tasks on current models. If you don’t have a baseline today, you won’t be able to evaluate whether Spud is actually better for your workflow.
  2. Abstract your model calls. If your code has openai.chat.completions.create sprinkled across 30 files, do a LiteLLM or Vercel AI SDK migration now while it’s not urgent.
  3. Lock your current API costs. Calculate your actual monthly AI API spend today so you can make a rational ROI decision about upgrading when Spud launches at a premium.
  4. Get on the waitlist. OpenAI’s major model releases have phased rollouts. Get your API account registered for early access now.
  5. Read the fine print on context limits. GPT-5.4 has a 128K cap. If Spud ships with 1M+ context (Brockman’s hints suggest it might), that changes architectural decisions for large codebase analysis tools.

Ship now, but ship smart. Build the abstraction layer, benchmark your baseline, and watch Q2 releases with curiosity rather than dread. Use our AI Prompt Cost Calculator to model the Spud upgrade economics before it’s a crisis decision.

Related reading

WW

Written by

WOWHOW

The WOWHOW team brings 14+ years of production engineering experience. Every tool and product in the catalog is personally built, tested, and curated.

Monday Memo · Free

One insight, every Monday. 7am IST. Zero fluff.

1 field report, 3 links, 1 tool we actually use. No fluff, no spam.

Need production-ready templates?

Free browser tools with no signup, plus 2,000+ premium dev templates and starter kits.

Comments · 0

Beta: comments are stored locally on your device and not visible to other readers.

Sign in to join the conversation

No comments yet. Be the first to share your thoughts.

Pairs with this note

More from AI for Professionals

See all