diff --git a/model/price.go b/model/price.go index 7a75e292..9961d334 100644 --- a/model/price.go +++ b/model/price.go @@ -123,11 +123,13 @@ func GetDefaultPrice() []*Price { "gpt-4-32k-0314": {[]float64{30, 60}, common.ChannelTypeOpenAI}, "gpt-4-32k-0613": {[]float64{30, 60}, common.ChannelTypeOpenAI}, // $0.01 / 1K tokens $0.03 / 1K tokens - "gpt-4-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, - "gpt-4-1106-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, - "gpt-4-0125-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, - "gpt-4-turbo-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, - "gpt-4-vision-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, + "gpt-4-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, + "gpt-4-turbo": {[]float64{5, 15}, common.ChannelTypeOpenAI}, + "gpt-4-turbo-2024-04-09": {[]float64{5, 15}, common.ChannelTypeOpenAI}, + "gpt-4-1106-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, + "gpt-4-0125-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, + "gpt-4-turbo-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, + "gpt-4-vision-preview": {[]float64{5, 15}, common.ChannelTypeOpenAI}, // $0.0005 / 1K tokens $0.0015 / 1K tokens "gpt-3.5-turbo": {[]float64{0.25, 0.75}, common.ChannelTypeOpenAI}, "gpt-3.5-turbo-0125": {[]float64{0.25, 0.75}, common.ChannelTypeOpenAI},