Skip to content

Commit

Permalink
Update default base url in comment (#8589)
Browse files Browse the repository at this point in the history
* Update default base url in comment

* Add changeset and generate docs
  • Loading branch information
dlarocque authored Oct 23, 2024
1 parent 1f1ba3f commit 052e438
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
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

0 comments on commit 052e438

Please sign in to comment.