In the public OpenAI docs reviewed here, GPT 5.5 Spud is not confirmed as a released model; the official trail points instead to GPT 5.4, GPT 5 Codex/Codex, the Responses API, Agents SDK, and documented tools. Agentic coding and tool orchestration are real, documented OpenAI platform capabilities, including Codex, f...

Create a landscape editorial hero image for this Studio Global article: GPT-5.5 Spud Fact-Check: Agentic Coding Is Documented, Spud Isn’t. Article summary: In the public OpenAI docs reviewed here, GPT 5.5 Spud is not confirmed as a released model; the documented stack is GPT 5.4, GPT 5 Codex/Codex, the Responses API, Agents SDK, and official tools.. Topic tags: ai, openai, gpt 5, codex, ai agents. Reference image context from search candidates: Reference image 1: visual subject "[. No official GPT-5.5 release date, no model card, no API pricing has been announced. Speculation Extrapol...
According to the OpenAI chief, Spud, which is rumoured to be GPT 5.5, is going to be much smarter than the company's previous AI models. So
1 2 3 4 5 6 7 8 9 10 const response = await openai.responses.create({ const response = await openai.responses.create({ model: "gpt-4.1", model: "gpt-4.1", input: "What is deep research by OpenAI?", input: "What is deep research by OpenAI?", tools: [{ tools:...
| Claim | Verdict | Source-backed reading |
|---|---|---|
| OpenAI has publicly documented a released GPT-5.5 Spud model | Not confirmed | The official model docs in this source set point to GPT-5.4 and GPT-5-Codex, not a public GPT-5.5 Spud model page. [ |
| Spud is circulating as a GPT-5.5 rumor | Supported as rumor/speculation | TokenMix labels its GPT-5.5 forecast as speculation and says no official release date, model card, or API pricing has been announced; India Today describes Spud as rumoured to be GPT-5.5. [ |
| OpenAI supports agentic coding | Confirmed | OpenAI describes GPT-5-Codex as optimized for agentic coding tasks, and its code-generation guide says to use Codex for out-of-the-box coding agents. [ |
| OpenAI supports agent orchestration | Confirmed | OpenAI documents agents around models, tools, state/memory, and orchestration, and the Agents SDK is described for apps that own orchestration, tool execution, approvals, and state. [ |
| Tool-heavy workflows are officially documented | Confirmed | OpenAI documents function calling, web search, file search, computer use, MCP/connectors, shell, apply patch, code interpreter, and skills. [ |
The safest reading is narrow: GPT-5.5 Spud is unconfirmed in the public OpenAI documentation reviewed for this fact-check. OpenAI’s model documentation points users to GPT-5.4 as the latest model guide, and the all-models page describes GPT-5.4 as suited for agentic, coding, and professional workflows. [1][
67][
74]
That is different from saying Spud cannot exist internally. The evidence here simply does not establish a public model release, model card, API endpoint, pricing page, or official OpenAI model guide for GPT-5.5 Spud. The strongest Spud-specific sources in this set are third-party: TokenMix says no official GPT-5.5 release date, model card, or API pricing has been announced, and India Today describes Spud as rumoured to be GPT-5.5. [11][
13]
For the public model layer, the official documentation reviewed here centers on GPT-5.4 and Codex. OpenAI’s all-models page lists GPT-5.4 for agentic, coding, and professional workflows, while the GPT-5.4 model page calls it a frontier model for complex professional work. [67][
68]
For software engineering, GPT-5-Codex is the clearest named coding model in this source set. OpenAI describes GPT-5-Codex as a version of GPT-5 optimized for agentic coding tasks in Codex or similar environments, available through the Responses API. [79] OpenAI’s code-generation guide also says to use Codex for out-of-the-box coding agents and frames Codex as OpenAI’s coding agent for software development. [
81]
OpenAI’s agent-building materials describe the platform as a set of composable primitives: models, tools, state/memory, and orchestration. The same material identifies the Responses API as the flagship API designed for building powerful agents. [58]
The Agents SDK is the code-first route when an application owns orchestration, tool execution, approvals, and state. [52] OpenAI also has separate guidance for orchestration and handoffs, which supports multi-step or multi-agent coordination as a documented platform pattern rather than a capability that needs the unconfirmed Spud label. [
53]
The official tool surface is broad. Function calling is documented for calling developer-defined tools, and web search is documented as a tool used through the Responses API. [35][
27]
OpenAI also documents file search, computer use, MCP/connectors, shell, apply patch, code interpreter, and skills. [20][
34][
37][
89][
85][
86][
90] Together, those tools support workflows where an agent can retrieve private context, call application functions, search the web, connect to external systems, use controlled compute environments, and apply code changes through documented interfaces. [
20][
35][
27][
37][
89][
85][
86]
If the practical question is whether developers can build agentic coding and tool-orchestrated applications today, the answer from the official docs is yes. If the question is whether those workflows require GPT-5.5 Spud, the answer from this source set is no.
The most accurate phrasing is: GPT-5.5 Spud is unconfirmed in the public OpenAI docs reviewed here. Avoid treating claimed release dates, benchmark results, context windows, API availability, or pricing as established facts from this source set. TokenMix explicitly says no official GPT-5.5 release date, model card, or API pricing has been announced, and India Today frames Spud as rumoured to be GPT-5.5. [11][
13]
Until OpenAI publishes official documentation under that name, the evidence-backed developer path is the documented stack: GPT-5.4, GPT-5-Codex/Codex, the Responses API, Agents SDK, and the official tool guides. [1][
67][
74][
79][
81][
58][
52]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 curl " \ curl " \ -H "Content-Type: application/json" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OPENAI API KEY" \ -H "Authorization: Bearer $OPENAI API KEY " \ -d '{ -d...
The model can return visual observations by calling: display(base64 png string) """ """ from future import annotations from future import annotations import argparse import argparse import asyncio import asyncio import json import json import traceback impo...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 from openai import OpenAI from openai import OpenAI client = OpenAI() tools = [{ "type": "function", "type": "function", "function": { "function": { "name": "get we...
Using tools. MCP and Connectors. Computer use. File search. MCP servers. MCP and Connectors. Computer use. [File search](ht…
Build agents in code with the OpenAI Agents SDK and grow into more advanced runtime patterns as needed. Use the Agents SDK pages when your application owns orchestration, tool execution, approvals, and state. Use Agent Builder only when you specifically wan...
Text generation. Using tools. Overview. Quickstart. Agent definitions. Models and providers. Running agents. [Sandbox agents](
The OpenAI platform provides composable primitives to build agents: models , tools , state/memory , and orchestration . You can build powerful agentic experiences on our stack, with help in choosing the right models, augmenting your agents with tools, using...
GPT-5.4. Best intelligence at scale for agentic, coding, and professional workflows ; gpt-5.4-pro. GPT-5.4 pro. Version of GPT-5.4 that produces smarter and more
GPT-5.4 is our frontier model for complex professional work. Learn more in our latest model guide. Reasoning.effort supports: none (default), low, medium, high
Latest: GPT-5.4. Using tools. Models and providers. Computer use. Reasoning models. Using realtime models. Latest: GPT-5.4. [Using tools](h…
Search the API docs. Realtime API. Model optimization. Legacy APIs. Using Codex. + Building frontend UIs with Codex and Figma. API. Building frontend UIs with Codex and Figma. A version of GPT-5 optimized for agentic coding in Codex. A version of GPT-5 opti...
Learn how to use GPT-5.4 and Codex to generate code. This guide walks through your options for code generation with GPT-5.4 and Codex. Use Codex for out-of-the-box coding agents. Use Codex for out-of-the-box coding agents. Connect your codebase to Codex and...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 from agents import Agent, ApplyPatchTool, Runner, apply diff from agents import Agent, ApplyPatchTool, R...
""" """ resp = client.responses.create( model="gpt-4.1", model="gpt-4.1", tools=[ { "type": "code interpreter", "type": "code interpreter", "container": {"type": "auto", "memory limit": "4g"} "container": {"type": "auto", "memory limit": "4g"} } ], instruct...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 curl -L ' \ curl -L ' \ -H "Authorization: Bearer $OPENAI API KEY" \ -H "Authorization: Bearer $OPENAI API KEY " \ -H "Content-Type: application/json" \ -H "Content-Type: application/json" \...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 curl -L ' \ curl -L ' \ -H "Content-Type: application/json" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OPENAI API KEY" \ -H "Authorization: Bearer $OPENAI API KEY " \ -d '{ -d '{ "model...