style: fix formatting

This commit is contained in:
danieldd28 2026-02-14 12:02:18 +07:00
parent add918be91
commit 4717ce3d89
2 changed files with 2 additions and 2 deletions

View file

@ -143,7 +143,7 @@ func (p *HTTPProvider) parseResponse(body []byte) (*LLMResponse, error) {
} `json:"message"`
FinishReason string `json:"finish_reason"`
} `json:"choices"`
Usage *UsageInfo `json:"usage"`
Usage *UsageInfo `json:"usage"`
BaseResp *struct {
StatusCode int `json:"status_code"`
StatusMsg string `json:"status_msg"`

View file

@ -23,6 +23,6 @@ func TestMiniMaxProvider_Chat(t *testing.T) {
if resp.Content == "" {
t.Errorf("Expected non-empty content")
}
t.Logf("Response: %s", resp.Content)
}