As we previewed in What’s Subsequent with AWS 2026, we’re saying the final availability of OpenAI GPT-5.5, GPT-5.4 fashions, and Codex on Amazon Bedrock, supplying you with entry to frontier fashions and a coding agent for software program growth.
In response to OpenAI, GPT-5.5 and GPT-5.4 fashions are wonderful for coding, reasoning, agentic workflows, and complicated skilled work. You should use GPT-5.5 for the toughest buyer workloads and GPT-5.4 for the very best price-performance. You possibly can name them by way of Responses API on Amazon Bedrock’s next-generation inference engine constructed for top efficiency, reliability, and safety.
Codex is the OpenAI coding agent for AI-powered software program growth. In response to OpenAI, greater than 4 million builders use Codex each week to write down, refactor, debug, take a look at, and validate code throughout massive codebases. With GPT-5.5 powering inference, Codex introduces a brand new class of intelligence optimized for complicated, long-horizon developer workflows. You should use the Codex App, the Codex CLI, and IDE integrations with Visible Studio Code, JetBrains, and Xcode, with all mannequin inference routed by way of the Responses API on Amazon Bedrock.
For purchasers with knowledge residency necessities, all processing stays inside the Bedrock Area you choose. You pay per token with no seat licenses and no per-developer commitments.
GPT-5.5 and GPT-5.4 fashions on Bedrock in motion
You possibly can entry the mannequin programmatically utilizing the OpenAI Responses API to name the bedrock-mantle endpoints by way of the OpenAI SDK, command-line instruments corresponding to curl.
Let’s begin with OpenAI SDK for Python. Set up OpenAI SDK.
pip set up -U openai
Set the surroundings variables for authentication.
export OPENAI_BASE_URL="https://bedrock-mantle.us-east-2.api.aws/openai/v1"
export OPENAI_API_KEY=""
export BEDROCK_OPENAI_MODEL_ID="openai.gpt-5.5"
Here’s a pattern Python code to name GPT-5.5 mannequin on Bedrock:
import os
from openai import OpenAI
consumer = OpenAI(
base_url=os.environ["OPENAI_BASE_URL"],
api_key=os.environ["OPENAI_API_KEY"],
)
response = consumer.responses.create(
mannequin=os.environ["BEDROCK_OPENAI_MODEL_ID"],
enter=[
{
"role": "developer",
"content": "You are a software engineer with excellent AWS cloud knowledge. Be concise and practical.",
},
{
"role": "user",
"content": "Design a distributed architecture on AWS in Python that should support 100k requests per second across multiple geographic regions.",
},
],
reasoning={"effort": "medium"},
textual content={"verbosity": "low"},
)
print(response.output_text)
You possibly can name instantly the mannequin endpoint utilizing curl.
curl "$OPENAI_BASE_URL/responses"
-H "Content material-Sort: software/json"
-H "Authorization: Bearer $OPENAI_API_KEY"
-d '{
"mannequin": "openai.gpt-5.5",
"enter": [
{
"role": "developer",
"content": "You are a software engineer with excellent AWS cloud knowledge."
},
{
"role": "user",
"content": "Design a distributed architecture on AWS in Python that should support 100k requests per second across multiple geographic regions."
}
],
"reasoning": {"effort": "medium"},
"textual content": {"verbosity": "low"}
}'
You should use the Responses API whenever you need to use model-managed multi-turn state, want hosted instruments, operate instruments, or richer device orchestration, and run background or long-running work. To study extra, go to the OpenAI Cookbook Responses examples and getting began information.
Utilizing OpenAI Codex with GPT-5.5 on Amazon Bedrock
You possibly can obtain Codex CLI, Codex App or Codex VS Code extension and get began with the Bedrock for mannequin inference. Codex helps two Bedrock authentication pathways: Amazon Bedrock API key or AWS SDK credential chain. Should you set AWS_BEARER_TOKEN_BEDROCK, Codex makes use of it first; in any other case Codex falls again to AWS SDK credential chain.
Set AWS_BEARER_TOKEN_BEDROCK within the surroundings that Codex will learn:
export AWS_BEARER_TOKEN_BEDROCK=
Then, configure your most well-liked Area and set the mannequin ID to openai.gpt-5.5 in ~/.codex/config.toml, which is required for Bedrock API-key authentication. You may as well select openai.gpt-5.4, openai.gpt-oss-120b, or openai.gpt-oss-20b. For the desktop app or VS Code extension, put any surroundings variables the app wants in ~/.codex/.env.
mannequin = "openai.gpt-5.5"
model_provider = "amazon-bedrock"
[model_providers.amazon-bedrock.aws]
area = "us-east-2"
Restart the desktop app or VS Code extension after altering ~/.codex/config.toml or ~/.codex/.env. In Codex CLI, you must see a /standing tab that appears like this:

In Codex App, you should use GPT-5.5 mannequin by way of Amazon Bedrock inference.

To study extra about methods to configure Codex to make use of OpenAI fashions on Amazon Bedrock, go to Use Codex with Amazon Bedrock.
Issues to know
Let me share some necessary technical particulars that I believe you’ll discover helpful.
- Mannequin latency: OpenAI mannequin data positions GPT-5.5 as quick and GPT-5.4 as medium pace, however customer-perceived latency will depend on reasoning effort, output size, device calls, background mode, Area, quotas, throttling, immediate dimension, and cache hits. Begin GPT-5.5 at
mediumeffort. Begin GPT-5.4 with effort set explicitly fairly than counting on itsnonedefault. - Scaling and capability: Bedrock’s new inference engine is designed to quickly provision and serve capability throughout many alternative fashions. When accepting requests, we prioritize retaining regular state workloads working, and ramp utilization and capability quickly in response to modifications in demand. In periods of excessive demand, requests are queued, fairly than rejected.
Now obtainable
OpenAI GPT fashions and Codex on Amazon Bedrock can be found as we speak: GPT-5.5 mannequin within the US East (Ohio) Area, GPT-5.4 mannequin within the US East (Ohio) and US West (Oregon) Areas. Test the full listing of Areas for future updates. To study extra, go to the OpenAI on Amazon Bedrock web page and the Amazon Bedrock pricing web page.
Give GPT-5.5, GPT-5.4 fashions, and Codex on Amazon Bedrock a strive as we speak and ship suggestions to AWS re:Publish for Amazon Bedrock or by way of your normal AWS Assist contacts.
— Channy
Up to date on June, 1, 2026 – The GPT fashions now help the Responses API solely on Amazon Bedrock, and console help is coming quickly.

