8000 docs: add docstring to live.go by copybara-service[bot] · Pull Request #495 · googleapis/js-genai · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

docs: add docstring to live.go #495

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,22 @@ export interface GoogleGenAIOptions {
*
* @remarks
* When true, the {@link https://cloud.google.com/vertex-ai/docs/reference/rest | Vertex AI API} will used.
* When false, the {@link https://cloud.google.com/vertex-ai/docs/reference/rest | Gemini API} will be used.
* When false, the {@link https://ai.google.dev/api | Gemini API} will be used.
*
* If unset, default SDK behavior is to use the Gemini API service.
*/
vertexai?: boolean;
/**
* Optional. The Google Cloud project ID for Vertex AI clients.
*
* Find your project ID: https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects
*
* @remarks
* Only supported on Node runtimes, ignored on browser runtimes.
*/
project?: string;
/**
* Optional. The Google Cloud project region for Vertex AI clients.
* Optional. The Google Cloud project {@link https://cloud.google.com/vertex-ai/generative-ai/docs/learn/locations | location} for Vertex AI clients.
*
* @remarks
* Only supported on Node runtimes, ignored on browser runtimes.
Expand Down
0