You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In reality, ImagenInlineImage#data contains the Base64 encoded image.
The Flutter and JS SDKs call it bytesBase64Encoded and their ref docs correctly mention the returned data is base64 encoded.
Renaming this field (data -> bytesBase64Encoded) would be a breaking change. But since Imagen support is in public preview, I think we should consider making the change when it goes GA.
For now, I think we should update the ref docs to point out the returned bytes are base64 encoded. I opened #6785 for that.
It looks like the Swift SDK doesn't expose the base64 encoded image, it decodes it and returns as data: Data. I opened firebase/firebase-ios-sdk#14603 to discuss whether it should expose the base64 images
The text was updated successfully, but these errors were encountered:
The
ImagenInlineImage#data
is currently documented as:firebase-android-sdk/firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/type/ImagenInlineImage.kt
Line 26 in 60a021d
In reality,
ImagenInlineImage#data
contains the Base64 encoded image.The Flutter and JS SDKs call it
bytesBase64Encoded
and their ref docs correctly mention the returned data is base64 encoded.Renaming this field (
data
->bytesBase64Encoded
) would be a breaking change. But since Imagen support is in public preview, I think we should consider making the change when it goes GA.For now, I think we should update the ref docs to point out the returned bytes are base64 encoded. I opened #6785 for that.
It looks like the Swift SDK doesn't expose the base64 encoded image, it decodes it and returns as
data: Data
. I opened firebase/firebase-ios-sdk#14603 to discuss whether it should expose the base64 imagesThe text was updated successfully, but these errors were encountered: