From eb3c213590f2dd364dcd30da9cf2324270dcc3f7 Mon Sep 17 00:00:00 2001 From: VinayGuthal Date: Thu, 30 Oct 2025 10:33:45 -0400 Subject: [PATCH] update javadocs for firebase ai --- .../com/google/firebase/ai/java/LiveSessionFutures.kt | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/firebase-ai/src/main/kotlin/com/google/firebase/ai/java/LiveSessionFutures.kt b/firebase-ai/src/main/kotlin/com/google/firebase/ai/java/LiveSessionFutures.kt index 5a04ed9f97c..b15e0522591 100644 --- a/firebase-ai/src/main/kotlin/com/google/firebase/ai/java/LiveSessionFutures.kt +++ b/firebase-ai/src/main/kotlin/com/google/firebase/ai/java/LiveSessionFutures.kt @@ -185,17 +185,13 @@ public abstract class LiveSessionFutures internal constructor() { ): ListenableFuture /** - * Sends audio data to the server in realtime. Check - * https://ai.google.dev/api/live#bidigeneratecontentrealtimeinput for details about the realtime - * input usage. + * Sends an audio input stream to the model, using the realtime API. * @param audio The audio data to send. */ public abstract fun sendAudioRealtime(audio: InlineData): ListenableFuture /** - * Sends video data to the server in realtime. Check - * https://ai.google.dev/api/live#bidigeneratecontentrealtimeinput for details about the realtime - * input usage. + * Sends a video input stream to the model, using the realtime API. * @param video The video data to send. Video MIME type could be either video or image. */ public abstract fun sendVideoRealtime(video: InlineData): ListenableFuture