Skip to content

Commit

Permalink
Replace 'Vertex AI For Firebase' usage with 'Vertex AI in Firebase' (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarocque authored Aug 23, 2024
1 parent c6a8851 commit 5594ebc
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs-devsite/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ https://github.com/firebase/firebase-js-sdk
| [@firebase/performance](./performance.md#performance_package) | The Firebase Performance Monitoring Web SDK. This SDK does not work in a Node.js environment. |
| [@firebase/remote-config](./remote-config.md#remote-config_package) | The Firebase Remote Config Web SDK. This SDK does not work in a Node.js environment. |
| [@firebase/storage](./storage.md#storage_package) | Cloud Storage for Firebase |
| [@firebase/vertexai-preview](./vertexai-preview.md#vertexai-preview_package) | The Vertex AI For Firebase Web SDK. |
| [@firebase/vertexai-preview](./vertexai-preview.md#vertexai-preview_package) | The Vertex AI in Firebase Web SDK. |

8 changes: 4 additions & 4 deletions docs-devsite/vertexai-preview.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
{% endcomment %}

# vertexai-preview package
The Vertex AI For Firebase Web SDK.
The Vertex AI in Firebase Web SDK.

## Functions

Expand All @@ -27,7 +27,7 @@ The Vertex AI For Firebase Web SDK.
| --- | --- |
| [ChatSession](./vertexai-preview.chatsession.md#chatsession_class) | ChatSession class that enables sending chat messages and stores history of sent and received messages so far. |
| [GenerativeModel](./vertexai-preview.generativemodel.md#generativemodel_class) | Class for generative model APIs. |
| [VertexAIError](./vertexai-preview.vertexaierror.md#vertexaierror_class) | Error class for the Vertex AI for Firebase SDK. |
| [VertexAIError](./vertexai-preview.vertexaierror.md#vertexaierror_class) | Error class for the Vertex AI in Firebase SDK. |

## Enumerations

Expand Down Expand Up @@ -90,8 +90,8 @@ The Vertex AI For Firebase Web SDK.
| [TextPart](./vertexai-preview.textpart.md#textpart_interface) | Content part interface if the part represents a text string. |
| [ToolConfig](./vertexai-preview.toolconfig.md#toolconfig_interface) | Tool config. This config is shared for all tools provided in the request. |
| [UsageMetadata](./vertexai-preview.usagemetadata.md#usagemetadata_interface) | Usage metadata about a [GenerateContentResponse](./vertexai-preview.generatecontentresponse.md#generatecontentresponse_interface)<!-- -->. |
| [VertexAI](./vertexai-preview.vertexai.md#vertexai_interface) | An instance of the Vertex AI for Firebase SDK. |
| [VertexAIOptions](./vertexai-preview.vertexaioptions.md#vertexaioptions_interface) | Options when initializing the Vertex AI for Firebase SDK. |
| [VertexAI](./vertexai-preview.vertexai.md#vertexai_interface) | An instance of the Vertex AI in Firebase SDK. |
| [VertexAIOptions](./vertexai-preview.vertexaioptions.md#vertexaioptions_interface) | Options when initializing the Vertex AI in Firebase SDK. |
| [VideoMetadata](./vertexai-preview.videometadata.md#videometadata_interface) | Describes the input video content. |
| [WebAttribution](./vertexai-preview.webattribution.md#webattribution_interface) | |

Expand Down
2 changes: 1 addition & 1 deletion docs-devsite/vertexai-preview.vertexai.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
{% endcomment %}

# VertexAI interface
An instance of the Vertex AI for Firebase SDK.
An instance of the Vertex AI in Firebase SDK.

<b>Signature:</b>

Expand Down
2 changes: 1 addition & 1 deletion docs-devsite/vertexai-preview.vertexaierror.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
{% endcomment %}

# VertexAIError class
Error class for the Vertex AI for Firebase SDK.
Error class for the Vertex AI in Firebase SDK.

<b>Signature:</b>

Expand Down
2 changes: 1 addition & 1 deletion docs-devsite/vertexai-preview.vertexaioptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
{% endcomment %}

# VertexAIOptions interface
Options when initializing the Vertex AI for Firebase SDK.
Options when initializing the Vertex AI in Firebase SDK.

<b>Signature:</b>

Expand Down
2 changes: 1 addition & 1 deletion packages/vertexai/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { VertexAIErrorCode, CustomErrorData } from './types';
import { VERTEX_TYPE } from './constants';

/**
* Error class for the Vertex AI for Firebase SDK.
* Error class for the Vertex AI in Firebase SDK.
*
* @public
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/vertexai/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* The Vertex AI For Firebase Web SDK.
* The Vertex AI in Firebase Web SDK.
*
* @packageDocumentation
*/
Expand Down
4 changes: 2 additions & 2 deletions packages/vertexai/src/public-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { FirebaseApp } from '@firebase/app';
export * from './types';

/**
* An instance of the Vertex AI for Firebase SDK.
* An instance of the Vertex AI in Firebase SDK.
* @public
*/
export interface VertexAI {
Expand All @@ -32,7 +32,7 @@ export interface VertexAI {
}

/**
* Options when initializing the Vertex AI for Firebase SDK.
* Options when initializing the Vertex AI in Firebase SDK.
* @public
*/
export interface VertexAIOptions {
Expand Down

0 comments on commit 5594ebc

Please sign in to comment.