Skip to content

Commit bdfda6f

Browse files
authored
feat(bedrock): Introduce Amazon Nova Premier (RooCodeInc#3225)
* feat(bedrock): Introduce Amazon Nova Premier * changeset
1 parent c5de50f commit bdfda6f

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.changeset/many-beans-yell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"claude-dev": patch
3+
---
4+
5+
feat(bedrock): Introduce Amazon Nova Premier

src/api/providers/bedrock.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ export class AwsBedrockHandler implements ApiHandler {
493493

494494
/**
495495
* Creates a message using Amazon Nova models through AWS Bedrock
496-
* Implements support for Nova Micro, Nova Lite, and Nova Pro models
496+
* Implements support for Amazon Nova models
497497
*/
498498
private async *createNovaMessage(
499499
systemPrompt: string,

src/shared/api.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,15 @@ export const anthropicModels = {
185185
export type BedrockModelId = keyof typeof bedrockModels
186186
export const bedrockDefaultModelId: BedrockModelId = "anthropic.claude-3-7-sonnet-20250219-v1:0"
187187
export const bedrockModels = {
188+
"amazon.nova-premier-v1:0": {
189+
maxTokens: 10_000,
190+
contextWindow: 1_000_000,
191+
supportsImages: true,
192+
193+
supportsPromptCache: false,
194+
inputPrice: 2.5,
195+
outputPrice: 12.5,
196+
},
188197
"amazon.nova-pro-v1:0": {
189198
maxTokens: 5000,
190199
contextWindow: 300_000,

0 commit comments

Comments
 (0)