From 084f00f37a11397aadcb494e81bf5d96eebcec35 Mon Sep 17 00:00:00 2001 From: feitianbubu Date: Sat, 28 Feb 2026 21:27:37 +0800 Subject: [PATCH] fix: update modelPrice default setting --- relay/helper/price.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay/helper/price.go b/relay/helper/price.go index 1cb04166faaa..f234caaa1881 100644 --- a/relay/helper/price.go +++ b/relay/helper/price.go @@ -148,7 +148,7 @@ func ModelPriceHelperPerCall(c *gin.Context, info *relaycommon.RelayInfo) types. if !success { defaultPrice, ok := ratio_setting.GetDefaultModelPriceMap()[info.OriginModelName] if !ok { - modelPrice = 0.1 + modelPrice = float64(common.PreConsumedQuota) / common.QuotaPerUnit } else { modelPrice = defaultPrice }