We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb0d48d commit 48b9f11Copy full SHA for 48b9f11
firebase-ai/src/main/kotlin/com/google/firebase/ai/type/GenerateContentResponse.kt
@@ -64,7 +64,9 @@ public class GenerateContentResponse(
64
* Learn more about [thinking](https://firebase.google.com/docs/ai-logic/thinking?api=dev).
65
*/
66
public val thoughtSummary: String? by lazy {
67
- candidates.firstOrNull()?.thoughtParts()?.filterIsInstance<TextPart>()?.joinToString(" ") { it.text }
+ candidates.firstOrNull()?.thoughtParts()?.filterIsInstance<TextPart>()?.joinToString(" ") {
68
+ it.text
69
+ }
70
}
71
72
/**
0 commit comments