diff --git a/controller/billing.go b/controller/billing.go index ec8e3ce3..7bc63425 100644 --- a/controller/billing.go +++ b/controller/billing.go @@ -71,7 +71,7 @@ func GetUsage(c *gin.Context) { } usage := OpenAIUsageResponse{ Object: "list", - TotalUsage: amount, + TotalUsage: amount * 100, } c.JSON(200, usage) return