Skip to content

Commit 697f4b5

Browse files
authored
Merge branch 'main' into davidmotson.extra_schema
2 parents db490fa + f61a649 commit 697f4b5

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ public class ImagenPersonFilterLevel private constructor(internal val internalVa
2525
*
2626
* > Important: Generation of images containing people or faces may require your use case to be
2727
* 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)
28+
* [Responsible AI and usage guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
3029
* for more details.
3130
*/
3231
@JvmField public val ALLOW_ALL: ImagenPersonFilterLevel = ImagenPersonFilterLevel("allow_all")
@@ -35,8 +34,7 @@ public class ImagenPersonFilterLevel private constructor(internal val internalVa
3534
*
3635
* > Important: Generation of images containing people or faces may require your use case to be
3736
* 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)
37+
* [Responsible AI and usage guidelines](https://cloud.google.com/vertex-ai/generative-ai/docs/image/responsible-ai-imagen#person-face-gen)
4038
* for more details.
4139
*/
4240
@JvmField

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import kotlinx.serialization.SerialName
2020
import kotlinx.serialization.Serializable
2121

2222
/**
23-
* Various voices supported by the server. The list of all voices can be found
24-
* [here](https://cloud.google.com/text-to-speech/docs/chirp3-hd)
23+
* Various voices supported by the server. In the documentation, find the list of
24+
* [all supported voices](https://cloud.google.com/text-to-speech/docs/chirp3-hd).
2525
*/
2626
@PublicPreviewAPI
2727
public class Voice public constructor(public val voiceName: String) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import kotlinx.serialization.SerialName
2020
import kotlinx.serialization.Serializable
2121

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

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ featureDelivery = "2.1.0"
2727
firebaseAppdistributionGradle = "5.1.1"
2828
firebaseCommon = "21.0.0"
2929
firebaseComponents = "18.0.1"
30-
firebaseCrashlyticsGradle = "3.0.2"
30+
firebaseCrashlyticsGradle = "3.0.4"
3131
glide = "4.16.0"
3232
googleApiClient = "1.30.9"
3333
googleServices = "4.3.15"

plugins/src/main/java/com/google/firebase/gradle/bomgenerator/GenerateTutorialBundleTask.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ abstract class GenerateTutorialBundleTask : DefaultTask() {
236236
"com.google.firebase:firebase-perf" to
237237
ArtifactTutorialMapping("Performance Monitoring", "perf-dependency"),
238238
"com.google.firebase:firebase-ai" to
239-
ArtifactTutorialMapping("Firebase AI Logic", "firebase-ai-depedency"),
239+
ArtifactTutorialMapping("Firebase AI Logic", "firebase-ai-dependency"),
240240
"com.google.firebase:firebase-messaging" to
241241
ArtifactTutorialMapping("Cloud Messaging", "messaging-dependency"),
242242
"com.google.firebase:firebase-auth" to

0 commit comments

Comments
 (0)