Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions google/genai/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand All @@ -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."""
Expand Down