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 e8fa9c2 commit 9470d66Copy full SHA for 9470d66
crates/chat-cli/src/cli/chat/cli/model.rs
@@ -43,18 +43,11 @@ const MODEL_OPTIONS: [ModelOption; 2] = [
43
},
44
];
45
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
53
- name: "experimental-gpt-oss-20b",
54
- model_id: "OPENAI_GPT_OSS_20B_1_0",
55
56
57
-];
+const OPENAI_MODEL_OPTIONS: [ModelOption; 1] = [ModelOption {
+ name: "gpt-oss-120b-experimental",
+ model_id: "OPENAI_GPT_OSS_120B_1_0",
+ context_window_tokens: 128_000,
+}];
58
59
#[deny(missing_docs)]
60
#[derive(Debug, PartialEq, Args)]
0 commit comments