-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Description
Problem
amazon-bedrock currently treats Claude Opus 4.6 as a single model variant, but the 1M context path on Bedrock requires the experimental context-1m-2025-08-07 beta flag.
Without that flag, requests above the normal 200K window can fail even though the model appears to expose a larger context limit.
Expected behavior
- Default Opus 4.6 model should represent the stable 200K context path.
- A separate explicit 1M variant should be available.
- The 1M variant should automatically send the Bedrock Anthropic beta flag (
anthropicBeta: [\"context-1m-2025-08-07\"]).
Why this helps
- Avoids surprising failures for users on the default model.
- Makes the experimental 1M path opt-in and explicit.
- Matches AI SDK Bedrock guidance for extended context.
Proposed direction
During provider model normalization for amazon-bedrock, detect Opus 4.6 entries and:
- Keep/create a
200Kvariant (no 1M beta flag). - Add a
1M Experimentalvariant with the same Bedrockapi.idplusanthropicBetaset tocontext-1m-2025-08-07.
Happy to open a PR with this behavior.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels