From d26e4eca7dff78de68eca06dbae992114719aa31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E6=99=BA=E8=B6=850668000959?= Date: Fri, 12 Jun 2026 13:44:34 +0800 Subject: [PATCH] chore(openai_compat): fix golines formatting for CI linter --- pkg/providers/openai_compat/provider.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/providers/openai_compat/provider.go b/pkg/providers/openai_compat/provider.go index ecc34844..3f71cfd0 100644 --- a/pkg/providers/openai_compat/provider.go +++ b/pkg/providers/openai_compat/provider.go @@ -160,7 +160,10 @@ func (p *Provider) buildRequestBody( // treat it as false — web_search_preview must not be injected // when the caller cannot express a well-typed intent. if _, present := options["native_search"]; present { - log.Printf("[openai_compat] native_search option has unexpected type %T, ignoring", options["native_search"]) + log.Printf( + "[openai_compat] native_search option has unexpected type %T, ignoring", + options["native_search"], + ) } } nativeSearch = nativeSearch && isNativeSearchHost(p.apiBase)