Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ abstract class GenerateTutorialBundleTask : DefaultTask() {
"com.google.firebase:firebase-perf" to
ArtifactTutorialMapping("Performance Monitoring", "perf-dependency"),
"com.google.firebase:firebase-ai" to
ArtifactTutorialMapping("Firebase AI Logic", "firebase-ai-depedency"),
ArtifactTutorialMapping("Firebase AI Logic", "firebase-ai-dependency"),
"com.google.firebase:firebase-messaging" to
ArtifactTutorialMapping("Cloud Messaging", "messaging-dependency"),
"com.google.firebase:firebase-auth" to
Expand Down
Loading