File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
packages/vertexai/src/types Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,8 @@ export enum HarmSeverity {
410410 HARM_SEVERITY_HIGH = " HARM_SEVERITY_HIGH" ,
411411 HARM_SEVERITY_LOW = " HARM_SEVERITY_LOW" ,
412412 HARM_SEVERITY_MEDIUM = " HARM_SEVERITY_MEDIUM" ,
413- HARM_SEVERITY_NEGLIGIBLE = " HARM_SEVERITY_NEGLIGIBLE"
413+ HARM_SEVERITY_NEGLIGIBLE = " HARM_SEVERITY_NEGLIGIBLE" ,
414+ HARM_SEVERITY_UNSPECIFIED = " HARM_SEVERITY_UNSPECIFIED"
414415}
415416
416417// @beta
Original file line number Diff line number Diff line change @@ -414,6 +414,7 @@ export declare enum HarmSeverity
414414| HARM\_SEVERITY\_LOW | <code>"HARM_SEVERITY_LOW"</code> | Low level of harm severity. |
415415| HARM\_SEVERITY\_MEDIUM | <code>"HARM_SEVERITY_MEDIUM"</code> | Medium level of harm severity. |
416416| HARM\_SEVERITY\_NEGLIGIBLE | <code>"HARM_SEVERITY_NEGLIGIBLE"</code> | Negligible level of harm severity. |
417+ | HARM\_SEVERITY\_UNSPECIFIED | <code>"HARM_SEVERITY_UNSPECIFIED"</code> | Unspecified level of harm severity. |
417418
418419## ImagenAspectRatio
419420
Original file line number Diff line number Diff line change @@ -103,6 +103,10 @@ export enum HarmProbability {
103103 * @public
104104 */
105105export enum HarmSeverity {
106+ /**
107+ * Unspecified level of harm severity.
108+ */
109+ HARM_SEVERITY_UNSPECIFIED = 'HARM_SEVERITY_UNSPECIFIED' ,
106110 /**
107111 * Negligible level of harm severity.
108112 */
You can’t perform that action at this time.
0 commit comments