We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936235f commit 915b30eCopy full SHA for 915b30e
crates/chat-cli/src/cli/chat/mod.rs
@@ -4295,8 +4295,8 @@ impl ChatContext {
4295
/// Currently, Sonnet 4 is set as the default model for non-FRA users.
4296
pub fn default_model_id(database: &Database) -> &'static str {
4297
match database.get_auth_profile() {
4298
- Ok(Some(profile)) if profile.arn.split(':').nth(3) == Some("us-east-1") => "CLAUDE_SONNET_4_20250514_V1_0",
4299
- _ => "CLAUDE_3_7_SONNET_20250219_V1_0",
+ Ok(Some(profile)) if profile.arn.split(':').nth(3) == Some("eu-central-1") => "CLAUDE_3_7_SONNET_20250219_V1_0",
+ _ => "CLAUDE_SONNET_4_20250514_V1_0",
4300
}
4301
4302
0 commit comments