From 152529ae1429ccbf7450821b17e911b17901b0e2 Mon Sep 17 00:00:00 2001 From: lcolok <425311101@qq.com> Date: Tue, 3 Mar 2026 14:56:58 +0800 Subject: [PATCH] style: fix gci formatting in openaiContentPart struct --- pkg/providers/openai_compat/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/providers/openai_compat/provider.go b/pkg/providers/openai_compat/provider.go index ec39b2e44..026337285 100644 --- a/pkg/providers/openai_compat/provider.go +++ b/pkg/providers/openai_compat/provider.go @@ -287,7 +287,7 @@ func parseResponse(body []byte) (*LLMResponse, error) { // openaiContentPart represents a content part in the OpenAI Vision API format. type openaiContentPart struct { - Type string `json:"type"` // "text" or "image_url" + Type string `json:"type"` // "text" or "image_url" Text string `json:"text,omitempty"` ImageURL *protocoltypes.ImageURL `json:"image_url,omitempty"` }