Skip to content

Commit

Permalink
Add more code tags
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarocque committed Jan 31, 2025
1 parent faec0e7 commit 3f8cc3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs-devsite/vertexai.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ export declare enum HarmBlockThreshold

| Member | Value | Description |
| --- | --- | --- |
| BLOCK\_LOW\_AND\_ABOVE | <code>&quot;BLOCK_LOW_AND_ABOVE&quot;</code> | Content with NEGLIGIBLE will be allowed. |
| BLOCK\_MEDIUM\_AND\_ABOVE | <code>&quot;BLOCK_MEDIUM_AND_ABOVE&quot;</code> | Content with NEGLIGIBLE and LOW will be allowed. |
| BLOCK\_LOW\_AND\_ABOVE | <code>&quot;BLOCK_LOW_AND_ABOVE&quot;</code> | Content with <code>NEGLIGIBLE</code> will be allowed. |
| BLOCK\_MEDIUM\_AND\_ABOVE | <code>&quot;BLOCK_MEDIUM_AND_ABOVE&quot;</code> | Content with <code>NEGLIGIBLE</code> and <code>LOW</code> will be allowed. |
| BLOCK\_NONE | <code>&quot;BLOCK_NONE&quot;</code> | All content will be allowed. |
| BLOCK\_ONLY\_HIGH | <code>&quot;BLOCK_ONLY_HIGH&quot;</code> | Content with NEGLIGIBLE, LOW, and MEDIUM will be allowed. |
| 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. |

## HarmCategory

Expand Down
6 changes: 3 additions & 3 deletions packages/vertexai/src/types/enums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ export enum HarmCategory {
*/
export enum HarmBlockThreshold {
/**
* Content with NEGLIGIBLE will be allowed.
* Content with `NEGLIGIBLE` will be allowed.
*/
BLOCK_LOW_AND_ABOVE = 'BLOCK_LOW_AND_ABOVE',
/**
* Content with NEGLIGIBLE and LOW will be allowed.
* Content with `NEGLIGIBLE` and `LOW` will be allowed.
*/
BLOCK_MEDIUM_AND_ABOVE = 'BLOCK_MEDIUM_AND_ABOVE',
/**
* Content with NEGLIGIBLE, LOW, and MEDIUM will be allowed.
* Content with `NEGLIGIBLE`, `LOW`, and `MEDIUM` will be allowed.
*/
BLOCK_ONLY_HIGH = 'BLOCK_ONLY_HIGH',
/**
Expand Down

0 comments on commit 3f8cc3f

Please sign in to comment.