You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(bb-agent): capability-based model presets with global inference profiles
6
+
7
+
New presets:
8
+
-`BALANCED` (Claude Sonnet 4.6): recommended default for most workloads
9
+
-`SMART` (Claude Opus 4.8): highest capability for hardest tasks
10
+
-`FAST` (Claude Haiku 4.5): lowest latency
11
+
12
+
All presets use `global.` inference profiles for region-agnostic deployment.
13
+
14
+
Deprecated (non-removing): `DEFAULT` resolves to `BALANCED`, `BUDGET` and `MICRO` resolve to `FAST`. Note this changes the underlying model for existing callers — `DEFAULT` moves from Opus to Sonnet, and `BUDGET`/`MICRO` move from Amazon Nova Pro/Lite to Claude Haiku, so cost and latency profiles differ. The symbols still resolve (no type break), but migrate to `BALANCED`/`FAST` (or a region-scoped profile) explicitly to pin the model you want.
Pre-configured model presets for quick setup. Names are capability-based so the underlying model can be upgraded without breaking your code. These use cross-regioninference profiles — work across all AWS regions:
195
+
Pre-configured model presets for quick setup. Names are capability-based so the underlying model can be upgraded without breaking your code. These use [global inference profiles](https://docs.aws.amazon.com/bedrock/latest/userguide/cross-region-inference.html) — requests may be routed to any supported AWS region for optimal throughput. If your workload has data residency requirements, specify a region-scoped inference profile explicitly instead of using a preset.
|`BedrockModels.BUDGET`|`us.amazon.nova-pro-v1:0`| Low cost per token with acceptable quality. |
214
-
|`BedrockModels.MICRO`|`us.amazon.nova-lite-v1:0`| Ultra-cheap for simple tasks. |
210
+
|`BedrockModels.BALANCED`|`global.anthropic.claude-sonnet-4-6`|Great tool use, balanced cost. Recommended default for most workloads. |
211
+
|`BedrockModels.SMART`|`global.anthropic.claude-opus-4-8`|Highest capability for the hardest tasks. |
212
+
|`BedrockModels.FAST`|`global.anthropic.claude-haiku-4-5-20251001-v1:0`|Lowest latency, still strong capabilities. |
213
+
214
+
> **Migrating?**`DEFAULT` → `BALANCED` (or `SMART` for highest capability). `BUDGET`/`MICRO`→ `FAST`. The old presets are still available but deprecated. Please consider upgrading!
0 commit comments