feat: Add prompt cache hit tokens support for DeepSeek channel #406

This commit is contained in:
1808837298@qq.com
2025-03-08 16:50:24 +08:00
parent bb848b2fe0
commit a9bfcb0daf
2 changed files with 7 additions and 0 deletions

View File

@@ -166,6 +166,7 @@ type Usage struct {
PromptTokens int `json:"prompt_tokens"`
CompletionTokens int `json:"completion_tokens"`
TotalTokens int `json:"total_tokens"`
PromptCacheHitTokens int `json:"prompt_cache_hit_tokens,omitempty"`
PromptTokensDetails InputTokenDetails `json:"prompt_tokens_details"`
CompletionTokenDetails OutputTokenDetails `json:"completion_tokens_details"`
}