Skip to content

Commit d670227

Browse files
authored
chore: remove claude-3.5-sonnet model from options due to potential deprecation (#2286)
* remove 3.5 * fix array size
1 parent bc976aa commit d670227

File tree

1 file changed

+1
-5
lines changed
  • crates/chat-cli/src/cli/chat/cli

1 file changed

+1
-5
lines changed

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub struct ModelOption {
2525
pub model_id: &'static str,
2626
}
2727

28-
pub const MODEL_OPTIONS: [ModelOption; 3] = [
28+
pub const MODEL_OPTIONS: [ModelOption; 2] = [
2929
ModelOption {
3030
name: "claude-4-sonnet",
3131
model_id: "CLAUDE_SONNET_4_20250514_V1_0",
@@ -34,10 +34,6 @@ pub const MODEL_OPTIONS: [ModelOption; 3] = [
3434
name: "claude-3.7-sonnet",
3535
model_id: "CLAUDE_3_7_SONNET_20250219_V1_0",
3636
},
37-
ModelOption {
38-
name: "claude-3.5-sonnet",
39-
model_id: "CLAUDE_3_5_SONNET_20241022_V2_0",
40-
},
4137
];
4238

4339
#[deny(missing_docs)]

0 commit comments

Comments
 (0)