Skip to content

Commit e89a8fb

Browse files
committed
Format
1 parent 228b311 commit e89a8fb

File tree

1 file changed

+3
-9
lines changed
  • firebase-ai/src/main/kotlin/com/google/firebase/ai/type

1 file changed

+3
-9
lines changed

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

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,7 @@ internal constructor(
114114
internal val thoughtSignature: String?
115115
) : Part {
116116

117-
/**
118-
* @param image [Bitmap] to convert into a [Part]
119-
*/
117+
/** @param image [Bitmap] to convert into a [Part] */
120118
public constructor(image: Bitmap) : this(image, false, null)
121119

122120
internal fun toInlineDataPart() =
@@ -202,9 +200,7 @@ internal constructor(
202200
}
203201
}
204202

205-
/**
206-
* Represents function call output to be returned to the model when it requests a function call.
207-
*/
203+
/** Represents function call output to be returned to the model when it requests a function call. */
208204
public class FunctionResponsePart
209205
internal constructor(
210206
public val name: String,
@@ -246,9 +242,7 @@ internal constructor(
246242
}
247243
}
248244

249-
/**
250-
* Represents file data stored in Cloud Storage for Firebase, referenced by URI.
251-
*/
245+
/** Represents file data stored in Cloud Storage for Firebase, referenced by URI. */
252246
public class FileDataPart
253247
internal constructor(
254248
public val uri: String,

0 commit comments

Comments
 (0)