Skip to content

Commit 3788525

Browse files
committed
formatting
1 parent ba868a2 commit 3788525

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

FirebaseAI/Sources/FirebaseAI.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ public final class FirebaseAI: Sendable {
143143
/// Preview, which means that the feature is not subject to any SLA or deprecation policy and
144144
/// could change in backwards-incompatible ways.
145145
///
146-
/// > Important: Only models that support the Gemini Live API (typically containing `live-*` in the name) are supported.
146+
/// > Important: Only models that support the Gemini Live API (typically containing `live-*` in
147+
/// the name) are supported.
147148
///
148149
/// - Parameters:
149150
/// - modelName: The name of the model to use, for example

FirebaseAI/Sources/Types/Internal/Live/LiveSessionService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ actor LiveSessionService {
235235
code: .liveSessionGoingAwaySoon,
236236
"Session expires in: \(goAway.timeLeft?.timeInterval ?? 0)"
237237
)
238-
238+
239239
responseContinuation.yield(LiveServerGoingAwayNotice(
240240
goAway,
241241
usageMetadata: response.usageMetadata

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
/// Configuration options for audio transcriptions when communicating with a model that supports the Gemini Live API.
15+
/// Configuration options for audio transcriptions when communicating with a model that supports the
16+
/// Gemini Live API.
1617
///
1718
/// While there are not currently any options, this will likely change in the future. For now, just
1819
/// providing an instance of this struct will enable audio transcriptions for the corresponding

FirebaseAI/Sources/Types/Public/ResponseModality.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ public struct ResponseModality: EncodableProtoEnum, Sendable {
5757
/// > Warning: This is currently **only** supported via the
5858
/// > [live api](https://firebase.google.com/docs/ai-logic/live-api)\.
5959
/// >
60-
/// > Furthermore, using the Firebase AI Logic SDKs with the Gemini Live API is in Public Preview, which means
61-
/// > that the feature is not subject to any SLA or deprecation policy and could change in
62-
/// > backwards-incompatible ways.
60+
/// > Furthermore, using the Firebase AI Logic SDKs with the Gemini Live API is in Public Preview,
61+
/// > which means that the feature is not subject to any SLA or deprecation policy and could
62+
/// > change in backwards-incompatible ways.
6363
public static let audio = ResponseModality(kind: .audio)
6464

6565
let rawValue: String

0 commit comments

Comments
 (0)