Skip to content

Commit 9470d66

Browse files
fix: remove 20b model from list (#2498)
1 parent e8fa9c2 commit 9470d66

File tree

1 file changed

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

1 file changed

+5
-12
lines changed

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

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,11 @@ const MODEL_OPTIONS: [ModelOption; 2] = [
4343
},
4444
];
4545

46-
const OPENAI_MODEL_OPTIONS: [ModelOption; 2] = [
47-
ModelOption {
48-
name: "experimental-gpt-oss-120b",
49-
model_id: "OPENAI_GPT_OSS_120B_1_0",
50-
context_window_tokens: 128_000,
51-
},
52-
ModelOption {
53-
name: "experimental-gpt-oss-20b",
54-
model_id: "OPENAI_GPT_OSS_20B_1_0",
55-
context_window_tokens: 128_000,
56-
},
57-
];
46+
const OPENAI_MODEL_OPTIONS: [ModelOption; 1] = [ModelOption {
47+
name: "gpt-oss-120b-experimental",
48+
model_id: "OPENAI_GPT_OSS_120B_1_0",
49+
context_window_tokens: 128_000,
50+
}];
5851

5952
#[deny(missing_docs)]
6053
#[derive(Debug, PartialEq, Args)]

0 commit comments

Comments
 (0)