Skip to content

Commit 8ea5863

Browse files
committed
style fixes
1 parent 502aec8 commit 8ea5863

File tree

1 file changed

+21
-15
lines changed

1 file changed

+21
-15
lines changed

firebase-ai/src/main/kotlin/com/google/firebase/ai/type/ImagenPersonFilterLevel.kt

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,30 @@ package com.google.firebase.ai.type
2020
@PublicPreviewAPI
2121
public class ImagenPersonFilterLevel private constructor(internal val internalVal: String) {
2222
public companion object {
23-
/** Allow generation of images containing people of all ages.
24-
*
25-
* > Important: Generation of images containing people or faces may require your use case to be
26-
* reviewed and approved by Cloud support; see the [Responsible AI and usage
27-
* guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
28-
* for more details.
29-
*/
23+
/**
24+
* Allow generation of images containing people of all ages.
25+
*
26+
* > Important: Generation of images containing people or faces may require your use case to be
27+
* reviewed and approved by Cloud support; see the
28+
* [Responsible AI and usage
29+
* guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
30+
* for more details.
31+
*/
3032
@JvmField public val ALLOW_ALL: ImagenPersonFilterLevel = ImagenPersonFilterLevel("allow_all")
31-
/** Allow generation of images containing adults only; images of children are filtered out.
32-
*
33-
* > Important: Generation of images containing people or faces may require your use case to be
34-
* reviewed and approved by Cloud support; see the [Responsible AI and usage
35-
* guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
36-
* for more details.
37-
*/
33+
/**
34+
* Allow generation of images containing adults only; images of children are filtered out.
35+
*
36+
* > Important: Generation of images containing people or faces may require your use case to be
37+
* reviewed and approved by Cloud support; see the
38+
* [Responsible AI and usage
39+
* guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
40+
* for more details.
41+
*/
3842
@JvmField
3943
public val ALLOW_ADULT: ImagenPersonFilterLevel = ImagenPersonFilterLevel("allow_adult")
40-
/** Disallow generation of images containing people or faces; images of people are filtered out. */
44+
/**
45+
* Disallow generation of images containing people or faces; images of people are filtered out.
46+
*/
4147
@JvmField public val BLOCK_ALL: ImagenPersonFilterLevel = ImagenPersonFilterLevel("dont_allow")
4248
}
4349
}

0 commit comments

Comments
 (0)