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