Skip to content

Commit 9ffa244

Browse files
authored
feat(bedrock): support Amazon Nova Sonic 1.0 (#34134)
Ref: https://aws.amazon.com/about-aws/whats-new/2025/04/amazon-nova-sonic-speech-to-speech-conversations-bedrock/ ```console $ aws bedrock get-foundation-model --model-identifier amazon.nova-sonic-v1:0 { "modelDetails": { "modelArn": "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-sonic-v1:0", "modelId": "amazon.nova-sonic-v1:0", "modelName": "Nova Sonic", "providerName": "Amazon", "inputModalities": [ "SPEECH" ], "outputModalities": [ "SPEECH", "TEXT" ], "responseStreamingSupported": true, "customizationsSupported": [], "inferenceTypesSupported": [ "ON_DEMAND" ], "modelLifecycle": { "status": "ACTIVE" } } } ``` ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent b9758f2 commit 9ffa244

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts

+3
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ export class FoundationModelIdentifier {
8989
/** Base model "amazon.nova-reel-v1:1". */
9090
public static readonly AMAZON_NOVA_REEL_V1_1 = new FoundationModelIdentifier('amazon.nova-reel-v1:1');
9191

92+
/** Base model "amazon.nova-sonic-v1:0". */
93+
public static readonly AMAZON_NOVA_SONIC_V1_0 = new FoundationModelIdentifier('amazon.nova-sonic-v1:0');
94+
9295
/**
9396
* Base model "ai21.j2-mid".
9497
* @deprecated use latest version of the model

0 commit comments

Comments
 (0)