fix: fix usage is not correct

This commit is contained in:
JustSong
2023-06-25 09:36:26 +08:00
parent fc85539222
commit b8b042407a

View File

@@ -71,7 +71,7 @@ func GetUsage(c *gin.Context) {
}
usage := OpenAIUsageResponse{
Object: "list",
TotalUsage: amount,
TotalUsage: amount * 100,
}
c.JSON(200, usage)
return