Skip to content

Commit 283a5f1

Browse files
Merge 7e85895 into 96432b7
2 parents 96432b7 + 7e85895 commit 283a5f1

File tree

4 files changed

+424
-6
lines changed

4 files changed

+424
-6
lines changed

firebase-ai/src/main/kotlin/com/google/firebase/ai/java/LiveSessionFutures.kt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -185,17 +185,13 @@ public abstract class LiveSessionFutures internal constructor() {
185185
): ListenableFuture<Unit>
186186

187187
/**
188-
* Sends audio data to the server in realtime. Check
189-
* https://ai.google.dev/api/live#bidigeneratecontentrealtimeinput for details about the realtime
190-
* input usage.
188+
* Sends an audio input stream to the model, using the realtime API.
191189
* @param audio The audio data to send.
192190
*/
193191
public abstract fun sendAudioRealtime(audio: InlineData): ListenableFuture<Unit>
194192

195193
/**
196-
* Sends video data to the server in realtime. Check
197-
* https://ai.google.dev/api/live#bidigeneratecontentrealtimeinput for details about the realtime
198-
* input usage.
194+
* Sends a video input stream to the model, using the realtime API.
199195
* @param video The video data to send. Video MIME type could be either video or image.
200196
*/
201197
public abstract fun sendVideoRealtime(video: InlineData): ListenableFuture<Unit>

release.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "m172",
3+
"libraries": [
4+
":firebase-ai",
5+
":firebase-functions",
6+
":firebase-dataconnect",
7+
":firebase-inappmessaging",
8+
":firebase-inappmessaging-display",
9+
":firebase-perf"
10+
]
11+
}

0 commit comments

Comments
 (0)