Skip to content

Commit a9a7457

Browse files
committed
spottless apply
1 parent d1f6f97 commit a9a7457

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ public class GenerateContentResponse(
4444
candidates.first().content.parts.filterIsInstance<FunctionCallPart>()
4545
}
4646

47-
/** Returns inline data parts found in any `Part`s of the first candidate of the response, if any. */
47+
/**
48+
* Returns inline data parts found in any `Part`s of the first candidate of the response, if any.
49+
*/
4850
public val inlineDataParts: List<InlineDataPart> by lazy {
4951
candidates.first().content.parts.let { parts ->
5052
parts.filterIsInstance<ImagePart>().map { it.toInlineDataPart() } +

0 commit comments

Comments
 (0)