Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ actor LiveSessionService {

/// Start a new connection to the backend.
///
/// Seperated into its own function to make it easier to surface a way to call it seperately when
/// Separated into its own function to make it easier to surface a way to call it separately when
/// resuming the same session.
///
/// This function will yield until the websocket is ready to communicate with the client.
Expand Down
2 changes: 1 addition & 1 deletion FirebaseAI/Sources/Types/Public/Live/LiveSession.swift
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public final class LiveSession: Sendable {
/// Instead of raw video data, the model expects individual frames of the video,
/// sent as images.
///
/// If your video has audio, send it seperately through ``LiveSession/sendAudioRealtime(_:)``.
/// If your video has audio, send it separately through ``LiveSession/sendAudioRealtime(_:)``.
///
/// For better performance, frames can also be sent at a lower rate than the video;
/// even as low as 1 frame per second.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ private extension LiveSession {
/// }
/// ```
///
/// Is the equivelent to manually doing:
/// Is the equivalent to manually doing:
/// ```swift
/// for try await response in session.responses {
/// if case let .content(content) = response.payload {
Expand Down
Loading