feat: 完善audio倍率

This commit is contained in:
CalciumIon 2024-11-07 16:42:08 +08:00
parent 97fdcd8e8f
commit 3b53a2a5ce

View File

@ -425,6 +425,8 @@ func GetCompletionRatio(name string) float64 {
func GetAudioRatio(name string) float64 {
if strings.HasPrefix(name, "gpt-4o-realtime") {
return 20
} else if strings.HasPrefix(name, "gpt-4o-audio") {
return 40
}
return 20
}