feat: sync gpt-5 model ratio and support new reasoning effort

This commit is contained in:
HynoR
2025-08-08 09:11:28 +08:00
parent d0fb54fbfe
commit 4912b1e632
2 changed files with 31 additions and 19 deletions

View File

@@ -449,6 +449,10 @@ func getHardcodedCompletionModelRatio(name string) (float64, bool) {
}
return 4, true
}
// gpt-5 匹配
if strings.HasPrefix(name, "gpt-5") {
return 8, true
}
// gpt-4.5-preview匹配
if strings.HasPrefix(name, "gpt-4.5-preview") {
return 2, true