|
|
@@ -4,6 +4,7 @@ import (
|
|
|
"errors"
|
|
|
"fmt"
|
|
|
"log"
|
|
|
+ "math"
|
|
|
"one-api/common"
|
|
|
constant2 "one-api/constant"
|
|
|
"one-api/dto"
|
|
|
@@ -231,6 +232,17 @@ func PostClaudeConsumeQuota(ctx *gin.Context, relayInfo *relaycommon.RelayInfo,
|
|
|
cacheCreationRatio := priceData.CacheCreationRatio
|
|
|
cacheCreationTokens := usage.PromptTokensDetails.CachedCreationTokens
|
|
|
|
|
|
+ if relayInfo.ChannelType == common.ChannelTypeOpenRouter {
|
|
|
+ promptTokens -= cacheTokens
|
|
|
+ if cacheCreationTokens == 0 && priceData.CacheCreationRatio != 1 && usage.Cost != 0 {
|
|
|
+ maybeCacheCreationTokens := CalcOpenRouterCacheCreateTokens(*usage, priceData)
|
|
|
+ if promptTokens >= maybeCacheCreationTokens {
|
|
|
+ cacheCreationTokens = maybeCacheCreationTokens
|
|
|
+ }
|
|
|
+ }
|
|
|
+ promptTokens -= cacheCreationTokens
|
|
|
+ }
|
|
|
+
|
|
|
calculateQuota := 0.0
|
|
|
if !priceData.UsePrice {
|
|
|
calculateQuota = float64(promptTokens)
|
|
|
@@ -278,6 +290,27 @@ func PostClaudeConsumeQuota(ctx *gin.Context, relayInfo *relaycommon.RelayInfo,
|
|
|
tokenName, quota, logContent, relayInfo.TokenId, userQuota, int(useTimeSeconds), relayInfo.IsStream, relayInfo.Group, other)
|
|
|
}
|
|
|
|
|
|
+func CalcOpenRouterCacheCreateTokens(usage dto.Usage, priceData helper.PriceData) int {
|
|
|
+ if priceData.CacheCreationRatio == 1 {
|
|
|
+ return 0
|
|
|
+ }
|
|
|
+ quotaPrice := priceData.ModelRatio / common.QuotaPerUnit
|
|
|
+ promptCacheCreatePrice := quotaPrice * priceData.CacheCreationRatio
|
|
|
+ promptCacheReadPrice := quotaPrice * priceData.CacheRatio
|
|
|
+ completionPrice := quotaPrice * priceData.CompletionRatio
|
|
|
+
|
|
|
+ cost := usage.Cost
|
|
|
+ totalPromptTokens := float64(usage.PromptTokens)
|
|
|
+ completionTokens := float64(usage.CompletionTokens)
|
|
|
+ promptCacheReadTokens := float64(usage.PromptTokensDetails.CachedTokens)
|
|
|
+
|
|
|
+ return int(math.Round((cost -
|
|
|
+ totalPromptTokens*quotaPrice +
|
|
|
+ promptCacheReadTokens*(quotaPrice-promptCacheReadPrice) -
|
|
|
+ completionTokens*completionPrice) /
|
|
|
+ (promptCacheCreatePrice - quotaPrice)))
|
|
|
+}
|
|
|
+
|
|
|
func PostAudioConsumeQuota(ctx *gin.Context, relayInfo *relaycommon.RelayInfo,
|
|
|
usage *dto.Usage, preConsumedQuota int, userQuota int, priceData helper.PriceData, extraContent string) {
|
|
|
|