Merge pull request #494 from ben-vargas/fix-gpt-reasoning-none

fix(models): add "none" reasoning effort level to gpt-5.2
This commit is contained in:
Luis Pater
2025-12-12 08:53:19 +08:00
committed by GitHub

View File

@@ -580,7 +580,7 @@ func GetOpenAIModels() []*ModelInfo {
ContextLength: 400000, ContextLength: 400000,
MaxCompletionTokens: 128000, MaxCompletionTokens: 128000,
SupportedParameters: []string{"tools"}, SupportedParameters: []string{"tools"},
Thinking: &ThinkingSupport{Levels: []string{"low", "medium", "high", "xhigh"}}, Thinking: &ThinkingSupport{Levels: []string{"none", "low", "medium", "high", "xhigh"}},
}, },
} }
} }