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 d1f6f97 commit a9a7457Copy full SHA for a9a7457
firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/type/GenerateContentResponse.kt
@@ -44,7 +44,9 @@ public class GenerateContentResponse(
44
candidates.first().content.parts.filterIsInstance<FunctionCallPart>()
45
}
46
47
- /** Returns inline data parts found in any `Part`s of the first candidate of the response, if any. */
+ /**
48
+ * Returns inline data parts found in any `Part`s of the first candidate of the response, if any.
49
+ */
50
public val inlineDataParts: List<InlineDataPart> by lazy {
51
candidates.first().content.parts.let { parts ->
52
parts.filterIsInstance<ImagePart>().map { it.toInlineDataPart() } +
0 commit comments