Skip to content

[Feature]: Support OpenAI frontier models (gpt-5.5 / gpt-5.4) on bedrock-mantle via the /openai/v1/responses path #29463

Description

@odinwang

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

  1. Route openai.* mantle models to /openai/v1/responses (Responses mode), distinct from the /anthropic/v1/messages (Mythos) and /v1/chat/completions paths.
  2. Support SigV4 / IAM auth on this path (the Mythos route already does SigV4), not just BEDROCK_MANTLE_API_KEY.
  3. 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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions