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 5bed29e2bd
commit a36d6de8d1
2 changed files with 7 additions and 0 deletions
+1
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"`
}