From d83dff2ac19b315f179f263cd5fa9d68da035a1d Mon Sep 17 00:00:00 2001 From: jonathan343 Date: Tue, 23 Dec 2025 12:22:04 -0600 Subject: [PATCH] Update integration tests to use the latest Amazon Nova 2 models --- clients/aws-sdk-bedrock-runtime/tests/integration/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/aws-sdk-bedrock-runtime/tests/integration/__init__.py b/clients/aws-sdk-bedrock-runtime/tests/integration/__init__.py index 3373189..44217f9 100644 --- a/clients/aws-sdk-bedrock-runtime/tests/integration/__init__.py +++ b/clients/aws-sdk-bedrock-runtime/tests/integration/__init__.py @@ -9,8 +9,8 @@ from aws_sdk_bedrock_runtime.client import BedrockRuntimeClient from aws_sdk_bedrock_runtime.config import Config -MODEL_ID = "amazon.titan-text-express-v1" -BIDIRECTIONAL_MODEL_ID = "amazon.nova-sonic-v1:0" +MODEL_ID = "global.amazon.nova-2-lite-v1:0" +BIDIRECTIONAL_MODEL_ID = "amazon.nova-2-sonic-v1:0" MESSAGE = "Who created the Python programming language?" AUDIO_FILE = Path(__file__).parent / "assets" / "test.pcm"