The Feature
AWS launched OpenAI frontier models (openai.gpt-5.5, openai.gpt-5.4) on the Bedrock bedrock-mantle endpoint on 2026-06-01. These are Responses-API-only and live on a distinct path: https://bedrock-mantle.{region}.api.aws/openai/v1/responses (note the openai/ prefix). Per the AWS model card, Chat Completions / Converse / Invoke are not supported for these models, and they are currently in us-east-2 only.
Today LiteLLM has no route that targets /openai/v1/responses, so these models cannot be reached through either existing mantle integration.
Current behavior (tested on v1.83.14 and v1.86.2)
| Route |
Auth |
URL LiteLLM builds |
Result |
bedrock/mantle/openai.gpt-5.5 (completion & responses) |
SigV4 / IAM |
…/anthropic/v1/messages |
400 invalid_request_error: The model 'openai.gpt-5.5' does not support the '/anthropic/v1/messages' API |
bedrock_mantle/openai.gpt-5.5 |
Bearer API key |
…/v1/chat/completions |
wrong endpoint — these models are Responses-only |
The bedrock/mantle/ route (PR #26196, path fixed in #27943) is hardwired to the Anthropic Messages path for Claude Mythos; the bedrock_mantle/ provider (PR #22866) is hardwired to /v1/chat/completions. Neither emits /openai/v1/responses.
Confirmed working (raw request)
A hand-signed SigV4 POST to https://bedrock-mantle.us-east-2.api.aws/openai/v1/responses with body {"model":"openai.gpt-5.5","input":"…"} returns 200 with a valid OpenAI Responses payload. So the model, endpoint, and IAM/SigV4 auth all work — only LiteLLM's routing is missing this path.
Proposed
- Route
openai.* mantle models to /openai/v1/responses (Responses mode), distinct from the /anthropic/v1/messages (Mythos) and /v1/chat/completions paths.
- Support SigV4 / IAM auth on this path (the Mythos route already does SigV4), not just
BEDROCK_MANTLE_API_KEY.
- Register Bedrock pricing for
gpt-5.5 / gpt-5.4 under the mantle provider (currently logs This model isn't mapped yet, producing $0 cost).
Environment
- LiteLLM: reproduced on v1.83.14 and v1.86.2
- Region: us-east-2 (only region where these models are currently available)
Twitter / LinkedIn details
No response
The Feature
AWS launched OpenAI frontier models (
openai.gpt-5.5,openai.gpt-5.4) on the Bedrockbedrock-mantleendpoint on 2026-06-01. These are Responses-API-only and live on a distinct path:https://bedrock-mantle.{region}.api.aws/openai/v1/responses(note theopenai/prefix). Per the AWS model card, Chat Completions / Converse / Invoke are not supported for these models, and they are currently inus-east-2only.Today LiteLLM has no route that targets
/openai/v1/responses, so these models cannot be reached through either existing mantle integration.Current behavior (tested on v1.83.14 and v1.86.2)
bedrock/mantle/openai.gpt-5.5(completion & responses)…/anthropic/v1/messages400 invalid_request_error: The model 'openai.gpt-5.5' does not support the '/anthropic/v1/messages' APIbedrock_mantle/openai.gpt-5.5…/v1/chat/completionsThe
bedrock/mantle/route (PR #26196, path fixed in #27943) is hardwired to the Anthropic Messages path for Claude Mythos; thebedrock_mantle/provider (PR #22866) is hardwired to/v1/chat/completions. Neither emits/openai/v1/responses.Confirmed working (raw request)
A hand-signed SigV4
POSTtohttps://bedrock-mantle.us-east-2.api.aws/openai/v1/responseswith body{"model":"openai.gpt-5.5","input":"…"}returns200with a valid OpenAI Responses payload. So the model, endpoint, and IAM/SigV4 auth all work — only LiteLLM's routing is missing this path.Proposed
openai.*mantle models to/openai/v1/responses(Responses mode), distinct from the/anthropic/v1/messages(Mythos) and/v1/chat/completionspaths.BEDROCK_MANTLE_API_KEY.gpt-5.5/gpt-5.4under the mantle provider (currently logsThis model isn't mapped yet, producing $0 cost).Environment
Twitter / LinkedIn details
No response