@@ -71,31 +71,34 @@ public class HarmCategory private constructor(public val ordinal: Int) {
71
71
/* * A new and not yet supported value. */
72
72
@JvmField public val UNKNOWN : HarmCategory = HarmCategory (0 )
73
73
74
- /* * Harassment content. */
74
+ /* * Represents the harm category for content that is classified as harassment . */
75
75
@JvmField public val HARASSMENT : HarmCategory = HarmCategory (1 )
76
76
77
- /* * Hate speech and content. */
77
+ /* * Represents the harm category for content that is classified as hate speech . */
78
78
@JvmField public val HATE_SPEECH : HarmCategory = HarmCategory (2 )
79
79
80
- /* * Sexually explicit content. */
80
+ /* * Represents the harm category for content that is classified as sexually explicit content. */
81
81
@JvmField public val SEXUALLY_EXPLICIT : HarmCategory = HarmCategory (3 )
82
82
83
- /* * Dangerous content. */
83
+ /* * Represents the harm category for content that is classified as dangerous content. */
84
84
@JvmField public val DANGEROUS_CONTENT : HarmCategory = HarmCategory (4 )
85
85
86
- /* * Content that may be used to harm civic integrity. */
86
+ /* *
87
+ * Represents the harm category for content that is classified as content that may be used to
88
+ * harm civic integrity.
89
+ */
87
90
@JvmField public val CIVIC_INTEGRITY : HarmCategory = HarmCategory (5 )
88
91
89
- /* * Content that is image hate . */
92
+ /* * Represents the harm category for image content that is classified as hateful . */
90
93
@JvmField public val IMAGE_HATE : HarmCategory = HarmCategory (6 )
91
94
92
- /* * Image dangerous content. */
95
+ /* * Represents the harm category for image content that is classified as dangerous . */
93
96
@JvmField public val IMAGE_DANGEROUS_CONTENT : HarmCategory = HarmCategory (7 )
94
97
95
- /* * Content is image harassment. */
98
+ /* * Represents the harm category for image content that is classified as harassment. */
96
99
@JvmField public val IMAGE_HARASSMENT : HarmCategory = HarmCategory (8 )
97
100
98
- /* * Image sexually explicit content. */
101
+ /* * Represents the harm category for image content that is classified as sexually explicit . */
99
102
@JvmField public val IMAGE_SEXUALLY_EXPLICIT : HarmCategory = HarmCategory (9 )
100
103
}
101
104
}
0 commit comments