-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(vertexai): add WithREST option to vertexai client (#9389)
Initially configure whether the client uses REST or gRPC
- Loading branch information
Showing
3 changed files
with
91 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// 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 | ||
} |