blob: 2f98fcf310cdde1b140a40ad517b44488aa3b89b [file] [log] [blame]
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package genai
import (
"google.golang.org/api/option"
"google.golang.org/api/option/internaloption"
)
// WithREST is an option that enables REST transport for the client.
// The default transport (if this option isn't provided) is gRPC.
func WithREST() option.ClientOption {
return &withREST{}
}
func (w *withREST) applyVertexaiOpt(c *config) {
c.withREST = true
}
type config struct {
// withREST tells the client to use REST as the underlying transport.
withREST bool
}
// newConfig generates a new config with all the given
// vertexaiClientOptions applied.
func newConfig(opts ...option.ClientOption) config {
var conf config
for _, opt := range opts {
if vOpt, ok := opt.(vertexaiClientOption); ok {
vOpt.applyVertexaiOpt(&conf)
}
}
return conf
}
// A vertexaiClientOption is an option for a vertexai client.
type vertexaiClientOption interface {
option.ClientOption
applyVertexaiOpt(*config)
}
type withREST struct {
internaloption.EmbeddableAdapter
}