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)