Skip to content

Commit 915b30e

Browse files
authored
revise default model (#263)
1 parent 936235f commit 915b30e

File tree

1 file changed

+2
-2
lines changed
  • crates/chat-cli/src/cli/chat

1 file changed

+2
-2
lines changed

crates/chat-cli/src/cli/chat/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4295,8 +4295,8 @@ impl ChatContext {
42954295
/// Currently, Sonnet 4 is set as the default model for non-FRA users.
42964296
pub fn default_model_id(database: &Database) -> &'static str {
42974297
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",
4298+
Ok(Some(profile)) if profile.arn.split(':').nth(3) == Some("eu-central-1") => "CLAUDE_3_7_SONNET_20250219_V1_0",
4299+
_ => "CLAUDE_SONNET_4_20250514_V1_0",
43004300
}
43014301
}
43024302

0 commit comments

Comments
 (0)