File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " claude-dev " : patch
3+ ---
4+
5+ feat(bedrock): Introduce Amazon Nova Premier
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -185,6 +185,15 @@ export const anthropicModels = {
185185export type BedrockModelId = keyof typeof bedrockModels
186186export const bedrockDefaultModelId : BedrockModelId = "anthropic.claude-3-7-sonnet-20250219-v1:0"
187187export 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 ,
You can’t perform that action at this time.
0 commit comments