Skip to content

Commit 8c2b601

Browse files
committed
update model
1 parent 926bdad commit 8c2b601

5 files changed

Lines changed: 4 additions & 5 deletions

File tree

mcp_examples/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ An MCP (Model Context Protocol) server implementation for Amazon Nova Act, allow
1717
3. A valid Nova Act API key (obtain from https://nova.amazon.com/act)
1818
4. Amazon Bedrock access:
1919
- [Amazon Bedrock enabled in your AWS account](https://docs.aws.amazon.com/bedrock/latest/userguide/getting-started.html)
20-
- Claude 3.5 Sonnet V2 model enabled (this is the default for this example)
2120
- AWS credentials and region properly configured
2221

2322
## Installation

mcp_examples/hello_world_mcp_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self):
1414
# Initialize session and client objects
1515
self.session = None
1616
self.exit_stack = AsyncExitStack()
17-
self.model_id = "us.anthropic.claude-3-5-haiku-20241022-v1:0"
17+
self.model_id = "us.anthropic.claude-sonnet-4-5-20250929-v1:0"
1818
self.bedrock_runtime = None
1919

2020
async def connect_to_server(self, server_script_path: str):

mcp_examples/nova_act_mcp_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ async def process_query(self, query: str) -> str:
9393
system_prompt = "You are an AI assistant capable of using tools to help users. Use the provided tools when necessary."
9494

9595
# Generate conversation with Bedrock
96-
model_id = "anthropic.claude-3-5-sonnet-20241022-v2:0"
96+
model_id = "us.anthropic.claude-sonnet-4-5-20250929-v1:0"
9797
try:
9898
# Make the API call to Bedrock
9999
response = bedrock_runtime.converse(

strands_examples/mcp_docs_diag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
bedrock_model = BedrockModel(
24-
model_id="us.anthropic.claude-3-5-haiku-20241022-v1:0",
24+
model_id="us.anthropic.claude-sonnet-4-5-20250929-v1:0",
2525
temperature=0.7,
2626
)
2727

strands_examples/nova_act_strands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
bedrock_model = BedrockModel(
4040
#model_id="us.anthropic.claude-3-5-haiku-20241022-v1:0",
41-
model_id="anthropic.claude-3-5-sonnet-20241022-v2:0",
41+
model_id="us.anthropic.claude-sonnet-4-5-20250929-v1:0",
4242
temperature=0.7,
4343
)
4444

0 commit comments

Comments
 (0)