diff --git a/README.md b/README.md index 2bc34e7..455e0b3 100644 --- a/README.md +++ b/README.md @@ -113,9 +113,9 @@ Adjust the inference-profile prefix to match your AWS region: | Region | Prefix | Example model ID | |---|---|---| -| eu-west-1 | `eu.` | `eu.anthropic.claude-sonnet-4-6` | -| us-east-1 | `us.` | `us.anthropic.claude-sonnet-4-6` | -| non-Bedrock | (none) | `anthropic:claude-sonnet-4-6` | +| eu-west-1 | `eu.` | `eu.anthropic.claude-sonnet-5` | +| us-east-1 | `us.` | `us.anthropic.claude-sonnet-5` | +| non-Bedrock | (none) | `anthropic:claude-sonnet-5` | Run `pi --list-models` to confirm what your credentials can actually invoke. @@ -176,9 +176,9 @@ pi --version ```json { "defaultProvider": "amazon-bedrock", - "defaultModel": "eu.anthropic.claude-sonnet-4-6", + "defaultModel": "eu.anthropic.claude-sonnet-5", "enabledModels": [ - "eu.anthropic.claude-sonnet-4-6", + "eu.anthropic.claude-sonnet-5", "eu.anthropic.claude-opus-4-7", "eu.anthropic.claude-haiku-4-5-20251001-v1:0" ] diff --git a/settings.example.json b/settings.example.json index 5122041..bdf0e07 100644 --- a/settings.example.json +++ b/settings.example.json @@ -5,7 +5,7 @@ "defaultProvider": "amazon-bedrock", "defaultModel": "eu.anthropic.claude-opus-4-8", "enabledModels": [ - "eu.anthropic.claude-sonnet-4-6", + "eu.anthropic.claude-sonnet-5", "eu.anthropic.claude-opus-4-7", "eu.anthropic.claude-opus-4-8", "eu.anthropic.claude-haiku-4-5-20251001-v1:0" @@ -23,7 +23,7 @@ "defaultEffort": "balanced", "effortProfiles": { "fast": { "provider": "amazon-bedrock", "id": "eu.anthropic.claude-haiku-4-5-20251001-v1:0", "thinking": "off" }, - "balanced": { "provider": "amazon-bedrock", "id": "eu.anthropic.claude-sonnet-4-6", "thinking": "low" }, + "balanced": { "provider": "amazon-bedrock", "id": "eu.anthropic.claude-sonnet-5", "thinking": "low" }, "deep": { "provider": "amazon-bedrock", "id": "eu.anthropic.claude-opus-4-8", "thinking": "high" } } }