From d3956bceca4d1b5ac5f5bf231723a8ce893d8472 Mon Sep 17 00:00:00 2001 From: Rodrigo Lazo Paz Date: Wed, 22 Oct 2025 13:38:43 -0400 Subject: [PATCH 1/2] [AI] Fix kdoc The kdoc for `LiveSession.sendVideoRealtime` referenced the type, `InlineData`, rather than the name of the param, `video`. --- .../src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt b/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt index 924e2146005..8e4c3247b4e 100644 --- a/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt +++ b/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt @@ -338,7 +338,7 @@ internal constructor( * For better performance, frames can also be sent at a lower rate than the video; even as low as * 1 frame per second. * - * @param inlineData Encoded image data extracted from a frame of the video, used to update the + * @param video Encoded image data extracted from a frame of the video, used to update the * model on the client's conversation, with the corresponding IANA standard MIME type of the video * frame data (e.g., `image/png`, `image/jpeg`, etc.). */ From baf3c74686d065c14c17991c512eb659a3f54140 Mon Sep 17 00:00:00 2001 From: Rodrigo Lazo Paz Date: Wed, 22 Oct 2025 14:05:22 -0400 Subject: [PATCH 2/2] Fix format --- .../main/kotlin/com/google/firebase/ai/type/LiveSession.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt b/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt index 2be7b4f1a95..ea5daee30f3 100644 --- a/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt +++ b/firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt @@ -340,9 +340,9 @@ internal constructor( * For better performance, frames can also be sent at a lower rate than the video; even as low as * 1 frame per second. * - * @param video Encoded image data extracted from a frame of the video, used to update the - * model on the client's conversation, with the corresponding IANA standard MIME type of the video - * frame data (e.g., `image/png`, `image/jpeg`, etc.). + * @param video Encoded image data extracted from a frame of the video, used to update the model + * on the client's conversation, with the corresponding IANA standard MIME type of the video frame + * data (e.g., `image/png`, `image/jpeg`, etc.). */ public suspend fun sendVideoRealtime(video: InlineData) { FirebaseAIException.catchAsync {