chore: 代码格式化 - go fmt 自动调整

This commit is contained in:
selfrelease
2026-06-22 18:47:52 +08:00
parent 96930b585c
commit 108a17bdaf
3 changed files with 10 additions and 10 deletions
+6 -6
View File
@@ -27,12 +27,12 @@ type ChatRequest struct {
}
type ChatResponse struct {
Content string `json:"content"`
Model string `json:"model"`
PromptTokens int `json:"prompt_tokens"`
CompletionTokens int `json:"completion_tokens"`
TotalTokens int `json:"total_tokens"`
ConversationID string `json:"conversation_id,omitempty"`
Content string `json:"content"`
Model string `json:"model"`
PromptTokens int `json:"prompt_tokens"`
CompletionTokens int `json:"completion_tokens"`
TotalTokens int `json:"total_tokens"`
ConversationID string `json:"conversation_id,omitempty"`
}
type StreamDelta struct {