Skip to content

Commit 05083eb

Browse files
committed
review
1 parent f2df40c commit 05083eb

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

docs-devsite/ai.aimodel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ export declare abstract class AIModel
2626

2727
| Property | Modifiers | Type | Description |
2828
| --- | --- | --- | --- |
29-
| [model](./ai.aimodel.md#aimodelmodel) | | string | The fully qualified model resource name to use for generating images (for example, <code>publishers/google/models/model-name</code>). |
29+
| [model](./ai.aimodel.md#aimodelmodel) | | string | The fully qualified model resource name to use for generating images (for example, <code>publishers/google/models/&lt;model-name&gt;</code>). |
3030

3131
## AIModel.model
3232

33-
The fully qualified model resource name to use for generating images (for example, `publishers/google/models/model-name`<!-- -->).
33+
The fully qualified model resource name to use for generating images (for example, `publishers/google/models/<model-name>`<!-- -->).
3434

3535
<b>Signature:</b>
3636

docs-devsite/ai.imagenmodelparams.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export interface ImagenModelParams
2626
| Property | Type | Description |
2727
| --- | --- | --- |
2828
| [generationConfig](./ai.imagenmodelparams.md#imagenmodelparamsgenerationconfig) | [ImagenGenerationConfig](./ai.imagengenerationconfig.md#imagengenerationconfig_interface) | <b><i>(Public Preview)</i></b> Configuration options for generating images with Imagen. |
29-
| [model](./ai.imagenmodelparams.md#imagenmodelparamsmodel) | string | <b><i>(Public Preview)</i></b> The Imagen model to use for generating images.<!-- -->See the documentation for a list of [supported models](https://firebase.google.com/docs/ai-logic/models)<!-- -->.<!-- -->See [model versions](https://firebase.google.com/docs/vertex-ai/models) for a full list of supported Imagen 3 models. |
29+
| [model](./ai.imagenmodelparams.md#imagenmodelparamsmodel) | string | <b><i>(Public Preview)</i></b> The Imagen model to use for generating images.<!-- -->See the documentation for a list of [supported models](https://firebase.google.com/docs/ai-logic/models)<!-- -->. |
3030
| [safetySettings](./ai.imagenmodelparams.md#imagenmodelparamssafetysettings) | [ImagenSafetySettings](./ai.imagensafetysettings.md#imagensafetysettings_interface) | <b><i>(Public Preview)</i></b> Safety settings for filtering potentially inappropriate content. |
3131

3232
## ImagenModelParams.generationConfig
@@ -51,8 +51,6 @@ The Imagen model to use for generating images.
5151

5252
See the documentation for a list of [supported models](https://firebase.google.com/docs/ai-logic/models)<!-- -->.
5353

54-
See [model versions](https://firebase.google.com/docs/vertex-ai/models) for a full list of supported Imagen 3 models.
55-
5654
<b>Signature:</b>
5755

5856
```typescript

packages/ai/src/models/ai-model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { _isFirebaseServerApp } from '@firebase/app';
3232
export abstract class AIModel {
3333
/**
3434
* The fully qualified model resource name to use for generating images
35-
* (for example, `publishers/google/models/model-name`).
35+
* (for example, `publishers/google/models/<model-name>`).
3636
*/
3737
readonly model: string;
3838

packages/ai/src/types/imagen/requests.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ export interface ImagenModelParams {
2727
* The Imagen model to use for generating images.
2828
*
2929
* See the documentation for a list of {@link https://firebase.google.com/docs/ai-logic/models | supported models}.
30-
*
31-
* See {@link https://firebase.google.com/docs/vertex-ai/models | model versions}
32-
* for a full list of supported Imagen 3 models.
3330
*/
3431
model: string;
3532
/**

0 commit comments

Comments
 (0)