Skip to content

Commit 07f68ad

Browse files
committed
docs review fixes
1 parent c4878c1 commit 07f68ad

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs-devsite/vertexai.googleaibackend.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
1010
{% endcomment %}
1111

1212
# GoogleAIBackend class
13-
Configuration class for the Gemini Developer API (using [Google AI](https://ai.google/)<!-- -->).
13+
Configuration class for the Gemini Developer API.
1414

1515
Use this with [AIOptions](./vertexai.aioptions.md#aioptions_interface) when initializing the AI service via [getAI()](./vertexai.md#getai_a94a413) to specify the Gemini Developer API as the backend.
1616

@@ -25,11 +25,11 @@ export declare class GoogleAIBackend extends Backend
2525
2626
| Constructor | Modifiers | Description |
2727
| --- | --- | --- |
28-
| [(constructor)()](./vertexai.googleaibackend.md#googleaibackendconstructor) | | Creates a configuration object for the Google AI backend. |
28+
| [(constructor)()](./vertexai.googleaibackend.md#googleaibackendconstructor) | | Creates a configuration object for the Gemini Developer API backend. |
2929
3030
## GoogleAIBackend.(constructor)
3131
32-
Creates a configuration object for the Google AI backend.
32+
Creates a configuration object for the Gemini Developer API backend.
3333
3434
<b>Signature:</b>
3535

docs-devsite/vertexai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The Firebase AI Web SDK.
3434
| [BooleanSchema](./vertexai.booleanschema.md#booleanschema_class) | Schema class for "boolean" types. |
3535
| [ChatSession](./vertexai.chatsession.md#chatsession_class) | ChatSession class that enables sending chat messages and stores history of sent and received messages so far. |
3636
| [GenerativeModel](./vertexai.generativemodel.md#generativemodel_class) | Class for generative model APIs. |
37-
| [GoogleAIBackend](./vertexai.googleaibackend.md#googleaibackend_class) | Configuration class for the Gemini Developer API (using [Google AI](https://ai.google/)<!-- -->).<!-- -->Use this with [AIOptions](./vertexai.aioptions.md#aioptions_interface) when initializing the AI service via [getAI()](./vertexai.md#getai_a94a413) to specify the Gemini Developer API as the backend. |
37+
| [GoogleAIBackend](./vertexai.googleaibackend.md#googleaibackend_class) | Configuration class for the Gemini Developer API.<!-- -->Use this with [AIOptions](./vertexai.aioptions.md#aioptions_interface) when initializing the AI service via [getAI()](./vertexai.md#getai_a94a413) to specify the Gemini Developer API as the backend. |
3838
| [ImagenImageFormat](./vertexai.imagenimageformat.md#imagenimageformat_class) | <b><i>(Public Preview)</i></b> Defines the image format for images generated by Imagen.<!-- -->Use this class to specify the desired format (JPEG or PNG) and compression quality for images generated by Imagen. This is typically included as part of [ImagenModelParams](./vertexai.imagenmodelparams.md#imagenmodelparams_interface)<!-- -->. |
3939
| [ImagenModel](./vertexai.imagenmodel.md#imagenmodel_class) | <b><i>(Public Preview)</i></b> Class for Imagen model APIs.<!-- -->This class provides methods for generating images using the Imagen model. |
4040
| [IntegerSchema](./vertexai.integerschema.md#integerschema_class) | Schema class for "integer" types. |

packages/vertexai/src/backend.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export abstract class Backend {
4242
}
4343

4444
/**
45-
* Configuration class for the Gemini Developer API (using {@link https://ai.google/ | Google AI}).
45+
* Configuration class for the Gemini Developer API.
4646
*
4747
* Use this with {@link AIOptions} when initializing the AI service via
4848
* {@link getAI | getAI()} to specify the Gemini Developer API as the backend.
@@ -51,7 +51,7 @@ export abstract class Backend {
5151
*/
5252
export class GoogleAIBackend extends Backend {
5353
/**
54-
* Creates a configuration object for the Google AI backend.
54+
* Creates a configuration object for the Gemini Developer API backend.
5555
*/
5656
constructor() {
5757
super(BackendType.GOOGLE_AI);

0 commit comments

Comments
 (0)