From f1bca4cde57239cd3c606a1566e83a7d7f5e7953 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Fri, 8 Mar 2024 20:16:17 -0800 Subject: [PATCH] fix(vertexai): clarify documentation of NewClient (#9532) --- vertexai/genai/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vertexai/genai/client.go b/vertexai/genai/client.go index 1e781ee95162..0a8a257c22e0 100644 --- a/vertexai/genai/client.go +++ b/vertexai/genai/client.go @@ -45,6 +45,8 @@ type Client struct { // // Clients should be reused instead of created as needed. The methods of Client // are safe for concurrent use by multiple goroutines. +// projectID is your GCP project; location is GCP region/location per +// https://cloud.google.com/vertex-ai/docs/general/locations // // You may configure the client by passing in options from the // [google.golang.org/api/option] package. You may also use options defined in