Skip to content

Commit 74ea37d

Browse files
committed
Make sendVideo internal
1 parent 66ca3ca commit 74ea37d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

FirebaseAI/Sources/Types/Public/Live/LiveSession.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ public final class LiveSession: Sendable {
6969
/// - Parameters:
7070
/// - video: Encoded video data, used to update the model on the client's conversation.
7171
/// - format: The format that the video was encoded in (eg; `mp4`, `webm`, `wmv`, etc.,).
72-
public func sendVideoRealtime(_ video: Data, format: String) async {
72+
// TODO: (b/448671945) Make public after testing and next release
73+
func sendVideoRealtime(_ video: Data, format: String) async {
7374
let message = BidiGenerateContentRealtimeInput(
7475
video: InlineData(data: video, mimeType: "video/\(format)")
7576
)

0 commit comments

Comments
 (0)