2025-12-19 21:26:19 +08:00
|
|
|
|
package usagestats
|
|
|
|
|
|
|
|
|
|
|
|
// AccountStats 账号使用统计
|
2026-01-14 16:12:08 +08:00
|
|
|
|
//
|
|
|
|
|
|
// cost: 账号口径费用(使用 total_cost * account_rate_multiplier)
|
|
|
|
|
|
// standard_cost: 标准费用(使用 total_cost,不含倍率)
|
|
|
|
|
|
// user_cost: 用户/API Key 口径费用(使用 actual_cost,受分组倍率影响)
|
2025-12-19 21:26:19 +08:00
|
|
|
|
type AccountStats struct {
|
2026-01-14 16:12:08 +08:00
|
|
|
|
Requests int64 `json:"requests"`
|
|
|
|
|
|
Tokens int64 `json:"tokens"`
|
|
|
|
|
|
Cost float64 `json:"cost"`
|
|
|
|
|
|
StandardCost float64 `json:"standard_cost"`
|
|
|
|
|
|
UserCost float64 `json:"user_cost"`
|
2025-12-19 21:26:19 +08:00
|
|
|
|
}
|