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