Skip to content

Change docs for m165 #7005

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ public class ImagenPersonFilterLevel private constructor(internal val internalVa
*
* > Important: Generation of images containing people or faces may require your use case to be
* reviewed and approved by Cloud support; see the
* [Responsible AI and usage
* guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
* [Responsible AI and usage guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
* for more details.
*/
@JvmField public val ALLOW_ALL: ImagenPersonFilterLevel = ImagenPersonFilterLevel("allow_all")
Expand All @@ -35,8 +34,7 @@ public class ImagenPersonFilterLevel private constructor(internal val internalVa
*
* > Important: Generation of images containing people or faces may require your use case to be
* reviewed and approved by Cloud support; see the
* [Responsible AI and usage
* guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
* [Responsible AI and usage guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
* for more details.
*/
@JvmField
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

/**
* Various voices supported by the server. The list of all voices can be found
* [here](https://cloud.google.com/text-to-speech/docs/chirp3-hd)
* Various voices supported by the server. In the documentation, find the list of
* [all supported voices](https://cloud.google.com/text-to-speech/docs/chirp3-hd).
*/
@PublicPreviewAPI
public class Voice public constructor(public val voiceName: String) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

/** Various voices supported by the server */
@Deprecated("Please use the Voice class instead.", ReplaceWith("Voice"))
@Deprecated("Use the Voice class instead.", ReplaceWith("Voice"))
@PublicPreviewAPI
public class Voices private constructor(public val ordinal: Int) {

Expand Down
Loading