28e53d90fc
- 统一 OpenAI 兼容 /v1 中继 + 渠道/额度/令牌/流水 - 各领域包:relay 模型网关、model 数据层、controller 管理 API
15 lines
377 B
Go
15 lines
377 B
Go
package model
|
|
|
|
// RefreshPricing 强制立即重新计算与定价相关的缓存。
|
|
// 该方法用于需要最新数据的内部管理 API,
|
|
// 因此会绕过默认的 1 分钟延迟刷新。
|
|
func RefreshPricing() {
|
|
updatePricingLock.Lock()
|
|
defer updatePricingLock.Unlock()
|
|
|
|
modelSupportEndpointsLock.Lock()
|
|
defer modelSupportEndpointsLock.Unlock()
|
|
|
|
updatePricing()
|
|
}
|