From 00104178cdec8657609641cd0249e9fa4c30493d Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Mon, 13 Jul 2026 23:03:01 +0200 Subject: [PATCH] chore(settings): bump balanced/sonnet model to claude-sonnet-5 pi-fork balanced tier + enabledModels and the README examples now point at eu.anthropic.claude-sonnet-5 (matches the live settings.json change made before the container recreate). --- README.md | 10 +++++----- settings.example.json | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) 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" } } }