We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e4c5b5 commit 6ebc7d6Copy full SHA for 6ebc7d6
1 file changed
build.rs
@@ -149,7 +149,7 @@ const OLLAMA_MODEL_MAPPING_SRC: [(&str, &str); 21] = [
149
("llama2", "llama2"),
150
];
151
152
-const OPENAI_MODEL_MAPPING_SRC: [(&str, &str); 33] = [
+const OPENAI_MODEL_MAPPING_SRC: [(&str, &str); 41] = [
153
// Default models
154
("gpt", "gpt-5"),
155
("mini", "gpt-5-mini"),
@@ -171,6 +171,15 @@ const OPENAI_MODEL_MAPPING_SRC: [(&str, &str); 33] = [
171
// GPT-5.1
172
("gpt5.1", "gpt-5.1"),
173
("5.1", "gpt-5.1"),
174
+ // GPT-5.6 (Sol = flagship, Terra = balanced, Luna = fastest)
175
+ ("gpt5.6", "gpt-5.6-sol"),
176
+ ("5.6", "gpt-5.6-sol"),
177
+ ("sol", "gpt-5.6-sol"),
178
+ ("gpt5.6sol", "gpt-5.6-sol"),
179
+ ("terra", "gpt-5.6-terra"),
180
+ ("gpt5.6terra", "gpt-5.6-terra"),
181
+ ("luna", "gpt-5.6-luna"),
182
+ ("gpt5.6luna", "gpt-5.6-luna"),
183
// GPT Image
184
("gptimage", "gpt-image-2"),
185
("gpt-image", "gpt-image-2"),
0 commit comments