Skip to content

Commit 48b9f11

Browse files
committed
Format fix
1 parent bb0d48d commit 48b9f11

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

firebase-ai/src/main/kotlin/com/google/firebase/ai/type/GenerateContentResponse.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ public class GenerateContentResponse(
6464
* Learn more about [thinking](https://firebase.google.com/docs/ai-logic/thinking?api=dev).
6565
*/
6666
public val thoughtSummary: String? by lazy {
67-
candidates.firstOrNull()?.thoughtParts()?.filterIsInstance<TextPart>()?.joinToString(" ") { it.text }
67+
candidates.firstOrNull()?.thoughtParts()?.filterIsInstance<TextPart>()?.joinToString(" ") {
68+
it.text
69+
}
6870
}
6971

7072
/**

0 commit comments

Comments
 (0)