Skip to content

Commit 3f8cc3f

Browse files
committed
Add more code tags
1 parent faec0e7 commit 3f8cc3f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs-devsite/vertexai.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,10 +301,10 @@ export declare enum HarmBlockThreshold
301301

302302
| Member | Value | Description |
303303
| --- | --- | --- |
304-
| BLOCK\_LOW\_AND\_ABOVE | <code>&quot;BLOCK_LOW_AND_ABOVE&quot;</code> | Content with NEGLIGIBLE will be allowed. |
305-
| BLOCK\_MEDIUM\_AND\_ABOVE | <code>&quot;BLOCK_MEDIUM_AND_ABOVE&quot;</code> | Content with NEGLIGIBLE and LOW will be allowed. |
304+
| BLOCK\_LOW\_AND\_ABOVE | <code>&quot;BLOCK_LOW_AND_ABOVE&quot;</code> | Content with <code>NEGLIGIBLE</code> will be allowed. |
305+
| BLOCK\_MEDIUM\_AND\_ABOVE | <code>&quot;BLOCK_MEDIUM_AND_ABOVE&quot;</code> | Content with <code>NEGLIGIBLE</code> and <code>LOW</code> will be allowed. |
306306
| BLOCK\_NONE | <code>&quot;BLOCK_NONE&quot;</code> | All content will be allowed. |
307-
| BLOCK\_ONLY\_HIGH | <code>&quot;BLOCK_ONLY_HIGH&quot;</code> | Content with NEGLIGIBLE, LOW, and MEDIUM will be allowed. |
307+
| BLOCK\_ONLY\_HIGH | <code>&quot;BLOCK_ONLY_HIGH&quot;</code> | Content with <code>NEGLIGIBLE</code>, <code>LOW</code>, and <code>MEDIUM</code> will be allowed. |
308308

309309
## HarmCategory
310310

packages/vertexai/src/types/enums.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ export enum HarmCategory {
4444
*/
4545
export enum HarmBlockThreshold {
4646
/**
47-
* Content with NEGLIGIBLE will be allowed.
47+
* Content with `NEGLIGIBLE` will be allowed.
4848
*/
4949
BLOCK_LOW_AND_ABOVE = 'BLOCK_LOW_AND_ABOVE',
5050
/**
51-
* Content with NEGLIGIBLE and LOW will be allowed.
51+
* Content with `NEGLIGIBLE` and `LOW` will be allowed.
5252
*/
5353
BLOCK_MEDIUM_AND_ABOVE = 'BLOCK_MEDIUM_AND_ABOVE',
5454
/**
55-
* Content with NEGLIGIBLE, LOW, and MEDIUM will be allowed.
55+
* Content with `NEGLIGIBLE`, `LOW`, and `MEDIUM` will be allowed.
5656
*/
5757
BLOCK_ONLY_HIGH = 'BLOCK_ONLY_HIGH',
5858
/**

0 commit comments

Comments
 (0)