mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-30 03:00:41 -04:00
fix(frontend): add cache token fields to UserCostSummary in openapi.json
The backend added total_cache_read_tokens and total_cache_creation_tokens to UserCostSummary but the OpenAPI spec was not updated, causing frontend build failures.
This commit is contained in:
@@ -15757,6 +15757,16 @@
|
||||
"type": "integer",
|
||||
"title": "Cost Bearing Request Count",
|
||||
"default": 0
|
||||
},
|
||||
"total_cache_read_tokens": {
|
||||
"default": 0,
|
||||
"title": "Total Cache Read Tokens",
|
||||
"type": "integer"
|
||||
},
|
||||
"total_cache_creation_tokens": {
|
||||
"default": 0,
|
||||
"title": "Total Cache Creation Tokens",
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"type": "object",
|
||||
|
||||
Reference in New Issue
Block a user