Skip to content

Update default base url in comment #8589

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

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/nervous-timers-call.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@firebase/vertexai': patch
---

Update to new base URL in documentation
4 changes: 2 additions & 2 deletions docs-devsite/vertexai.requestoptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ export interface RequestOptions

| Property | Type | Description |
| --- | --- | --- |
| [baseUrl](./vertexai.requestoptions.md#requestoptionsbaseurl) | string | Base url for endpoint. Defaults to https://firebaseml.googleapis.com |
| [baseUrl](./vertexai.requestoptions.md#requestoptionsbaseurl) | string | Base url for endpoint. Defaults to https://firebasevertexai.googleapis.com |
| [timeout](./vertexai.requestoptions.md#requestoptionstimeout) | number | Request timeout in milliseconds. Defaults to 180 seconds (180000ms). |

## RequestOptions.baseUrl

Base url for endpoint. Defaults to https://firebaseml.googleapis.com
Base url for endpoint. Defaults to https://firebasevertexai.googleapis.com

<b>Signature:</b>

Expand Down
2 changes: 1 addition & 1 deletion packages/vertexai/src/types/requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export interface RequestOptions {
*/
timeout?: number;
/**
* Base url for endpoint. Defaults to https://firebaseml.googleapis.com
* Base url for endpoint. Defaults to https://firebasevertexai.googleapis.com
*/
baseUrl?: string;
}
Expand Down
Loading