From d1d7cca7f3b52d1fcd4dac0a8923a5f8fba6e110 Mon Sep 17 00:00:00 2001 From: Google Team Member Date: Fri, 17 Oct 2025 07:27:40 -0700 Subject: [PATCH] No public description PiperOrigin-RevId: 820682028 --- google/genai/types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/google/genai/types.py b/google/genai/types.py index 3f9a07d42..49d30c9e4 100644 --- a/google/genai/types.py +++ b/google/genai/types.py @@ -15452,7 +15452,7 @@ class AudioChunk(_common.BaseModel): """Representation of an audio chunk.""" data: Optional[bytes] = Field( - default=None, description="""Raw bytes of audio data.""" + default=None, description="""Raw bytes of audio data (base64 encoded).""" ) mime_type: Optional[str] = Field( default=None, description="""MIME type of the audio chunk.""" @@ -15467,7 +15467,7 @@ class AudioChunkDict(TypedDict, total=False): """Representation of an audio chunk.""" data: Optional[bytes] - """Raw bytes of audio data.""" + """Raw bytes of audio data (base64 encoded).""" mime_type: Optional[str] """MIME type of the audio chunk."""